Universal-Assembly-Syntax-H.../package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2024-10-13 01:55:24 +03:00
{
2024-10-13 02:06:05 +03:00
"name": "x86-assembly-syntax",
2024-10-13 02:52:51 +03:00
"displayName": "x86-x64 Assembly Syntax Highlighting",
"description": "Syntax highlighting extension for x86 and x64 assembly for Intel syntax",
2024-10-13 04:36:39 +03:00
"version": "1.0.4",
2024-10-13 01:55:24 +03:00
"engines": {
2024-10-13 02:06:05 +03:00
"vscode": "^1.60.0"
2024-10-13 01:55:24 +03:00
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
2024-10-13 02:06:05 +03:00
"id": "x86asm",
2024-10-13 02:50:12 +03:00
"aliases": ["x86-x64 Assembly", "x86/x64 Assembly", "x86/x64", "x86-x64", "x86asm"],
"extensions": [".asm", ".s", ".S", ".nasm"],
2024-10-13 01:55:24 +03:00
"configuration": "./language-configuration.json"
}],
"grammars": [{
2024-10-13 02:06:05 +03:00
"language": "x86asm",
"scopeName": "source.x86asm",
"path": "./syntaxes/x86asm.tmLanguage.json"
2024-10-13 01:55:24 +03:00
}]
2024-10-13 02:06:05 +03:00
},
"repository": {
"type": "git",
"url": "https://github.com/haxo-games/x86-x64-syntax-highlighting.git"
},
2024-10-13 02:43:36 +03:00
"publisher": "HaxoGames",
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/haxo-games/x86-x64-syntax-highlighting/issues"
},
"keywords": [
2024-10-13 02:50:12 +03:00
"x86-x64 Assembly",
"x86/x64 Assembly",
"x86/x64",
"x86-x64",
"x86asm",
"asm",
2024-10-13 02:43:36 +03:00
"assembly",
"x86",
"x64",
"intel",
"syntax",
"highlighting"
],
"homepage": "https://github.com/haxo-games/x86-x64-syntax-highlighting#readme"
}