dsh-api-dashboard 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +192 -0
- package/assets/icon.png +0 -0
- package/assets/icons/alibaba.svg +1 -0
- package/assets/icons/claude.svg +1 -0
- package/assets/icons/deepseek.svg +1 -0
- package/assets/icons/gemini.svg +1 -0
- package/assets/icons/groq.svg +1 -0
- package/assets/icons/icons.js +17 -0
- package/assets/icons/mistral.svg +1 -0
- package/assets/icons/moonshot.svg +1 -0
- package/assets/icons/ollama.svg +1 -0
- package/assets/icons/openai.svg +1 -0
- package/assets/icons/openrouter.svg +1 -0
- package/assets/icons/qwen.svg +1 -0
- package/assets/icons/relay.svg +1 -0
- package/assets/icons/siliconflow.svg +1 -0
- package/assets/icons/together.svg +1 -0
- package/assets/icons/zhipu.svg +1 -0
- package/client/client.js +1317 -0
- package/cordis.patch.yml +8 -0
- package/package.json +66 -0
- package/src/index.js +1202 -0
package/cordis.patch.yml
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-api-dashboard",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "多平台 API 余额/用量看板插件:官方真实品牌图标,三层 UI 直接在输入框下方显示当前选中平台余额与估算消耗,点开底部抽屉切换所有平台;支持国内外平台与自定义中转站自动探测余额(查不到标未开放);自定义安全/预警阈值,余额告警提醒;进入页面自动刷新",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dsh",
|
|
7
|
+
"dsh-plugin",
|
|
8
|
+
"deepseek-harness",
|
|
9
|
+
"balance",
|
|
10
|
+
"dashboard",
|
|
11
|
+
"api-balance"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "src/index.js",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./src/index.js",
|
|
17
|
+
"./client": "./client/client.js",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"src",
|
|
22
|
+
"client",
|
|
23
|
+
"cordis.patch.yml",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"assets"
|
|
27
|
+
],
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/133563825as-ai/dsh-api-dashboard.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/133563825as-ai/dsh-api-dashboard/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/133563825as-ai/dsh-api-dashboard#readme",
|
|
36
|
+
"dsh": {
|
|
37
|
+
"bundle": {
|
|
38
|
+
"patch": "./cordis.patch.yml"
|
|
39
|
+
},
|
|
40
|
+
"client": {
|
|
41
|
+
"platform": "web",
|
|
42
|
+
"inject": [
|
|
43
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
44
|
+
"@deepseek-ai/dsh-client-locale",
|
|
45
|
+
"@deepseek-ai/dsh-client-ui-conversation"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
51
|
+
"zod": "^4.4.3"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
55
|
+
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.6"
|
|
56
|
+
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"@deepseek-ai/cordis": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"@deepseek-ai/dsh-credentials": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"license": "MIT"
|
|
66
|
+
}
|