package.json 884 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "gh-hub",
  3. "displayName": "GH-Hub",
  4. "description": "GitHub management panel for VS Code — repos, issues, PRs, push, AI replies",
  5. "version": "0.2.0",
  6. "publisher": "VisualLogic-AI",
  7. "engines": { "vscode": "^1.74.0" },
  8. "categories": ["Other"],
  9. "activationEvents": [
  10. "onCommand:gh-hub.open",
  11. "onCommand:gh-hub.pushCurrent",
  12. "onCommand:gh-hub.publishReadme"
  13. ],
  14. "main": "./extension.js",
  15. "contributes": {
  16. "commands": [
  17. { "command": "gh-hub.open", "title": "GH-Hub: Open Dashboard" },
  18. { "command": "gh-hub.pushCurrent", "title": "GH-Hub: Push Current Project" },
  19. { "command": "gh-hub.publishReadme", "title": "GH-Hub: Publish File as README" }
  20. ],
  21. "keybindings": [
  22. { "command": "gh-hub.open", "key": "ctrl+shift+g", "mac": "cmd+shift+g" }
  23. ]
  24. },
  25. "dependencies": {
  26. "@anthropic-ai/sdk": "^0.39.0"
  27. }
  28. }