-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 3.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "devspaces-remote-ssh",
"displayName": "Dev Spaces Local/Remote Support - SSH",
"description": "Support for connecting a local VS Code instance to a Dev Workspace under Red Hat OpenShift Dev Spaces over SSH",
"version": "0.4.1",
"author": "Red Hat",
"publisher": "redhat",
"icon": "images/devspaces-icon.png",
"repository": "https://github.com/redhat-developer/devspaces-remote-ssh",
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Other"
],
"keywords": [
"Kubernetes",
"Openshift",
"remote development",
"remote",
"ssh"
],
"activationEvents": [
"onView:remoteTargets",
"onUri"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"view/item/context": [
{
"command": "devspaces.connect.cluster",
"group": "navigation",
"when": "viewItem == remote-explorer.sshGroup"
},
{
"command": "devspaces.connect.cluster",
"group": "inline",
"when": "viewItem == remote-explorer.sshGroup"
},
{
"command": "devspaces.sshd.logs",
"group": "navigation",
"when": "viewItem == remote-explorer.sshRemoteTarget || viewItem =~ /^openremotessh.explorer.host$/ || viewItem =~ /^opensshremotes.explorer.host$/"
}
],
"view/title": [
{
"command": "devspaces.connect.cluster",
"group": "navigation",
"when": "view == remoteTargets || view == sshHosts"
},
{
"command": "devspaces.connect.cluster",
"group": "inline",
"when": "view == remoteTargets || view == sshHosts"
}
]
},
"commands": [
{
"command": "devspaces.connect.cluster",
"title": "Connect to Dev Spaces",
"category": "Dev Spaces",
"icon": {
"light": "images/devspaces-icon.png",
"dark": "images/devspaces-icon.png"
}
},
{
"command": "devspaces.sshd.logs",
"title": "Get SSHD Logs",
"category": "Dev Spaces"
}
],
"configuration": {
"title": "Dev Spaces Local/Remote Support - SSH",
"properties": {
"devspaces.ssh.log": {
"type": "boolean",
"default": false,
"markdownDescription": "Log to the Output view information regarding command execution for possible debugging.",
"scope": "window"
},
"devspaces.ssh.window.strategy": {
"type": "string",
"enum": [
"current",
"new",
"prompt"
],
"enumDescriptions": [
"Connect in the current editor",
"Connect in a new editor",
"Ask every time"
],
"default": "current",
"markdownDescription": "How connecting to a developer workspace should be done.",
"scope": "window"
},
"devspaces.ssh.update.interval": {
"type": "number",
"default": 10000,
"markdownDescription": "The interval, in milliseconds (ms), at which SSH targets are synchronized to the Remote Explorer view, when logged into a cluster.",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./",
"prepare-pre-release": "node scripts/index.mjs prepare-pre-release",
"package-oc": "node scripts/index.mjs package-oc"
},
"dependencies": {
"ssh-config": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/fs-extra": "^11.0.0",
"@types/node": "^22",
"@types/vscode": "^1.79.0",
"adm-zip": "^0.5.16",
"eslint": "^9.39.2",
"fs-extra": "^11.3.0",
"tar": "^7.4.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}