-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 906 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
{
"name": "tree-sitter-cairo",
"version": "0.0.2",
"description": "A tree-sitter grammar for cairo 1.0",
"main": "bindings/node",
"scripts": {
"test": "tree-sitter test && tree-sitter parse ./test/examples/* -q -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoranHonig/tree-sitter-cairo.git"
},
"keywords": [
"tree-sitter",
"cairo",
"starknet"
],
"author": "Joran Honig",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoranHonig/tree-sitter-cairo/issues"
},
"homepage": "https://github.com/JoranHonig/tree-sitter-cairo#readme",
"devDependencies": {
"tree-sitter": "^0.20.0"
},
"dependencies": {
"nan": "^2.15.0",
"tree-sitter-cli": "^0.20.7"
},
"tree-sitter": [
{
"scope": "source.cairo",
"file-types": [
"cairo"
],
"injection-regex": "^(cairo)$"
}
]
}