-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1015 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
43
44
45
46
47
48
{
"name": "glsl-literal",
"displayName": "glsl-literal",
"description": "Syntax highlighting for GLSL inside of JavaScript tagged template strings",
"version": "1.0.6",
"publisher": "boyswan",
"repository": {
"url": "https://github.com/boyswan/vscode-glsl-literal.git"
},
"bugs": {
"url": "https://github.com/boyswan/vscode-glsl-literal/issues"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"shader",
"glsl-literal",
"webgl",
"javascript",
"glsl",
"template"
],
"extensionDependencies": [
"slevesque.shader"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx"
],
"scopeName": "glsl-literal",
"path": "./syntaxes/glsl-literal.json",
"embeddedLanguages": {
"source.glsl": "glsl"
}
}
]
}
}