-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.51 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "opus-nx",
"version": "0.1.0",
"private": true,
"description": "Persistent, peer-level AI orchestrator powered by Claude Opus 4.6",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean && node -e \"require('node:fs').rmSync('node_modules',{recursive:true,force:true})\"",
"check:migrations": "tsx scripts/check-migration-drift.ts",
"db:migrate": "pnpm --filter @opus-nx/db migrate",
"db:migrate:local": "pnpm --filter @opus-nx/db migrate:local",
"db:migrate:linked": "pnpm --filter @opus-nx/db migrate:linked",
"db:generate": "pnpm --filter @opus-nx/db generate",
"setup": "tsx scripts/bootstrap.ts",
"setup:verify": "tsx scripts/test-connections.ts",
"eval:reasoning": "python3 agents/scripts/run_reasoning_eval.py",
"eval:live": "cd agents && python3 -m scripts.run_reasoning_eval_live",
"eval:live:dry": "cd agents && python3 -m scripts.run_reasoning_eval_live --dry-run",
"eval:retrieval": "cd agents && python3 -m scripts.eval_retrieval",
"test": "pnpm check:migrations && turbo test"
},
"devDependencies": {
"@types/node": "^22.19.11",
"dotenv": "17.2.4",
"tsx": "4.21.0",
"turbo": "^2.8.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"axios": ">=1.13.5",
"tar": ">=7.5.7",
"fast-xml-parser": ">=5.3.4"
}
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.0.0"
}
}