@wenbin_wb/dsh-bridge 2.5.3 → 2.5.4
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/README.en.md +2 -2
- package/README.md +2 -2
- package/package.json +9 -3
package/README.en.md
CHANGED
|
@@ -103,8 +103,8 @@ npm install -g @deepseek-ai/dsh
|
|
|
103
103
|
# Install the latest version
|
|
104
104
|
dsh plugin --profile web add @wenbin_wb/dsh-bridge
|
|
105
105
|
|
|
106
|
-
# Or
|
|
107
|
-
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.
|
|
106
|
+
# Or install a specific version (e.g. 2.5.4)
|
|
107
|
+
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.4
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
> 💡 **No global install permission?** Use `npx`:
|
package/README.md
CHANGED
|
@@ -103,8 +103,8 @@ npm install -g @deepseek-ai/dsh
|
|
|
103
103
|
# 安装最新版
|
|
104
104
|
dsh plugin --profile web add @wenbin_wb/dsh-bridge
|
|
105
105
|
|
|
106
|
-
# 或指定版本(如 2.5.
|
|
107
|
-
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.
|
|
106
|
+
# 或指定版本(如 2.5.4)
|
|
107
|
+
dsh plugin --profile web add @wenbin_wb/dsh-bridge@2.5.4
|
|
108
108
|
```
|
|
109
109
|
|
|
110
110
|
> 💡 **没有全局安装权限?** 使用 `npx` 方式:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wenbin_wb/dsh-bridge",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"description": "手机扫码即可在移动端/公网继续用 DeepSeek Harness,人不在电脑前也能接着干。一键局域网二维码、Cloudflare 公网隧道、自建隧道与微信 / QQ / 飞书 / Telegram Bot(多工作区/会话持久化/媒体/卡片审批/流式输出),无需自己搭公网服务器。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -28,17 +28,23 @@
|
|
|
28
28
|
"test": "node --test test/*.test.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
32
31
|
"qrcode": "^1.5.3",
|
|
33
32
|
"ws": "^8.18.0"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
35
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
|
|
36
36
|
"@larksuiteoapi/node-sdk": "^1.73.0",
|
|
37
37
|
"esbuild": "^0.25.9",
|
|
38
38
|
"puppeteer-core": "^25.8.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@deepseek-ai/cordis": "^4.0.1"
|
|
41
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
42
|
+
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"@deepseek-ai/dsh-llm": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
42
48
|
},
|
|
43
49
|
"engines": {
|
|
44
50
|
"node": "^22.19.0 || >=24.0.0"
|