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",
"description": "Send add wave commands to ModelSim from VS Code",
"version": "0.0.2",
"engines": { "vscode": "^1.70.0" },
"engines": {
"vscode": "^1.70.0"
},
"activationEvents": [
"onCommand:modelsim.addWaveUnderCursor",
"onStartupFinished",
@@ -12,14 +14,41 @@
"main": "./out/extension.js",
"contributes": {
"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": [
{ "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.toggleWaveMode", "key": "ctrl+alt+m" },
{ "command": "modelsim.zoomInWave", "key": "ctrl+alt+u", "when": "modelsim.mode" }
{
"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.toggleWaveMode",
"key": "ctrl+alt+m"
},
{
"command": "modelsim.zoomInWave",
"key": "ctrl+alt+u",
"when": "modelsim.mode"
}
],
"viewsContainers": {
"panel": [
@@ -74,8 +103,8 @@
"build": "tsc -p ."
},
"devDependencies": {
"typescript": "^5.9.2",
"@types/node": "^20.0.0",
"@types/vscode": "^1.70.0"
"@types/node": "^20.19.23",
"@types/vscode": "1.70.0",
"typescript": "^5.9.3"
}
}