2017-08-28 19:15:42 -07:00
|
|
|
{
|
|
|
|
"name": "merlin32",
|
|
|
|
"displayName": "Merlin32",
|
2017-09-24 12:45:34 -07:00
|
|
|
"description": "Visual Studio Code Language Extension for Merlin32",
|
2017-09-24 12:22:32 -07:00
|
|
|
"version": "1.0.0",
|
2017-11-10 09:32:42 -08:00
|
|
|
"publisher": "olivierguinart",
|
2017-09-24 12:45:34 -07:00
|
|
|
"author": "Olivier Guinart",
|
2017-09-24 13:02:18 -07:00
|
|
|
"icon": "Images/VSLanguageServiceIcon.png",
|
2017-08-28 19:15:42 -07:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.15.0"
|
|
|
|
},
|
2017-09-24 12:54:40 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-11-10 10:02:17 -08:00
|
|
|
"url": "https://github.com/OlivierGuinart/Merlin32ForVSCode"
|
2017-09-24 12:54:40 -07:00
|
|
|
},
|
2017-08-28 19:15:42 -07:00
|
|
|
"categories": [
|
|
|
|
"Languages"
|
|
|
|
],
|
2017-09-04 17:50:23 -07:00
|
|
|
"activationEvents": [
|
|
|
|
"onLanguage:merlin32"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
2017-08-28 19:15:42 -07:00
|
|
|
"contributes": {
|
2017-09-04 17:50:23 -07:00
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "merlin32",
|
|
|
|
"aliases": [
|
|
|
|
"Merlin32",
|
|
|
|
"merlin32"
|
|
|
|
],
|
|
|
|
"extensions": [
|
|
|
|
".s"
|
|
|
|
],
|
|
|
|
"configuration": "./language-configuration.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"grammars": [
|
|
|
|
{
|
|
|
|
"language": "merlin32",
|
|
|
|
"scopeName": "source.asm.merlin32",
|
|
|
|
"path": "./syntaxes/merlin32.tmLanguage.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"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"
|
2017-08-28 19:15:42 -07:00
|
|
|
}
|
2017-09-04 17:50:23 -07:00
|
|
|
}
|