dsh-mobile 0.3.3 → 0.3.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/CHANGELOG.md +8 -0
- package/README.en.md +10 -7
- package/README.md +9 -7
- package/cordis.patch.yml +3 -0
- package/lib/client.js +25 -6
- package/lib/client.js.map +1 -1
- package/lib/index.d.mts +1 -1
- package/lib/index.mjs +32 -10
- package/lib/index.mjs.map +1 -1
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-mobile",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "DeepSeek Harness 移动端适配与安全访问插件,支持局域网、远程连接、Android App 和手机浏览器。",
|
|
6
6
|
"type": "module",
|
|
@@ -99,10 +99,10 @@
|
|
|
99
99
|
"license": "Apache-2.0",
|
|
100
100
|
"peerDependencies": {
|
|
101
101
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
102
|
-
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.5 || 0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1",
|
|
103
|
-
"@deepseek-ai/dsh-commands": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1",
|
|
104
|
-
"@deepseek-ai/dsh-host-webserver": "0.1.0-rc.5 || 0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1",
|
|
105
|
-
"@deepseek-ai/dsh-llm": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1",
|
|
102
|
+
"@deepseek-ai/dsh-client-connection": "0.1.0-rc.5 || 0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1 || 0.1.2-alpha.2",
|
|
103
|
+
"@deepseek-ai/dsh-commands": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1 || 0.1.2-alpha.2",
|
|
104
|
+
"@deepseek-ai/dsh-host-webserver": "0.1.0-rc.5 || 0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1 || 0.1.2-alpha.2",
|
|
105
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1 || 0.1.2-alpha.2",
|
|
106
106
|
"react": "^18.2.0"
|
|
107
107
|
},
|
|
108
108
|
"peerDependenciesMeta": {
|
|
@@ -132,7 +132,9 @@
|
|
|
132
132
|
"selfsigned": "^5.5.0"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
|
-
"@deepseek-ai/cordis": "
|
|
135
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
136
|
+
"@deepseek-ai/cordis-plugin-include": "1.0.6",
|
|
137
|
+
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
|
|
136
138
|
"@deepseek-ai/dsh-commands": "^0.1.1-rc.2",
|
|
137
139
|
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
|
|
138
140
|
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|