vscode-string-html/package.json

87 lines
2.0 KiB
JSON

{
"name": "string-html-css",
"displayName": "string-html-css",
"description": "一个高亮js代码中的 html/css/scss/sass/less的字符串, 并支持emmet.",
"version": "1.0.1",
"publisher": "yutent",
"license": "MIT",
"icon": "assets/logo.png",
"bugs": {
"url": "https://github.com/yutent/vscode-string-html/issues"
},
"keywords": [
"html",
"css",
"template",
"polymer",
"wkit"
],
"repository": {
"type": "git",
"url": "https://github.com/yutent/vscode-string-html"
},
"engines": {
"vscode": "^1.58.0"
},
"scripts": {
"start": "node build.mjs --watch",
"build": "node build.mjs"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "editor.action.formatInlineHtml",
"title": "Format Inline HTML/CSS"
}
],
"grammars": [
{
"injectTo": [
"source.js"
],
"scopeName": "es6.inline.html",
"path": "./syntaxes/es6.inline.html.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html",
"meta.template.expression.js": "javascript"
}
},
{
"injectTo": [
"source.js"
],
"scopeName": "es6.inline.css",
"path": "./syntaxes/es6.inline.css.json",
"embeddedLanguages": {
"meta.embedded.block.css": "css",
"meta.template.expression.js": "javascript"
}
},
{
"injectTo": [
"source.js"
],
"scopeName": "es6.inline.scss",
"path": "./syntaxes/es6.inline.scss.json",
"embeddedLanguages": {
"meta.embedded.block.css": "scss",
"meta.template.expression.js": "javascript"
}
}
]
},
"dependencies": {
"vscode-css-languageservice": "^6.2.6",
"@vscode/emmet-helper": "^2.8.8",
"vscode-html-languageservice": "^5.0.6"
}
}
TypeScript 96.4%
JavaScript 3.6%