forked from fwcd/tree-sitter-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 972 Bytes
/
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
{
"name": "tree-sitter-kotlin",
"version": "0.3.6",
"description": "Tree-sitter grammar for Kotlin",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter test",
"install": "node-gyp rebuild",
"generate": "tree-sitter generate",
"parse": "tree-sitter parse",
"build-wasm": "tree-sitter build-wasm",
"playground": "tree-sitter playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fwcd/tree-sitter-kotlin.git"
},
"keywords": [
"tree-sitter",
"kotlin",
"grammar"
],
"author": "fwcd",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/fwcd/tree-sitter-kotlin/issues"
},
"homepage": "https://github.com/fwcd/tree-sitter-kotlin#readme",
"dependencies": {
"nan": "^2.19.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.22.1"
},
"tree-sitter": [
{
"scope": "source.kotlin",
"file-types": ["kt", "kts"]
}
]
}