-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.51 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
{
"name": "subagent-isolation",
"version": "0.4.1",
"description": "A pi extension that delegates tasks to a specialized subagent in an isolated pi process.",
"license": "MIT",
"author": "Wolido",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"logo.svg",
"README.md",
"README.en.md",
"ADVANCED.md",
"ADVANCED.en.md",
"LICENSE",
"examples/pi",
"examples/README.md",
"examples/README.en.md"
],
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"subagent",
"isolation"
],
"homepage": "https://github.com/Wolido/subagent-isolation#readme",
"repository": {
"type": "git",
"url": "https://github.com/Wolido/subagent-isolation.git"
},
"bugs": {
"url": "https://github.com/Wolido/subagent-isolation/issues"
},
"publishConfig": {
"access": "public",
"provenance": false
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@types/node": "^20.0.0",
"typebox": "*",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20.0.0"
},
"pi": {
"extensions": [
"./src/index.ts"
]
}
}