1
0
mirror of https://github.com/ksherlock/x65.git synced 2024-06-12 07:29:28 +00:00
x65/vscode/package.json
Carl-Henrik Skårstedt 9c7f413dac Changing theme from XML to JSON, adding Windows installer
* I don't like XML one bit
* Writing a bat file is easier than putting something on the marketplace
without using javascript.
2017-04-15 13:34:16 -07:00

41 lines
922 B
JSON

{
"name" : "x65",
"displayName" : "x65",
"description" : "x65 Assembler syntax",
"version" : "0.1.1",
"publisher" : "x65",
"icon": "x65.png",
"license" : "maybe",
"engines" : {
"vscode" : "^1.0.0"
},
"categories" : [
"Languages"
],
"keywords" : ["x65", "6502", "6510", "65816" ],
"contributes" : {
"languages" : [
{
"id" : "x65",
"aliases" : [ "6502" ],
"extensions" : [ ".s", ".i" ],
"configuration" : "./x65.configuration.json"
}
],
"grammars" : [
{
"language" : "x65",
"scopeName" : "source.asm.6502.x65",
"path" : "./x65.tmLanguage.json"
}
],
"themes" : [
{
"label": "x65",
"uiTheme": "vs-dark",
"path": "./x65.tmTheme.json"
}
]
}
}