forked from ole1986/vscode-arma-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
175 lines (175 loc) · 4.22 KB
/
package.json
File metadata and controls
175 lines (175 loc) · 4.22 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
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
173
174
175
{
"name": "arma-dev",
"displayName": "Arma Dev",
"description": "Arma 3 Developer automation tools",
"icon": "images/arma-dev-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/ole1986/vscode-arma-dev"
},
"version": "0.0.30",
"publisher": "ole1986",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:armadev.setupConfig",
"workspaceContains:.vscode/arma-dev.json"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "armabin",
"aliases": [
"ArmaA Binarized"
],
"extensions": [
".bin"
]
}
],
"commands": [
{
"command": "armadev.setupConfig",
"title": "Arma 3: Configure"
},
{
"command": "armadev.packFolders",
"title": "Arma 3: Build"
},
{
"command": "armadev.runClientAndLog",
"title": "Arma 3: Run Client (with logging)"
},
{
"command": "armadev.runClient",
"title": "Arma 3: Run Client"
},
{
"command": "armadev.runServer",
"title": "Arma 3: Run Server"
},
{
"command": "armadev.binarizeFile",
"title": "Arma 3: Binarize File"
},
{
"command": "armadev.unbinarizeFile",
"title": "Arma 3: UnBinarize File"
},
{
"command": "armadev.generateKey",
"title": "Arma 3: Generate PrivateKey"
},
{
"command": "armadev.transferFiles",
"title": "Arma 3: Transfer Files"
},
{
"command": "armadev.previewControl",
"title": "Arma 3: Preview"
},
{
"command": "armadev.codeLive",
"title": "Arma 3: Toggle Code Live"
},
{
"command": "armadev.paaToPngFile",
"title": "Arma 3: Convert PAA File"
},
{
"command": "armadev.pngToPaaFile",
"title": "Arma 3: Convert PNG File"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == cpp",
"command": "armadev.binarizeFile",
"group": "armadev"
},
{
"when": "resourceLangId == armabin",
"command": "armadev.unbinarizeFile",
"group": "armadev"
},
{
"when": "resourceExtname == .png",
"command": "armadev.pngToPaaFile",
"group": "armadev"
},
{
"when": "resourceExtname == .paa",
"command": "armadev.paaToPngFile",
"group": "armadev"
}
],
"editor/title": [
{
"command": "armadev.previewControl",
"group": "navigation",
"when": "resourceExtname == .hpp"
}
]
},
"configuration": {
"type": "object",
"title": "Arma Dev Configuration",
"properties": {
"arma-dev.dialogAxisMode": {
"type": "number",
"enum": [
0,
1
],
"enumDescriptions": [
"Truncated",
"Original"
],
"default": 0,
"description": "How to display the dialog control axis"
},
"arma-dev.logLevel": {
"type": "string",
"default": "Debug",
"description": "Log Level [Debug|Info|Error]"
},
"arma-dev.steamPath": {
"type": "string",
"default": "",
"description": "The default steam path used for arma-dev (default: auto-detect)"
}
}
},
"jsonValidation": [
{
"fileMatch": "arma-dev.json",
"url": "./schemas/arma-dev.schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run lint && 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",
"lint": "tslint ./src/**/*.ts"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"tslint": "^5.20.1",
"typescript": "^2.9.2",
"vscode": "^1.1.37"
},
"dependencies": {
"sftpjs": "^1.3.5",
"testrunner": "^1.0.4"
}
}