fork of https://github.com/tree-sitter/tree-sitter-graph
at main 1.0 kB view raw
1{ 2 "name": "tree-sitter-graph", 3 "version": "0.1.2", 4 "publisher": "tree-sitter", 5 "engines": { 6 "vscode": "^1.60.0" 7 }, 8 "license": "Apache-2.0 OR MIT", 9 "description": "Syntax support for tree-sitter-graph", 10 "homepage": "https://crates.io/crates/tree-sitter-graph", 11 "author": "tree-sitter authors", 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/tree-sitter/tree-sitter-graph.git" 15 }, 16 "categories": [ 17 "Programming Languages" 18 ], 19 "contributes": { 20 "languages": [ 21 { 22 "id": "tree-sitter-graph", 23 "extensions": [ 24 ".tsg" 25 ], 26 "configuration": "./language-configuration.json" 27 } 28 ], 29 "grammars": [ 30 { 31 "language": "tree-sitter-graph", 32 "scopeName": "source.tsg", 33 "path": "./syntaxes/tree-sitter-graph.tmLanguage.json" 34 } 35 ] 36 } 37}