-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"name": "@getpipher/armory-fleet",
"version": "1.4.0",
"private": false,
"description": "The armory suite's subagent orchestrator for the pi coding agent — a cross-harness, superpowers-native fleet where every agent is armory-native from birth.",
"license": "MIT",
"type": "module",
"author": "RECTOR (https://github.com/rz1989s)",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"pi-coding-agent",
"subagents",
"ai-agents",
"multi-agent",
"orchestration",
"agent-orchestration",
"claude-code",
"superpowers",
"armory",
"cross-harness"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getpipher/armory-fleet.git"
},
"homepage": "https://github.com/getpipher/armory-fleet#readme",
"bugs": {
"url": "https://github.com/getpipher/armory-fleet/issues"
},
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"agents",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test:run": "node --import tsx --test --test-timeout=30000 test/*.test.mts"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.84.4",
"@earendil-works/pi-coding-agent": "^0.84.4",
"@earendil-works/pi-tui": "^0.84.4",
"@getpipher/armory-memory": "^0.1.1",
"@getpipher/armory-todo": "^0.5.4",
"@getpipher/vision": "^0.5.3",
"typebox": "^1.1.38",
"yaml": "^2.5.0"
},
"devDependencies": {
"@getpipher/armory-gateway": "file:../armory-gateway",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}