-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.57 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
{
"name": "@tree-sitter-grammars/tree-sitter-xml",
"version": "0.7.0",
"license": "MIT",
"description": "XML & DTD grammars for tree-sitter",
"repository": "tree-sitter-grammars/tree-sitter-xml",
"main": "bindings/node",
"types": "bindings/node",
"author": {
"name": "ObserverOfTime",
"email": "[email protected]",
"url": "https://observeroftime.github.io/"
},
"contributors": [
{
"name": "Amaan Qureshi",
"email": "[email protected]"
}
],
"funding": {
"url": "https://github.com/sponsors/ObserverOfTime",
"type": "github"
},
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"xml",
"dtd"
],
"files": [
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/**",
"xml/grammar.js",
"dtd/grammar.js",
"tree-sitter.json",
"xml/package.json",
"dtd/package.json",
"xml/src/**",
"dtd/src/**",
"common/**"
],
"dependencies": {
"node-addon-api": "^8.2.2",
"node-gyp-build": "^4.8.3"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.24.4"
},
"peerDependencies": {
"tree-sitter": "^0.21.1"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"overrides": {
"tree-sitter": {
"node-addon-api": "$node-addon-api"
}
},
"scripts": {
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
},
"publishConfig": {
"access": "public"
}
}