-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.73 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
{
"name": "@xgone/dsh-netshell",
"version": "0.6.1",
"description": "Remote SSH terminal for the DeepSeek Harness web UI: main-area terminal tab, dangerous-command guard (open/guarded/locked), confirmation workflow, and model tools (netshell_servers / netshell_run). Passwords live in the DSH encrypted credential store and never pass through AI sessions.",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.en.md",
"UPDATES.md",
"TECHNICAL.md",
"DYNAMIC.md",
"DESIGN.zh.md",
"CHANGELOG.md",
"assets",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.mjs",
"check": "node --check lib/index.js && node --check lib/client.js",
"test": "pnpm build && pnpm check && node test/smoke.mjs && node test/ask-flow.mjs && node test/terminal-render.mjs",
"prepublishOnly": "pnpm test"
},
"license": "MIT",
"author": "xgone <xl.gone@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/xgone/dsh-netshell.git"
},
"bugs": {
"url": "https://github.com/xgone/dsh-netshell/issues"
},
"homepage": "https://github.com/xgone/dsh-netshell#readme",
"keywords": [
"dsh",
"deepseek-harness",
"plugin",
"ssh",
"terminal",
"remote",
"guard",
"devtools"
],
"dependencies": {
"@deepseek-ai/dsh-tools": "^0.1.2-alpha.4"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web",
"immediately": true
}
}
}