Update package.json

This commit is contained in:
brice.boisson
2025-10-23 23:20:33 +02:00
parent 488b443e00
commit e8259ee9ef

View File

@@ -3,7 +3,9 @@
"displayName": "ModelSim Wave Extension", "displayName": "ModelSim Wave Extension",
"description": "Send add wave commands to ModelSim from VS Code", "description": "Send add wave commands to ModelSim from VS Code",
"version": "0.0.2", "version": "0.0.2",
"engines": { "vscode": "^1.70.0" }, "engines": {
"vscode": "^1.70.0"
},
"activationEvents": [ "activationEvents": [
"onCommand:modelsim.addWaveUnderCursor", "onCommand:modelsim.addWaveUnderCursor",
"onStartupFinished", "onStartupFinished",
@@ -12,14 +14,41 @@
"main": "./out/extension.js", "main": "./out/extension.js",
"contributes": { "contributes": {
"commands": [ "commands": [
{ "command": "modelsim.addWaveUnderCursor", "title": "Add Wave for Word Under Cursor" }, {
{ "command": "modelsim.toggleWaveMode", "title": "Toggle Wave Debug Mode" } "command": "modelsim.addWaveUnderCursor",
"title": "Add Wave for Word Under Cursor"
},
{
"command": "modelsim.toggleWaveMode",
"title": "Toggle Wave Debug Mode"
}
], ],
"keybindings": [ "keybindings": [
{ "command": "modelsim.addWaveUnderCursor", "key": "ctrl+w", "when": "modelsim.mode", "args": { "mode": "auto" } }, {
{ "command": "modelsim.addWaveUnderCursor", "key": "ctrl+e", "when": "modelsim.mode", "args": { "mode": "set" } }, "command": "modelsim.addWaveUnderCursor",
{ "command": "modelsim.toggleWaveMode", "key": "ctrl+alt+m" }, "key": "ctrl+w",
{ "command": "modelsim.zoomInWave", "key": "ctrl+alt+u", "when": "modelsim.mode" } "when": "modelsim.mode",
"args": {
"mode": "auto"
}
},
{
"command": "modelsim.addWaveUnderCursor",
"key": "ctrl+e",
"when": "modelsim.mode",
"args": {
"mode": "set"
}
},
{
"command": "modelsim.toggleWaveMode",
"key": "ctrl+alt+m"
},
{
"command": "modelsim.zoomInWave",
"key": "ctrl+alt+u",
"when": "modelsim.mode"
}
], ],
"viewsContainers": { "viewsContainers": {
"panel": [ "panel": [
@@ -74,8 +103,8 @@
"build": "tsc -p ." "build": "tsc -p ."
}, },
"devDependencies": { "devDependencies": {
"typescript": "^5.9.2", "@types/node": "^20.19.23",
"@types/node": "^20.0.0", "@types/vscode": "1.70.0",
"@types/vscode": "^1.70.0" "typescript": "^5.9.3"
} }
} }