mirror of
https://github.com/elladunbar/tree-sitter-zanscript.git
synced 2025-11-05 23:29:54 -06:00
52 lines
1 KiB
JSON
52 lines
1 KiB
JSON
{
|
|
"name": "tree-sitter-zanscript",
|
|
"version": "1.0.0",
|
|
"description": "Zanscript grammar for tree-sitter",
|
|
"main": "index.js",
|
|
"types": "bindings/node",
|
|
"scripts": {
|
|
"install": "node-gyp-build",
|
|
"prestart": "tree-sitter build --wasm",
|
|
"start": "tree-sitter playground",
|
|
"test": "node --test bindings/node/*_test.js"
|
|
},
|
|
"author": "Ev Dunbar",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"node-addon-api": "^8.0.0",
|
|
"node-gyp-build": "^4.8.1"
|
|
},
|
|
"peerDependencies": {
|
|
"tree-sitter": "^0.21.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"tree_sitter": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.23.0",
|
|
"prebuildify": "^6.0.1"
|
|
},
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"prebuilds/**",
|
|
"bindings/node/*",
|
|
"queries/*",
|
|
"src/**",
|
|
"*.wasm"
|
|
],
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.zanscript",
|
|
"file-types": [
|
|
"zs"
|
|
],
|
|
"injection-regex": "zanscript"
|
|
"highlights": [
|
|
"queries/highlights.scm"
|
|
]
|
|
}
|
|
]
|
|
}
|