forked from nicobailon/pi-subagents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "pi-subagents",
"version": "0.13.0",
"description": "Pi extension for delegating tasks to subagents with chains, parallel execution, and TUI clarification",
"author": "Nico Bailon",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nicobailon/pi-subagents.git"
},
"homepage": "https://github.com/nicobailon/pi-subagents#readme",
"bugs": {
"url": "https://github.com/nicobailon/pi-subagents/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"subagents",
"ai",
"agents",
"cli"
],
"bin": {
"pi-subagents": "install.mjs"
},
"files": [
"*.ts",
"!*.test.ts",
"*.mjs",
"agents/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "npm run test:unit",
"test:unit": "node --experimental-strip-types --test test/unit/*.test.ts",
"test:integration": "node --experimental-transform-types --import ./test/support/register-loader.mjs --test test/integration/*.test.ts",
"test:e2e": "node --experimental-transform-types --import ./test/support/register-loader.mjs --test test/e2e/*.test.ts",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e"
},
"pi": {
"extensions": [
"./index.ts",
"./notify.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-agent-core": "*",
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@marcfargas/pi-test-harness": "^0.5.0",
"@mariozechner/pi-agent-core": "^0.65.0",
"@mariozechner/pi-ai": "^0.65.0",
"@mariozechner/pi-coding-agent": "^0.65.0"
}
}