-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "pi-agenticoding",
"version": "0.3.0",
"type": "module",
"description": "Context management primitives for the pi coding agent — spawn, notebook, handoff",
"license": "MIT",
"keywords": [
"pi-package"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agenticoding/pi-agenticoding.git"
},
"engines": {
"node": ">=22"
},
"peerDependencies": {
"@earendil-works/pi-ai": "^0.78.1",
"@earendil-works/pi-coding-agent": "^0.78.1",
"@earendil-works/pi-tui": "^0.78.1",
"typebox": "^1.2.2"
},
"scripts": {
"test": "node ./scripts/run-node-test.mjs tests/unit/**/*.test.ts",
"test:e2e": "node ./scripts/run-node-test.mjs tests/e2e/**/*.test.ts",
"test:all": "npm run test && npm run test:e2e",
"test:snapshots:check": "node ./scripts/run-node-test.mjs tests/unit/render-snapshots.test.ts",
"test:snapshots:update": "node ./scripts/run-node-test.mjs --update-snapshots tests/unit/render-snapshots.test.ts"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.78.1",
"@earendil-works/pi-coding-agent": "^0.78.1",
"@earendil-works/pi-tui": "^0.78.1",
"fast-check": "^4.8.0",
"typebox": "^1.2.2",
"typescript": "^6.0.3"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}