-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·370 lines (367 loc) · 9.11 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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
{
"name": "lpg-vscode",
"displayName": "LPG grammar syntax support",
"description": "Language support for LPG grammar files",
"bugs": {
"url": "https://github.com/A-LPG/LPG-VScode/issues"
},
"categories": [
"Programming Languages"
],
"homepage": "https://github.com/A-LPG/LPG-VScode/blob/master/README.md",
"keywords": [
"LPG",
"lpg"
],
"license": "MIT",
"publisher": "kuafuwang",
"repository": {
"type": "git",
"url": "https://github.com/A-LPG/LPG-VScode"
},
"version": "0.0.17",
"engines": {
"vscode": "^1.48.0"
},
"activationEvents": [
"onLanguage:lpg"
],
"main": "./dist/extension",
"contributes": {
"languages": [
{
"id": "lpg",
"extensions": [
".g",
".gi",
".lpg"
]
}
],
"commands": [
{
"command": "lpg.call-graph",
"title": "Show Grammar Call Graph"
},
{
"command": "lpg.rrd.singleRule",
"title": "Show Railroad Diagram for Rule"
},
{
"command": "lpg.rrd.allRules",
"title": "Show Railroad Diagram for all Rules"
},
{
"command": "lpg.firset.singleRule",
"title": "Show first set for Rule"
},
{
"command": "lpg.firset.allRules",
"title": "Show first set for all Rules"
},
{
"command": "lpg.fowllow.singleRule",
"title": "Show fowllow set for Rule"
},
{
"command": "lpg.fowllow.allRules",
"title": "Show fowllow set for all Rules"
},
{
"command": "lpg.inlineNonTerminal",
"title": "Inline Non-Terminal"
},
{
"command": "lpg.MakeLeftRecursive",
"title": "Make Left Recursive"
},
{
"command": "lpg.makeEmpty",
"title": "Make Empty"
},
{
"command": "lpg.MakeNonEmpty",
"title": "Make Non-Empty"
},
{
"command": "lpg.tools.generateParser",
"title": "Generate parser for grammar file"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == lpg",
"command": "lpg.call-graph",
"group": "lpg@1"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.rrd.singleRule",
"group": "lpg@2"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.rrd.allRules",
"group": "lpg@3"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.firset.singleRule",
"group": "lpg@4"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.firset.allRules",
"group": "lpg@5"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.fowllow.singleRule",
"group": "lpg@6"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.fowllow.allRules",
"group": "lpg@7"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.inlineNonTerminal",
"group": "lpg@8"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.MakeLeftRecursive",
"group": "lpg@9"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.makeEmpty",
"group": "lpg@10"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.MakeNonEmpty",
"group": "lpg@11"
},
{
"when": "resourceLangId == lpg",
"command": "lpg.tools.generateParser",
"group": "lpg@12"
}
]
},
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 10000,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"lpg.referencesCodeLens.enabled": {
"type": "boolean",
"default": false,
"description": "Enable/disable the references code lens"
},
"lpg.customCSS": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List of custom CSS URIs for diagram SVG files"
},
"lpg.rrd.saveDir": {
"type": "string",
"default": "",
"description": "Default export target folder for railroad diagrams"
},
"lpg.firset.saveDir": {
"type": "string",
"default": "",
"description": "Default export target folder for firset set"
},
"lpg.fowllow.saveDir": {
"type": "string",
"default": "",
"description": "Default export target folder for fowllow set "
},
"lpg.call-graph.saveDir": {
"type": "string",
"default": "",
"description": "Default export target folder for call graphs"
},
"lpg.generation.setting": {
"type": "object",
"default": {
"mode": "internal"
},
"description": "Settings related to parser generation",
"properties": {
"mode": {
"type": "string",
"default": "internal",
"description": "Determines the mode for code generation (none at all, only for internal use, also for external use)",
"enum": [
"none",
"internal",
"external"
]
},
"package": {
"type": "string",
"default": "",
"description": "Package/namespace for generated code"
},
"language": {
"type": "string",
"default": "java",
"description": "Specifies the target language for the Lsp server.",
"enum": [
"c",
"c++",
"rt_cpp",
"csharp",
"java",
"typescript",
"ml",
"plx",
"plxasm",
"xml",
"python2",
"python3",
"dart",
"go",
"undefined"
]
},
"outputDir": {
"type": "string",
"default": "",
"description": "Output dir where all output is generated (relative to grammar or absolute path)"
},
"use_define_include_directory": {
"type": "string",
"default": "",
"description": "Location to import/include grammars from (relative to a grammar or absolute path)"
},
"use_define_template_directory": {
"type": "string",
"default": "",
"description": "Location to template grammars from (relative to a grammar or absolute path)"
},
"built_in_template": {
"type": "string",
"default": "java",
"description": "Specifies the built in target template for the generated code",
"enum": [
"rt_cpp",
"csharp",
"java",
"python2",
"python3",
"typescript",
"dart",
"go"
]
},
"visitor": {
"type": "string",
"default": "default",
"description": "Create visitor on code generation",
"enum": [
"none",
"default",
"preorder",
"all"
]
},
"trace": {
"type": "string",
"default": "conflicts",
"description": "trace rule info when code generation",
"enum": [
"none",
"conflicts",
"full"
]
},
"quiet": {
"type": "boolean",
"default": false,
"description": "quit option"
},
"verbose": {
"type": "boolean",
"default": false,
"description": "verbose option"
},
"alternativeExe": {
"type": "string",
"description": "Path to a exe file to be used for parser generation"
},
"additionalParameters": {
"type": "string",
"description": "Any other command line parameters you want to send to the LPG"
}
}
}
}
}
},
"scripts": {
"publish": "vsce publish",
"package": "vsce package",
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./&webpack --mode development",
"lint": "eslint \"./src/**/*.ts\""
},
"dependencies": {
"d3": "^5.9.0",
"expand-home-dir": "^0.0.3",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"vscode-languageclient": "7.0.0-next.9",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"plist": "^3.0.4"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/fs-extra": "^9.0.10",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.168",
"@types/lodash.findindex": "^4.6.6",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/vscode": "1.48.0",
"glob": "^7.1.4",
"lodash.findindex": "^4.6.0",
"lodash.template": ">=4.5.0",
"mocha": "^7.1.0",
"typescript": "^3.8.3",
"vsce": "^1.75.0",
"vscode-test": "^1.3.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"ts-loader": "^9.2.3",
"tslint": "^6.1.3",
"eslint": "^7.23.0",
"@types/plist": "^3.0.2"
}
}