-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
172 lines (172 loc) · 4.94 KB
/
package.json
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "sshextension",
"displayName": "SSHExtension",
"description": "Extension for SSH connections using the ftp-simple settings",
"version": "0.5.0",
"publisher": "kondratiev",
"license": "MIT",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"keywords": [
"ssh",
"remote"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#DDCC99",
"theme": "light"
},
"activationEvents": [
"onCommand:sshextension.openConnection",
"onCommand:sshextension.portForwarding",
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "sshextension.openConnection",
"title": "Open SSH Connection",
"category": "SSHExtension"
},
{
"command": "sshextension.portForwarding",
"title": "SSH Port Forwarding",
"category": "SSHExtension"
}
],
"configuration": {
"type": "object",
"title": "SSHExtension configuration",
"properties": {
"sshextension.customCommands": {
"type": [
"array"
],
"items": {
"type": "string"
},
"default": [],
"description": "Specifies custom commands which will execute on session start"
},
"sshextension.recentlyUsedForwardings": {
"type": [
"array"
],
"items": {
"type": "string"
},
"default": [],
"description": "In this place stored all saved port forwarding args"
},
"sshextension.openProjectCatalog": {
"type": "boolean",
"default": false,
"description": "Open the project directory from the ftp-simple config, if it exists, after starting the SSH session"
},
"sshextension.allowMultipleConnections": {
"type": "boolean",
"default": false,
"description": "Allow you open few connections for one server at the same time"
},
"sshextension.showHostsInPickLists": {
"type": "boolean",
"default": false,
"description": "Show usernames and hosthames in pick lists instead on server names"
},
"sshextension.serverList": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of server",
"required": true
},
"username": {
"type": "string",
"description": "Username for authentication",
"required": true
},
"password": {
"type": "string",
"description": "Password for authentication",
"required": false
},
"host": {
"type": "string",
"description": "Server hostname",
"required": true
},
"port": {
"type": "integer",
"description": "SSH port",
"default": 22
},
"privateKey": {
"type": "string",
"description": "String that contains a path to private key",
"required": false
},
"project": {
"type": "object",
"description": "Specify local workspace path and server root path",
"examples": {
"D:/projects/project": "/home/user/project",
"D:/projects/yet_another_project": "/home/user/yet_another_project"
}
},
"path": {
"type": "string",
"description": "Path on server for `cd` command after session start (not required)",
"required": false
},
"customCommands": {
"type": [
"array"
],
"items": {
"type": "string"
},
"default": [],
"description": "Specifies custom commands which will execute on session start"
}
}
},
"default": [],
"description": "You can describe servers config here"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"repository": {
"type": "git",
"url": "https://github.com/VitalyKondratiev/SSHExtension.git"
},
"bugs": {
"url": "https://github.com/VitalyKondratiev/SSHExtension/issues"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.0",
"eslint": "^4.6.1",
"mocha": "^3.5.0",
"typescript": "^2.5.2",
"vscode": "^1.1.5"
},
"dependencies": {
"command-exists": "^1.2.2",
"filewatcher": "^3.0.1",
"is-path-inside": "^1.0.0",
"moment": "^2.22.2",
"upath": "^1.0.0"
}
}