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

102 lines
2.3 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",
"version": "1.2.6",
2024-10-13 01:55:24 +03:00
"engines": {
"vscode": "^1.75.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 01:55:24 +03:00
"contributes": {
"configuration": {
"title": "Assembly Language",
"properties": {
"assembly.comments.lineComment": {
"type": "string",
"default": ";",
"description": "Character(s) used for line comments",
"examples": [
";",
"#",
"//"
]
},
"assembly.comments.blockComment": {
"type": "array",
"default": [
"/*",
"*/"
],
"description": "Characters used for block comments [start, end]",
"items": {
"type": "string"
},
"minItems": 2,
"maxItems": 2
}
}
},
2024-10-13 06:29:35 +03:00
"languages": [
{
"id": "x86asm",
"aliases": [
"x86-x64 Assembly",
"x86/x64 Assembly",
"x86/x64",
"x86-x64",
"arm",
"x86asm",
"квс"
2024-10-13 06:29:35 +03:00
],
"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
"devDependencies": {
2024-10-13 06:29:35 +03:00
"vscode": "^1.1.34"
}
2024-10-13 02:43:36 +03:00
}