-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.9 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
{
"name": "dsh-shell-command",
"version": "0.1.0",
"description": "DeepSeek Harness (DSH) plugin: a /! command trigger (run one command, analyze output, inspired by Claude Code's ! gesture) and a /terminal command (interactive PTY popup with on-demand history reference).",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CHplus0/dsh-shell-command.git"
},
"homepage": "https://github.com/CHplus0/dsh-shell-command#readme",
"bugs": {
"url": "https://github.com/CHplus0/dsh-shell-command/issues"
},
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib/**",
"cordis.patch.yml",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"immediately": true,
"inject": [
"@deepseek-ai/dsh-client-connection",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-input-trigger",
"@deepseek-ai/dsh-client-ui-slots"
]
}
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"node-pty": "^1.1.0",
"ws": "^8.21.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-connection": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
"@deepseek-ai/dsh-subprocess": "^0.1.0-rc.6"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"shell",
"command",
"slash-command",
"terminal",
"claude-code"
]
}