-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.42 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.42 KB
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-wit",
"version": "1.2.0",
"description": "WIT grammar for tree-sitter",
"author": "Liam Woodleigh-Hardinge <liam.woodleigh@gmail.com>",
"license": "Apache-2.0 WITH LLVM-exception",
"maintainers": [
"Liam Woodleigh-Hardinge <liam.woodleigh@gmail.com>"
],
"contributors": [
"Liam Woodleigh-Hardinge <liam.woodleigh@gmail.com>"
],
"keywords": [
"incremental",
"parsing",
"tree-sitter"
],
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip",
"build": "tree-sitter generate",
"build-wasm": "tree-sitter build --wasm",
"lint": "eslint grammar.js",
"parse": "tree-sitter parse",
"test": "tree-sitter test"
},
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"dependencies": {
"node-addon-api": "^8.6.0",
"node-gyp-build": "^4.8.4"
},
"peerDependencies": {
"tree-sitter": "^0.22.4"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"eslint-config-treesitter": "^1.0.2",
"globals": "^16.5.0",
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.25.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"tree-sitter",
"tree-sitter-cli"
]
}
}