-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
434 lines (434 loc) · 11.5 KB
/
package.json
File metadata and controls
434 lines (434 loc) · 11.5 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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
{
"name": "dascript-plugin",
"displayName": "daScript language support",
"description": "daScript language support",
"author": "Dmitri Granetchi",
"license": "MIT",
"version": "1.3.6",
"repository": {
"type": "git",
"url": "https://github.com/profelis/daScript-plugin"
},
"publisher": "profelis",
"categories": [
"Programming Languages",
"Linters",
"Snippets",
"Debuggers"
],
"keywords": [
"dascript",
"daScript",
"daslang",
"Daslang"
],
"contributors": [
"dima.granetchi@gmail.com"
],
"extensionDependencies": [
"eguskov.dascript"
],
"engines": {
"vscode": "^1.67.0"
},
"activationEvents": [
"onLanguage:dascript"
],
"main": "./client/out/extension",
"contributes": {
"breakpoints": [
{
"language": "dascript"
}
],
"debuggers": [
{
"type": "dascript",
"languages": [
"dascript"
],
"label": "daScript debugger",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "daScript compiler with arguments",
"default": "${config:dascript.compiler} ${file}"
},
"console": {
"type": "string",
"description": "Where to launch the debug target. Defaults to 'internalOutput' if not defined",
"default": "internalOutput",
"enum": [
"internalOutput",
"externalTerminal",
"internalTerminal"
]
},
"cwd": {
"type": "string",
"description": "Working directory",
"default": "${fileDirname}"
},
"host": {
"type": "string",
"description": "Host used to connect with debugger",
"default": ""
},
"port": {
"type": "number",
"description": "Port used to connect with debugger (0 - random)",
"default": 0
},
"connectTimeout": {
"type": "number",
"description": "Socket connection delay in seconds",
"default": 2
},
"inlinePreviewLimit": {
"type": "number",
"description": "Max length of preview values",
"default": 50
},
"maxChildrenCount": {
"type": "number",
"description": "Max number of children to show in variables view (-1 - unlimited)",
"default": 500
},
"collectAllGlobals": {
"type": "boolean",
"description": "Collect all global variables",
"default": false
},
"steppingDebugger": {
"type": "boolean",
"description": "Use stepping debugger",
"default": false
},
"profiler": {
"type": "boolean",
"description": "Use internal profiler. Profile whole application",
"default": false
},
"profilerManual": {
"type": "boolean",
"description": "Use internal profiler. Call profiler_boost::enable_profiler/disable_profiler to manage profiler",
"default": false
},
"profilerFile": {
"type": "string",
"description": "Profiler output file. Requires 'profiler' attribute",
"default": "",
"required": [
"profiler"
]
},
"paths": {
"type": "array",
"default": [],
"description": "Absolute folder paths to resolve relative file paths"
},
"pathAliases": {
"type": "object",
"default": {},
"description": "Aliases for paths to resolve virtual file paths"
}
}
},
"attach": {
"required": [],
"properties": {
"host": {
"type": "string",
"description": "Host used to connect with debugger",
"default": ""
},
"port": {
"type": "number",
"description": "Debug port used to connect",
"default": 10000
},
"inlinePreviewLimit": {
"type": "number",
"description": "Max length of preview values",
"default": 50
},
"maxChildrenCount": {
"type": "number",
"description": "Max number of children to show in variables view (-1 - unlimited)",
"default": 500
},
"collectAllGlobals": {
"type": "boolean",
"description": "Collect all global variables",
"default": false
},
"steppingDebugger": {
"type": "boolean",
"description": "Use stepping debugger",
"default": false
},
"paths": {
"type": "array",
"default": [],
"description": "Absolute folder paths to resolve relative file paths"
},
"pathAliases": {
"type": "object",
"default": {},
"description": "Aliases for paths to resolve virtual file paths"
}
}
}
},
"initialConfigurations": [
{
"type": "dascript",
"request": "launch",
"name": "daScript: launch",
"program": "${config:dascript.compiler} ${file}",
"cwd": "${fileDirname}"
},
{
"type": "dascript",
"request": "attach",
"name": "daScript: attach",
"port": 10000
}
],
"configurationSnippets": [
{
"label": "daScript: Launch",
"description": "Debug daScript file",
"body": {
"type": "dascript",
"request": "launch",
"name": "daScript: Launch",
"program": "^\"\\${config:dascript.compiler} \\${file}\"",
"cwd": "^\"\\${fileDirname}\""
}
},
{
"label": "daScript: Attach",
"description": "Attach to running application",
"body": {
"type": "dascript",
"request": "attach",
"name": "daScript: Attach",
"port": 10000
}
},
{
"label": "daScript: Test file",
"description": "Test current file using dastest framework",
"body": {
"type": "dascript",
"request": "launch",
"name": "daScript: Test file",
"program": "^\"\\${config:dascript.compiler} _dasroot_/dastest/dastest.das -- --color --test \\${file}\"",
"cwd": "^\"\\${fileDirname}\"",
"console": "internalTerminal"
}
},
{
"label": "daScript: Test all",
"description": "Test whole workspace using dastest framework",
"body": {
"type": "dascript",
"request": "launch",
"name": "daScript: Test all",
"program": "^\"\\${config:dascript.compiler} _dasroot_/dastest/dastest.das -- --color --test \\${workspaceFolder}\"",
"cwd": "^\"\\${workspaceFolder}\"",
"console": "internalTerminal"
}
}
]
}
],
"configuration": {
"type": "object",
"title": "daScript",
"properties": {
"dascript.compiler": {
"scope": "resource",
"type": "string",
"default": "daslang",
"description": "Absolute path to the dascript compiler"
},
"dascript.server.args": {
"scope": "resource",
"type": "array",
"default": [
"${file}"
],
"description": "LSP server run arguments\n- ${file} - current file"
},
"dascript.server.connectTimeout": {
"type": "number",
"description": "Socket connection delay in seconds",
"default": 4
},
"dascript.project.file": {
"scope": "resource",
"type": "string",
"default": "",
"description": "Dascript project file - *.das_project"
},
"dascript.project.scanWorkspace": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Scan/compile all files in workspace"
},
"dascript.project.storeCompilationData": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Whether to store compilation data in cache folder (.dascript)"
},
"dascript.project.compilationConcurrency": {
"scope": "resource",
"type": "number",
"default": 8,
"description": "Number of processes to use while validating (compiling) workspace"
},
"dascript.project.roots": {
"scope": "resource",
"type": "array",
"default": [],
"description": "Absolute folder paths to resolve relative file paths"
},
"dascript.project.fileAccessRoots": {
"scope": "resource",
"type": "object",
"default": {},
"description": "Additional roots passed to file access when compiling script file"
},
"dascript.hovers.verbose": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "More information in hover"
},
"dascript.debug.port": {
"scope": "resource",
"type": "integer",
"default": 0,
"description": "Server port (negative value - disable server spawn)"
},
"dascript.experimental": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Experimental (beta) features"
},
"dascript.colorPreviewFormat": {
"scope": "resource",
"type": "string",
"enum": [
"ARGB",
"RGBA"
],
"default": "ARGB",
"description": "Color preview format"
},
"dascript.policies.no_global_variables": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "no_global_variables policy"
},
"dascript.policies.no_unused_block_arguments": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "no_unused_block_arguments policy"
},
"dascript.policies.no_unused_function_arguments": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "no_unused_function_arguments policy"
},
"dascript.policies.fail_on_lack_of_aot_export": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "fail_on_lack_of_aot_export policy"
},
"dascript.policies.version_2_syntax": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "version_2_syntax policy"
},
"dascript.policies.gen2_make_syntax": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "gen2_make_syntax policy"
},
"dascript.policies.always_report_candidates_threshold": {
"scope": "resource",
"type": "integer",
"default": 6,
"description": "always_report_candidates_threshold policy"
},
"dascript.policies.max_infer_passes": {
"scope": "resource",
"type": "integer",
"default": 50,
"description": "max_infer_passes policy"
},
"dascript.policies.strict_properties": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "strict_properties policy"
}
}
},
"snippets": [
{
"language": "dascript",
"path": "./snippets/dascript.json"
}
],
"commands": [
{
"command": "dascript.validateWorkspace",
"title": "daScript: Run workspace validation"
},
{
"command": "dascript.clearValidationCache",
"title": "daScript: Clear validation cache"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vscode/debugadapter": "^1.48.0",
"eslint": "^10.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@vscode/debugadapter": "^1.48.0",
"run-in-terminal": "^0.0.3",
"semver": "^7.5.2"
}
}