-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 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
{
"name": "@inv1x/pi-subagents",
"version": "0.6.0",
"description": "Focused subagents and durable programmatic workflows for Pi",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Inv1x/pi-subagents.git"
},
"homepage": "https://github.com/Inv1x/pi-subagents#readme",
"bugs": {
"url": "https://github.com/Inv1x/pi-subagents/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.19.0"
},
"keywords": [
"pi-package",
"pi-coding-agent",
"subagents",
"workflows",
"orchestration"
],
"files": [
"src",
"agents",
"workflows",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": "./src/index.ts",
"./workflow": "./src/workflow-api.ts"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"dependencies": {
"jiti": "^2.7.0"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"scripts": {
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "node --import jiti/register --test test/*.test.ts",
"changeset": "changeset",
"release:status": "changeset status",
"release:version": "changeset version && npm install --package-lock-only --ignore-scripts --no-audit --no-fund",
"prepack": "npm run check && npm run typecheck && npm test"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@changesets/cli": "2.31.1",
"@earendil-works/pi-agent-core": "0.84.1",
"@earendil-works/pi-ai": "0.84.1",
"@earendil-works/pi-coding-agent": "0.84.1",
"@earendil-works/pi-tui": "0.84.1",
"@types/node": "^26.1.1",
"typebox": "1.3.7",
"typescript": "^7.0.2"
}
}