dsh-mobile 0.1.0-alpha.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/package.json ADDED
@@ -0,0 +1,117 @@
1
+ {
2
+ "name": "dsh-mobile",
3
+ "version": "0.1.0-alpha.1",
4
+ "private": false,
5
+ "description": "Authenticated Android and mobile-browser access for the stock DeepSeek Harness Web UI",
6
+ "type": "module",
7
+ "bin": {
8
+ "dsh-mobile": "lib/cli.js"
9
+ },
10
+ "main": "./lib/index.mjs",
11
+ "types": "./lib/index.d.mts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./lib/index.d.mts",
15
+ "default": "./lib/index.mjs"
16
+ },
17
+ "./client": {
18
+ "default": "./lib/client.js"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "files": [
23
+ "lib/**/*.mjs",
24
+ "lib/cli.js",
25
+ "lib/**/*.d.mts",
26
+ "lib/client.js",
27
+ "lib/client.js.map",
28
+ "cordis.patch.yml",
29
+ "README.md",
30
+ "README.zh.md",
31
+ "assets/brand/*.png",
32
+ "LICENSE",
33
+ "SECURITY.md"
34
+ ],
35
+ "dsh": {
36
+ "bundle": {
37
+ "patch": "./cordis.patch.yml"
38
+ },
39
+ "client": {
40
+ "platform": "web",
41
+ "inject": [
42
+ "@deepseek-ai/dsh-client-ui-sidebar"
43
+ ],
44
+ "immediately": true
45
+ }
46
+ },
47
+ "scripts": {
48
+ "build": "tsdown",
49
+ "check:mobile-release": "node ./scripts/check-mobile-release.mjs",
50
+ "check:release-tag": "node ./scripts/check-release-version.mjs --tag-env",
51
+ "check:version": "node ./scripts/check-release-version.mjs",
52
+ "clean": "node ./scripts/clean.mjs",
53
+ "lint": "tsc --noEmit",
54
+ "test": "vitest run",
55
+ "test:watch": "vitest",
56
+ "typecheck": "tsc --noEmit",
57
+ "prepack": "npm run check:version && npm run build",
58
+ "verify": "npm run check:version && npm run check:mobile-release && npm run typecheck && npm run test && npm run build && npm pack --dry-run"
59
+ },
60
+ "engines": {
61
+ "node": "^22.19.0 || >=24.0.0"
62
+ },
63
+ "repository": {
64
+ "type": "git",
65
+ "url": "git+https://github.com/saya-ch/dsh-mobile.git"
66
+ },
67
+ "bugs": {
68
+ "url": "https://github.com/saya-ch/dsh-mobile/issues"
69
+ },
70
+ "homepage": "https://github.com/saya-ch/dsh-mobile#readme",
71
+ "publishConfig": {
72
+ "access": "public"
73
+ },
74
+ "keywords": [
75
+ "deepseek-harness",
76
+ "dsh",
77
+ "dsh-plugin",
78
+ "plugin",
79
+ "android",
80
+ "lan",
81
+ "mobile",
82
+ "https"
83
+ ],
84
+ "license": "Apache-2.0",
85
+ "peerDependencies": {
86
+ "@deepseek-ai/cordis": "^4.0.1",
87
+ "@deepseek-ai/dsh-host-webserver": ">=0.1.0-rc.5 <0.1.0",
88
+ "react": "^18.2.0"
89
+ },
90
+ "peerDependenciesMeta": {
91
+ "@deepseek-ai/cordis": {
92
+ "optional": true
93
+ },
94
+ "@deepseek-ai/dsh-host-webserver": {
95
+ "optional": true
96
+ },
97
+ "react": {
98
+ "optional": true
99
+ }
100
+ },
101
+ "dependencies": {
102
+ "@deepseek-ai/schemastery": "^3.18.1",
103
+ "selfsigned": "^5.5.0"
104
+ },
105
+ "devDependencies": {
106
+ "@deepseek-ai/cordis": "^4.0.1",
107
+ "@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.6",
108
+ "@types/js-yaml": "^4.0.9",
109
+ "@types/node": "^24.3.0",
110
+ "@types/react": "~18.3.1",
111
+ "js-yaml": "^4.3.1",
112
+ "react": "^18.2.0",
113
+ "tsdown": "^0.22.14",
114
+ "typescript": "^6.0.3",
115
+ "vitest": "^4.1.10"
116
+ }
117
+ }