1
Fork 0
mirror of https://github.com/Steffo99/riscv-plus.git synced 2024-10-16 06:27:33 +00:00
riscv-plus/package.json

39 lines
1 KiB
JSON
Raw Normal View History

2019-05-13 17:16:03 +00:00
{
"name": "riscv-plus",
"publisher": "steffo",
2022-06-21 00:55:00 +00:00
"icon": "icon.png",
2022-06-21 00:57:44 +00:00
"displayName": "RISC-V Plus",
"description": "RISC-V Syntax Highlighting.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Steffo99/riscv-plus/issues",
"email": "me@steffo.eu"
},
"repository": {
"type": "git",
"url": "https://github.com/Steffo99/riscv-plus"
},
"version": "0.1.0",
2019-05-13 17:16:03 +00:00
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Programming Languages"
],
2019-05-13 17:22:25 +00:00
"keywords": ["riscv", "assembly"],
"preview": true,
2019-05-13 17:16:03 +00:00
"contributes": {
"languages": [{
"id": "riscv",
"aliases": ["RISC-V Assembly", "riscv"],
2022-06-21 01:05:27 +00:00
"extensions": [".riscv", ".s"],
2022-06-21 00:57:44 +00:00
"configuration": "./configurations/riscv.configuration.json"
2019-05-13 17:16:03 +00:00
}],
"grammars": [{
"language": "riscv",
"scopeName": "source.riscv",
"path": "./syntaxes/riscv.tmLanguage.json"
}]
}
2022-06-21 01:05:27 +00:00
}