-
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) · 969 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 969 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
28
29
30
31
32
{
"name": "void-gladiator",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"scripts": {
"preinstall": "corepack enable || echo 'Warning: corepack not available — install pnpm@10.32.1 manually'",
"dev": "nx run cli-game:dev",
"typecheck": "pnpm -r exec tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"graph": "nx graph",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset tag"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"nx": "^20.8.1",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}