Merlin32ForVSCode/package.json

96 lines
2.8 KiB
JSON

{
"name": "merlin32",
"displayName": "Merlin32",
"description": "Language support for Merlin32",
"version": "0.0.1",
"publisher": "Aito",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:merlin32",
"onCommand:extension.target.build"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "merlin32",
"aliases": [
"Merlin32",
"merlin32"
],
"extensions": [
".s"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "merlin32",
"scopeName": "source.asm.merlin32",
"path": "./syntaxes/merlin32.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Merlin32 configuration",
"properties": {
"Merlin32.platform": {
"type": "string",
"default": "Windows",
"description": "Possible values are Windows, Linux64, MaxOSX"
},
"Merlin32.libs": {
"type": "string",
"default": "C:\\Users\\Olivier\\OneDrive\\Apple\\Merlin32_v1.0\\Library",
"description": "Path to the Merlin32 Library folder."
},
"Merlin32.path": {
"type": "string",
"default": "C:\\Users\\Olivier\\OneDrive\\Apple\\Merlin32_v1.0\\",
"description": "Path to the Merlin32 toolset."
},
"Merlin32.AppleII.emulator": {
"type": "string",
"default": "AppleWin.exe",
"description": "Apple II emulator."
}
}
},
"menus": {
"editor/title": [{
"when": "editorLangId == merlin32",
"command": "extension.target.build",
"group": "navigation"
}]
},
"commands": [
{
"command": "extension.target.build",
"title": "Build"
}
],
"keybindings": [
{
"command": "extension.target.build",
"key": "f10"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.0.3",
"typescript": "^2.1.5",
"@types/node": "^6.0.52"
}
}