-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.75 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.75 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
{
"name": "vms",
"displayName": "VMS",
"description": "",
"version": "0.0.2",
"publisher": "vorfol",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:VMS.buildProject",
"onCommand:VMS.editProject"
],
"main": "./out/extension",
"contributes": {
"menus": {
"commandPalette": [
{
"command": "VMS.buildProject",
"when": "config.open-vms.common.build-enabled"
}
]
},
"commands": [
{
"command": "VMS.buildProject",
"title": "%command.buildProject.title%",
"category": "%command.category%"
},
{
"command": "VMS.editProject",
"title": "%command.editProject.title%",
"category": "%command.category%"
}
],
"configuration": {
"title": "%configuration.title%",
"properties": {
"open-vms.common.build-enabled": {
"type": "boolean",
"default": false,
"description": "%properties.common.build-enabled.description%"
},
"open-vms.connection.host": {
"type": "string",
"default": "host",
"description": "%properties.connection.host.description%"
},
"open-vms.connection.port": {
"type": "number",
"default": 22,
"description": "%properties.connection.port.description%"
},
"open-vms.connection.username": {
"type": "string",
"default": "",
"description": "%properties.connection.username.description%"
},
"open-vms.connection.password": {
"type": "string",
"default": "",
"description": "%properties.connection.password.description%"
},
"open-vms.filter.include": {
"type": "string",
"default": "**/*.*",
"description": "%properties.filter.include.description%"
},
"open-vms.filter.exclude": {
"type": "string",
"default": "**/{.vscode,node-modules}/*.*",
"description": "%properties.filter.exclude.description%"
},
"open-vms.host_collection.default": {
"type": "string",
"default": "default",
"description": "default host in collection"
},
"open-vms.host_collection.hosts": {
"type": "array",
"default": [
{
"host": "",
"port": 0,
"username": ""
}
],
"description": "array of hosts"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.x.x",
"typescript": "^3.x.x",
"@types/ssh2": "^0.5.35"
},
"dependencies": {
"fast-glob": "^2.2.2",
"fs": "0.0.1-security",
"ssh2": "^0.6.1",
"util": "^0.11.0",
"vscode": "^1.1.21",
"vscode-nls": "^4.0.0"
},
"enableProposedAPI": true
}