{ "name": "claude-desktop-bridge", "displayName": "Claude Desktop Bridge", "description": "Steuert VSCodium von Claude Desktop aus", "version": "0.1.0", "publisher": "data-it", "engines": { "vscode": "^1.85.0" }, "categories": ["Other"], "activationEvents": ["onStartupFinished"], "main": "./out/extension.js", "contributes": { "commands": [ { "command": "claude-desktop.connect", "title": "Claude Desktop: Verbindung starten" }, { "command": "claude-desktop.disconnect", "title": "Claude Desktop: Verbindung beenden" } ], "configuration": { "title": "Claude Desktop", "properties": { "claudeDesktop.port": { "type": "number", "default": 7890, "description": "WebSocket-Port fuer Claude Desktop Verbindung" }, "claudeDesktop.autoConnect": { "type": "boolean", "default": true, "description": "Automatisch beim Start verbinden" } } } }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/node": "^20.0.0", "@types/vscode": "^1.85.0", "@types/ws": "^8.5.0", "typescript": "^5.0.0" }, "dependencies": { "ws": "^8.16.0" } }