This repository has been archived by the owner on Jun 30, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
143 lines (143 loc) · 4.77 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
{
"name": "vscode-remote-workspace",
"displayName": "Remote Workspace",
"description": "Multi protocol support (like Azure, Dropbox, S3, (S)FTP or Slack) for handling remote files like local ones.",
"version": "0.44.0",
"publisher": "mkloubert",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Azure",
"Other"
],
"keywords": [
"Dropbox",
"FTP",
"S3",
"SFTP",
"WebDAV",
"multi-root ready"
],
"activationEvents": [
"onFileSystem:azure",
"onFileSystemAccess:azure",
"onFileSystem:dropbox",
"onFileSystemAccess:dropbox",
"onFileSystem:ftp",
"onFileSystemAccess:ftp",
"onFileSystem:ftps",
"onFileSystemAccess:ftps",
"onFileSystem:s3",
"onFileSystemAccess:s3",
"onFileSystem:sftp",
"onFileSystemAccess:sftp",
"onFileSystem:slack",
"onFileSystemAccess:slack",
"onFileSystem:webdav",
"onFileSystemAccess:webdav",
"onCommand:extension.remote.workspace.executeGit",
"onCommand:extension.remote.workspace.executeRemoteCommmand",
"onCommand:extension.remote.workspace.openURI",
"onCommand:extension.remote.workspace.receiveWorkspaceURI",
"onCommand:extension.remote.workspace.resetRemoteCommandHistory",
"onCommand:extension.remote.workspace.sendWorkspaceURI"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.remote.workspace.executeGit",
"title": "Execute 'git' Command ...",
"category": "Remote Workspace"
},
{
"command": "extension.remote.workspace.executeRemoteCommmand",
"title": "Execute Remote Command ...",
"category": "Remote Workspace"
},
{
"command": "extension.remote.workspace.openURI",
"title": "Open URI ...",
"category": "Remote Workspace"
},
{
"command": "extension.remote.workspace.receiveWorkspaceURI",
"title": "Receive Remote URI ...",
"category": "Remote Workspace"
},
{
"command": "extension.remote.workspace.resetRemoteCommandHistory",
"title": "Reset Remote Command History ...",
"category": "Remote Workspace"
},
{
"command": "extension.remote.workspace.sendWorkspaceURI",
"title": "Share Remote URI ...",
"category": "Remote Workspace"
}
]
},
"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",
"publish": "node ./publish.js"
},
"icon": "icon.png",
"badges": [
{
"description": "PayPal Donate",
"url": "https://img.shields.io/badge/Donate-PayPal-green.svg",
"href": "https://paypal.me/MarcelKloubert"
}
],
"author": {
"name": "Marcel Joachim Kloubert"
},
"repository": {
"type": "git",
"url": "https://github.com/mkloubert/vscode-remote-workspace"
},
"bugs": {
"url": "https://github.com/mkloubert/vscode-remote-workspace/issues"
},
"readmeFilename": "README.md",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/marked": "^0.6.5",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^5.2.7",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^10.17.16",
"@types/ssh2-sftp-client": "^4.1.3",
"@types/uuid": "^3.4.7",
"tslint": "^5.20.1",
"typescript": "^3.8.2",
"vsce": "^1.73.0",
"vscode": "^1.1.36"
},
"dependencies": {
"@icetee/ftp": "^1.0.5",
"@slack/client": "^5.0.2",
"aws-sdk": "^2.624.0",
"azure-storage": "^2.10.3",
"dropbox": "^4.0.30",
"ftp": "^0.3.10",
"isomorphic-fetch": "^2.2.1",
"jsftp": "^2.1.3",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"mime-types": "^2.1.26",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"node-simple-socket": "^2.8.1",
"parse-listing": "^1.1.3",
"ssh2-sftp-client": "^4.3.1",
"uuid": "^3.4.0",
"vscode-helpers": "^6.0.0",
"webdav-client": "^1.4.3"
}
}