{ "name": "gh-hub", "displayName": "GH-Hub", "description": "GitHub management panel for VS Code — repos, issues, PRs, push, AI replies", "version": "0.2.0", "publisher": "VisualLogic-AI", "engines": { "vscode": "^1.74.0" }, "categories": ["Other"], "activationEvents": [ "onCommand:gh-hub.open", "onCommand:gh-hub.pushCurrent", "onCommand:gh-hub.publishReadme" ], "main": "./extension.js", "contributes": { "commands": [ { "command": "gh-hub.open", "title": "GH-Hub: Open Dashboard" }, { "command": "gh-hub.pushCurrent", "title": "GH-Hub: Push Current Project" }, { "command": "gh-hub.publishReadme", "title": "GH-Hub: Publish File as README" } ], "keybindings": [ { "command": "gh-hub.open", "key": "ctrl+shift+g", "mac": "cmd+shift+g" } ] }, "dependencies": { "@anthropic-ai/sdk": "^0.39.0" } }