mirror of https://github.com/Wilfred/difftastic/
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "tree-sitter-fsharp",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"repository": "https://github.com/tree-sitter/tree-sitter-fsharp",
|
|
"license": "MIT",
|
|
"author": "Nikolaj Sidorenco",
|
|
"main": "bindings/node",
|
|
"types": "bindings/node",
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"bindings/node/*",
|
|
"queries/*",
|
|
"src/**"
|
|
],
|
|
"devDependencies": {
|
|
"eslint": "^9.2.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"prebuildify": "^6.0.1",
|
|
"tree-sitter-cli": "^0.22.6"
|
|
},
|
|
"peerDependencies": {
|
|
"tree-sitter": "^0.21.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"tree_sitter": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate --no-bindings",
|
|
"lint": "eslint grammar.js",
|
|
"parse": "tree-sitter parse",
|
|
"debug": "tree-sitter parse -d",
|
|
"test": "tree-sitter test",
|
|
"install": "node-gyp-build",
|
|
"prebuildify": "prebuildify --napi --strip"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.fsharp",
|
|
"file-types": [
|
|
"fs",
|
|
"fsx"
|
|
],
|
|
"injection-regex": "fs",
|
|
"highlights": "queries/highlights.scm",
|
|
"injections": "queries/injections.scm",
|
|
"tags": "queries/tags.scm"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"node-addon-api": "^8.0.0",
|
|
"node-gyp-build": "^4.8.1"
|
|
}
|
|
}
|