-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 1.1 KB
/
package.json
File metadata and controls
19 lines (19 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "comptextv7-root",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "npm --prefix dashboard/app install && npm --prefix showcase/app install",
"build": "npm --prefix dashboard/app run build && npm --prefix showcase/app run build",
"typecheck": "npm --prefix dashboard/app run typecheck && npm --prefix showcase/app run typecheck",
"validate": "npm --prefix showcase/app run validate",
"test": "pytest",
"test:core": "pytest tests/test_core_foundation_ts.py -q",
"test:replay": "pytest tests/test_paper_replay_bench.py tests/test_agent_trace_replay.py tests/test_replay_continuity.py -q",
"layout": "python scripts/check_repo_layout.py",
"check": "npm run layout && npm run typecheck && npm run validate && npm run build && npm run test",
"generate:layered-admissibility": "python scripts/generate_layered_admissibility_artifact.py",
"generate:multi-family-admissibility": "python scripts/generate_multi_family_admissibility_artifact.py",
"generate:multi-family-svg": "python scripts/render_multi_family_admissibility_svg.py"
}
}