dsh-code 1.0.5 → 1.0.7
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/README.en.md +338 -286
- package/README.md +68 -16
- package/bin/deepseek.mjs +204 -4
- package/cordis.patch.yml +105 -7
- package/lib/index.mjs +2148 -439
- package/lib/session-query.mjs +149 -0
- package/lib/types/app.d.ts +34 -8
- package/lib/types/attachments.d.ts +36 -4
- package/lib/types/index.d.ts +38 -2
- package/lib/types/kernel-panels.d.ts +23 -0
- package/lib/types/provider-settings.d.ts +6 -11
- package/lib/types/render/animations.d.ts +74 -7
- package/lib/types/render/editor.d.ts +4 -3
- package/lib/types/render/export.d.ts +0 -6
- package/lib/types/render/fuzzy.d.ts +21 -0
- package/lib/types/render/ime-cursor.d.ts +60 -0
- package/lib/types/render/projection.d.ts +80 -4
- package/lib/types/render/status.d.ts +1 -1
- package/lib/types/session-directory.d.ts +48 -13
- package/lib/types/session-query.d.ts +92 -0
- package/lib/types/store.d.ts +3 -0
- package/lib/types/terminal-title.d.ts +58 -0
- package/lib/types/update-panel.d.ts +49 -0
- package/lib/types/update.d.ts +66 -0
- package/package.json +307 -162
- package/src/app.ts +730 -266
- package/src/attachments.ts +110 -11
- package/src/commands.ts +35 -5
- package/src/index.ts +1986 -1779
- package/src/internals.ts +66 -40
- package/src/kernel-panels.ts +89 -3
- package/src/provider-settings.ts +12 -12
- package/src/render/animations.ts +606 -403
- package/src/render/editor.ts +5 -4
- package/src/render/export.ts +13 -3
- package/src/render/fuzzy.ts +83 -0
- package/src/render/ime-cursor.ts +147 -0
- package/src/render/projection.ts +1974 -1621
- package/src/render/status.ts +18 -4
- package/src/session-directory.ts +94 -16
- package/src/session-query.ts +235 -0
- package/src/skills.ts +23 -9
- package/src/store.ts +39 -1
- package/src/subagents.ts +26 -3
- package/src/terminal-title.ts +173 -0
- package/src/update-panel.ts +246 -0
- package/src/update.ts +110 -0
package/package.json
CHANGED
|
@@ -1,162 +1,307 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dsh-code",
|
|
3
|
-
"description": "DeepSeek Harness CLI core bundle: interactive coding terminal, durable sessions, and model management for dsh --profile cli",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"deepseek": "./bin/deepseek.mjs",
|
|
8
|
-
"dsh-code": "./bin/deepseek.mjs"
|
|
9
|
-
},
|
|
10
|
-
"main": "lib/index.mjs",
|
|
11
|
-
"types": "lib/types/index.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./lib/types/index.d.ts",
|
|
15
|
-
"default": "./lib/index.mjs"
|
|
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
|
-
"@deepseek-ai/
|
|
81
|
-
"@deepseek-ai/
|
|
82
|
-
"@deepseek-ai/dsh-
|
|
83
|
-
"@deepseek-ai/dsh-
|
|
84
|
-
"@deepseek-ai/dsh-
|
|
85
|
-
"@deepseek-ai/dsh-
|
|
86
|
-
"@deepseek-ai/dsh-
|
|
87
|
-
"@deepseek-ai/dsh-
|
|
88
|
-
"@deepseek-ai/dsh-
|
|
89
|
-
"@deepseek-ai/dsh-
|
|
90
|
-
"@deepseek-ai/dsh-
|
|
91
|
-
"@deepseek-ai/dsh-
|
|
92
|
-
"@deepseek-ai/dsh-
|
|
93
|
-
"@deepseek-ai/dsh-
|
|
94
|
-
"@deepseek-ai/dsh-
|
|
95
|
-
"@deepseek-ai/dsh-
|
|
96
|
-
"@deepseek-ai/dsh-
|
|
97
|
-
"@deepseek-ai/dsh-
|
|
98
|
-
"@deepseek-ai/dsh-
|
|
99
|
-
"@deepseek-ai/dsh-
|
|
100
|
-
"@deepseek-ai/dsh-
|
|
101
|
-
"@deepseek-ai/dsh-
|
|
102
|
-
"@deepseek-ai/dsh-
|
|
103
|
-
"@deepseek-ai/dsh-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"@deepseek-ai/
|
|
107
|
-
"@deepseek-ai/
|
|
108
|
-
"@deepseek-ai/dsh-
|
|
109
|
-
"@deepseek-ai/dsh-
|
|
110
|
-
"@deepseek-ai/dsh-
|
|
111
|
-
"@deepseek-ai/dsh-
|
|
112
|
-
"@deepseek-ai/dsh-
|
|
113
|
-
"@deepseek-ai/dsh-
|
|
114
|
-
"@deepseek-ai/dsh-
|
|
115
|
-
"@deepseek-ai/dsh-
|
|
116
|
-
"@deepseek-ai/dsh-
|
|
117
|
-
"@deepseek-ai/dsh-
|
|
118
|
-
"@deepseek-ai/dsh-
|
|
119
|
-
"@deepseek-ai/dsh-
|
|
120
|
-
"@deepseek-ai/dsh-
|
|
121
|
-
"@deepseek-ai/dsh-
|
|
122
|
-
"@deepseek-ai/dsh-
|
|
123
|
-
"@deepseek-ai/dsh-
|
|
124
|
-
"@deepseek-ai/dsh-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
"@deepseek-ai/
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"@deepseek-ai/
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"@deepseek-ai/dsh-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
"@deepseek-ai/dsh-agent-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"@deepseek-ai/dsh-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"@deepseek-ai/dsh-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"@deepseek-ai/dsh-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"@deepseek-ai/dsh-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
"@deepseek-ai/dsh-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
"@deepseek-ai/dsh-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-code",
|
|
3
|
+
"description": "DeepSeek Harness CLI core bundle: interactive coding terminal, durable sessions, and model management for dsh --profile cli",
|
|
4
|
+
"version": "1.0.7",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"deepseek": "./bin/deepseek.mjs",
|
|
8
|
+
"dsh-code": "./bin/deepseek.mjs"
|
|
9
|
+
},
|
|
10
|
+
"main": "lib/index.mjs",
|
|
11
|
+
"types": "lib/types/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./lib/types/index.d.ts",
|
|
15
|
+
"default": "./lib/index.mjs"
|
|
16
|
+
},
|
|
17
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
18
|
+
"./invariant": {
|
|
19
|
+
"types": "./lib/types/invariant.d.ts",
|
|
20
|
+
"default": "./lib/invariant.mjs"
|
|
21
|
+
},
|
|
22
|
+
"./package.json": "./package.json",
|
|
23
|
+
"./session-query": {
|
|
24
|
+
"types": "./lib/types/session-query.d.ts",
|
|
25
|
+
"default": "./lib/session-query.mjs"
|
|
26
|
+
},
|
|
27
|
+
"./src/*": "./src/*",
|
|
28
|
+
"./startup": {
|
|
29
|
+
"types": "./lib/types/startup.d.ts",
|
|
30
|
+
"default": "./lib/startup.mjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"lib",
|
|
35
|
+
"cordis.patch.yml",
|
|
36
|
+
"src"
|
|
37
|
+
],
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"keywords": [
|
|
40
|
+
"deepseek",
|
|
41
|
+
"dsh",
|
|
42
|
+
"deepseek-harness",
|
|
43
|
+
"tui",
|
|
44
|
+
"terminal",
|
|
45
|
+
"claude-code",
|
|
46
|
+
"agent",
|
|
47
|
+
"ink"
|
|
48
|
+
],
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/unlinearity/dsh-code.git"
|
|
52
|
+
},
|
|
53
|
+
"dsh": {
|
|
54
|
+
"bundle": {
|
|
55
|
+
"patch": "./cordis.patch.yml"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsdown && tsc -p tsconfig.json",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
62
|
+
"gen:whale": "tsx scripts/gen-whale-glyph.ts",
|
|
63
|
+
"prepare": "pnpm build",
|
|
64
|
+
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": "^22.19 || >=24"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@deepseek-ai/dsh-authorization": "0.1.5-rc.2",
|
|
71
|
+
"@deepseek-ai/dsh-web-fetch-http": "0.1.5-rc.2",
|
|
72
|
+
"@deepseek-ai/dsh-util-values": "0.1.5-rc.2",
|
|
73
|
+
"@deepseek-ai/schemastery": "^3.18.2",
|
|
74
|
+
"chalk": "^5.6.2",
|
|
75
|
+
"commander": "^15.0.0",
|
|
76
|
+
"ink": "^5.2.1",
|
|
77
|
+
"react": "^18.3.1"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
81
|
+
"@deepseek-ai/cordis-plugin-loader": "^1.0.3",
|
|
82
|
+
"@deepseek-ai/dsh-agent": "0.1.5-rc.2",
|
|
83
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.5-rc.2",
|
|
84
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.5-rc.2",
|
|
85
|
+
"@deepseek-ai/dsh-attachment": "0.1.5-rc.2",
|
|
86
|
+
"@deepseek-ai/dsh-cmdline": "0.1.5-rc.2",
|
|
87
|
+
"@deepseek-ai/dsh-code-runtime-worker-thread": "0.1.5-rc.2",
|
|
88
|
+
"@deepseek-ai/dsh-commands": "0.1.5-rc.2",
|
|
89
|
+
"@deepseek-ai/dsh-compaction": "0.1.5-rc.2",
|
|
90
|
+
"@deepseek-ai/dsh-cordis-host-runner": "0.1.5-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-credentials": "0.1.5-rc.2",
|
|
92
|
+
"@deepseek-ai/dsh-file-reference-local": "0.1.5-rc.2",
|
|
93
|
+
"@deepseek-ai/dsh-goal": "0.1.5-rc.2",
|
|
94
|
+
"@deepseek-ai/dsh-hooks-claude-code": "0.1.5-rc.2",
|
|
95
|
+
"@deepseek-ai/dsh-hooks-codex": "0.1.5-rc.2",
|
|
96
|
+
"@deepseek-ai/dsh-invariants": "0.1.5-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-jobs": "0.1.5-rc.2",
|
|
98
|
+
"@deepseek-ai/dsh-llm": "0.1.5-rc.2",
|
|
99
|
+
"@deepseek-ai/dsh-llm-retry": "0.1.5-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-lsp": "0.1.5-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-lsp-stdio": "0.1.5-rc.2",
|
|
102
|
+
"@deepseek-ai/dsh-mcp-client": "0.1.5-rc.2",
|
|
103
|
+
"@deepseek-ai/dsh-permission-presets": "0.1.5-rc.2",
|
|
104
|
+
"@deepseek-ai/dsh-plan-mode": "0.1.5-rc.2",
|
|
105
|
+
"@deepseek-ai/dsh-sandbox-policy": "0.1.5-rc.2",
|
|
106
|
+
"@deepseek-ai/dsh-schedule": "0.1.5-rc.2",
|
|
107
|
+
"@deepseek-ai/dsh-session": "0.1.5-rc.2",
|
|
108
|
+
"@deepseek-ai/dsh-session-persistence": "0.1.5-rc.2",
|
|
109
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "0.1.5-rc.2",
|
|
110
|
+
"@deepseek-ai/dsh-session-query": "0.1.5-rc.2",
|
|
111
|
+
"@deepseek-ai/dsh-session-query-sqlite": "0.1.5-rc.2",
|
|
112
|
+
"@deepseek-ai/dsh-session-reference": "0.1.5-rc.2",
|
|
113
|
+
"@deepseek-ai/dsh-session-title": "0.1.5-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-skill": "0.1.5-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-subagent": "0.1.5-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-terminal": "0.1.5-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-terminal-bash": "0.1.5-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-time-context": "0.1.5-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-tmux-context": "0.1.5-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-tool-lsp": "0.1.5-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-tool-session-query": "0.1.5-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-tool-terminal": "0.1.5-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-user-approval": "0.1.5-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.2"
|
|
125
|
+
},
|
|
126
|
+
"peerDependenciesMeta": {
|
|
127
|
+
"@deepseek-ai/cordis": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
130
|
+
"@deepseek-ai/cordis-plugin-loader": {
|
|
131
|
+
"optional": true
|
|
132
|
+
},
|
|
133
|
+
"@deepseek-ai/dsh-agent": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
136
|
+
"@deepseek-ai/dsh-agent-default-model": {
|
|
137
|
+
"optional": true
|
|
138
|
+
},
|
|
139
|
+
"@deepseek-ai/dsh-agent-presets": {
|
|
140
|
+
"optional": true
|
|
141
|
+
},
|
|
142
|
+
"@deepseek-ai/dsh-attachment": {
|
|
143
|
+
"optional": true
|
|
144
|
+
},
|
|
145
|
+
"@deepseek-ai/dsh-cmdline": {
|
|
146
|
+
"optional": true
|
|
147
|
+
},
|
|
148
|
+
"@deepseek-ai/dsh-code-runtime-worker-thread": {
|
|
149
|
+
"optional": true
|
|
150
|
+
},
|
|
151
|
+
"@deepseek-ai/dsh-commands": {
|
|
152
|
+
"optional": true
|
|
153
|
+
},
|
|
154
|
+
"@deepseek-ai/dsh-compaction": {
|
|
155
|
+
"optional": true
|
|
156
|
+
},
|
|
157
|
+
"@deepseek-ai/dsh-cordis-host-runner": {
|
|
158
|
+
"optional": true
|
|
159
|
+
},
|
|
160
|
+
"@deepseek-ai/dsh-credentials": {
|
|
161
|
+
"optional": true
|
|
162
|
+
},
|
|
163
|
+
"@deepseek-ai/dsh-file-reference-local": {
|
|
164
|
+
"optional": true
|
|
165
|
+
},
|
|
166
|
+
"@deepseek-ai/dsh-goal": {
|
|
167
|
+
"optional": true
|
|
168
|
+
},
|
|
169
|
+
"@deepseek-ai/dsh-hooks-claude-code": {
|
|
170
|
+
"optional": true
|
|
171
|
+
},
|
|
172
|
+
"@deepseek-ai/dsh-hooks-codex": {
|
|
173
|
+
"optional": true
|
|
174
|
+
},
|
|
175
|
+
"@deepseek-ai/dsh-invariants": {
|
|
176
|
+
"optional": true
|
|
177
|
+
},
|
|
178
|
+
"@deepseek-ai/dsh-jobs": {
|
|
179
|
+
"optional": true
|
|
180
|
+
},
|
|
181
|
+
"@deepseek-ai/dsh-llm": {
|
|
182
|
+
"optional": true
|
|
183
|
+
},
|
|
184
|
+
"@deepseek-ai/dsh-llm-retry": {
|
|
185
|
+
"optional": true
|
|
186
|
+
},
|
|
187
|
+
"@deepseek-ai/dsh-lsp": {
|
|
188
|
+
"optional": true
|
|
189
|
+
},
|
|
190
|
+
"@deepseek-ai/dsh-lsp-stdio": {
|
|
191
|
+
"optional": true
|
|
192
|
+
},
|
|
193
|
+
"@deepseek-ai/dsh-mcp-client": {
|
|
194
|
+
"optional": true
|
|
195
|
+
},
|
|
196
|
+
"@deepseek-ai/dsh-permission-presets": {
|
|
197
|
+
"optional": true
|
|
198
|
+
},
|
|
199
|
+
"@deepseek-ai/dsh-plan-mode": {
|
|
200
|
+
"optional": true
|
|
201
|
+
},
|
|
202
|
+
"@deepseek-ai/dsh-sandbox-policy": {
|
|
203
|
+
"optional": true
|
|
204
|
+
},
|
|
205
|
+
"@deepseek-ai/dsh-schedule": {
|
|
206
|
+
"optional": true
|
|
207
|
+
},
|
|
208
|
+
"@deepseek-ai/dsh-session": {
|
|
209
|
+
"optional": true
|
|
210
|
+
},
|
|
211
|
+
"@deepseek-ai/dsh-session-persistence": {
|
|
212
|
+
"optional": true
|
|
213
|
+
},
|
|
214
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": {
|
|
215
|
+
"optional": true
|
|
216
|
+
},
|
|
217
|
+
"@deepseek-ai/dsh-session-query": {
|
|
218
|
+
"optional": true
|
|
219
|
+
},
|
|
220
|
+
"@deepseek-ai/dsh-session-query-sqlite": {
|
|
221
|
+
"optional": true
|
|
222
|
+
},
|
|
223
|
+
"@deepseek-ai/dsh-session-reference": {
|
|
224
|
+
"optional": true
|
|
225
|
+
},
|
|
226
|
+
"@deepseek-ai/dsh-session-title": {
|
|
227
|
+
"optional": true
|
|
228
|
+
},
|
|
229
|
+
"@deepseek-ai/dsh-skill": {
|
|
230
|
+
"optional": true
|
|
231
|
+
},
|
|
232
|
+
"@deepseek-ai/dsh-subagent": {
|
|
233
|
+
"optional": true
|
|
234
|
+
},
|
|
235
|
+
"@deepseek-ai/dsh-terminal": {
|
|
236
|
+
"optional": true
|
|
237
|
+
},
|
|
238
|
+
"@deepseek-ai/dsh-terminal-bash": {
|
|
239
|
+
"optional": true
|
|
240
|
+
},
|
|
241
|
+
"@deepseek-ai/dsh-time-context": {
|
|
242
|
+
"optional": true
|
|
243
|
+
},
|
|
244
|
+
"@deepseek-ai/dsh-tmux-context": {
|
|
245
|
+
"optional": true
|
|
246
|
+
},
|
|
247
|
+
"@deepseek-ai/dsh-tool-lsp": {
|
|
248
|
+
"optional": true
|
|
249
|
+
},
|
|
250
|
+
"@deepseek-ai/dsh-tool-session-query": {
|
|
251
|
+
"optional": true
|
|
252
|
+
},
|
|
253
|
+
"@deepseek-ai/dsh-tool-terminal": {
|
|
254
|
+
"optional": true
|
|
255
|
+
},
|
|
256
|
+
"@deepseek-ai/dsh-user-approval": {
|
|
257
|
+
"optional": true
|
|
258
|
+
},
|
|
259
|
+
"@deepseek-ai/dsh-user-questions": {
|
|
260
|
+
"optional": true
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"devDependencies": {
|
|
264
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.5-rc.2",
|
|
265
|
+
"@deepseek-ai/dsh-attachment": "0.1.5-rc.2",
|
|
266
|
+
"@deepseek-ai/dsh-commands": "0.1.5-rc.2",
|
|
267
|
+
"@deepseek-ai/dsh-compaction": "0.1.5-rc.2",
|
|
268
|
+
"@deepseek-ai/dsh-credentials": "0.1.5-rc.2",
|
|
269
|
+
"@deepseek-ai/dsh-goal": "0.1.5-rc.2",
|
|
270
|
+
"@deepseek-ai/dsh-hooks-claude-code": "0.1.5-rc.2",
|
|
271
|
+
"@deepseek-ai/dsh-hooks-codex": "0.1.5-rc.2",
|
|
272
|
+
"@deepseek-ai/dsh-jobs": "0.1.5-rc.2",
|
|
273
|
+
"@deepseek-ai/dsh-llm-retry": "0.1.5-rc.2",
|
|
274
|
+
"@deepseek-ai/dsh-lsp": "0.1.5-rc.2",
|
|
275
|
+
"@deepseek-ai/dsh-lsp-stdio": "0.1.5-rc.2",
|
|
276
|
+
"@deepseek-ai/dsh-mcp-client": "0.1.5-rc.2",
|
|
277
|
+
"@deepseek-ai/dsh-permission-presets": "0.1.5-rc.2",
|
|
278
|
+
"@deepseek-ai/dsh-plan-mode": "0.1.5-rc.2",
|
|
279
|
+
"@deepseek-ai/dsh-sandbox-policy": "0.1.5-rc.2",
|
|
280
|
+
"@deepseek-ai/dsh-schedule": "0.1.5-rc.2",
|
|
281
|
+
"@deepseek-ai/dsh-session-persistence": "0.1.5-rc.2",
|
|
282
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "0.1.5-rc.2",
|
|
283
|
+
"@deepseek-ai/dsh-session-query": "0.1.5-rc.2",
|
|
284
|
+
"@deepseek-ai/dsh-session-query-sqlite": "0.1.5-rc.2",
|
|
285
|
+
"@deepseek-ai/dsh-session-reference": "0.1.5-rc.2",
|
|
286
|
+
"@deepseek-ai/dsh-session-title": "0.1.5-rc.2",
|
|
287
|
+
"@deepseek-ai/dsh-settings": "0.1.5-rc.2",
|
|
288
|
+
"@deepseek-ai/dsh-skill": "0.1.5-rc.2",
|
|
289
|
+
"@deepseek-ai/dsh-subagent": "0.1.5-rc.2",
|
|
290
|
+
"@deepseek-ai/dsh-terminal": "0.1.5-rc.2",
|
|
291
|
+
"@deepseek-ai/dsh-terminal-bash": "0.1.5-rc.2",
|
|
292
|
+
"@deepseek-ai/dsh-time-context": "0.1.5-rc.2",
|
|
293
|
+
"@deepseek-ai/dsh-tmux-context": "0.1.5-rc.2",
|
|
294
|
+
"@deepseek-ai/dsh-tool-lsp": "0.1.5-rc.2",
|
|
295
|
+
"@deepseek-ai/dsh-tool-session-query": "0.1.5-rc.2",
|
|
296
|
+
"@deepseek-ai/dsh-tool-terminal": "0.1.5-rc.2",
|
|
297
|
+
"@deepseek-ai/dsh-tool-todo": "0.1.5-rc.2",
|
|
298
|
+
"@deepseek-ai/dsh-user-approval": "0.1.5-rc.2",
|
|
299
|
+
"@deepseek-ai/dsh-user-questions": "0.1.5-rc.2",
|
|
300
|
+
"@types/node": "^24.0.0",
|
|
301
|
+
"@types/react": "~18.3.1",
|
|
302
|
+
"tsdown": "^0.22.2",
|
|
303
|
+
"tsx": "^4.22.4",
|
|
304
|
+
"typescript": "^5.9.0",
|
|
305
|
+
"vitest": "^3.0.0"
|
|
306
|
+
}
|
|
307
|
+
}
|