Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/html-language-features/package.json
3309 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.validate.scripts": {
186
"type": "boolean",
187
"scope": "resource",
188
"default": true,
189
"description": "%html.validate.scripts%"
190
},
191
"html.validate.styles": {
192
"type": "boolean",
193
"scope": "resource",
194
"default": true,
195
"description": "%html.validate.styles%"
196
},
197
"html.autoCreateQuotes": {
198
"type": "boolean",
199
"scope": "resource",
200
"default": true,
201
"markdownDescription": "%html.autoCreateQuotes%"
202
},
203
"html.autoClosingTags": {
204
"type": "boolean",
205
"scope": "resource",
206
"default": true,
207
"description": "%html.autoClosingTags%"
208
},
209
"html.hover.documentation": {
210
"type": "boolean",
211
"scope": "resource",
212
"default": true,
213
"description": "%html.hover.documentation%"
214
},
215
"html.hover.references": {
216
"type": "boolean",
217
"scope": "resource",
218
"default": true,
219
"description": "%html.hover.references%"
220
},
221
"html.mirrorCursorOnMatchingTag": {
222
"type": "boolean",
223
"scope": "resource",
224
"default": false,
225
"description": "%html.mirrorCursorOnMatchingTag%",
226
"deprecationMessage": "%html.mirrorCursorOnMatchingTagDeprecationMessage%"
227
},
228
"html.trace.server": {
229
"type": "string",
230
"scope": "window",
231
"enum": [
232
"off",
233
"messages",
234
"verbose"
235
],
236
"default": "off",
237
"description": "%html.trace.server.desc%"
238
}
239
}
240
},
241
"configurationDefaults": {
242
"[html]": {
243
"editor.suggest.insertMode": "replace"
244
},
245
"[handlebars]": {
246
"editor.suggest.insertMode": "replace"
247
}
248
},
249
"jsonValidation": [
250
{
251
"fileMatch": "*.html-data.json",
252
"url": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/master/docs/customData.schema.json"
253
},
254
{
255
"fileMatch": "package.json",
256
"url": "./schemas/package.schema.json"
257
}
258
]
259
},
260
"dependencies": {
261
"@vscode/extension-telemetry": "^0.9.8",
262
"vscode-languageclient": "^10.0.0-next.16",
263
"vscode-uri": "^3.1.0"
264
},
265
"devDependencies": {
266
"@types/node": "22.x"
267
},
268
"repository": {
269
"type": "git",
270
"url": "https://github.com/microsoft/vscode.git"
271
}
272
}
273
274