-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 964 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
{
"name": "agent-pi",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Containerized Pi (pi.dev) DevOps agent that manages self-describing services, starting with the llm-router.",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.13.1",
"scripts": {
"pi": "pi",
"watch": "tsx src/watcher.ts",
"approve": "tsx bin/pi-approve.ts",
"eval": "tsx evals/run.ts",
"eval:injection": "tsx evals/injection-campaign.ts",
"approver:audit": "tsx evals/approver-audit.ts",
"audit:verify": "tsx bin/audit-verify.ts",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test tests/*.test.ts",
"verify:boundary": "bash scripts/verify-boundary.sh"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.80.10",
"tsx": "^4.19.2",
"typebox": "1.1.38",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}