-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.68 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.68 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
{
"name": "remote-browser",
"displayName": "remote-browser",
"description": "Browse and edit remote files over sftp",
"version": "0.7.2",
"publisher": "sprdp",
"license": "MIT",
"author": "Supradeep Allu <supradeep95@gmail.com>",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/supradeep95/remote-browser.git"
},
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:remoteBrowser.connect"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "remote-browser configuration",
"properties": {
"remoteBrowser.tmpFolder": {
"type": [
"string",
null
],
"default": null,
"description": "Local temp folder for storing downloaded files. defaults to os.tmpdir()"
},
"remoteBrowser.connectionOptions": {
"type": "object",
"default": {
"host": "127.0.0.1",
"username": "user"
},
"description": "ssh2 Connection args. Supports a subset of the ssh2::ConnectConfig options from the 'ssh2' library\n host - Remote Host\n port - Port number(Defaults to 22) \nusername - Username for authentication \n password - Password for password-based user authentication (NOT RECOMMENDED STORING HERE! EITHER USE KEY-BASED AUTH OR ENTER PASSWORD IN PROMPT)\n agent - Path to ssh-agent's UNIX socket for ssh-agent-based user authentication \n privateKey - Path to a private key file for either key-based or hostbased user authentication \n passphrase - For an encrypted private key, this is the passphrase used to decrypt it. \n localHostname - Along with `localUsername` and `privateKey`, set this to a non-empty string for hostbased user authentication \n localUsername - Along with `localHostname` and `privateKey`, set this to a non-empty string for hostbased user authentication \n defaultPath - Default directory to start in on connect (Absolute path)"
},
"remoteBrowser.additionalConnections": {
"type": "array",
"default": [],
"description": "Array of additional connections. Members must be objects of the same type as remoteBrowser.connectionOptions."
}
}
},
"commands": [
{
"command": "remoteBrowser.connect",
"title": "remote-browser: Connect"
},
{
"command": "remoteBrowser.changePath",
"title": "remote-browser: Change Root Path"
},
{
"command": "remoteBrowser.makeRoot",
"title": "remote-browser: Make root"
},
{
"command": "remoteBrowser.filter",
"title": "remote-browser: Filter",
"icon": {
"light": "resources/filter_light.png",
"dark": "resources/filter_dark.png"
}
},
{
"command": "remoteBrowser.disconnect",
"title": "remote-browser: Disconnect"
}
],
"views": {
"explorer": [
{
"id": "remoteExplorer",
"name": "Remote Browser"
}
]
},
"menus": {
"view/title": [
{
"command": "remoteBrowser.filter",
"when": "view == remoteExplorer",
"group": "navigation@0"
}
],
"view/item/context": [
{
"command": "remoteBrowser.makeRoot",
"when": "view == remoteExplorer",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.2",
"tslint": "^5.12.1",
"typescript": "^2.9.2",
"vscode": "^1.1.29"
},
"dependencies": {
"@types/ssh2-sftp-client": "^2.4.0",
"ssh2-sftp-client": "^2.4.3"
}
}