-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.25 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.25 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
{
"name": "lifexlab-game-sandbox",
"version": "0.9.0",
"private": true,
"type": "module",
"scripts": {
"serve": "python3 -m http.server 8080",
"hooks:install": "node devtools/install-git-hooks.mjs",
"llm:preflight": "node dev/llm-preflight.mjs classify",
"llm:preflight:entry": "node dev/llm-preflight.mjs entry",
"llm:preflight:spawn-proof": "node dev/llm-preflight.mjs spawn-proof",
"llm:preflight:check": "node dev/llm-preflight.mjs check",
"llm:pipeline:check": "node tools/check-llm-pipeline.mjs",
"gate:blocking": "node devtools/run-blocking-gates.mjs",
"test": "node devtools/run-all-tests.mjs",
"test:quick": "node devtools/run-test-suite.mjs quick",
"test:determinism:matrix": "node devtools/determinism-seed-matrix.mjs",
"test:truth": "node devtools/run-test-suite.mjs truth",
"test:contracts": "node tests/test-llm-contract.mjs && node tests/test-slice-a-contract-scaffold.mjs",
"test:full": "node devtools/run-all-tests.mjs",
"test:smoke:e2e": "node tests/test-ui-foundation-e2e.mjs",
"test:session": "node devtools/run-verification-session.mjs",
"test:foundation:visual": "node devtools/run-foundation-visual-playwright.mjs"
},
"devDependencies": {
"playwright": "^1.58.2"
}
}