mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "@rocket/components",
|
|
"version": "0.2.0",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Rocket Components",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modernweb-dev/rocket.git",
|
|
"directory": "packages/components"
|
|
},
|
|
"author": "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)",
|
|
"homepage": "https://rocket.modern-web.dev/",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist-types/exports/index.d.ts",
|
|
"default": "./exports/index.js"
|
|
},
|
|
"./*": {
|
|
"types": "./dist-types/exports/*",
|
|
"default": "./exports/*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run types",
|
|
"test": "mocha --require ../../scripts/testMochaGlobalHooks.js test-node/**/*.test.{js,cjs} test-node/*.test.{js,cjs}",
|
|
"test:watch": "onchange 'src/**/*.{js,cjs}' 'test-node/**/*.{js,cjs}' -- npm test",
|
|
"types": "wireit",
|
|
"xtest:watch": "mocha test/**/*.test.js --parallel --watch"
|
|
},
|
|
"files": [
|
|
"dist-types",
|
|
"exports",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"rocket",
|
|
"ssg"
|
|
],
|
|
"dependencies": {
|
|
"@webcomponents/template-shadowroot": "^0.1.0",
|
|
"fontawesome-free": "^1.0.4",
|
|
"lit": "^2.3.0"
|
|
},
|
|
"devDependencies": {},
|
|
"types": "./dist-types/exports/index.d.ts",
|
|
"wireit": {
|
|
"types": {
|
|
"command": "copyfiles \"./types/**/*.d.ts\" dist-types/ && tsc --build --pretty",
|
|
"clean": "if-file-deleted",
|
|
"files": [
|
|
"src/**/*.js",
|
|
"tsconfig.json"
|
|
],
|
|
"output": [
|
|
"dist-types/**",
|
|
".tsbuildinfo"
|
|
]
|
|
}
|
|
}
|
|
}
|