-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·36 lines (36 loc) · 993 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
{
"name": "vscode-sql-template-literal",
"displayName": "vscode-sql-template-literal",
"description": "Syntax highlighting for sql in template literals",
"version": "0.1.0",
"publisher": "forbeslindesay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/vscode-sql-template-literal.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "inline.lit-sql",
"path": "./syntaxes/lit-sql.json",
"embeddedLanguages": {
"meta.embedded.block.sql": "sql"
}
}
]
}
}