forked from ram02z/tree-sitter-fish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
61
62
63
64
65
66
67
68
{
"name": "tree-sitter-fish",
"version": "3.5.1",
"description": "Fish tree-sitter grammar",
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"build": "tsc -p tsconfig.json && tree-sitter generate",
"build:wasm": "npm run build && tree-sitter build-wasm",
"start": "npm run build:wasm && tree-sitter web-ui",
"test": "tree-sitter test",
"test:watch": "nodemon --ext ts,txt,fish,scm --watch grammar.ts --watch test --watch queries --exec 'npm run build && npm run test'",
"test:examples": "bash ./scripts/test_shared.sh",
"test:dev": "nodemon --ext fish --watch test.fish --watch grammar.ts --exec 'npm run build && tree-sitter parse ./test.fish -d'",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"keywords": [
"tree-sitter",
"fish",
"shell",
"parser"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"author": "Krnik",
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^18.11.9",
"nodemon": "^2.0.7",
"tree-sitter-cli": "^0.20.7",
"typescript": "^4.9.3",
"prebuildify": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ram02z/tree-sitter-fish.git"
},
"homepage": "https://github.com/ram02z/tree-sitter-fish#readme",
"bugs": {
"url": "https://github.com/ram02z/tree-sitter-fish/issues"
},
"tree-sitter": [
{
"scope": "source.fish",
"file-types": [
"fish"
]
}
]
}