-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dsh-pocket",
"description": "把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。",
"type": "module",
"main": "lib/index.js",
"bin": {
"dsh-pocket": "bin/dsh-pocket.mjs"
},
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": "./client/client.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"lib",
"client",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"scripts": {
"build:client": "node client/build.mjs",
"test": "node --test --test-timeout=30000 \"test/*.test.js\""
},
"dependencies": {
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"esbuild": "^0.25.9",
"ws": "^8.18.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"engines": {
"node": ">=22"
},
"license": "GPL-2.0",
"keywords": [
"deepseek-harness",
"dsh",
"dsh-plugin",
"mobile",
"remote",
"qr",
"tunnel"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-layout",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-session-log-export"
],
"platform": "web"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaobeichen/dsh-pocket.git"
},
"bugs": {
"url": "https://github.com/shaobeichen/dsh-pocket/issues"
},
"homepage": "https://github.com/shaobeichen/dsh-pocket",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"version": "1.13.4"
}