forked from 0x00000001A/es6-string-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 866 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "js-sql-highlight",
"displayName": "js-sql-highlight",
"description": "Syntax highlighting for SQL in JS strings",
"version": "1.0.0",
"publisher": "neil176",
"icon": "",
"engines": {
"vscode": "^1.41.0"
},
"galleryBanner": {
"color": "#dedede",
"theme": "light"
},
"repository": {
"url": "https://github.com/neil176/js-sql-highlight"
},
"bugs": {
"url": "https://github.com/neil176/js-sql-highlight/issues"
},
"categories": [],
"keywords": [
"javascript",
"sql"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.ts",
"source.sql"
],
"scopeName": "sql-string.injection",
"path": "./js-inline-sql.json",
"embeddedLanguages": {
"meta.embedded.*": "sql"
}
}
]
}
}