-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.12 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": "@netandreus/pi-auto",
"version": "0.1.5",
"description": "Pi package: usage-aware model switching and load-balancing for pi-coding-agent.",
"type": "module",
"main": "dist/index.js",
"bin": {
"pi-auto-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepare": "yarn build",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.5.3",
"keywords": [
"pi-package",
"pi",
"mcp",
"ccusage",
"load-balancing",
"usage"
],
"license": "MIT",
"repository": "github:netandreus/pi-auto",
"homepage": "https://github.com/netandreus/pi-auto#readme",
"bugs": "https://github.com/netandreus/pi-auto/issues",
"files": [
"dist",
"skills",
"package.json",
"README.md",
"LICENSE",
"logo.png"
],
"publishConfig": {
"access": "public"
},
"pi": {
"skills": [
"./skills"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}