mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "@rocket/spark",
|
|
"version": "0.2.1",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Rocket Spark Preset",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modernweb-dev/rocket.git",
|
|
"directory": "presets/spark"
|
|
},
|
|
"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"
|
|
},
|
|
"./css/*": "./src/css/*",
|
|
"./*": {
|
|
"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}",
|
|
"types": "wireit"
|
|
},
|
|
"files": [
|
|
"dist-types",
|
|
"exports",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"rocket",
|
|
"ssg"
|
|
],
|
|
"dependencies": {
|
|
"@rocket/components": "^0.2.0",
|
|
"@rocket/engine": "^0.2.6",
|
|
"lit": "^2.3.0",
|
|
"plugins-manager": "^0.3.1"
|
|
},
|
|
"wireit": {
|
|
"types": {
|
|
"command": "copyfiles \"./types/**/*.d.ts\" dist-types/ && tsc --build --pretty",
|
|
"dependencies": [
|
|
"../../packages/components:types",
|
|
"../../packages/engine:types",
|
|
"../../packages/plugins-manager:types"
|
|
],
|
|
"clean": "if-file-deleted",
|
|
"files": [
|
|
"src/**/*.js",
|
|
"tsconfig.json"
|
|
],
|
|
"output": [
|
|
"dist-types/**",
|
|
".tsbuildinfo"
|
|
]
|
|
}
|
|
}
|
|
}
|