-
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) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 881 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": "claw-library",
"version": "0.1.0",
"description": "A 2D pixel-game museum UI for indexing, previewing, and monitoring OpenClaw assets and runtime flows.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"validate": "node scripts/validate-protocols.mjs",
"test:security": "node scripts/test-security-fixes.mjs",
"qa:movement": "node scripts/qa-movement-diagnostics.mjs",
"qa:visual": "node scripts/qa-visual-regression.mjs",
"qa:visual:baseline": "node scripts/qa-visual-regression.mjs --update-baseline"
},
"dependencies": {
"phaser": "^3.90.0"
},
"devDependencies": {
"pixelmatch": "^7.1.0",
"playwright": "^1.55.0",
"sharp": "^0.34.3",
"typescript": "^5.9.2",
"vite": "^7.1.3"
}
}