-
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) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 996 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@czottmann/pi-zai-api",
"version": "1.1.0",
"description": "Z.AI API provider extension for pi coding agent. Install with `pi install npm:@czottmann/pi-zai-api`.",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/czottmann/pi-zai-api"
},
"keywords": [
"pi",
"pi-extension",
"pi-package",
"zai",
"z.ai",
"glm",
"llm",
"coding-agent"
],
"scripts": {
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit",
"build": "tsc --noEmit"
},
"files": [
"extensions",
"README.md"
],
"pi": {
"extensions": [
"./extensions/zai-api.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.79.0",
"@earendil-works/pi-coding-agent": "^0.79.0",
"@types/node": "^20.0.0",
"typescript": "^5.9.3"
}
}