-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.38 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
57
58
59
60
61
62
63
{
"name": "tree-sitter-cuda",
"version": "0.20.6",
"description": "CUDA grammar for tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"parser",
"c++"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"author": "Stephan Seitz",
"license": "MIT",
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"tree-sitter-c": "0.23.0",
"tree-sitter-cpp": "0.23.0",
"tree-sitter-cli": "^0.22.2",
"prebuildify": "^6.0.0"
},
"scripts": {
"test": "tree-sitter test && tree-sitter parse examples/* --quiet --time",
"test-windows": "tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"repository": {
"type": "git",
"url": "git://github.com/tree-sitter-grammars/tree-sitter-cuda.git"
},
"tree-sitter": [
{
"scope": "source.cpp",
"file-types": [
"cu",
"cuh"
],
"highlights": [
"queries/highlights.scm",
"node_modules/tree-sitter-c/queries/highlights.scm",
"node_modules/tree-sitter-cpp/queries/highlights.scm"
]
}
]
}