mirror of
https://github.com/hatoo/egglog-language-server.git
synced 2025-12-23 04:36:33 +00:00
46 lines
888 B
JSON
46 lines
888 B
JSON
{
|
|
"name": "tree-sitter-egglog",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "bindings/node",
|
|
"types": "bindings/node",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"install": "node-gyp-build",
|
|
"prebuildify": "prebuildify --napi --strip"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"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": {
|
|
"tree-sitter-cli": "^0.20.8",
|
|
"prebuildify": "^6.0.0"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.egglog",
|
|
"file-types": [
|
|
"egg"
|
|
]
|
|
}
|
|
],
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"prebuilds/**",
|
|
"bindings/node/*",
|
|
"queries/*",
|
|
"src/**"
|
|
]
|
|
}
|