dsh-mobile 0.2.2 → 0.3.1
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 +15 -0
- package/README.en.md +9 -4
- package/README.md +15 -10
- package/assets/brand/app-icon-master.png +0 -0
- package/cordis.patch.yml +1 -1
- package/lib/client.js +436 -113
- package/lib/client.js.map +1 -1
- package/lib/index.d.mts +16 -3
- package/lib/index.mjs +619 -32
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-mobile",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "DeepSeek Harness 移动端适配与安全访问插件,支持局域网、远程连接、Android App 和手机浏览器。",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"platform": "web",
|
|
46
46
|
"inject": [
|
|
47
47
|
"@deepseek-ai/dsh-client-connection",
|
|
48
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
49
48
|
"@deepseek-ai/dsh-client-ui-sidebar"
|
|
50
49
|
],
|
|
51
50
|
"immediately": true
|
|
@@ -96,15 +95,19 @@
|
|
|
96
95
|
"license": "Apache-2.0",
|
|
97
96
|
"peerDependencies": {
|
|
98
97
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
99
|
-
"@deepseek-ai/dsh-
|
|
100
|
-
"@deepseek-ai/dsh-
|
|
101
|
-
"@deepseek-ai/dsh-
|
|
98
|
+
"@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",
|
|
99
|
+
"@deepseek-ai/dsh-commands": "0.1.0-rc.6 || 0.1.0-rc.7 || 0.1.1-rc.2 || 0.1.2-alpha.1",
|
|
100
|
+
"@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",
|
|
101
|
+
"@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
102
|
"react": "^18.2.0"
|
|
103
103
|
},
|
|
104
104
|
"peerDependenciesMeta": {
|
|
105
105
|
"@deepseek-ai/cordis": {
|
|
106
106
|
"optional": true
|
|
107
107
|
},
|
|
108
|
+
"@deepseek-ai/dsh-client-connection": {
|
|
109
|
+
"optional": true
|
|
110
|
+
},
|
|
108
111
|
"@deepseek-ai/dsh-commands": {
|
|
109
112
|
"optional": true
|
|
110
113
|
},
|