forked from biw/vscode-plv8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 688 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 688 Bytes
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
{
"name": "vscode-plv8",
"displayName": "PLV8",
"description": "Highlight PLV8 JavaScript code in SQL",
"version": "1.0.0",
"publisher": "biw",
"keywords": [
"plv8",
"sql"
],
"repository": {
"url": "https://github.com/biw/vscode-plv8"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"grammars": [
{
"path": "./syntaxes/highlight-js-in-sql.json",
"scopeName": "sql-js.injection",
"injectTo": [
"source.sql"
],
"embeddedLanguages": {
"meta.embedded.javascript": "javascript"
}
}
]
}
}