-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.13 KB
/
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
49
50
51
52
53
54
55
56
{
"name": "python-string-shaders",
"displayName": "python-string-shaders",
"description": "Shader syntax highlighting in Python multiline strings",
"version": "0.1.3",
"publisher": "almarklein",
"repository": {
"url": "https://github.com/pygfx/python-string-shaders"
},
"engines": {
"vscode": "^1.80.0"
},
"keywords": [
"wgsl",
"glsl",
"shaders",
"gpu",
"python"
],
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"path": "syntaxes/python.embedded.json",
"scopeName": "source.python.embedded.codeblock",
"injectTo": [
"source.python"
],
"embeddedLanguages": {
"meta.embedded.block.wgsl.python": "wgsl",
"meta.embedded.block.glsl.python": "glsl",
"meta.embedded.block.hlsl.python": "hlsl",
"meta.embedded.block.metal.python": "metal"
}
},
{
"path": "syntaxes/shader.jinja.json",
"scopeName": "jinjatemplate.injection",
"injectTo": [
"source.wgsl",
"source.glsl",
"source.hlsl",
"source.metal"
]
}
],
"snippets": [
{
"language": "python",
"path": "./snippets/python.json"
}
]
}
}