-
Notifications
You must be signed in to change notification settings - Fork 430
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "pi-subagents",
"version": "0.37.2",
"description": "Pi extension for delegating tasks to subagents with chains, parallel execution, and TUI clarification",
"author": "Nico Bailon",
"license": "MIT",
"type": "module",
"exports": {
".": "./index.ts",
"./background-work": "./src/api/background-work.ts",
"./delegation": "./src/api/delegation.ts",
"./capability-ceiling": "./src/api/capability-ceiling.ts",
"./preflight": "./src/api/preflight.ts"
},
"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": [
"index.ts",
"src/**/*.ts",
"*.mjs",
"agents/",
"skills/**/*",
"prompts/**/*",
"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-strip-types --import ./test/support/register-loader.mjs --test test/integration/*.test.ts",
"test:e2e": "node --experimental-strip-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"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-ai": ">=0.80.0",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-agent-core": {
"optional": true
},
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
}
},
"dependencies": {
"jiti": "2.7.0",
"typebox": "1.1.38",
"yaml": "2.8.3"
},
"devDependencies": {
"@earendil-works/pi-agent-core": "0.81.0",
"@earendil-works/pi-ai": "0.81.0",
"@earendil-works/pi-coding-agent": "0.81.0",
"@earendil-works/pi-tui": "0.81.0"
}
}