-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.5 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
{
"name": "dsh-opencode-go-pool",
"version": "0.1.10",
"description": "DeepSeek Harness plugin: multi-key pool with automatic quota failover and a usage dashboard for the OpenCode Go plan",
"license": "MIT",
"keywords": [
"deepseek-harness",
"dsh",
"plugin",
"opencode",
"opencode-go",
"quota",
"usage",
"failover",
"api-key-pool"
],
"type": "module",
"main": "./index.js",
"engines": {
"node": ">=20"
},
"files": [
"index.js",
"pool.js",
"usage.js",
"models.js",
"typert.host.js",
"client.js",
"README.md",
"LICENSE"
],
"exports": {
".": "./index.js",
"./client": "./client.js",
"./typert": "./typert.host.js",
"./package.json": "./package.json"
},
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-api-remotes",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-locale"
],
"platform": "web"
}
},
"dependencies": {
"zod": "^4.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.1",
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.5",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.5",
"@deepseek-ai/dsh-settings": "^0.1.0-rc.5",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.5",
"@deepseek-ai/dsh-llm-pi-ai": "^0.1.0-rc.5",
"@deepseek-ai/dsh-home-paths": "^0.1.0-rc.5",
"@earendil-works/pi-ai": "^0.82.1"
}
}