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

79 lines
1.7 KiB
JSON
Raw Normal View History

2024-10-13 01:55:24 +03:00
{
2024-10-13 07:03:24 +03:00
"name": "x86-assembly-syntax",
2024-10-13 06:29:35 +03:00
"displayName": "Universal Assembly Syntax Highlighting",
"description": "Syntax highlighting extension for x86, x64 and ARM assembly both for Intel and AT&T syntax",
2024-10-13 07:03:24 +03:00
"version": "1.0.6",
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"
],
2024-10-13 06:29:35 +03:00
"main": "./src/extension.js",
2024-10-13 07:03:24 +03:00
"activationEvents": [
2024-10-13 07:34:06 +03:00
"onLanguage:x86asm"
],
2024-10-13 01:55:24 +03:00
"contributes": {
2024-10-13 06:29:35 +03:00
"languages": [
{
"id": "x86asm",
"aliases": [
"x86-x64 Assembly",
"x86/x64 Assembly",
"x86/x64",
"x86-x64",
"arm",
"x86asm"
],
"extensions": [
".asm",
".s",
".S",
2024-10-13 06:55:03 +03:00
".nasm",
".asmx",
".inc"
2024-10-13 06:29:35 +03:00
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "x86asm",
"scopeName": "source.x86asm",
2024-10-13 06:55:03 +03:00
"path": "./syntaxes/asm.tmLanguage.json"
2024-10-13 06:29:35 +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 06:29:35 +03:00
"x86-x64 Assembly",
"x86/x64 Assembly",
"x86/x64",
"x86-x64",
2024-10-13 02:50:12 +03:00
"x86asm",
"asm",
2024-10-13 02:43:36 +03:00
"assembly",
"x86",
"x64",
"intel",
"syntax",
"highlighting"
],
2024-10-13 06:29:35 +03:00
"homepage": "https://github.com/haxo-games/x86-x64-syntax-highlighting#readme",
2024-10-13 07:12:28 +03:00
"dependencies": {
2024-10-13 06:29:35 +03:00
"axios": "^1.7.7",
2024-10-13 07:12:28 +03:00
"cheerio": "^1.0.0"
},
"devDependencies": {
2024-10-13 06:29:35 +03:00
"vscode": "^1.1.34"
}
2024-10-13 02:43:36 +03:00
}