forked from ikatyang/tree-sitter-vue
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 780 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 780 Bytes
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
{
"name": "tree-sitter-vue",
"version": "0.1.0",
"license": "MIT",
"description": "vue grammar for tree-sitter",
"type": "module",
"repository": "tree-sitter-grammars/tree-sitter-vue",
"author": "Amaan Qureshi <amaanq12@gmail.com>",
"keywords": [
"tree-sitter",
"parser",
"lexer",
"vue"
],
"scripts": {
"build": "tree-sitter generate",
"parse": "tree-sitter parse",
"test": "tree-sitter test",
"wasm": "tree-sitter build-wasm",
"web": "tree-sitter web-ui"
},
"main": "bindings/node",
"dependencies": {
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4",
"nan": "^2.18.0",
"tree-sitter-html": "=0.23.2"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.26.0"
}
}