-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"name": "criticalwindow",
"private": true,
"version": "0.3.5",
"homepage": "https://criticalwindow.org",
"repository": {
"type": "git",
"url": "https://github.com/chipmates/criticalwindow.git"
},
"bugs": {
"url": "https://github.com/chipmates/criticalwindow/issues"
},
"type": "module",
"description": "An open source strategy game about the AI race",
"license": "AGPL-3.0-only",
"engines": {
"node": ">=22.12",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.15.5",
"scripts": {
"dev": "vite",
"build": "pnpm typecheck && vite build",
"preview": "vite preview",
"typecheck": "tsc -p tsconfig.app.json --noEmit && tsc -p tsconfig.node.json --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"validate": "tsx scripts/validate-data.ts --strict-sources",
"check": "pnpm validate && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"check:full": "pnpm check && pnpm test:browser",
"schemas": "tsx scripts/generate-schemas.ts",
"simulate": "tsx scripts/simulate.ts",
"model-playtest": "tsx scripts/model-playtest.ts",
"print-kit": "tsx scripts/print-kit.ts",
"sources-md": "tsx scripts/generate-source-views.ts",
"golden": "tsx scripts/make-golden.ts",
"gif": "tsx scripts/capture-playthrough.ts",
"test:browser": "playwright test",
"audio": "tsx scripts/generate-audio.ts"
},
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fast-check": "^4.8.0",
"playwright": "^1.61.1",
"prettier": "^3.9.4",
"tsx": "^4.22.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.9"
}
}