-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "tree-sitter-vimdoc",
"version": "3.0.0",
"description": "Vim help file grammar for tree-sitter",
"repository": "github:neovim/tree-sitter-vimdoc",
"author": "Thomas Vigouroux <[email protected]>",
"license": "Apache-2.0",
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"vimdoc",
"vim",
"nvim",
"neovim"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.21.0",
"prebuildify": "^6.0.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"scripts": {
"build": "tree-sitter generate --no-bindings",
"test": "tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"tree-sitter": [
{
"scope": "text.vimdoc",
"first-line-regex": "^\\*[\\w-]+\\.txt\\*",
"highlights": "queries/vimdoc/highlights.scm",
"injections": "queries/vimdoc/injections.scm"
}
]
}