@zhangfengshun/dsh-remote-ssh 1.2.0

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,76 @@
1
+ {
2
+ "name": "@zhangfengshun/dsh-remote-ssh",
3
+ "version": "1.2.0",
4
+ "description": "DSH web plugin: VSCode Remote-SSH-like remote development (SSH to supercomputers/servers, remote workspace, file explorer, integrated terminal), integrated with dsh-better-sidebar and DSH settings.",
5
+ "keywords": [
6
+ "dsh",
7
+ "deepseek-harness",
8
+ "ssh",
9
+ "remote-development",
10
+ "remote-ssh",
11
+ "supercomputer",
12
+ "hpc"
13
+ ],
14
+ "author": {
15
+ "name": "ZhangFengshun",
16
+ "url": "https://github.com/ZhangFengshun"
17
+ },
18
+ "homepage": "https://github.com/ZhangFengshun/dsh-remote-ssh#readme",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/ZhangFengshun/dsh-remote-ssh.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/ZhangFengshun/dsh-remote-ssh/issues"
25
+ },
26
+ "type": "module",
27
+ "main": "lib/index.js",
28
+ "exports": {
29
+ ".": {
30
+ "default": "./lib/index.js"
31
+ },
32
+ "./client": {
33
+ "default": "./lib/client.js"
34
+ },
35
+ "./package.json": "./package.json"
36
+ },
37
+ "dsh": {
38
+ "bundle": {
39
+ "patch": "./cordis.patch.yml"
40
+ },
41
+ "client": {
42
+ "inject": [
43
+ "@deepseek-ai/dsh-client-runtime",
44
+ "@deepseek-ai/dsh-client-locale",
45
+ "@deepseek-ai/dsh-client-ui-slots",
46
+ "@deepseek-ai/dsh-client-ui-primitives"
47
+ ],
48
+ "platform": "web"
49
+ }
50
+ },
51
+ "engines": {
52
+ "node": ">=20"
53
+ },
54
+ "dependencies": {
55
+ "schemastery": "^3.18.0"
56
+ },
57
+ "peerDependencies": {
58
+ "@deepseek-ai/cordis": "^4.0.1",
59
+ "@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
60
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.6",
61
+ "@deepseek-ai/dsh-settings": "^0.1.0-rc.6",
62
+ "@deepseek-ai/dsh-tools": "^0.1.0-rc.6"
63
+ },
64
+ "files": [
65
+ "lib/index.js",
66
+ "lib/client.js",
67
+ "cordis.patch.yml",
68
+ "README.md",
69
+ "LICENSE",
70
+ "CHANGELOG.md"
71
+ ],
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
75
+ "license": "MIT"
76
+ }