返回 CodeWhale
package.json
根目录 / pet / package.json
1 {
2 "name": "@codewhale/pet",
3 "version": "0.1.0",
4 "private": true,
5 "type": "module",
6 "license": "Apache-2.0",
7 "engines": {
8 "node": ">=22.13"
9 },
10 "scripts": {
11 "build": "node scripts/build-pet.mjs",
12 "typecheck": "tsc -p tsconfig.json --noEmit",
13 "test": "node --test tests/*.test.mjs",
14 "check": "npm run typecheck && npm run build && npm test",
15 "start": "python3 -m http.server 4632 --bind 127.0.0.1 --directory dist",
16 "sync": "node scripts/build-pet.mjs --tui --apple --study"
17 },
18 "devDependencies": {
19 "typescript": "5.8.3"
20 }
21 }
22
22 lines JSON