mirror of
https://github.com/soconnor0919/tree-sitter-vm.git
synced 2026-02-05 00:06:41 -05:00
38 lines
969 B
JSON
38 lines
969 B
JSON
{
|
|
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/config.schema.json",
|
|
"grammars": [
|
|
{
|
|
"name": "vm",
|
|
"camelcase": "Vm",
|
|
"title": "VM",
|
|
"scope": "source.vm",
|
|
"file-types": ["vm"],
|
|
"injection-regex": "^vm$",
|
|
"class-name": "TreeSitterVm"
|
|
}
|
|
],
|
|
"metadata": {
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"description": "A Tree-sitter grammar for parsing VM language (nand2tetris)",
|
|
"authors": [
|
|
{
|
|
"name": "Sean O'Connor",
|
|
"email": "sean@soconnor.dev"
|
|
}
|
|
],
|
|
"links": {
|
|
"repository": "https://github.com/soconnor0919/nand2tetris-zed"
|
|
}
|
|
},
|
|
"bindings": {
|
|
"c": true,
|
|
"go": false,
|
|
"node": true,
|
|
"python": false,
|
|
"rust": true,
|
|
"swift": false,
|
|
"zig": false
|
|
}
|
|
}
|