mirror of
https://github.com/Steffo99/riscv-plus.git
synced 2024-11-27 18:44:23 +00:00
Reorganize package
This commit is contained in:
parent
f1da650db5
commit
9f0db6701d
2 changed files with 13 additions and 12 deletions
27
package.json
27
package.json
|
@ -2,31 +2,32 @@
|
||||||
"name": "riscv-plus",
|
"name": "riscv-plus",
|
||||||
"publisher": "steffo",
|
"publisher": "steffo",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"version": "0.0.3",
|
|
||||||
"engines": {
|
|
||||||
"vscode": "^1.33.0"
|
|
||||||
},
|
|
||||||
"license": "MIT",
|
|
||||||
"displayName": "RISC-V Plus",
|
"displayName": "RISC-V Plus",
|
||||||
"description": "Alpha for RISC-V Syntax Highlighting.",
|
"description": "RISC-V Syntax Highlighting.",
|
||||||
"categories": [
|
"license": "MIT",
|
||||||
"Programming Languages"
|
|
||||||
],
|
|
||||||
"keywords": ["riscv", "assembly"],
|
|
||||||
"preview": true,
|
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/Steffo99/riscv-plus/issues"
|
"url": "https://github.com/Steffo99/riscv-plus/issues",
|
||||||
|
"email": "me@steffo.eu"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Steffo99/riscv-plus"
|
"url": "https://github.com/Steffo99/riscv-plus"
|
||||||
},
|
},
|
||||||
|
"version": "0.1.0",
|
||||||
|
"engines": {
|
||||||
|
"vscode": "^1.33.0"
|
||||||
|
},
|
||||||
|
"categories": [
|
||||||
|
"Programming Languages"
|
||||||
|
],
|
||||||
|
"keywords": ["riscv", "assembly"],
|
||||||
|
"preview": true,
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"languages": [{
|
"languages": [{
|
||||||
"id": "riscv",
|
"id": "riscv",
|
||||||
"aliases": ["RISC-V Assembly", "riscv"],
|
"aliases": ["RISC-V Assembly", "riscv"],
|
||||||
"extensions": [".riscv"],
|
"extensions": [".riscv"],
|
||||||
"configuration": "./language-configuration.json"
|
"configuration": "./configurations/riscv.configuration.json"
|
||||||
}],
|
}],
|
||||||
"grammars": [{
|
"grammars": [{
|
||||||
"language": "riscv",
|
"language": "riscv",
|
||||||
|
|
Loading…
Reference in a new issue