-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "@tintinweb/pi-subagents",
"version": "0.13.0",
"description": "A pi extension extension that brings smart Claude Code-style autonomous sub-agents to pi.",
"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"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"subagent",
"agent",
"autonomous"
],
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.74.0",
"@earendil-works/pi-coding-agent": ">=0.74.0",
"@earendil-works/pi-tui": ">=0.74.0"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"croner": "^10.0.1",
"nanoid": "^5.0.0"
},
"scripts": {
"build": "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/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^25.5.0",
"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"
}
}