-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.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
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": "@tintinweb/pi-subagents",
"version": "0.19.0",
"description": "A pi extension that brings Claude Code-like sub-agents and workflow orchestration to pi — parallel execution, live widget, fleet view, custom agent types, mid-run steering, dynamic workflows, Claude Code compatibility, look and feel.",
"author": "tintinweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tintinweb/pi-subagents.git"
},
"homepage": "https://github.com/tintinweb/pi-subagents#readme",
"bugs": {
"url": "https://github.com/tintinweb/pi-subagents/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"subagent",
"agent",
"autonomous"
],
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.84.0",
"@earendil-works/pi-coding-agent": ">=0.84.0",
"@earendil-works/pi-tui": ">=0.84.0"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"croner": "^10.0.1",
"nanoid": "^5.1.16",
"typebox": "^1.3.7"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run e2e --reporter=verbose",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --fix src/ test/",
"check": "npm run lint && npm run typecheck && npm run test",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench",
"bench:ab": "node test/perf/ab.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@earendil-works/pi-ai": "0.84.2",
"@earendil-works/pi-coding-agent": "0.84.2",
"@earendil-works/pi-tui": "0.84.2",
"@types/node": "^25.5.0",
"@vitest/coverage-istanbul": "^4.1.10",
"typescript": "^6.0.0",
"vitest": "^4.0.18"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"video": "https://github.com/tintinweb/pi-subagents/raw/master/media/demo.mp4",
"image": "https://github.com/tintinweb/pi-subagents/raw/master/media/screenshot.png"
}
}