From e8259ee9ef15cbd1e631be4488e3514e4066f8ae Mon Sep 17 00:00:00 2001 From: "brice.boisson" Date: Thu, 23 Oct 2025 23:20:33 +0200 Subject: [PATCH] Update package.json --- package.json | 49 +++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 5c971ed..9558f1f 100644 --- a/package.json +++ b/package.json @@ -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" } }