Universal-Assembly-Syntax-H.../package.json
2024-10-12 19:50:12 -04:00

50 lines
1.2 KiB
JSON

{
"name": "x86-assembly-syntax",
"displayName": "x86-x64 Assembly Syntax",
"description": "Syntax highlighting for x86 and x64 assembly with Intel syntax",
"version": "1.0.1",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "x86asm",
"aliases": ["x86-x64 Assembly", "x86/x64 Assembly", "x86/x64", "x86-x64", "x86asm"],
"extensions": [".asm", ".s", ".S", ".nasm"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "x86asm",
"scopeName": "source.x86asm",
"path": "./syntaxes/x86asm.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/haxo-games/x86-x64-syntax-highlighting.git"
},
"publisher": "HaxoGames",
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/haxo-games/x86-x64-syntax-highlighting/issues"
},
"keywords": [
"x86-x64 Assembly",
"x86/x64 Assembly",
"x86/x64",
"x86-x64",
"x86asm",
"asm",
"assembly",
"x86",
"x64",
"intel",
"syntax",
"highlighting"
],
"homepage": "https://github.com/haxo-games/x86-x64-syntax-highlighting#readme"
}