-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
355 lines (355 loc) · 13.5 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
{
"name": "mtasa-dgs-lua",
"displayName": "Dgs - MTA:Lua",
"description": "Dgs - MTA:Lua Syntax Highlighting + Companion",
"version": "2.7.3",
"publisher": "ERAGON",
"license": "GPL v3.0",
"icon": "images/logo.png",
"badges": [
{
"url": "https://img.shields.io/maintenance/yes/2019.svg?style=flat-square",
"href": "https://github.com/ERAGON007/dgs-lua",
"description": "Maintenance Status"
},
{
"url": "https://img.shields.io/vscode-marketplace/v/subtixx.mtasa-lua.svg?style=flat-square",
"href": "https://github.com/ERAGON007/dgs-lua",
"description": "Newest Version"
}
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"homepage": "https://github.com/ERAGON007/dgs-lua/blob/master/README.md",
"bugs": {
"url": "https://github.com/ERAGON007/dgs-lua/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ERAGON007/dgs-lua.git"
},
"engines": {
"vscode": "^1.51.0"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"tslint": "tslint -c tslint.json src/extension.ts"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@types/request": "^2.48.5",
"@types/vscode": "^1.51.0",
"@types/xml2js": "^0.4.5",
"typescript": "^4.0.5"
},
"categories": [
"Programming Languages",
"Themes",
"Snippets"
],
"contributes": {
"commands": [
{
"command": "extension.mta-start-resource",
"title": "Start Resource"
},
{
"command": "extension.mta-stop-resource",
"title": "Stop Resource"
},
{
"command": "extension.mta-restart-resource",
"title": "Restart Resource"
},
{
"command": "extension.mta-new-resource",
"title": "New MTA Resource"
},
{
"command": "extension.mta-new-meta",
"title": "New MTA Meta.xml file"
},
{
"command": "extension.mta-new-client",
"title": "New MTA Client file"
},
{
"command": "extension.mta-new-server",
"title": "New MTA Server file"
}
],
"languages": [
{
"id": "luamta",
"aliases": [
"Lua - MTA",
"luamta"
],
"extensions": [
".lua"
],
"configuration": "./language-configuration.json"
},
{
"id": "luamtatypes",
"aliases": [],
"extensions": [
".luarioeughiuer"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "luamta",
"scopeName": "source.lua",
"path": "./syntaxes/luamta.tmLanguage.json"
},
{
"language": "luamtatypes",
"scopeName": "source.luatypes",
"path": "./syntaxes/luamtatypes.tmLanguage.json"
}
],
"themes": [
{
"label": "Monokai Lua MTA",
"uiTheme": "vs-dark",
"path": "./themes/Monokai-MTA-Edit.tmTheme"
},
{
"label": "Dark MTA Edit (Visual Studio)",
"uiTheme": "vs-dark",
"path": "./themes/Dark-MTA-Edit.json"
}
],
"snippets": [],
"configuration": {
"title": "MTA:SA Lua",
"properties": {
"mtalua-http.enabled": {
"description": "Enable the WebAdmin Http Functionality",
"type": "boolean",
"default": true
},
"mtalua-http.enable_restart_on_save": {
"description": "Enable restarting resources on saving them",
"type": "boolean",
"default": false
},
"mtalua-http.enable_search_hinting": {
"description": "Enable search hinting when restarting resources (Requires http whitelisting this ip)",
"type": "boolean",
"default": false
},
"mtalua-http.uri": {
"description": "URL to the MTA Http Server",
"type": "string",
"default": "http://127.0.0.1:22005"
},
"mtalua-http.username": {
"description": "Authentication username for the MTA Http Server",
"type": "string",
"default": "admin"
},
"mtalua-http.password": {
"description": "Authentication password for the MTA Http Server",
"type": "string",
"default": "123456"
},
"mtalua-generate.author": {
"description": "Allows you to set a custom author when generating new resources",
"type": "string",
"default": "VSCode MTA:SA Lua"
},
"mtalua-generate.watermarking": {
"description": "Enable or disable watermarking of meta files",
"type": "boolean",
"default": true
},
"mtalua-generate.meta_default_version": {
"description": "Default version when generating new resources",
"type": "string",
"default": "0.1.0"
},
"mtalua-generate.meta_default_type": {
"description": "Default type of new resources",
"type": "string",
"default": "script",
"enumDescriptions": [
"Script",
"GameMode",
"Map",
"Misc"
],
"enum": [
"script",
"gamemode",
"map",
"misc"
]
},
"mtalua-generate.shared_prefix": {
"description": "Custom suffix/prefix for shared files (Default is g_ prefix)",
"type": "string",
"default": "g_"
},
"mtalua-generate.shared_extension": {
"description": "Custom extension for shared files (Default is lua)",
"type": "string",
"default": "lua"
},
"mtalua-generate.shared_prefix_type": {
"description": "If the shared is a prefix (true) or a suffix (false)",
"type": "boolean",
"default": true
},
"mtalua-generate.client_prefix": {
"description": "Custom suffix/prefix for client files (Default is c_ prefix)",
"type": "string",
"default": "c_"
},
"mtalua-generate.client_extension": {
"description": "Custom extension for client files (Default is lua)",
"type": "string",
"default": "lua"
},
"mtalua-generate.client_prefix_type": {
"description": "If the client is a prefix (true) or a suffix (false)",
"type": "boolean",
"default": true
},
"mtalua-generate.server_prefix": {
"description": "Custom suffix/prefix for server files (Default is s_ prefix)",
"type": "string",
"default": "s_"
},
"mtalua-generate.server_extension": {
"description": "Custom extension for server files (Default is lua)",
"type": "string",
"default": "lua"
},
"mtalua-generate.server_prefix_type": {
"description": "If the server is a prefix (true) or a suffix (false)",
"type": "boolean",
"default": true
},
"mtalua-generate.activate_client_file_generation": {
"description": "When activated generates a client file when using generate new resource",
"type": "boolean",
"default": true
},
"mtalua-generate.activate_server_file_generation": {
"description": "When activated generates a server file when using generate new resource",
"type": "boolean",
"default": true
},
"mtalua-generate.activate_shared_file_generation": {
"description": "When activated generates a shared file when using generate new resource",
"type": "boolean",
"default": true
},
"mtalua-generate.default_client_content": {
"description": "Allows you to set custom content that should be placed in the newly generated client file",
"type": "string",
"default": ""
},
"mtalua-generate.default_server_content": {
"description": "Allows you to set custom content that should be placed in the newly generated server file",
"type": "string",
"default": ""
},
"mtalua-generate.default_shared_content": {
"description": "Allows you to set custom content that should be placed in the newly generated shared file",
"type": "string",
"default": ""
},
"mtalua-generate.modify_meta": {
"description": "When adding new client/server-side files should the meta.xml automagically be modified?",
"type": "boolean",
"default": true
},
"mtalua-generate.filesrc_extensions": {
"description": "Extensions which are declated as <file>",
"type": "array",
"default": [
".png",
".jpg",
".mp3",
".wav",
".ttf",
".tif"
]
},
"mtalua-sense.activate_signature_help_parentheses": {
"description": "Allows you to disable the signature help when using (",
"type": "boolean",
"default": true
},
"mtalua-sense.activate_signature_help": {
"description": "Allows you to disable the signature help completely",
"type": "boolean",
"default": true
},
"mtalua-sense.show_relevant_only": {
"description": "Only show relevant functions (A serverside script is open, only serverside & shared functions will show)",
"type": "boolean",
"default": false
},
"mtalua-sense.show_reference_links": {
"description": "Make functions clickable which redirect directly to the MTA Wiki (BETA)",
"type": "boolean",
"default": false
}
}
},
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.mta-start-resource",
"group": "mtasa_lua@1"
},
{
"when": "explorerResourceIsFolder",
"command": "extension.mta-stop-resource",
"group": "mtasa_lua@2"
},
{
"when": "explorerResourceIsFolder",
"command": "extension.mta-restart-resource",
"group": "mtasa_lua@3"
},
{
"when": "explorerResourceIsFolder",
"command": "extension.mta-new-resource",
"group": "mtasa_lua@4"
},
{
"command": "extension.mta-new-meta",
"group": "mtasa_lua@5"
},
{
"command": "extension.mta-new-client",
"group": "mtasa_lua@6"
},
{
"command": "extension.mta-new-server",
"group": "mtasa_lua@7"
}
]
}
},
"dependencies": {
"request": "^2.88.2",
"vsce": "^1.87.1",
"xml2js": "^0.4.23"
}
}