-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.68 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
{
"name": "dsh-3301",
"version": "0.2.0",
"description": "dsh-3301 — LAN gate for a DeepSeek Harness (DSH) Web GUI: keeps DSH loopback-only, exposes a password-protected entry (HTTP + WebSocket) with a settings card, and stores the password only as a scrypt verifier. Ships as a DSH plugin and as a standalone CLI.",
"type": "module",
"main": "lib/plugin.js",
"exports": {
".": {
"default": "./lib/plugin.js"
},
"./plugin": {
"default": "./lib/plugin.js"
},
"./client": "./lib/client.js",
"./standalone": {
"default": "./lib/index.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"bin": {
"dsh-3301": "./lib/cli.js"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-settings-plugins"
],
"platform": "web"
}
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"keywords": [
"3301",
"dsh-3301",
"dsh",
"deepseek-harness",
"dsh-plugin",
"cordis",
"proxy",
"reverse-proxy",
"lan",
"gate",
"websocket",
"scrypt"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Aztech-Lab/dsh-3301.git"
},
"homepage": "https://github.com/Aztech-Lab/dsh-3301#readme",
"bugs": {
"url": "https://github.com/Aztech-Lab/dsh-3301/issues"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.2",
"@deepseek-ai/schemastery": "^3.18.2"
},
"engines": {
"dsh": ">=1.1",
"node": ">=18"
}
}