dsh-mobile 0.3.8 → 0.3.9
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 +21 -27
- package/README.md +23 -29
- package/SECURITY.md +2 -1
- package/docs/SELF_HOSTED_FRP.md +75 -0
- package/lib/client.js +544 -44
- package/lib/client.js.map +1 -1
- package/lib/index.d.mts +28 -2
- package/lib/index.mjs +1353 -37
- package/lib/index.mjs.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-mobile",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "DeepSeek Harness 移动端适配与安全访问插件,支持局域网、远程连接、Android App 和手机浏览器。",
|
|
6
6
|
"type": "module",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"README.md",
|
|
32
32
|
"README.en.md",
|
|
33
33
|
"CHANGELOG.md",
|
|
34
|
+
"docs/SELF_HOSTED_FRP.md",
|
|
34
35
|
"LICENSE",
|
|
35
36
|
"FUNNEL_THIRD_PARTY_LICENSES.txt",
|
|
36
37
|
"SECURITY.md",
|
|
@@ -99,10 +100,10 @@
|
|
|
99
100
|
"license": "Apache-2.0",
|
|
100
101
|
"peerDependencies": {
|
|
101
102
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
102
|
-
"@deepseek-ai/dsh-client-connection": "^0.1.0-rc.5 || ^0.1.1-0 || ^0.1.2-0",
|
|
103
|
-
"@deepseek-ai/dsh-commands": "^0.1.0-rc.6 || ^0.1.1-0 || ^0.1.2-0",
|
|
104
|
-
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.5 || ^0.1.1-0 || ^0.1.2-0",
|
|
105
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6 || ^0.1.1-0 || ^0.1.2-0",
|
|
103
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.0-rc.5 || ^0.1.1-0 || ^0.1.2-0 || ^0.1.3-0",
|
|
104
|
+
"@deepseek-ai/dsh-commands": "^0.1.0-rc.6 || ^0.1.1-0 || ^0.1.2-0 || ^0.1.3-0",
|
|
105
|
+
"@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.5 || ^0.1.1-0 || ^0.1.2-0 || ^0.1.3-0",
|
|
106
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6 || ^0.1.1-0 || ^0.1.2-0 || ^0.1.3-0",
|
|
106
107
|
"react": "^18.2.0"
|
|
107
108
|
},
|
|
108
109
|
"peerDependenciesMeta": {
|