mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "@rocket/launch",
|
|
"version": "0.21.2",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Launch Preset for Rocket",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modernweb-dev/rocket.git",
|
|
"directory": "packages/launch"
|
|
},
|
|
"author": "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)",
|
|
"homepage": "https://rocket.modern-web.dev/docs/presets/launch/",
|
|
"main": "./src/index.js",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist-types/src/index.d.ts",
|
|
"default": "./src/index.js"
|
|
},
|
|
"./assets/*": "./assets/*",
|
|
"./css/*": "./css/*",
|
|
"./js/*": "./src/public/*",
|
|
"./*": "./exports/*"
|
|
},
|
|
"scripts": {
|
|
"analyze": "cem analyze --litelement",
|
|
"test": "mocha --timeout 5000 test-node/**/*.test.{js,cjs} test-node/*.test.{js,cjs}",
|
|
"test:watch": "onchange 'src/**/*.{js,cjs}' 'test-node/**/*.{js,cjs}' -- npm test",
|
|
"types:copy": "copyfiles \"./types/**/*.d.ts\" dist-types/"
|
|
},
|
|
"files": [
|
|
"__public",
|
|
"*.js",
|
|
"assets",
|
|
"css",
|
|
"custom-elements.json",
|
|
"dist-types",
|
|
"exports",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"rocket",
|
|
"preset"
|
|
],
|
|
"dependencies": {
|
|
"@rocket/cli": "^0.20.3",
|
|
"@rocket/components": "^0.2.0",
|
|
"@rocket/engine": "^0.2.7",
|
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
|
"lit": "^2.3.0",
|
|
"workbox-window": "^6.1.5"
|
|
},
|
|
"types": "./dist-types/src/index.d.ts",
|
|
"customElements": "custom-elements.json",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist-types/src/index.d.ts"
|
|
],
|
|
"inline-notification": [
|
|
"./dist-types/src/inline-notification/index.d.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|