-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 929 Bytes
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
{
"name": "subzerodev-gameoflife-content",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Life in the Fast Lane — the campaign sources for the simulation kind, and the portable JSON published from them. Authored against the spec set in docs/docs/games/.",
"scripts": {
"setup": "npm --prefix engine/src/engine ci && npm --prefix engine/src/engine run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"export:content": "tsx scripts/export-content.ts",
"check:clean": "node scripts/check-clean.mjs",
"check": "npm run typecheck && npm run test && npm run export:content && npm run check:clean"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/node": "^24.13.3",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@the-running-dev/game-engine": "file:engine/src/engine"
}
}