-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tree-sitter",
"version": "0.22.4",
"description": "Node.js bindings to the Tree-sitter parsing library",
"repository": "http://github.com/tree-sitter/node-tree-sitter",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "Max Brunsfeld",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Amaan Qureshi",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Segev Finer",
"email": "[email protected]"
},
{
"name": "Boris Verkhovskiy",
"email": "[email protected]"
}
],
"main": "index.js",
"types": "tree-sitter.d.ts",
"keywords": [
"incremental",
"parsing",
"tree-sitter"
],
"files": [
"binding.gyp",
"tree-sitter.d.ts",
"prebuilds/*",
"src/*",
"vendor/tree-sitter/lib/include/*",
"vendor/tree-sitter/lib/src/*"
],
"dependencies": {
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/tmp": "^0.2.6",
"glob": "^11.0.0",
"node-gyp": "^11.0.0",
"prebuildify": "^6.0.1",
"tmp": "^0.2.3",
"tree-sitter-c": "^0.23.4",
"tree-sitter-embedded-template": "^0.23.2",
"tree-sitter-html": "^0.23.2",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-json": "^0.24.8",
"tree-sitter-python": "^0.23.6",
"tree-sitter-ruby": "^0.23.1",
"tree-sitter-rust": "^0.23.2",
"typedoc": "^0.27.6",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "^5.7.2"
},
"scripts": {
"docs": "typedoc --out docs/api tree-sitter.d.ts --readme README.md",
"install": "node-gyp-build",
"build": "prebuildify --napi --strip",
"rebuild": "node-gyp rebuild",
"test": "node -e \"require('child_process').spawnSync('node', ['--test', ...require('glob').sync('test/**/*.js')], {stdio:'inherit'})\""
}
}