-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 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
{
"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 3.x 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"
},
"dependencies": {
"phaser": "^3.90.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/browser": "^3.2.4",
"playwright": "^1.58.2",
"tone": "^15.1.22",
"tsx": "^4.21.0",
"sharp": "^0.33.0",
"typescript": "^5.7.0",
"vite": "^6.1.0",
"vitest": "^3.0.0"
},
"license": "MIT"
}