-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "constellation",
"license": "MIT",
"private": true,
"version": "0.0.0",
"type": "module",
"bin": "./build/entrypoint.js",
"scripts": {
"dev": "python3 -m http.server 5173",
"dev-https": "npx http-server . -S -C certs/cert.pem -K certs/key.pem -p 5174",
"build": "./scripts/runtime-info.sh && ./scripts/build.sh",
"build-nofix": "./scripts/runtime-info.sh && ./scripts/build.sh --no-fix",
"newenv": "npm install && git submodule update && npm run build && echo \"Open http://localhost:5173 to use Constellation!\" && npm run dev",
"reclone-test": "./scripts/reclone.sh",
"test": "npx tsc && node build/tests/all.test.js",
"showUnused": "npx ts-prune -p tsconfig.json --ignore src/apps | grep -v 'used in module'",
"deno": "deno --allow-read --allow-write --allow-env ./build/entrypoint.js"
},
"devDependencies": {
"@types/node": "^24.3.1",
"canvas": "^3.2.0",
"mime": "4.0.7",
"prettier": "3.5.3",
"remove-empty-directories": "^0.0.1",
"rollup": "4.45.1",
"rollup-plugin-dts": "6.2.1",
"ts-prune": "^0.10.3",
"typescript": "^5.9.2"
},
"os": [
"darwin",
"linux"
],
"engines": {
"node": "22.x"
}
}