dsh-mobile 0.3.2 → 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 +19 -0
- package/FUNNEL_THIRD_PARTY_LICENSES.txt +2551 -0
- package/README.en.md +22 -10
- package/README.md +19 -8
- package/SECURITY.md +6 -3
- package/THIRD_PARTY_NOTICES.md +6 -2
- package/bin/dsh-mobile-funnel-win32-x64.exe +0 -0
- package/cordis.patch.yml +3 -0
- package/lib/cli.js +4 -1
- package/lib/cli.js.map +1 -0
- package/lib/client.js +715 -58
- package/lib/client.js.map +1 -1
- package/lib/index.d.mts +228 -3
- package/lib/index.mjs +1966 -396
- package/lib/index.mjs.map +1 -0
- package/package.json +17 -11
- package/assets/brand/app-icon-master.png +0 -0
- package/assets/brand/repository-hero.png +0 -0
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",
|
|
@@ -24,16 +24,15 @@
|
|
|
24
24
|
"lib/cli.js",
|
|
25
25
|
"lib/**/*.d.mts",
|
|
26
26
|
"lib/client.js",
|
|
27
|
-
"lib/client.js.map",
|
|
28
27
|
"lib/mobile-layout.js",
|
|
29
|
-
"lib
|
|
28
|
+
"lib/**/*.map",
|
|
30
29
|
"bin/dsh-mobile-funnel-win32-x64.exe",
|
|
31
30
|
"cordis.patch.yml",
|
|
32
31
|
"README.md",
|
|
33
32
|
"README.en.md",
|
|
34
33
|
"CHANGELOG.md",
|
|
35
|
-
"assets/brand/*.png",
|
|
36
34
|
"LICENSE",
|
|
35
|
+
"FUNNEL_THIRD_PARTY_LICENSES.txt",
|
|
37
36
|
"SECURITY.md",
|
|
38
37
|
"THIRD_PARTY_NOTICES.md"
|
|
39
38
|
],
|
|
@@ -53,17 +52,20 @@
|
|
|
53
52
|
"scripts": {
|
|
54
53
|
"build": "tsdown",
|
|
55
54
|
"build:funnel-host": "node ./scripts/build-funnel-host.mjs",
|
|
55
|
+
"check:funnel-licenses": "node ./scripts/funnel-third-party-licenses.mjs",
|
|
56
|
+
"check:funnel-licenses:full": "node ./scripts/funnel-third-party-licenses.mjs --full-check",
|
|
56
57
|
"check:mobile-release": "node ./scripts/check-mobile-release.mjs",
|
|
57
58
|
"check:dsh-compatibility": "node ./scripts/check-dsh-compatibility.mjs",
|
|
58
59
|
"check:release-tag": "node ./scripts/check-release-version.mjs --tag-env",
|
|
59
60
|
"check:version": "node ./scripts/check-release-version.mjs",
|
|
60
61
|
"clean": "node ./scripts/clean.mjs",
|
|
62
|
+
"generate:funnel-licenses": "node ./scripts/funnel-third-party-licenses.mjs --write",
|
|
61
63
|
"lint": "tsc --noEmit",
|
|
62
64
|
"test": "vitest run --pool=threads --maxWorkers=1",
|
|
63
65
|
"test:watch": "vitest",
|
|
64
66
|
"typecheck": "tsc --noEmit",
|
|
65
|
-
"prepack": "npm run check:version && npm run build",
|
|
66
|
-
"verify": "npm run check:version && npm run check:mobile-release && npm run typecheck && npm run test && npm run build && npm pack --dry-run"
|
|
67
|
+
"prepack": "npm run check:version && npm run check:funnel-licenses && npm run build",
|
|
68
|
+
"verify": "npm run check:version && npm run check:funnel-licenses && npm run check:mobile-release && npm run typecheck && npm run test && npm run build && npm pack --dry-run"
|
|
67
69
|
},
|
|
68
70
|
"engines": {
|
|
69
71
|
"node": "^22.19.0 || >=24.0.0"
|
|
@@ -89,16 +91,18 @@
|
|
|
89
91
|
"remote-access",
|
|
90
92
|
"tailscale",
|
|
91
93
|
"cpolar",
|
|
94
|
+
"frp",
|
|
95
|
+
"self-hosted",
|
|
92
96
|
"mobile",
|
|
93
97
|
"https"
|
|
94
98
|
],
|
|
95
99
|
"license": "Apache-2.0",
|
|
96
100
|
"peerDependencies": {
|
|
97
101
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
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
|
+
"@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",
|
|
102
106
|
"react": "^18.2.0"
|
|
103
107
|
},
|
|
104
108
|
"peerDependenciesMeta": {
|
|
@@ -128,7 +132,9 @@
|
|
|
128
132
|
"selfsigned": "^5.5.0"
|
|
129
133
|
},
|
|
130
134
|
"devDependencies": {
|
|
131
|
-
"@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",
|
|
132
138
|
"@deepseek-ai/dsh-commands": "^0.1.1-rc.2",
|
|
133
139
|
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
|
|
134
140
|
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
Binary file
|
|
Binary file
|