-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 902 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
{
"name": "vgtw",
"version": "0.1.2",
"private": true,
"description": "Video Game Testing Workflow — a game-agnostic continuous audit-loop framework (detect → diagnose → fix → re-measure). Thirteen Days is adapter #1.",
"type": "module",
"exports": {
"./core/*": "./core/*.ts",
"./package.json": "./package.json"
},
"bin": {
"vgtw-audit": "core/audit.ts",
"vgtw-board": "core/healthboard.ts"
},
"scripts": {
"build": "tsc --noEmit",
"audit": "tsx core/audit.ts",
"board": "tsx core/healthboard.ts",
"example": "tsx core/audit.ts --dim=smoke --dims-dir=adapters/example/dims",
"example:board": "tsx core/healthboard.ts --dims-dir=adapters/example/dims",
"test": "npm run build && npm run example && npm run example:board"
},
"devDependencies": {
"@types/node": "^25.9.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}