forked from sveltejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
735 lines (735 loc) · 31.9 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
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
{
"name": "svelte-vscode",
"version": "0.5.0",
"description": "Svelte language support for VS Code",
"main": "dist/src/extension.js",
"scripts": {
"build:grammar": "npx js-yaml syntaxes/svelte.tmLanguage.src.yaml > syntaxes/svelte.tmLanguage.json && npx js-yaml syntaxes/postcss.src.yaml > syntaxes/postcss.json",
"build:ts": "tsc -p ./",
"build": "npm run build:ts && npm run build:grammar",
"vscode:prepublish": "npm run build && npm prune --production",
"watch": "npm run build:grammar && tsc -w -p ./",
"test": "npm run build:grammar && node test/grammar/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/language-tools.git"
},
"keywords": [
"svelte",
"vscode"
],
"author": "James Birtles <jameshbirtles@gmail.com> & the Svelte Core Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/language-tools/issues"
},
"homepage": "https://github.com/sveltejs/language-tools#readme",
"displayName": "Svelte for VS Code",
"publisher": "svelte",
"icon": "icons/logo.png",
"galleryBanner": {
"color": "#FF3E00",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Formatters"
],
"engines": {
"vscode": "^1.67.0"
},
"activationEvents": [
"onLanguage:svelte",
"onCommand:svelte.restartLanguageServer",
"onLanguage:javascript",
"onLanguage:typescript"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "The extension requires workspace trust because it executes code specified by the workspace. Loading the user's node_modules and loading svelte config files is disabled when untrusted"
}
},
"contributes": {
"typescriptServerPlugins": [
{
"name": "typescript-svelte-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
],
"configuration": {
"type": "object",
"title": "Svelte",
"properties": {
"svelte.enable-ts-plugin": {
"type": "boolean",
"default": false,
"title": "Enable TypeScript Svelte plugin",
"description": "Enables a TypeScript plugin which provides intellisense for Svelte files inside TS/JS files."
},
"svelte.ask-to-enable-ts-plugin": {
"type": "boolean",
"default": true,
"title": "Ask to enable TypeScript Svelte plugin",
"description": "Ask on startup to enable the TypeScript plugin."
},
"svelte.language-server.runtime": {
"scope": "application",
"type": "string",
"title": "Language Server Runtime",
"description": "- You normally don't need this - Path to the node executable to use to spawn the language server. This is useful when you depend on native modules such as node-sass as without this they will run in the context of vscode, meaning node version mismatch is likely. Minimum required node version is 12.17. This setting can only be changed in user settings for security reasons."
},
"svelte.language-server.ls-path": {
"scope": "application",
"type": "string",
"title": "Language Server Path",
"description": "- You normally don't set this - Path to the language server executable. If you installed the \"svelte-language-server\" npm package, it's within there at \"bin/server.js\". Path can be either relative to your workspace root or absolute. Set this only if you want to use a custom version of the language server. This will then also use the workspace version of TypeScript. This setting can only be changed in user settings for security reasons."
},
"svelte.language-server.port": {
"type": "number",
"title": "Language Server Port",
"description": "- You normally don't set this - At which port to spawn the language server. Can be used for attaching to the process for debugging / profiling. If you experience crashes due to \"port already in use\", try setting the port. -1 = default port is used.",
"default": -1
},
"svelte.language-server.debug": {
"type": "boolean",
"title": "Language Server Debug Mode",
"description": "- You normally don't set this - Enable more verbose logging for the language server useful for debugging language server execution."
},
"svelte.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the Svelte Language Server."
},
"svelte.ui.svelteKitFilesContextMenu.enable": {
"type": "string",
"default": "auto",
"enum": [
"auto",
"never",
"always"
],
"description": "Show a context menu to generate SvelteKit files. \"always\" to always show it. \"never\" to always disable it. \"auto\" to show it when in a SvelteKit project. "
},
"svelte.plugin.typescript.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript",
"description": "Enable the TypeScript plugin"
},
"svelte.plugin.typescript.diagnostics.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Diagnostics",
"description": "Enable diagnostic messages for TypeScript"
},
"svelte.plugin.typescript.hover.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Hover Info",
"description": "Enable hover info for TypeScript"
},
"svelte.plugin.typescript.documentSymbols.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Symbols in Outline",
"description": "Enable document symbols for TypeScript"
},
"svelte.plugin.typescript.completions.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Completions",
"description": "Enable completions for TypeScript"
},
"svelte.plugin.typescript.codeActions.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Code Actions",
"description": "Enable code actions for TypeScript"
},
"svelte.plugin.typescript.selectionRange.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Selection Range",
"description": "Enable selection range for TypeScript"
},
"svelte.plugin.typescript.signatureHelp.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Signature Help",
"description": "Enable signature help (parameter hints) for TypeScript"
},
"svelte.plugin.typescript.semanticTokens.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Semantic Tokens",
"description": "Enable semantic tokens (semantic highlight) for TypeScript."
},
"svelte.plugin.css.enable": {
"type": "boolean",
"default": true,
"title": "CSS",
"description": "Enable the CSS plugin"
},
"svelte.plugin.css.globals": {
"type": "string",
"default": "",
"title": "CSS: Global Files",
"description": "Which css files should be checked for global variables (`--global-var: value;`). These variables are added to the css completions. String of comma-separated file paths or globs relative to workspace root."
},
"svelte.plugin.css.diagnostics.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Diagnostics",
"description": "Enable diagnostic messages for CSS"
},
"svelte.plugin.css.hover.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Hover Info",
"description": "Enable hover info for CSS"
},
"svelte.plugin.css.completions.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Auto Complete",
"description": "Enable auto completions for CSS"
},
"svelte.plugin.css.completions.emmet": {
"type": "boolean",
"default": true,
"title": "CSS: Include Emmet Completions",
"description": "Enable emmet auto completions for CSS"
},
"svelte.plugin.css.documentColors.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Document Colors",
"description": "Enable document colors for CSS"
},
"svelte.plugin.css.colorPresentations.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Color Picker",
"description": "Enable color picker for CSS"
},
"svelte.plugin.css.documentSymbols.enable": {
"type": "boolean",
"default": true,
"title": "CSS: Symbols in Outline",
"description": "Enable document symbols for CSS"
},
"svelte.plugin.css.selectionRange.enable": {
"type": "boolean",
"default": true,
"title": "CSS: SelectionRange",
"description": "Enable selection range for CSS"
},
"svelte.plugin.html.enable": {
"type": "boolean",
"default": true,
"title": "HTML",
"description": "Enable the HTML plugin"
},
"svelte.plugin.html.hover.enable": {
"type": "boolean",
"default": true,
"title": "HTML: Hover Info",
"description": "Enable hover info for HTML"
},
"svelte.plugin.html.completions.enable": {
"type": "boolean",
"default": true,
"title": "HTML: Auto Complete",
"description": "Enable auto completions for HTML"
},
"svelte.plugin.html.completions.emmet": {
"type": "boolean",
"default": true,
"title": "HTML: Include Emmet Completions",
"description": "Enable emmet auto completions for HTML"
},
"svelte.plugin.html.tagComplete.enable": {
"type": "boolean",
"default": true,
"title": "HTML: Tag Auto Closing",
"description": "Enable HTML tag auto closing"
},
"svelte.plugin.html.documentSymbols.enable": {
"type": "boolean",
"default": true,
"title": "HTML: Symbols in Outline",
"description": "Enable document symbols for HTML"
},
"svelte.plugin.html.linkedEditing.enable": {
"type": "boolean",
"default": true,
"title": "HTML: Linked Editing",
"description": "Enable Linked Editing for HTML"
},
"svelte.plugin.svelte.enable": {
"type": "boolean",
"default": true,
"title": "Svelte",
"description": "Enable the Svelte plugin"
},
"svelte.plugin.svelte.useNewTransformation": {
"type": "boolean",
"default": true,
"title": "Use a new transformation for intellisense",
"description": "Svelte files need to be transformed to something that TypeScript understands for intellisense. Version 2.0 of this transformation can be enabled with this setting. It will be the default, soon."
},
"svelte.plugin.svelte.note-new-transformation": {
"type": "boolean",
"default": true,
"title": "Show a note about the new transformation",
"description": "There's a new transformation for improved intellisense which is now turned on by default. This note notifies you about it."
},
"svelte.plugin.svelte.diagnostics.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Diagnostics",
"description": "Enable diagnostic messages for Svelte"
},
"svelte.plugin.svelte.compilerWarnings": {
"type": "object",
"additionalProperties": {
"type": "string",
"enum": [
"ignore",
"error"
]
},
"default": {},
"title": "Svelte: Compiler Warnings Settings",
"description": "Svelte compiler warning codes to ignore or to treat as errors. Example: { 'css-unused-selector': 'ignore', 'unused-export-let': 'error'}"
},
"svelte.plugin.svelte.format.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Format",
"description": "Enable formatting for Svelte (includes css & js). You can set some formatting options through this extension. They will be ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.svelteSortOrder": {
"type": "string",
"default": "options-scripts-markup-styles",
"title": "Svelte Format: Sort Order",
"description": "Format: join the keys `options`, `scripts`, `markup`, `styles` with a - in the order you want. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.svelteStrictMode": {
"type": "boolean",
"default": false,
"title": "Svelte Format: Strict Mode",
"description": "More strict HTML syntax. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.svelteAllowShorthand": {
"type": "boolean",
"default": true,
"title": "Svelte Format: Allow Shorthand",
"description": "Option to enable/disable component attribute shorthand if attribute name and expression are the same. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.svelteBracketNewLine": {
"type": "boolean",
"default": true,
"title": "Svelte Format: Bracket New Line",
"description": "Put the `>` of a multiline element on a new line. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.svelteIndentScriptAndStyle": {
"type": "boolean",
"default": true,
"title": "Svelte Format: Indent Script And Style",
"description": "Whether or not to indent code inside `<script>` and `<style>` tags. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.printWidth": {
"type": "number",
"default": 80,
"title": "Svelte Format: Print Width",
"description": "Maximum line width after which code is tried to be broken up. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.format.config.singleQuote": {
"type": "boolean",
"default": false,
"title": "Svelte Format: Quotes",
"description": "Use single quotes instead of double quotes, where possible. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file."
},
"svelte.plugin.svelte.completions.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Completions",
"description": "Enable auto completions for Svelte"
},
"svelte.plugin.svelte.hover.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Hover",
"description": "Enable hover information for Svelte"
},
"svelte.plugin.svelte.codeActions.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Code Actions",
"description": "Enable Code Actions for Svelte"
},
"svelte.plugin.svelte.selectionRange.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Selection Range",
"description": "Enable selection range for Svelte"
},
"svelte.plugin.svelte.rename.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Rename",
"description": "Enable rename/move Svelte files functionality"
},
"svelte.plugin.svelte.defaultScriptLanguage": {
"type": "string",
"default": "none",
"title": "Svelte: Default Script Language",
"description": "The default language to use when generating new script tags",
"enum": [
"none",
"ts"
]
}
}
},
"languages": [
{
"id": "svelte",
"aliases": [
"Svelte",
"svelte"
],
"extensions": [
".svelte"
],
"configuration": "./language-configuration.json"
},
{
"id": "json",
"filenames": [
".prettierrc"
]
}
],
"jsonValidation": [
{
"fileMatch": ".prettierrc",
"url": "./prettier-options-schema.json"
},
{
"fileMatch": ".prettierrc.json",
"url": "./prettier-options-schema.json"
},
{
"fileMatch": "package.json",
"url": "./package-json-schema.json"
}
],
"grammars": [
{
"language": "svelte",
"scopeName": "source.svelte",
"path": "./syntaxes/svelte.tmLanguage.json",
"embeddedLanguages": {
"text.html.basic": "html",
"text.html.markdown": "markdown",
"text.pug": "jade",
"source.css": "css",
"source.css.less": "less",
"source.css.scss": "scss",
"source.css.postcss": "postcss",
"source.sass": "sass",
"source.stylus": "stylus",
"source.js": "javascript",
"source.ts": "typescript",
"source.coffee": "coffeescript"
},
"unbalancedBracketScopes": [
"keyword.operator.relational",
"storage.type.function.arrow",
"keyword.operator.bitwise.shift",
"meta.brace.angle",
"punctuation.definition.tag"
]
},
{
"scopeName": "svelte.pug",
"path": "./syntaxes/pug-svelte.json",
"injectTo": [
"source.svelte"
],
"embeddedLanguages": {
"source.ts": "typescript",
"text.pug": "jade"
}
},
{
"scopeName": "svelte.pug.tags",
"path": "./syntaxes/pug-svelte-tags.json",
"injectTo": [
"source.svelte"
],
"embeddedLanguages": {
"source.ts": "typescript",
"text.pug": "jade"
}
},
{
"scopeName": "svelte.pug.dotblock",
"path": "./syntaxes/pug-svelte-dotblock.json",
"injectTo": [
"source.svelte"
],
"embeddedLanguages": {
"source.ts": "typescript"
}
},
{
"scopeName": "markdown.svelte.codeblock",
"path": "./syntaxes/markdown-svelte.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.svelte": "svelte"
}
},
{
"scopeName": "markdown.svelte.codeblock.script",
"path": "./syntaxes/markdown-svelte-js.json",
"injectTo": [
"text.html.markdown"
]
},
{
"scopeName": "markdown.svelte.codeblock.style",
"path": "./syntaxes/markdown-svelte-css.json",
"injectTo": [
"text.html.markdown"
]
},
{
"scopeName": "source.css.postcss",
"path": "./syntaxes/postcss.json",
"injectTo": [
"source.svelte"
]
}
],
"commands": [
{
"command": "svelte.restartLanguageServer",
"title": "Svelte: Restart Language Server"
},
{
"command": "svelte.showCompiledCodeToSide",
"title": "Svelte: Show Compiled Code",
"icon": {
"light": "icons/preview-right-light.svg",
"dark": "icons/preview-right-dark.svg"
}
},
{
"command": "svelte.extractComponent",
"title": "Svelte: Extract Component"
},
{
"command": "svelte.typescript.findAllFileReferences",
"title": "Svelte: Find File References"
},
{
"command": "svelte.typescript.findComponentReferences",
"title": "Svelte: Find Component References"
},
{
"command": "svelte.kit.generateMultipleFiles",
"title": "SvelteKit: Create route"
},
{
"command": "svelte.kit.generatePage",
"title": "SvelteKit: Create +page.svelte"
},
{
"command": "svelte.kit.generatePageLoad",
"title": "SvelteKit: Create +page.js/ts"
},
{
"command": "svelte.kit.generatePageServerLoad",
"title": "SvelteKit: Create +page.server.js/ts"
},
{
"command": "svelte.kit.generateLayout",
"title": "SvelteKit: Create +layout.svelte"
},
{
"command": "svelte.kit.generateLayoutLoad",
"title": "SvelteKit: Create +layout.js/ts"
},
{
"command": "svelte.kit.generateLayoutServerLoad",
"title": "SvelteKit: Create +layout.server.js/ts"
},
{
"command": "svelte.kit.generateServer",
"title": "SvelteKit: Create +server.js/ts"
},
{
"command": "svelte.kit.generateError",
"title": "SvelteKit: Create +error.svelte"
}
],
"menus": {
"commandPalette": [
{
"command": "svelte.showCompiledCodeToSide",
"when": "editorLangId == svelte"
},
{
"command": "svelte.typescript.findAllFileReferences",
"when": "editorLangId == svelte && resourceScheme == file"
},
{
"command": "svelte.typescript.findComponentReferences",
"when": "editorLangId == svelte && resourceScheme == file"
}
],
"editor/title": [
{
"command": "svelte.showCompiledCodeToSide",
"when": "editorLangId == svelte",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "svelte.typescript.findAllFileReferences",
"when": "resourceLangId == svelte && resourceScheme == file"
},
{
"command": "svelte.typescript.findComponentReferences",
"when": "resourceLangId == svelte && resourceScheme == file"
}
],
"editor/context": [
{
"command": "svelte.extractComponent",
"when": "editorLangId == svelte",
"group": "1_modification"
},
{
"command": "svelte.typescript.findAllFileReferences",
"when": "editorLangId == svelte",
"group": "4_search"
},
{
"command": "svelte.typescript.findComponentReferences",
"when": "editorLangId == svelte",
"group": "4_search"
}
],
"explorer/context": [
{
"command": "svelte.typescript.findAllFileReferences",
"when": "resourceLangId == svelte",
"group": "4_search"
},
{
"command": "svelte.typescript.findComponentReferences",
"when": "resourceLangId == svelte",
"group": "4_search"
},
{
"when": "explorerResourceIsFolder && config.svelte.ui.svelteKitFilesContextMenu.enable == always || explorerResourceIsFolder && svelte.uiContext.svelteKitFilesContextMenu.enable",
"submenu": "sveltekit2files",
"group": "1_SvelteKit2files"
}
],
"sveltekit2files": [
{
"command": "svelte.kit.generateMultipleFiles",
"group": "0_SvelteKit_Multiple"
},
{
"command": "svelte.kit.generatePage",
"group": "1_SvelteKit_Page"
},
{
"command": "svelte.kit.generatePageLoad",
"group": "1_SvelteKit_Page"
},
{
"command": "svelte.kit.generatePageServerLoad",
"group": "1_SvelteKit_Page"
},
{
"command": "svelte.kit.generateLayout",
"group": "3_SvelteKit_Layout"
},
{
"command": "svelte.kit.generateLayoutLoad",
"group": "3_SvelteKit_Layout"
},
{
"command": "svelte.kit.generateLayoutServerLoad",
"group": "3_SvelteKit_Layout"
},
{
"command": "svelte.kit.generateServer",
"group": "2_SvelteKit_Server"
},
{
"command": "svelte.kit.generateError",
"group": "4_SvelteKit_Error"
}
]
},
"submenus": [
{
"id": "sveltekit2files",
"label": "SvelteKit Files"
}
],
"breakpoints": [
{
"language": "svelte"
}
],
"snippets": [
{
"language": "svelte",
"path": "./snippets/svelte.json"
},
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
}
]
},
"devDependencies": {
"@tsconfig/node12": "^1.0.0",
"@types/lodash": "^4.14.116",
"@types/node": "^13.9.0",
"@types/vscode": "^1.67",
"js-yaml": "^3.14.0",
"typescript": "*",
"vscode-tmgrammar-test": "^0.0.11"
},
"dependencies": {
"lodash": "^4.17.21",
"svelte-language-server": "*",
"vscode-languageclient": "^8.0.0",
"typescript-svelte-plugin": "*"
}
}