Files
grammar/package.json

54 lines
1.1 KiB
JSON
Raw Normal View History

2026-03-15 14:40:13 +11:00
{
"name": "tree-sitter-ground",
"version": "1.0.0",
"description": "Ground VM textual representation highlighter",
"repository": "https://chookspace.com/ground/grammar",
"license": "MIT",
"author": {
"name": "Maxwell Jeffress",
"email": "maxwelljeffress@proton.me",
"url": "https://maxwellj.xyz/"
},
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"ground"
],
"files": [
"grammar.js",
"tree-sitter.json",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"*.wasm"
],
"dependencies": {
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tree-sitter": "^0.22.4",
"tree-sitter-cli": "^0.25.10"
},
"peerDependencies": {
"tree-sitter": "^0.22.4"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"scripts": {
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
}
}