vscode/extensions/html-language-features/package.json

213 lines
6.3 KiB
JSON
Raw Normal View History

2018-03-17 15:32:55 +00:00
{
2019-01-22 06:15:39 +00:00
"enableProposedApi": true,
2018-03-17 15:32:55 +00:00
"name": "html-language-features",
"displayName": "%displayName%",
"description": "%description%",
2018-03-17 15:32:55 +00:00
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
2018-03-17 15:32:55 +00:00
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
"vscode": "0.10.x"
},
"icon": "icons/html.png",
"activationEvents": [
"onLanguage:html",
2019-02-25 01:03:15 +00:00
"onLanguage:handlebars"
2018-03-17 15:32:55 +00:00
],
2020-06-19 21:35:45 +00:00
"main": "./client/out/node/htmlClientMain",
"browser": "./client/dist/browser/htmlClientMain",
2018-03-17 15:32:55 +00:00
"scripts": {
"compile": "npx gulp compile-extension:html-language-features-client compile-extension:html-language-features-server",
"watch": "npx gulp watch-extension:html-language-features-client watch-extension:html-language-features-server",
2018-03-17 15:32:55 +00:00
"postinstall": "cd server && yarn install",
"install-client-next": "yarn add vscode-languageclient@next"
},
"categories": [
2018-04-17 17:04:59 +00:00
"Programming Languages"
],
2018-03-17 15:32:55 +00:00
"contributes": {
"configuration": {
"id": "html",
"order": 20,
"type": "object",
"title": "HTML",
"properties": {
2019-08-27 16:25:15 +00:00
"html.customData": {
"type": "array",
2019-08-28 16:51:31 +00:00
"markdownDescription": "%html.customData.desc%",
2019-08-27 16:25:15 +00:00
"default": [],
"items": {
"type": "string"
},
"scope": "resource"
},
2018-03-17 15:32:55 +00:00
"html.format.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%html.format.enable.desc%"
},
"html.format.wrapLineLength": {
"type": "integer",
"scope": "resource",
"default": 120,
"description": "%html.format.wrapLineLength.desc%"
},
"html.format.unformatted": {
"type": [
"string",
"null"
],
"scope": "resource",
"default": "wbr",
"markdownDescription": "%html.format.unformatted.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.contentUnformatted": {
"type": [
"string",
"null"
],
"scope": "resource",
"default": "pre,code,textarea",
"markdownDescription": "%html.format.contentUnformatted.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.indentInnerHtml": {
"type": "boolean",
"scope": "resource",
"default": false,
"markdownDescription": "%html.format.indentInnerHtml.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.preserveNewLines": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "%html.format.preserveNewLines.desc%"
},
"html.format.maxPreserveNewLines": {
"type": [
"number",
"null"
],
"scope": "resource",
"default": null,
"markdownDescription": "%html.format.maxPreserveNewLines.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.indentHandlebars": {
"type": "boolean",
"scope": "resource",
"default": false,
"markdownDescription": "%html.format.indentHandlebars.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.endWithNewline": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "%html.format.endWithNewline.desc%"
},
"html.format.extraLiners": {
"type": [
"string",
"null"
],
"scope": "resource",
"default": "head, body, /html",
"markdownDescription": "%html.format.extraLiners.desc%"
2018-03-17 15:32:55 +00:00
},
"html.format.wrapAttributes": {
"type": "string",
"scope": "resource",
"default": "auto",
"enum": [
"auto",
"force",
"force-aligned",
"force-expand-multiline",
"aligned-multiple",
"preserve",
"preserve-aligned"
2018-03-17 15:32:55 +00:00
],
"enumDescriptions": [
"%html.format.wrapAttributes.auto%",
"%html.format.wrapAttributes.force%",
"%html.format.wrapAttributes.forcealign%",
"%html.format.wrapAttributes.forcemultiline%",
"%html.format.wrapAttributes.alignedmultiple%",
"%html.format.wrapAttributes.preserve%",
"%html.format.wrapAttributes.preservealigned%"
2018-03-17 15:32:55 +00:00
],
"description": "%html.format.wrapAttributes.desc%"
},
"html.suggest.html5": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "%html.suggest.html5.desc%"
},
"html.validate.scripts": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "%html.validate.scripts%"
},
"html.validate.styles": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "%html.validate.styles%"
},
"html.autoClosingTags": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "%html.autoClosingTags%"
},
2019-12-05 00:51:41 +00:00
"html.mirrorCursorOnMatchingTag": {
2019-11-22 18:16:38 +00:00
"type": "boolean",
"scope": "resource",
"default": false,
2020-03-18 19:42:48 +00:00
"description": "%html.mirrorCursorOnMatchingTag%",
"deprecationMessage": "%html.mirrorCursorOnMatchingTagDeprecationMessage%"
2019-11-22 18:16:38 +00:00
},
2018-03-17 15:32:55 +00:00
"html.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "%html.trace.server.desc%"
}
}
2019-07-29 17:05:40 +00:00
},
"configurationDefaults": {
"[html]": {
"editor.suggest.insertMode": "replace"
},
"[handlebars]": {
"editor.suggest.insertMode": "replace"
}
},
2019-07-29 17:05:40 +00:00
"jsonValidation": [
{
"fileMatch": "*.html-data.json",
2020-09-15 23:13:49 +00:00
"url": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/master/docs/customData.schema.json"
2019-09-03 16:19:56 +00:00
},
{
"fileMatch": "package.json",
"url": "./schemas/package.schema.json"
2019-07-29 17:05:40 +00:00
}
]
2018-03-17 15:32:55 +00:00
},
"dependencies": {
2019-01-11 01:43:25 +00:00
"vscode-extension-telemetry": "0.1.1",
2020-06-26 11:55:39 +00:00
"vscode-languageclient": "7.0.0-next.5.1",
2020-04-27 21:15:37 +00:00
"vscode-nls": "^4.1.2"
2018-03-17 15:32:55 +00:00
},
"devDependencies": {
"@types/node": "^12.11.7"
2018-03-17 15:32:55 +00:00
}
2018-08-28 09:27:01 +00:00
}