-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "tree-sitter-just",
"author": "Anshuman Medhi <amedhi@connect.ust.uk>",
"contributors": [
"Trevor Gross <tmgross@umich.edu>",
"Amaan Qureshi <amaanq12@gmail.com>"
],
"license": "MIT",
"version": "0.1.0",
"description": "Justfiles grammar for tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
"repository": {
"type": "git",
"url": "https://github.com/IndianBoy42/tree-sitter-just"
},
"keywords": [
"tree-sitter",
"justfiles",
"parser",
"lexer"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"dependencies": {
"tree-sitter": "^0.21.1",
"prettier": "^3.3.3",
"node-addon-api": "^8.2.1",
"node-gyp-build": "^4.8.2"
},
"peerDependencies": {
"tree-sitter": "^0.21.1"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"eslint": ">=9.5.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"tree-sitter-cli": "^0.24.3",
"prebuildify": "^6.0.1"
},
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
}
}