-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
46 lines (45 loc) · 1.08 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
{
"name": "tree-sitter-fsharp",
"version": "0.1.0",
"description": "",
"repository": "https://github.com/tree-sitter/tree-sitter-fsharp",
"license": "MIT",
"author": "Nikolaj Sidorenco",
"main": "bindings/node",
"types": "bindings/node",
"files": [
"binding.gyp",
"bindings/node/*",
"prebuilds/**",
"common/**",
"fsharp/src/**",
"fsharp_signature/src/**",
"queries/*",
"*.wasm"
],
"devDependencies": {
"eslint": "^9.9.1",
"eslint-config-google": "^0.14.0",
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.24.3"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"scripts": {
"install": "node-gyp-build",
"generate": "for dir in fsharp fsharp_signature; do cd $dir; tree-sitter generate; cd -; done",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
},
"dependencies": {
"node-addon-api": "^8.1.0",
"node-gyp-build": "^4.8.2"
}
}