mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"name": "@rocket/engine",
|
|
"version": "0.2.4",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "A fast low dependency engine renderer for html sites",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modernweb-dev/rocket.git",
|
|
"directory": "packages/engine"
|
|
},
|
|
"author": "Modern Web <hello@modern-web.dev> (https://modern-web.dev/)",
|
|
"homepage": "https://rocket.modern-web.dev/docs/tools/engine/",
|
|
"main": "./src/index.js",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist-types/src/index.d.ts",
|
|
"default": "./src/index.js"
|
|
},
|
|
"./server": {
|
|
"types": "./dist-types/src/index.server.d.ts",
|
|
"default": "./src/index.server.js"
|
|
},
|
|
"./hydration": {
|
|
"types": "./dist-types/src/index.hydration.d.ts",
|
|
"default": "./src/index.hydration.js"
|
|
},
|
|
"./assets/*": {
|
|
"default": "./assets/*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"debug": "DEBUG=engine:rendering yarn test",
|
|
"debug:integration": "PWDEBUG=1 yarn test:integration",
|
|
"test": "mocha --require ../../scripts/testMochaGlobalHooks.js --timeout 8000 test-node/**/*.test.js test-node/*.test.js",
|
|
"test:integration": "playwright test test-node/*.spec.js",
|
|
"test:watch": "onchange 'src/**/*.js' 'test-node/**/*.js' -- npm test",
|
|
"types:copy": "copyfiles \"./types/**/*.d.ts\" dist-types/"
|
|
},
|
|
"files": [
|
|
"assets",
|
|
"dist-types",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"@d4kmor/tree-model": "^0.1.3",
|
|
"@lit-labs/ssr": "^2.2.3",
|
|
"@mdjs/core": "^0.20.0",
|
|
"@parcel/watcher": "^2.0.5",
|
|
"@web/dev-server": "^0.1.4",
|
|
"es-module-lexer": "^0.10.5",
|
|
"lit": "^2.3.0",
|
|
"plugins-manager": "^0.3.0",
|
|
"sax-wasm": "^2.1.3",
|
|
"unist-util-visit": "^4.1.0"
|
|
},
|
|
"types": "./dist-types/src/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist-types/src/index.d.ts"
|
|
],
|
|
"server": [
|
|
"./dist-types/src/index.server.d.ts"
|
|
],
|
|
"hydration": [
|
|
"./dist-types/src/index.hydration.d.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|