-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "tree-sitter",
"version": "0.22.0",
"description": "Incremental parsers for node",
"author": "Max Brunsfeld",
"contributors": [
"Segev Finer",
"Boris Verkhovskiy",
"Amaan Qureshi"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/tree-sitter/node-tree-sitter.git"
},
"keywords": [
"incremental",
"parsing",
"tree-sitter"
],
"main": "index.js",
"types": "tree-sitter.d.ts",
"files": [
"binding.gyp",
"tree-sitter.d.ts",
"prebuilds/*",
"src/*",
"vendor/tree-sitter/lib/include/*",
"vendor/tree-sitter/lib/src/*"
],
"dependencies": {
"node-addon-api": "^8.2.1",
"node-gyp-build": "^4.8.2"
},
"devDependencies": {
"@types/node": "^22.7.8",
"@types/tmp": "^0.2.6",
"glob": "^11.0.0",
"node-gyp": "^10.2.0",
"prebuildify": "^6.0.1",
"tmp": "^0.2.3",
"tree-sitter-c": "^0.23.1",
"tree-sitter-embedded-template": "^0.23.0",
"tree-sitter-html": "^0.23.0",
"tree-sitter-java": "^0.23.2",
"tree-sitter-javascript": "^0.23.0",
"tree-sitter-json": "^0.23.0",
"tree-sitter-php": "^0.23.4",
"tree-sitter-python": "^0.23.2",
"tree-sitter-ruby": "^0.23.0",
"tree-sitter-rust": "^0.23.0"
},
"scripts": {
"install": "node-gyp-build",
"build": "prebuildify --napi --strip",
"build_x64": "prebuildify --napi --strip --arch x64",
"build_arm64": "prebuildify --napi --strip --arch arm64",
"rebuild": "node-gyp rebuild",
"test": "node -e \"require('child_process').spawnSync('node', ['--test', ...require('glob').sync('test/**/*.js')], {stdio:'inherit'})\""
},
"publishConfig": {
"access": "public"
}
}