Files
herolib/vscodeplugin/heroscrypt-syntax/package.json
2025-05-04 08:19:47 +03:00

22 lines
611 B
JSON

{
"name": "heroscript-syntax",
"displayName": "HeroScript Syntax",
"description": "Syntax highlighting for HeroScript",
"version": "0.0.1",
"engines": {
"vscode": "^1.60.0"
},
"contributes": {
"languages": [{
"id": "heroscript",
"aliases": ["HeroScript", "heroscript"],
"extensions": [".hero",".heroscript"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "heroscript",
"scopeName": "source.heroscript",
"path": "./syntaxes/heroscript.tmLanguage.json"
}]
}
}