-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 5.05 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 5.05 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "jgengine-monorepo",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"examples/*",
"registry"
],
"catalog": {
"@react-three/drei": "^10.7.7",
"@tailwindcss/vite": "^4.0.15",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.0.15",
"typescript": "^5",
"vite": "^6.2.2"
}
},
"scripts": {
"agent:bootstrap": "bun scripts/agent-bootstrap.ts",
"agent:worktree": "bun scripts/agent-worktree.ts",
"agent:preflight": "bun scripts/agent-preflight.ts",
"ship:preflight": "bun scripts/agent-preflight.ts --ship",
"gate": "bun scripts/guard.ts 1800 'bun scripts/run-stages.ts gate'",
"build": "bun scripts/guard.ts 600 'bun scripts/ensure-ready.ts --install-only && bun run --cwd packages/core build && bun run --cwd packages/rapier build && bun run --cwd packages/ws build && bun run --cwd packages/sql build && bun run --cwd packages/navbake build && bun run --cwd packages/react build && bun run --cwd packages/convex build && bun run --cwd packages/node build && bun run --cwd packages/shell build && bun run --cwd packages/editor build && bun run --cwd packages/assets build && bun run --cwd packages/github build && bun run --cwd packages/jgengine build && bun run build:registry'",
"deploy:cloudflare": "bun --cwd=apps/web run deploy:cloudflare",
"check-artifacts": "bun scripts/check-no-src-artifacts.ts",
"check-release-set": "bun scripts/check-release-set.ts",
"check-changelog": "bun scripts/check-changelog.ts",
"release": "bun scripts/release.ts",
"version:prerelease": "bun scripts/set-version.ts",
"version:release": "bun scripts/set-version.ts --release",
"check-version": "bun scripts/set-version.ts --check",
"check-skills": "bun scripts/check-skill-sync.ts",
"report:skill-intake": "bun scripts/check-skill-sync.ts --report",
"gen:skill-api": "bun scripts/gen-skill-api-safe.ts",
"check-skill-api": "bun scripts/gen-skill-api.ts --check",
"gen": "bun scripts/guard.ts 1200 'bun scripts/run-stages.ts gen'",
"gen:barrels": "bun scripts/gen-barrels.ts",
"check-stateful-ratchet": "bun scripts/check-stateful-ratchet.ts",
"check-module-globals": "bun scripts/check-module-globals.ts",
"check-game-determinism": "bun scripts/check-game-determinism.ts",
"check-game-front-end": "bun scripts/check-game-front-end.ts",
"check-game-feel": "bun scripts/check-game-feel.ts",
"check-art-direction": "bun scripts/check-art-direction.ts",
"check-orphan-ratchet": "bun scripts/check-orphan-ratchet.ts",
"gen:capabilities": "bun scripts/gen-capability-index.ts",
"check-capabilities": "bun scripts/gen-capability-index.ts --check",
"gen:export-manifest": "bun scripts/gen-export-manifest.ts",
"check-export-manifest": "bun scripts/gen-export-manifest.ts --check",
"check-game-shape": "bun scripts/check-game-shape.ts",
"check-content-gate": "bun scripts/check-content-gate.ts",
"check-asset-availability": "bun scripts/checkAssetAvailability.ts",
"check-pack-texture-layout": "bun scripts/check-pack-texture-layout.ts",
"check-recipes": "bun scripts/check-recipes.ts",
"check-doc-symbols": "bun scripts/check-doc-symbols.ts",
"check-hud-tokens": "bun scripts/check-hud-tokens.ts",
"check-street-rule-parity": "bun scripts/check-street-rule-parity.ts",
"check-types": "bun scripts/guard.ts 900 'bun scripts/run-stages.ts check-types'",
"check-types:sdk": "bun scripts/guard.ts 900 'bun scripts/run-stages.ts check-types:sdk'",
"build:registry": "bun scripts/build-registry.ts",
"stage-skills": "bun scripts/stage-skills.ts",
"check-stage-skills": "bun scripts/stage-skills.ts --check",
"test": "bun scripts/guard.ts 300 'bun scripts/ensure-ready.ts && bun test packages apps/dev apps/web apps/desktop scripts'",
"test:all": "bun scripts/guard.ts 900 'bun scripts/ensure-ready.ts && bun test packages apps/dev apps/web apps/desktop scripts'",
"games:clone": "bun scripts/ensure-games.ts",
"games:update": "bun scripts/ensure-games.ts --update",
"dev": "bun run --cwd apps/web dev",
"dev:runner": "bun run --cwd apps/dev dev",
"shoot": "bun scripts/guard.ts 420 'bun scripts/shoot-dev.ts'",
"drive": "bun scripts/guard.ts 900 'bun scripts/drive-dev.ts'",
"probe": "bun scripts/guard.ts 1200 'bun scripts/probe-commit.ts'",
"new:game": "bun packages/jgengine/src/cli/index.ts create",
"pr-shots": "bun scripts/pr-shots.ts",
"pr-video": "bun scripts/pr-video.ts",
"host": "bun scripts/host-game.ts",
"smoke": "bun scripts/guard.ts 600 'bun scripts/ensure-ready.ts && bun scripts/smoke-games.ts'"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@typescript/native-preview": "^7.0.0-dev.20260705.1",
"gifenc": "^1.0.3",
"playwright-core": "^1.50.0",
"ts-morph": "^28.0.0",
"typescript": "^5.9.3",
"user-attachments": "^2.0.2"
},
"packageManager": "bun@1.3.8"
}