@lengmoxxl/dsh-remote-workspace 0.1.11

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/package.json ADDED
@@ -0,0 +1,183 @@
1
+ {
2
+ "name": "@lengmoxxl/dsh-remote-workspace",
3
+ "version": "0.1.11",
4
+ "description": "DeepSeek Harness plugin for working on other machines: manage machines over SSH, work in their repositories and worktrees, and open a terminal there.",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "types": "lib/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/index.d.ts",
11
+ "default": "./lib/index.js"
12
+ },
13
+ "./client": "./lib/client.js",
14
+ "./package.json": "./package.json"
15
+ },
16
+ "files": [
17
+ "lib",
18
+ "cordis.patch.yml"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public",
22
+ "registry": "https://registry.npmjs.org/"
23
+ },
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/lengmoXXL/dsh-remote-workspace.git"
28
+ },
29
+ "homepage": "https://github.com/lengmoXXL/dsh-remote-workspace#readme",
30
+ "bugs": {
31
+ "url": "https://github.com/lengmoXXL/dsh-remote-workspace/issues"
32
+ },
33
+ "keywords": [
34
+ "deepseek-harness",
35
+ "dsh",
36
+ "remote",
37
+ "ssh",
38
+ "worktree",
39
+ "terminal",
40
+ "pty"
41
+ ],
42
+ "engines": {
43
+ "node": "^22.19 || >=24"
44
+ },
45
+ "packageManager": "npm@10",
46
+ "dsh": {
47
+ "bundle": {
48
+ "patch": "./cordis.patch.yml"
49
+ },
50
+ "client": {
51
+ "platform": "web",
52
+ "inject": [
53
+ "@deepseek-ai/dsh-client-locale",
54
+ "@deepseek-ai/dsh-client-ui-primitives",
55
+ "@deepseek-ai/dsh-client-ui-renderer",
56
+ "@deepseek-ai/dsh-client-ui-session",
57
+ "@deepseek-ai/dsh-client-ui-settings",
58
+ "@deepseek-ai/dsh-client-ui-sidebar-right",
59
+ "@deepseek-ai/dsh-client-ui-slots"
60
+ ]
61
+ },
62
+ "compatibility": {
63
+ "dshReleases": {
64
+ "0.1.5-alpha.2": "unknown",
65
+ "0.1.5-rc.1": "unknown",
66
+ "0.1.5-rc.2": "compatible"
67
+ }
68
+ }
69
+ },
70
+ "overrides": {
71
+ "@deepseek-ai/dsh-bash-local": "0.1.5-rc.2",
72
+ "@deepseek-ai/dsh-bash-sandbox": "0.1.5-rc.2",
73
+ "@deepseek-ai/dsh-fs": "0.1.5-rc.2",
74
+ "@deepseek-ai/dsh-fs-local": "0.1.5-rc.2",
75
+ "@deepseek-ai/dsh-fs-sandbox": "0.1.5-rc.2",
76
+ "@deepseek-ai/dsh-sandbox": "0.1.5-rc.2",
77
+ "@deepseek-ai/dsh-shell": "0.1.5-rc.2",
78
+ "@deepseek-ai/dsh-subprocess": "0.1.5-rc.2",
79
+ "@deepseek-ai/dsh-subprocess-local": "0.1.5-rc.2",
80
+ "@deepseek-ai/dsh-agent": "0.1.5-rc.2",
81
+ "@deepseek-ai/dsh-sandbox-policy": "0.1.5-rc.2",
82
+ "@deepseek-ai/dsh-session-projection": "0.1.5-rc.2",
83
+ "@deepseek-ai/dsh-sandbox-local": "0.1.5-rc.2",
84
+ "@deepseek-ai/dsh-client-locale": "0.1.5-rc.2",
85
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.5-rc.2",
86
+ "@deepseek-ai/dsh-client-ui-settings-plugins": "0.1.5-rc.2",
87
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.5-rc.2",
88
+ "@deepseek-ai/dsh-client-ui-renderer": "0.1.5-rc.2",
89
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.5-rc.2",
90
+ "@deepseek-ai/dsh-settings": "0.1.5-rc.2",
91
+ "@deepseek-ai/dsh-system-prompt": "0.1.5-rc.2"
92
+ },
93
+ "allowScripts": {
94
+ "node-pty@1.2.0-beta.15": true,
95
+ "koffi@3.2.1": true,
96
+ "@deepseek-ai/dsh-subprocess-local@0.1.5-rc.2": true
97
+ },
98
+ "scripts": {
99
+ "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.client.json",
100
+ "build": "tsdown",
101
+ "prepare": "npm run build",
102
+ "pretest": "npm run build",
103
+ "test": "node --test --experimental-strip-types tests/unit/*.test.ts tests/e2e/*.test.ts",
104
+ "test:browser": "npm run build && node --test --experimental-strip-types tests/browser/workflow.test.ts",
105
+ "build:agent": "cargo build --release --manifest-path agent/Cargo.toml"
106
+ },
107
+ "dependencies": {
108
+ "@deepseek-ai/dsh-atomic-write": "^0.1.5-rc.2",
109
+ "@deepseek-ai/dsh-brand": "^0.1.5-rc.2",
110
+ "@deepseek-ai/schemastery": "^3.18.2",
111
+ "@xterm/addon-clipboard": "^0.2.0",
112
+ "@xterm/addon-fit": "^0.11.0",
113
+ "@xterm/addon-web-links": "^0.12.0",
114
+ "@xterm/xterm": "^6.0.0",
115
+ "node-pty": "^1.2.0-beta.15",
116
+ "vscode-jsonrpc": "^8.2.0",
117
+ "ws": "^8.21.0"
118
+ },
119
+ "peerDependencies": {
120
+ "@deepseek-ai/cordis": "^4.0.2",
121
+ "@deepseek-ai/dsh-bash-local": "^0.1.5-rc.2",
122
+ "@deepseek-ai/dsh-bash-sandbox": "^0.1.5-rc.2",
123
+ "@deepseek-ai/dsh-client-connection": "^0.1.5-rc.2",
124
+ "@deepseek-ai/dsh-client-locale": "^0.1.5-rc.2",
125
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-rc.2",
126
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-rc.2",
127
+ "@deepseek-ai/dsh-client-ui-session": "^0.1.5-rc.2",
128
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.5-rc.2",
129
+ "@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.5-rc.2",
130
+ "@deepseek-ai/dsh-client-ui-sidebar-right": "^0.1.5-rc.2",
131
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-rc.2",
132
+ "@deepseek-ai/dsh-fs": "^0.1.5-rc.2",
133
+ "@deepseek-ai/dsh-fs-sandbox": "^0.1.5-rc.2",
134
+ "@deepseek-ai/dsh-home-paths": "*",
135
+ "@deepseek-ai/dsh-host-webserver": "^0.1.5-rc.2",
136
+ "@deepseek-ai/dsh-session": "^0.1.5-rc.2",
137
+ "@deepseek-ai/dsh-settings": "^0.1.5-rc.2",
138
+ "@deepseek-ai/dsh-shell": "^0.1.5-rc.2",
139
+ "@deepseek-ai/dsh-subprocess": "^0.1.5-rc.2",
140
+ "@deepseek-ai/dsh-subprocess-local": "^0.1.5-rc.2",
141
+ "@deepseek-ai/dsh-tools": "^0.1.5-rc.2"
142
+ },
143
+ "devDependencies": {
144
+ "@deepseek-ai/cordis": "^4.0.2",
145
+ "@deepseek-ai/cordis-plugin-include": "^1.0.7",
146
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
147
+ "@deepseek-ai/dsh-bash-local": "0.1.5-rc.2",
148
+ "@deepseek-ai/dsh-bash-sandbox": "0.1.5-rc.2",
149
+ "@deepseek-ai/dsh-client-connection": "0.1.5-rc.2",
150
+ "@deepseek-ai/dsh-client-locale": "0.1.5-rc.2",
151
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.5-rc.2",
152
+ "@deepseek-ai/dsh-client-ui-renderer": "0.1.5-rc.2",
153
+ "@deepseek-ai/dsh-client-ui-session": "0.1.5-rc.2",
154
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.5-rc.2",
155
+ "@deepseek-ai/dsh-client-ui-settings-plugins": "0.1.5-rc.2",
156
+ "@deepseek-ai/dsh-client-ui-sidebar-right": "0.1.5-rc.2",
157
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.5-rc.2",
158
+ "@deepseek-ai/dsh-fs": "0.1.5-rc.2",
159
+ "@deepseek-ai/dsh-fs-sandbox": "0.1.5-rc.2",
160
+ "@deepseek-ai/dsh-home-paths": "0.1.5-rc.2",
161
+ "@deepseek-ai/dsh-host-webserver": "0.1.5-rc.2",
162
+ "@deepseek-ai/dsh-sandbox": "0.1.5-rc.2",
163
+ "@deepseek-ai/dsh-sandbox-local": "0.1.5-rc.2",
164
+ "@deepseek-ai/dsh-session": "0.1.5-rc.2",
165
+ "@deepseek-ai/dsh-session-persistence": "0.1.5-rc.2",
166
+ "@deepseek-ai/dsh-session-projection": "0.1.5-rc.2",
167
+ "@deepseek-ai/dsh-settings": "0.1.5-rc.2",
168
+ "@deepseek-ai/dsh-shell": "0.1.5-rc.2",
169
+ "@deepseek-ai/dsh-subprocess": "0.1.5-rc.2",
170
+ "@deepseek-ai/dsh-subprocess-local": "0.1.5-rc.2",
171
+ "@deepseek-ai/dsh-tools": "0.1.5-rc.2",
172
+ "@types/node": "^22.10.0",
173
+ "@types/react": "^18.3.12",
174
+ "@types/react-dom": "^18.3.1",
175
+ "@types/ws": "^8.18.1",
176
+ "lightningcss": "^1.33.0",
177
+ "react": "^18.3.1",
178
+ "react-dom": "^18.3.1",
179
+ "tsdown": "^0.23.0",
180
+ "typescript": "^5.6.3"
181
+ },
182
+ "sideEffects": false
183
+ }