-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 757 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 757 Bytes
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
{
"name": "spindle",
"version": "0.3.0",
"description": "Async agent orchestration extension for pi",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@mariozechner/pi-agent-core": "^0.58.1",
"@mariozechner/pi-ai": "^0.58.1",
"@mariozechner/pi-coding-agent": "^0.58.1",
"@mariozechner/pi-tui": "^0.58.1",
"@modelcontextprotocol/sdk": "^1.28.0",
"@sinclair/typebox": "^0.34.48"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"license": "MIT",
"pi": {
"extensions": [
"./src"
],
"skills": [
"./skills"
]
},
"keywords": [
"pi-package"
]
}