forked from tree-sitter-grammars/tree-sitter-glsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 794 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
{
"name": "tree-sitter-glsl",
"version": "0.1.2",
"description": "GLSL grammar for tree-sitter (based on tree-sitter-c",
"main": "bindings/node",
"keywords": [
"parser",
"glsl"
],
"author": "Stephan Seitz",
"license": "MIT",
"dependencies": {
"nan": "^2.15.0"
},
"devDependencies": {
"tree-sitter-c": "git://github.com/tree-sitter/tree-sitter-c.git",
"tree-sitter-cli": "^0.20.0"
},
"scripts": {
"test": "tree-sitter test",
"test-windows": "tree-sitter test"
},
"repository": {
"type": "git",
"url": "git://github.com/theHamsta/tree-sitter-glsl.git"
},
"tree-sitter": [
{
"scope": "source.cpp",
"file-types": [
"vert",
"frag",
"vsh",
"fsh",
"glsl"
]
}
]
}