-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.36 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.36 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
{
"name": "tableau-card-engine",
"version": "0.1.0",
"description": "Tableau Card Engine (TCE) -- a modular game engine for building single-player tableau card games using Phaser 4 RC and TypeScript",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run --project unit && vitest run --project browser",
"monte-carlo": "tsx scripts/monte-carlo.ts --seeds 200 --seed-prefix mc-balance --maxTurns 25 --strategy greedy --out results/main-street-monte-carlo.json --csv-out results/main-street-monte-carlo.csv",
"replay": "tsx scripts/replay.ts",
"transcripts:export": "tsx scripts/export-transcripts.ts",
"save-load-smoke": "tsx scripts/save-load-smoke.ts",
"tf:generate": "scripts/tf-generate-synths.sh"
},
"dependencies": {
"phaser": "4.0.0-rc.7"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitest/browser": "^3.2.4",
"ajv": "^8.12.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"playwright": "^1.58.2",
"prettier": "^3.8.3",
"sharp": "^0.33.0",
"tone": "^15.1.22",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vite": "^6.1.0",
"vitest": "^3.0.0"
},
"license": "MIT"
}