-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.38 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.38 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
{
"name": "open-party-lab",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"games:list": "node scripts/local-games.mjs list",
"games:sync-local": "node scripts/local-games.mjs sync-local",
"games:clear-local": "node scripts/local-games.mjs clear-local",
"games:clone-recommended": "node scripts/clone-recommended-games.mjs",
"screenshots:readme": "node scripts/capture-readme-screenshots.mjs",
"ai:controllers": "node scripts/virtual-controllers.mjs",
"postinstall": "node scripts/local-games.mjs ensure-generated",
"build:packages": "tsc -b packages/utils packages/ui-kit packages/game-core packages/protocol",
"watch:packages": "tsc -b packages/utils packages/ui-kit packages/game-core packages/protocol -w",
"dev:all": "powershell -ExecutionPolicy Bypass -File ./scripts/dev-all.ps1",
"dev:stop": "powershell -ExecutionPolicy Bypass -File ./scripts/stop-dev.ps1",
"dev:server": "npm run build:packages && npm run games:sync-local && npm run dev --workspace @open-party-lab/server",
"dev:host": "npm run build:packages && npm run games:sync-local && npm run dev --workspace @open-party-lab/host",
"dev:controller": "npm run build:packages && npm run games:sync-local && npm run dev --workspace @open-party-lab/controller",
"build": "npm run build:packages && npm run games:sync-local && npm run build --workspace @open-party-lab/server && npm run build --workspace @open-party-lab/host && npm run build --workspace @open-party-lab/controller",
"typecheck": "npm run build:packages && npm run games:sync-local && npm run typecheck --workspace @open-party-lab/utils && npm run typecheck --workspace @open-party-lab/ui-kit && npm run typecheck --workspace @open-party-lab/game-core && npm run typecheck --workspace @open-party-lab/protocol && npm run typecheck --workspace @open-party-lab/server && npm run typecheck --workspace @open-party-lab/host && npm run typecheck --workspace @open-party-lab/controller",
"verify": "npm run typecheck && npm run build",
"lint": "npm run typecheck"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.5",
"ws": "^8.21.0"
}
}