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