-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "tree-sitter-cython",
"version": "1.2.0",
"description": "cython grammar for tree-sitter",
"repository": "github:tree-sitter-grammars/tree-sitter-python",
"license": "MIT",
"contributors": [
"Amaan Qureshi <[email protected]>",
"Maddison Hellstrom <[email protected]>"
],
"main": "bindings/node",
"types": "bindings/node",
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"cython"
],
"dependencies": {
"node-addon-api": "^8.2.1",
"node-gyp-build": "^4.8.2",
"tree-sitter-python": "^0.23.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-google": "^0.14.0",
"globals": "^15.11.0",
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.24.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"scripts": {
"build": "tree-sitter generate --no-bindings",
"lint": "eslint grammar.js",
"parse": "tree-sitter parse",
"test": "tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
}
}