This repository has been archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
237 lines (237 loc) · 8.85 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
{
"name": "svelte-vscode",
"version": "0.9.3",
"description": "Svelte language support for VS Code",
"main": "dist/extension.js",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"build": "tsc -p ./",
"watch": "tsc -w -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"repository": {
"type": "git",
"url": "https://github.com/UnwrittenFun/svelte-vscode.git"
},
"keywords": [
"svelte",
"vscode"
],
"author": "James Birtles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UnwrittenFun/svelte-vscode/issues"
},
"homepage": "https://github.com/UnwrittenFun/svelte-vscode#readme",
"displayName": "Svelte",
"publisher": "JamesBirtles",
"icon": "icons/logo.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Formatters"
],
"engines": {
"vscode": "^1.30.0"
},
"activationEvents": [
"onLanguage:svelte",
"onCommand:svelte.restartLanguageServer"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Svelte",
"properties": {
"svelte.language-server.runtime": {
"type": "string",
"title": "Language Server Runtime",
"description": "Path to the node executable to use to spawn the language server"
},
"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.definitions.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Go to Definition",
"description": "Enable go to definition for TypeScript"
},
"svelte.plugin.typescript.codeActions.enable": {
"type": "boolean",
"default": true,
"title": "TypeScript: Code Actions",
"description": "Enable code actions for TypeScript"
},
"svelte.plugin.css.enable": {
"type": "boolean",
"default": true,
"title": "CSS",
"description": "Enable the CSS plugin"
},
"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.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.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.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.svelte.enable": {
"type": "boolean",
"default": true,
"title": "Svelte",
"description": "Enable the Svelte plugin"
},
"svelte.plugin.svelte.diagnostics.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Diagnostics",
"description": "Enable diagnostic messages for Svelte"
},
"svelte.plugin.svelte.format.enable": {
"type": "boolean",
"default": true,
"title": "Svelte: Format",
"description": "Enable formatting for Svelte (includes css & js)"
}
}
},
"languages": [
{
"id": "svelte",
"aliases": [
"Svelte",
"svelte"
],
"extensions": [
".svelte"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "svelte",
"scopeName": "source.svelte",
"path": "./syntaxes/svelte.tmLanguage.json",
"embeddedLanguages": {
"text.html": "html",
"source.css": "css",
"source.css.scss": "scss",
"source.js": "javascript",
"source.ts": "typescript"
}
}
],
"commands": [
{
"command": "svelte.restartLanguageServer",
"title": "Svelte: Restart Language Server"
}
],
"breakpoints": [
{
"language": "svelte"
}
]
},
"devDependencies": {
"@types/node": "^9.6.5",
"typescript": "^3.0.1",
"vscode": "^1.1.30"
},
"dependencies": {
"svelte-language-server": "0.10.3",
"vscode-languageclient": "^5.0.1"
}
}