Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/emmet/package.json
3292 views
1
{
2
"name": "emmet",
3
"displayName": "Emmet",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "^1.13.0"
10
},
11
"icon": "images/icon.png",
12
"categories": [
13
"Other"
14
],
15
"repository": {
16
"type": "git",
17
"url": "https://github.com/microsoft/vscode.git"
18
},
19
"activationEvents": [
20
"onCommand:emmet.expandAbbreviation",
21
"onLanguage"
22
],
23
"main": "./out/node/emmetNodeMain",
24
"browser": "./dist/browser/emmetBrowserMain",
25
"contributes": {
26
"configuration": {
27
"type": "object",
28
"title": "Emmet",
29
"properties": {
30
"emmet.showExpandedAbbreviation": {
31
"type": [
32
"string"
33
],
34
"enum": [
35
"never",
36
"always",
37
"inMarkupAndStylesheetFilesOnly"
38
],
39
"default": "always",
40
"markdownDescription": "%emmetShowExpandedAbbreviation%"
41
},
42
"emmet.showAbbreviationSuggestions": {
43
"type": "boolean",
44
"default": true,
45
"scope": "language-overridable",
46
"markdownDescription": "%emmetShowAbbreviationSuggestions%"
47
},
48
"emmet.includeLanguages": {
49
"type": "object",
50
"additionalProperties": {
51
"type": "string"
52
},
53
"default": {},
54
"markdownDescription": "%emmetIncludeLanguages%"
55
},
56
"emmet.variables": {
57
"type": "object",
58
"properties": {
59
"lang": {
60
"type": "string",
61
"default": "en"
62
},
63
"charset": {
64
"type": "string",
65
"default": "UTF-8"
66
}
67
},
68
"additionalProperties": {
69
"type": "string"
70
},
71
"default": {},
72
"markdownDescription": "%emmetVariables%"
73
},
74
"emmet.syntaxProfiles": {
75
"type": "object",
76
"default": {},
77
"markdownDescription": "%emmetSyntaxProfiles%"
78
},
79
"emmet.excludeLanguages": {
80
"type": "array",
81
"items": {
82
"type": "string"
83
},
84
"default": [
85
"markdown"
86
],
87
"markdownDescription": "%emmetExclude%"
88
},
89
"emmet.extensionsPath": {
90
"type": "array",
91
"items": {
92
"type": "string",
93
"markdownDescription": "%emmetExtensionsPathItem%"
94
},
95
"default": [],
96
"scope": "machine-overridable",
97
"markdownDescription": "%emmetExtensionsPath%"
98
},
99
"emmet.triggerExpansionOnTab": {
100
"type": "boolean",
101
"default": false,
102
"scope": "language-overridable",
103
"markdownDescription": "%emmetTriggerExpansionOnTab%"
104
},
105
"emmet.useInlineCompletions": {
106
"type": "boolean",
107
"default": false,
108
"markdownDescription": "%emmetUseInlineCompletions%"
109
},
110
"emmet.preferences": {
111
"type": "object",
112
"default": {},
113
"markdownDescription": "%emmetPreferences%",
114
"properties": {
115
"css.intUnit": {
116
"type": "string",
117
"default": "px",
118
"markdownDescription": "%emmetPreferencesIntUnit%"
119
},
120
"css.floatUnit": {
121
"type": "string",
122
"default": "em",
123
"markdownDescription": "%emmetPreferencesFloatUnit%"
124
},
125
"css.propertyEnd": {
126
"type": "string",
127
"default": ";",
128
"markdownDescription": "%emmetPreferencesCssAfter%"
129
},
130
"sass.propertyEnd": {
131
"type": "string",
132
"default": "",
133
"markdownDescription": "%emmetPreferencesSassAfter%"
134
},
135
"stylus.propertyEnd": {
136
"type": "string",
137
"default": "",
138
"markdownDescription": "%emmetPreferencesStylusAfter%"
139
},
140
"css.valueSeparator": {
141
"type": "string",
142
"default": ": ",
143
"markdownDescription": "%emmetPreferencesCssBetween%"
144
},
145
"sass.valueSeparator": {
146
"type": "string",
147
"default": ": ",
148
"markdownDescription": "%emmetPreferencesSassBetween%"
149
},
150
"stylus.valueSeparator": {
151
"type": "string",
152
"default": " ",
153
"markdownDescription": "%emmetPreferencesStylusBetween%"
154
},
155
"bem.elementSeparator": {
156
"type": "string",
157
"default": "__",
158
"markdownDescription": "%emmetPreferencesBemElementSeparator%"
159
},
160
"bem.modifierSeparator": {
161
"type": "string",
162
"default": "_",
163
"markdownDescription": "%emmetPreferencesBemModifierSeparator%"
164
},
165
"filter.commentBefore": {
166
"type": "string",
167
"default": "",
168
"markdownDescription": "%emmetPreferencesFilterCommentBefore%"
169
},
170
"filter.commentAfter": {
171
"type": "string",
172
"default": "\n<!-- /[#ID][.CLASS] -->",
173
"markdownDescription": "%emmetPreferencesFilterCommentAfter%"
174
},
175
"filter.commentTrigger": {
176
"type": "array",
177
"default": [
178
"id",
179
"class"
180
],
181
"markdownDescription": "%emmetPreferencesFilterCommentTrigger%"
182
},
183
"format.noIndentTags": {
184
"type": "array",
185
"default": [
186
"html"
187
],
188
"markdownDescription": "%emmetPreferencesFormatNoIndentTags%"
189
},
190
"format.forceIndentationForTags": {
191
"type": "array",
192
"default": [
193
"body"
194
],
195
"markdownDescription": "%emmetPreferencesFormatForceIndentTags%"
196
},
197
"profile.allowCompactBoolean": {
198
"type": "boolean",
199
"default": false,
200
"markdownDescription": "%emmetPreferencesAllowCompactBoolean%"
201
},
202
"css.webkitProperties": {
203
"type": "string",
204
"default": null,
205
"markdownDescription": "%emmetPreferencesCssWebkitProperties%"
206
},
207
"css.mozProperties": {
208
"type": "string",
209
"default": null,
210
"markdownDescription": "%emmetPreferencesCssMozProperties%"
211
},
212
"css.oProperties": {
213
"type": "string",
214
"default": null,
215
"markdownDescription": "%emmetPreferencesCssOProperties%"
216
},
217
"css.msProperties": {
218
"type": "string",
219
"default": null,
220
"markdownDescription": "%emmetPreferencesCssMsProperties%"
221
},
222
"css.fuzzySearchMinScore": {
223
"type": "number",
224
"default": 0.3,
225
"markdownDescription": "%emmetPreferencesCssFuzzySearchMinScore%"
226
},
227
"output.inlineBreak": {
228
"type": "number",
229
"default": 0,
230
"markdownDescription": "%emmetPreferencesOutputInlineBreak%"
231
},
232
"output.reverseAttributes": {
233
"type": "boolean",
234
"default": false,
235
"markdownDescription": "%emmetPreferencesOutputReverseAttributes%"
236
},
237
"output.selfClosingStyle": {
238
"type": "string",
239
"enum": [
240
"html",
241
"xhtml",
242
"xml"
243
],
244
"default": "html",
245
"markdownDescription": "%emmetPreferencesOutputSelfClosingStyle%"
246
},
247
"css.color.short": {
248
"type": "boolean",
249
"default": true,
250
"markdownDescription": "%emmetPreferencesCssColorShort%"
251
}
252
}
253
},
254
"emmet.showSuggestionsAsSnippets": {
255
"type": "boolean",
256
"default": false,
257
"markdownDescription": "%emmetShowSuggestionsAsSnippets%"
258
},
259
"emmet.optimizeStylesheetParsing": {
260
"type": "boolean",
261
"default": true,
262
"markdownDescription": "%emmetOptimizeStylesheetParsing%"
263
}
264
}
265
},
266
"commands": [
267
{
268
"command": "editor.emmet.action.wrapWithAbbreviation",
269
"title": "%command.wrapWithAbbreviation%",
270
"category": "Emmet"
271
},
272
{
273
"command": "editor.emmet.action.removeTag",
274
"title": "%command.removeTag%",
275
"category": "Emmet"
276
},
277
{
278
"command": "editor.emmet.action.updateTag",
279
"title": "%command.updateTag%",
280
"category": "Emmet"
281
},
282
{
283
"command": "editor.emmet.action.matchTag",
284
"title": "%command.matchTag%",
285
"category": "Emmet"
286
},
287
{
288
"command": "editor.emmet.action.balanceIn",
289
"title": "%command.balanceIn%",
290
"category": "Emmet"
291
},
292
{
293
"command": "editor.emmet.action.balanceOut",
294
"title": "%command.balanceOut%",
295
"category": "Emmet"
296
},
297
{
298
"command": "editor.emmet.action.prevEditPoint",
299
"title": "%command.prevEditPoint%",
300
"category": "Emmet"
301
},
302
{
303
"command": "editor.emmet.action.nextEditPoint",
304
"title": "%command.nextEditPoint%",
305
"category": "Emmet"
306
},
307
{
308
"command": "editor.emmet.action.mergeLines",
309
"title": "%command.mergeLines%",
310
"category": "Emmet"
311
},
312
{
313
"command": "editor.emmet.action.selectPrevItem",
314
"title": "%command.selectPrevItem%",
315
"category": "Emmet"
316
},
317
{
318
"command": "editor.emmet.action.selectNextItem",
319
"title": "%command.selectNextItem%",
320
"category": "Emmet"
321
},
322
{
323
"command": "editor.emmet.action.splitJoinTag",
324
"title": "%command.splitJoinTag%",
325
"category": "Emmet"
326
},
327
{
328
"command": "editor.emmet.action.toggleComment",
329
"title": "%command.toggleComment%",
330
"category": "Emmet"
331
},
332
{
333
"command": "editor.emmet.action.evaluateMathExpression",
334
"title": "%command.evaluateMathExpression%",
335
"category": "Emmet"
336
},
337
{
338
"command": "editor.emmet.action.updateImageSize",
339
"title": "%command.updateImageSize%",
340
"category": "Emmet"
341
},
342
{
343
"command": "editor.emmet.action.incrementNumberByOneTenth",
344
"title": "%command.incrementNumberByOneTenth%",
345
"category": "Emmet"
346
},
347
{
348
"command": "editor.emmet.action.incrementNumberByOne",
349
"title": "%command.incrementNumberByOne%",
350
"category": "Emmet"
351
},
352
{
353
"command": "editor.emmet.action.incrementNumberByTen",
354
"title": "%command.incrementNumberByTen%",
355
"category": "Emmet"
356
},
357
{
358
"command": "editor.emmet.action.decrementNumberByOneTenth",
359
"title": "%command.decrementNumberByOneTenth%",
360
"category": "Emmet"
361
},
362
{
363
"command": "editor.emmet.action.decrementNumberByOne",
364
"title": "%command.decrementNumberByOne%",
365
"category": "Emmet"
366
},
367
{
368
"command": "editor.emmet.action.decrementNumberByTen",
369
"title": "%command.decrementNumberByTen%",
370
"category": "Emmet"
371
},
372
{
373
"command": "editor.emmet.action.reflectCSSValue",
374
"title": "%command.reflectCSSValue%",
375
"category": "Emmet"
376
},
377
{
378
"command": "workbench.action.showEmmetCommands",
379
"title": "%command.showEmmetCommands%",
380
"category": ""
381
}
382
],
383
"menus": {
384
"commandPalette": [
385
{
386
"command": "editor.emmet.action.wrapWithAbbreviation",
387
"when": "!activeEditorIsReadonly"
388
},
389
{
390
"command": "editor.emmet.action.removeTag",
391
"when": "!activeEditorIsReadonly"
392
},
393
{
394
"command": "editor.emmet.action.updateTag",
395
"when": "!activeEditorIsReadonly"
396
},
397
{
398
"command": "editor.emmet.action.matchTag",
399
"when": "!activeEditorIsReadonly"
400
},
401
{
402
"command": "editor.emmet.action.balanceIn",
403
"when": "!activeEditorIsReadonly"
404
},
405
{
406
"command": "editor.emmet.action.balanceOut",
407
"when": "!activeEditorIsReadonly"
408
},
409
{
410
"command": "editor.emmet.action.prevEditPoint",
411
"when": "!activeEditorIsReadonly"
412
},
413
{
414
"command": "editor.emmet.action.nextEditPoint",
415
"when": "!activeEditorIsReadonly"
416
},
417
{
418
"command": "editor.emmet.action.mergeLines",
419
"when": "!activeEditorIsReadonly"
420
},
421
{
422
"command": "editor.emmet.action.selectPrevItem",
423
"when": "!activeEditorIsReadonly"
424
},
425
{
426
"command": "editor.emmet.action.selectNextItem",
427
"when": "!activeEditorIsReadonly"
428
},
429
{
430
"command": "editor.emmet.action.splitJoinTag",
431
"when": "!activeEditorIsReadonly"
432
},
433
{
434
"command": "editor.emmet.action.toggleComment",
435
"when": "!activeEditorIsReadonly"
436
},
437
{
438
"command": "editor.emmet.action.evaluateMathExpression",
439
"when": "!activeEditorIsReadonly"
440
},
441
{
442
"command": "editor.emmet.action.updateImageSize",
443
"when": "!activeEditorIsReadonly"
444
},
445
{
446
"command": "editor.emmet.action.incrementNumberByOneTenth",
447
"when": "!activeEditorIsReadonly"
448
},
449
{
450
"command": "editor.emmet.action.incrementNumberByOne",
451
"when": "!activeEditorIsReadonly"
452
},
453
{
454
"command": "editor.emmet.action.incrementNumberByTen",
455
"when": "!activeEditorIsReadonly"
456
},
457
{
458
"command": "editor.emmet.action.decrementNumberByOneTenth",
459
"when": "!activeEditorIsReadonly"
460
},
461
{
462
"command": "editor.emmet.action.decrementNumberByOne",
463
"when": "!activeEditorIsReadonly"
464
},
465
{
466
"command": "editor.emmet.action.decrementNumberByTen",
467
"when": "!activeEditorIsReadonly"
468
},
469
{
470
"command": "editor.emmet.action.reflectCSSValue",
471
"when": "!activeEditorIsReadonly"
472
}
473
]
474
}
475
},
476
"scripts": {
477
"watch": "gulp watch-extension:emmet",
478
"compile": "gulp compile-extension:emmet",
479
"deps": "npm install @vscode/emmet-helper"
480
},
481
"devDependencies": {
482
"@types/node": "22.x"
483
},
484
"dependencies": {
485
"@emmetio/css-parser": "ramya-rao-a/css-parser#vscode",
486
"@emmetio/html-matcher": "^0.3.3",
487
"@emmetio/math-expression": "^1.0.5",
488
"@vscode/emmet-helper": "^2.8.8",
489
"image-size": "~1.0.0",
490
"vscode-languageserver-textdocument": "^1.0.1"
491
},
492
"capabilities": {
493
"virtualWorkspaces": true,
494
"untrustedWorkspaces": {
495
"supported": true
496
}
497
}
498
}
499
500