You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
995 B

{
"name": "minbasic-vscode",
"displayName": "MinBasic Language Support",
"description": "Language support for the MinBasic language, which is an extension of QuickBasic for compilation to Mindustry Logic",
"version": "0.0.1",
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://git.shadamethyst.xyz/amethyst/basic-to-mindustry"
},
"scripts": {
"build": "vsce package"
},
"author": "Shad Amethyst",
"license": "MIT",
"contributes": {
"languages": [{
"id": "minbasic",
"aliases": ["MinBasic", "minbasic"],
"extensions": ["mbas"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "minbasic",
"scopeName": "source.mbas",
"path": "./syntaxes/minbasic.tmLanguage.json"
}]
}
}