22 lines
611 B
JSON
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"
|
|
}]
|
|
}
|
|
} |