-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "@zachwill/pi-orchestrate",
"version": "0.9.2",
"type": "module",
"description": "Concurrent worker orchestration for Pi",
"files": ["extension/", "examples/", "README.md", "LICENSE"],
"keywords": ["pi-package", "pi", "workers", "orchestration"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zachwill/pi-orchestrate.git"
},
"homepage": "https://github.com/zachwill/pi-orchestrate#readme",
"bugs": {
"url": "https://github.com/zachwill/pi-orchestrate/issues"
},
"publishConfig": {
"access": "public"
},
"pi": {
"extensions": ["./extension/index.ts"]
},
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"test": "bun test"
},
"dependencies": {
"effect": "4.0.0-rc.111"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "^0.80.10",
"@earendil-works/pi-ai": "^0.80.10",
"@earendil-works/pi-coding-agent": "^0.80.10",
"@earendil-works/pi-tui": "^0.80.10",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-agent-core": "0.80.10",
"@earendil-works/pi-ai": "0.80.10",
"@earendil-works/pi-coding-agent": "0.80.10",
"@earendil-works/pi-tui": "0.80.10",
"@types/bun": "^1.3.14",
"@types/node": "^22.19.17",
"typebox": "^1.1.37",
"typescript": "^5.9.3"
}
}