1
Fork 0
mirror of https://github.com/Steffo99/riscv-plus.git synced 2024-10-16 14:37:34 +00:00
riscv-plus/package.json
2022-06-21 02:55:00 +02:00

37 lines
No EOL
989 B
JSON

{
"name": "riscv-plus",
"publisher": "steffo",
"icon": "icon.png",
"version": "0.0.3",
"engines": {
"vscode": "^1.33.0"
},
"license": "MIT",
"displayName": "RISC-V Plus",
"description": "Alpha for RISC-V Syntax Highlighting.",
"categories": [
"Programming Languages"
],
"keywords": ["riscv", "assembly"],
"preview": true,
"bugs": {
"url": "https://github.com/Steffo99/riscv-plus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Steffo99/riscv-plus"
},
"contributes": {
"languages": [{
"id": "riscv",
"aliases": ["RISC-V Assembly", "riscv"],
"extensions": [".riscv"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "riscv",
"scopeName": "source.riscv",
"path": "./syntaxes/riscv.tmLanguage.json"
}]
}
}