-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "@openscad/tree-sitter-openscad",
"version": "0.6.0",
"description": "OpenSCAD grammar for tree-sitter",
"repository": "https://github.com/openscad/tree-sitter-openscad",
"license": "MIT",
"author": "Ian Boll <[email protected]>",
"maintainers": [
{
"name": "Mikhail Katychev",
"email": "[email protected]"
}
],
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"parser",
"lexer",
"openscad"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"bugs": {
"url": "https://github.com/openscad/tree-sitter-openscad/issues"
},
"dependencies": {
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
},
"peerDependencies": {
"tree-sitter": "^0.22"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-config-treesitter": "^1.0",
"prebuildify": "^6.0",
"tree-sitter-cli": "^0.25"
},
"scripts": {
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test && node --test",
"parse": "tree-sitter parse",
"test-windows": "tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"publishConfig": {
"access": "public"
}
}