-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 986 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
33
34
35
{
"name": "g52",
"version": "0.1.0",
"private": true,
"description": "G_5.2 — structured inquiry system for a versioned authored persona",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:operator-path": "node --test scripts/operator-support.test.mjs",
"validate:canon": "tsx scripts/validate-canon.ts",
"validate:witness": "tsx scripts/validate-witness.ts",
"validate-canon": "tsx scripts/validate-canon.ts",
"evals": "tsx scripts/run-evals.ts",
"dashboard": "tsx apps/dashboard/src/server.ts",
"smoke": "tsx scripts/smoke-tests.ts"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.7.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.0.0",
"dependencies": {
"yaml": "^2.8.3",
"zod": "^4.3.6"
}
}