-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "pi-subagents",
"version": "1.4.0",
"description": "Serious subagent runtime for pi with interactive and background child agents",
"keywords": [
"pi-package"
],
"license": "MIT",
"author": "edxeth",
"repository": {
"type": "git",
"url": "https://github.com/edxeth/pi-subagents"
},
"type": "module",
"scripts": {
"test": "node --test test/test.ts test/system-prompt-mode.test.ts test/session-artifacts/index.test.ts test/subagents/sync.test.ts test/subagents/widget.test.ts test/live-test-guard.test.ts",
"test:e2e-live": "node scripts/test-e2e-live.mjs",
"test:e2e-live-blocking": "node scripts/test-e2e-live-blocking.mjs",
"test:e2e-live-mix-blocking": "node scripts/test-e2e-live-mix-blocking.mjs",
"test:e2e-live-deny-tools": "node scripts/test-e2e-live-deny-tools.mjs",
"test:e2e-live-extensions": "node scripts/test-e2e-live-extensions.mjs"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.68.1",
"@mariozechner/pi-tui": "^0.68.1",
"@sinclair/typebox": "^0.34.49"
},
"pi": {
"extensions": [
"./src/index.ts"
]
}
}