Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/html-language-features/package.json
5242 views
1
{
2
"name": "html-language-features",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
9
"engines": {
10
"vscode": "^1.77.0"
11
},
12
"icon": "icons/html.png",
13
"activationEvents": [
14
"onLanguage:html",
15
"onLanguage:handlebars"
16
],
17
"enabledApiProposals": [
18
"extensionsAny"
19
],
20
"main": "./client/out/node/htmlClientMain",
21
"browser": "./client/dist/browser/htmlClientMain",
22
"capabilities": {
23
"virtualWorkspaces": true,
24
"untrustedWorkspaces": {
25
"supported": true
26
}
27
},
28
"scripts": {
29
"compile": "npx gulp compile-extension:html-language-features-client compile-extension:html-language-features-server",
30
"watch": "npx gulp watch-extension:html-language-features-client watch-extension:html-language-features-server",
31
"install-client-next": "npm install vscode-languageclient@next"
32
},
33
"categories": [
34
"Programming Languages"
35
],
36
"contributes": {
37
"configuration": {
38
"id": "html",
39
"order": 20,
40
"type": "object",
41
"title": "HTML",
42
"properties": {
43
"html.completion.attributeDefaultValue": {
44
"type": "string",
45
"scope": "resource",
46
"enum": [
47
"doublequotes",
48
"singlequotes",
49
"empty"
50
],
51
"enumDescriptions": [
52
"%html.completion.attributeDefaultValue.doublequotes%",
53
"%html.completion.attributeDefaultValue.singlequotes%",
54
"%html.completion.attributeDefaultValue.empty%"
55
],
56
"default": "doublequotes",
57
"markdownDescription": "%html.completion.attributeDefaultValue%"
58
},
59
"html.customData": {
60
"type": "array",
61
"markdownDescription": "%html.customData.desc%",
62
"default": [],
63
"items": {
64
"type": "string"
65
},
66
"scope": "resource"
67
},
68
"html.format.enable": {
69
"type": "boolean",
70
"scope": "window",
71
"default": true,
72
"description": "%html.format.enable.desc%"
73
},
74
"html.format.wrapLineLength": {
75
"type": "integer",
76
"scope": "resource",
77
"default": 120,
78
"description": "%html.format.wrapLineLength.desc%"
79
},
80
"html.format.unformatted": {
81
"type": [
82
"string",
83
"null"
84
],
85
"scope": "resource",
86
"default": "wbr",
87
"markdownDescription": "%html.format.unformatted.desc%"
88
},
89
"html.format.contentUnformatted": {
90
"type": [
91
"string",
92
"null"
93
],
94
"scope": "resource",
95
"default": "pre,code,textarea",
96
"markdownDescription": "%html.format.contentUnformatted.desc%"
97
},
98
"html.format.indentInnerHtml": {
99
"type": "boolean",
100
"scope": "resource",
101
"default": false,
102
"markdownDescription": "%html.format.indentInnerHtml.desc%"
103
},
104
"html.format.preserveNewLines": {
105
"type": "boolean",
106
"scope": "resource",
107
"default": true,
108
"description": "%html.format.preserveNewLines.desc%"
109
},
110
"html.format.maxPreserveNewLines": {
111
"type": [
112
"number",
113
"null"
114
],
115
"scope": "resource",
116
"default": null,
117
"markdownDescription": "%html.format.maxPreserveNewLines.desc%"
118
},
119
"html.format.indentHandlebars": {
120
"type": "boolean",
121
"scope": "resource",
122
"default": false,
123
"markdownDescription": "%html.format.indentHandlebars.desc%"
124
},
125
"html.format.extraLiners": {
126
"type": [
127
"string",
128
"null"
129
],
130
"scope": "resource",
131
"default": "head, body, /html",
132
"markdownDescription": "%html.format.extraLiners.desc%"
133
},
134
"html.format.wrapAttributes": {
135
"type": "string",
136
"scope": "resource",
137
"default": "auto",
138
"enum": [
139
"auto",
140
"force",
141
"force-aligned",
142
"force-expand-multiline",
143
"aligned-multiple",
144
"preserve",
145
"preserve-aligned"
146
],
147
"enumDescriptions": [
148
"%html.format.wrapAttributes.auto%",
149
"%html.format.wrapAttributes.force%",
150
"%html.format.wrapAttributes.forcealign%",
151
"%html.format.wrapAttributes.forcemultiline%",
152
"%html.format.wrapAttributes.alignedmultiple%",
153
"%html.format.wrapAttributes.preserve%",
154
"%html.format.wrapAttributes.preservealigned%"
155
],
156
"description": "%html.format.wrapAttributes.desc%"
157
},
158
"html.format.wrapAttributesIndentSize": {
159
"type": [
160
"number",
161
"null"
162
],
163
"scope": "resource",
164
"default": null,
165
"markdownDescription": "%html.format.wrapAttributesIndentSize.desc%"
166
},
167
"html.format.templating": {
168
"type": "boolean",
169
"scope": "resource",
170
"default": false,
171
"description": "%html.format.templating.desc%"
172
},
173
"html.format.unformattedContentDelimiter": {
174
"type": "string",
175
"scope": "resource",
176
"default": "",
177
"markdownDescription": "%html.format.unformattedContentDelimiter.desc%"
178
},
179
"html.suggest.html5": {
180
"type": "boolean",
181
"scope": "resource",
182
"default": true,
183
"description": "%html.suggest.html5.desc%"
184
},
185
"html.suggest.hideEndTagSuggestions": {
186
"type": "boolean",
187
"scope": "resource",
188
"default": false,
189
"description": "%html.suggest.hideEndTagSuggestions.desc%"
190
},
191
"html.validate.scripts": {
192
"type": "boolean",
193
"scope": "resource",
194
"default": true,
195
"description": "%html.validate.scripts%"
196
},
197
"html.validate.styles": {
198
"type": "boolean",
199
"scope": "resource",
200
"default": true,
201
"description": "%html.validate.styles%"
202
},
203
"html.autoCreateQuotes": {
204
"type": "boolean",
205
"scope": "resource",
206
"default": true,
207
"markdownDescription": "%html.autoCreateQuotes%"
208
},
209
"html.autoClosingTags": {
210
"type": "boolean",
211
"scope": "resource",
212
"default": true,
213
"description": "%html.autoClosingTags%"
214
},
215
"html.hover.documentation": {
216
"type": "boolean",
217
"scope": "resource",
218
"default": true,
219
"description": "%html.hover.documentation%"
220
},
221
"html.hover.references": {
222
"type": "boolean",
223
"scope": "resource",
224
"default": true,
225
"description": "%html.hover.references%"
226
},
227
"html.mirrorCursorOnMatchingTag": {
228
"type": "boolean",
229
"scope": "resource",
230
"default": false,
231
"description": "%html.mirrorCursorOnMatchingTag%",
232
"deprecationMessage": "%html.mirrorCursorOnMatchingTagDeprecationMessage%"
233
},
234
"html.trace.server": {
235
"type": "string",
236
"scope": "window",
237
"enum": [
238
"off",
239
"messages",
240
"verbose"
241
],
242
"default": "off",
243
"description": "%html.trace.server.desc%"
244
}
245
}
246
},
247
"configurationDefaults": {
248
"[html]": {
249
"editor.suggest.insertMode": "replace"
250
},
251
"[handlebars]": {
252
"editor.suggest.insertMode": "replace"
253
}
254
},
255
"jsonValidation": [
256
{
257
"fileMatch": "*.html-data.json",
258
"url": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/master/docs/customData.schema.json"
259
},
260
{
261
"fileMatch": "package.json",
262
"url": "./schemas/package.schema.json"
263
}
264
]
265
},
266
"dependencies": {
267
"@vscode/extension-telemetry": "^0.9.8",
268
"vscode-languageclient": "^10.0.0-next.18",
269
"vscode-uri": "^3.1.0"
270
},
271
"devDependencies": {
272
"@types/node": "22.x"
273
},
274
"repository": {
275
"type": "git",
276
"url": "https://github.com/microsoft/vscode.git"
277
}
278
}
279
280