-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "pi-agenticoding",
"version": "0.4.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.19.0"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"scripts": {
"prepare": "husky",
"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",
"test:compat:floor": "node ./scripts/test-compat-floor.mjs",
"test:compat:current": "node ./scripts/test-compat-current.mjs",
"test:package-host": "node ./scripts/test-package-host.mjs",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@earendil-works/pi-ai": "0.80.8",
"@earendil-works/pi-coding-agent": "0.80.8",
"@earendil-works/pi-tui": "0.80.8",
"@types/node": "^25.9.3",
"audit-ci": "^7.1.0",
"fast-check": "^4.8.0",
"husky": "^9.1.7",
"typebox": "1.1.38",
"typescript": "^6.0.3"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}