outrun/outrun-vscode/package.json

43 lines
No EOL
1.1 KiB
JSON

{
"name": "outrun-vscode",
"displayName": "Outrun Syntax Highlighting",
"description": "Outrun syntax highlighting for VS Code",
"version": "0.0.1",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Programming Languages"
],
"license": "HL3",
"author": {
"name": "James Harton",
"email": "james@harton.nz"
},
"homepage": "https://gitlab.com/jimsy/outrun",
"repository": {
"type": "git",
"url": "https://gitlab.com/jimsy/outrun.git"
},
"contributes": {
"languages": [{
"id": "outrun",
"aliases": [
"Outrun",
"outrun"
],
"extensions": [
".outrun"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "outrun",
"scopeName": "source.outrun",
"path": "./syntaxes/outrun.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.markdown": "markdown"
}
}]
}
}