-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 795 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
{
"name": "loopwright",
"version": "0.1.0",
"private": true,
"description": "A model-agnostic actor-critic loop engine for orchestrating autonomous coding agents",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"demo": "tsx src/demo.ts",
"start": "tsx src/run.ts",
"trace": "tsx src/trace.ts",
"serve": "tsx src/server/index.ts",
"build:sidecar": "node scripts/build-sidecar.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.79.3",
"@earendil-works/pi-ai": "^0.79.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.19.21",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.1.8"
}
}