-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pi-relay",
"version": "0.1.0",
"description": "Graph-based planning and execution engine for the pi coding agent. Lets the model submit a typed plan that runs as a DAG of action, verify, and terminal steps with deterministic verification gates.",
"type": "module",
"main": "src/pi-relay.ts",
"bin": {
"relay": "dist/cli/main.js"
},
"pi": {
"extensions": [
"src/pi-relay.ts"
]
},
"files": [
"src",
"dist",
"bundled",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli/main.js",
"prepare": "npm run build 2>/dev/null || true",
"prepublishOnly": "npm run build",
"check": "tsc --noEmit && biome check src test",
"format": "biome format --write src test",
"lint": "biome lint src test",
"test": "vitest --run",
"test:watch": "vitest"
},
"peerDependencies": {
"@mariozechner/pi-agent-core": "^0.69.0",
"@mariozechner/pi-ai": "^0.69.0",
"@mariozechner/pi-coding-agent": "^0.69.0",
"@mariozechner/pi-tui": "^0.69.0",
"typebox": "^1.1.24"
},
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@mariozechner/pi-agent-core": "^0.69.0",
"@mariozechner/pi-ai": "^0.69.0",
"@mariozechner/pi-coding-agent": "^0.69.0",
"@mariozechner/pi-tui": "^0.69.0",
"typebox": "^1.1.24",
"@types/node": "^24.3.0",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.6.0"
},
"author": "Ben",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benaiad/pi-relay.git"
},
"keywords": [
"pi",
"pi-extension",
"coding-agent",
"workflow",
"dag",
"planning",
"agent",
"automation"
],
"dependencies": {
"yaml": "^2.8.3"
}
}