Files
Quill/VSCode/package.json
2025-11-30 02:50:10 -06:00

179 lines
3.4 KiB
JSON

{
"name": "quill",
"displayName": "Quill",
"description": "HTML/CSS Syntax highlighting, best used with the Quill framework",
"version": "1.0.6",
"publisher": "capturedsun",
"icon": "docs/Quill.png",
"engines": {
"vscode": "^1.19.0"
},
"galleryBanner": {
"color": "#dedede",
"theme": "light"
},
"repository": {
"url": "https://github.com/capturedsun/Quill"
},
"bugs": {
"url": "https://github.com/capturedsun/Quill/issues"
},
"main": "./scripts/main",
"categories": [
"Programming Languages"
],
"keywords": [
"javascript",
"es6",
"es6-string-html",
"html",
"sql",
"xml",
"svg"
],
"activationEvents": [
"onCommand:quill.insertComment",
"onCommand:quill.insertTemplate"
],
"contributes": {
"commands": [
{
"command": "quill.insertComment",
"title": "Insert es6-string-html comment",
"category": "HTML"
},
{
"command": "quill.insertTemplate",
"title": "Insert es6-string-html template",
"category": "HTML"
}
],
"snippets": [
{
"language": "javascript",
"path": "./snippets-js.json"
},
{
"language": "html",
"path": "./snippets-html.json"
}
],
"grammars": [
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"source.css",
"text.html"
],
"scopeName": "inline.es6-css",
"path": "./syntaxes/es6-inline-css.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html"
}
},
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"text.html"
],
"scopeName": "inline.es6-glsl",
"path": "./syntaxes/es6-inline-glsl.json",
"embeddedLanguages": {
"meta.embedded.glsl": "glsl"
}
},
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"text.html"
],
"scopeName": "inline.es6-xml",
"path": "./syntaxes/es6-inline-xml.json",
"embeddedLanguages": {
"meta.embedded.xml": "xml"
}
},
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"text.html"
],
"scopeName": "inline.es6-js-injection",
"path": "./syntaxes/es6-js-injection.json"
},
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"text.html"
],
"scopeName": "inline.es6-html",
"path": "./syntaxes/es6-inline-html.json"
},
{
"injectTo": [
"source.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"source.vue",
"source.svelte",
"source.sql",
"text.html"
],
"scopeName": "inline.es6-sql",
"path": "./syntaxes/es6-inline-sql.json",
"embeddedLanguages": {
"meta.embedded.block.sql": "sql"
}
}
]
},
"__metadata": {
"id": "quill.capturedsun",
"publisherId": "capturedsun",
"publisherDisplayName": "Captured Sun"
}
}