@dsh-plugins/dsh-llm-hub 0.7.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/CHANGELOG.md +374 -0
- package/LICENSE +21 -0
- package/README.en.md +266 -0
- package/README.md +260 -0
- package/cordis.patch.yml +55 -0
- package/lib/client.js +862 -0
- package/lib/harness.js +436 -0
- package/lib/index.js +1481 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dsh-plugins/dsh-llm-hub",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "给 DSH 模型页补上官方适配器缺的那半:网关可达性探测、模型目录拉取、DeepSeek 余额常驻,以及 MiniMax / 智谱 / Moonshot / StepFun 的余额与配额卡;再把本机装好的 codex / claude / agy 注册成子代理(装了才出现)。零运行时依赖,不改动 DSH 安装。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"default": "./lib/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./client": {
|
|
12
|
+
"default": "./lib/client.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"dsh": {
|
|
17
|
+
"bundle": {
|
|
18
|
+
"patch": "./cordis.patch.yml"
|
|
19
|
+
},
|
|
20
|
+
"client": {
|
|
21
|
+
"inject": [
|
|
22
|
+
"@deepseek-ai/dsh-client-locale",
|
|
23
|
+
"@deepseek-ai/dsh-client-ui-slots"
|
|
24
|
+
],
|
|
25
|
+
"platform": "web"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"deploy": "rsync -av --delete lib/ ~/.dsh/profiles/web/node_modules/@webkubor/dsh-llm-hub/lib/ && rsync -av package.json cordis.patch.yml README.md README.en.md LICENSE ~/.dsh/profiles/web/node_modules/@webkubor/dsh-llm-hub/",
|
|
30
|
+
"preview": "npm run deploy && open http://127.0.0.1:3080",
|
|
31
|
+
"check": "for f in lib/*.js; do node --check \"$f\" || exit 1; done",
|
|
32
|
+
"test": "node --test"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"dsh",
|
|
36
|
+
"dsh-plugin",
|
|
37
|
+
"deepseek-harness",
|
|
38
|
+
"deepseek",
|
|
39
|
+
"model-discovery",
|
|
40
|
+
"balance",
|
|
41
|
+
"llm",
|
|
42
|
+
"model-availability",
|
|
43
|
+
"availability",
|
|
44
|
+
"subagent",
|
|
45
|
+
"codex",
|
|
46
|
+
"claude-code",
|
|
47
|
+
"antigravity",
|
|
48
|
+
"harness"
|
|
49
|
+
],
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/webkubor/dsh-llm-hub.git"
|
|
54
|
+
},
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/webkubor/dsh-llm-hub/issues"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://github.com/webkubor/dsh-llm-hub#readme",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"CHANGELOG.md",
|
|
64
|
+
"LICENSE",
|
|
65
|
+
"README.en.md",
|
|
66
|
+
"README.md",
|
|
67
|
+
"cordis.patch.yml",
|
|
68
|
+
"lib"
|
|
69
|
+
]
|
|
70
|
+
}
|