package.json 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. {
  2. "name": "claude-dev",
  3. "displayName": "Claude Dev",
  4. "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
  5. "version": "1.9.4",
  6. "icon": "icons/icon.png",
  7. "galleryBanner": {
  8. "color": "#1E1E1E",
  9. "theme": "dark"
  10. },
  11. "engines": {
  12. "vscode": "^1.84.0"
  13. },
  14. "author": {
  15. "name": "Saoud Rizwan"
  16. },
  17. "license": "MIT",
  18. "publisher": "saoudrizwan",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/saoudrizwan/claude-dev"
  22. },
  23. "categories": [
  24. "AI",
  25. "Chat",
  26. "Programming Languages",
  27. "Education",
  28. "Snippets",
  29. "Testing"
  30. ],
  31. "keywords": [
  32. "claude",
  33. "coding",
  34. "agent",
  35. "autonomous",
  36. "chatgpt",
  37. "sonnet",
  38. "ai",
  39. "llama"
  40. ],
  41. "activationEvents": [],
  42. "main": "./dist/extension.js",
  43. "contributes": {
  44. "viewsContainers": {
  45. "activitybar": [
  46. {
  47. "id": "claude-dev-ActivityBar",
  48. "title": "Claude Dev",
  49. "icon": "$(robot)"
  50. }
  51. ]
  52. },
  53. "views": {
  54. "claude-dev-ActivityBar": [
  55. {
  56. "type": "webview",
  57. "id": "claude-dev.SidebarProvider",
  58. "name": ""
  59. }
  60. ]
  61. },
  62. "commands": [
  63. {
  64. "command": "claude-dev.plusButtonTapped",
  65. "title": "New Task",
  66. "icon": "$(add)"
  67. },
  68. {
  69. "command": "claude-dev.historyButtonTapped",
  70. "title": "History",
  71. "icon": "$(history)"
  72. },
  73. {
  74. "command": "claude-dev.popoutButtonTapped",
  75. "title": "Open in Editor",
  76. "icon": "$(link-external)"
  77. },
  78. {
  79. "command": "claude-dev.settingsButtonTapped",
  80. "title": "Settings",
  81. "icon": "$(settings-gear)"
  82. },
  83. {
  84. "command": "claude-dev.openInNewTab",
  85. "title": "Open In New Tab",
  86. "category": "Claude Dev"
  87. }
  88. ],
  89. "menus": {
  90. "view/title": [
  91. {
  92. "command": "claude-dev.plusButtonTapped",
  93. "group": "navigation@1",
  94. "when": "view == claude-dev.SidebarProvider"
  95. },
  96. {
  97. "command": "claude-dev.historyButtonTapped",
  98. "group": "navigation@2",
  99. "when": "view == claude-dev.SidebarProvider"
  100. },
  101. {
  102. "command": "claude-dev.popoutButtonTapped",
  103. "group": "navigation@3",
  104. "when": "view == claude-dev.SidebarProvider"
  105. },
  106. {
  107. "command": "claude-dev.settingsButtonTapped",
  108. "group": "navigation@4",
  109. "when": "view == claude-dev.SidebarProvider"
  110. }
  111. ]
  112. }
  113. },
  114. "scripts": {
  115. "vscode:prepublish": "npm run package",
  116. "compile": "npm run check-types && npm run lint && node esbuild.js",
  117. "watch": "npm-run-all -p watch:*",
  118. "watch:esbuild": "node esbuild.js --watch",
  119. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  120. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  121. "compile-tests": "tsc -p . --outDir out",
  122. "watch-tests": "tsc -p . -w --outDir out",
  123. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  124. "check-types": "tsc --noEmit",
  125. "lint": "eslint src --ext ts",
  126. "test": "vscode-test",
  127. "install:all": "npm install && cd webview-ui && npm install",
  128. "start:webview": "cd webview-ui && npm run start",
  129. "build:webview": "cd webview-ui && npm run build",
  130. "test:webview": "cd webview-ui && npm run test",
  131. "publish:marketplace": "vsce publish && ovsx publish"
  132. },
  133. "devDependencies": {
  134. "@types/diff": "^5.2.1",
  135. "@types/mocha": "^10.0.7",
  136. "@types/node": "20.x",
  137. "@types/vscode": "^1.84.0",
  138. "@typescript-eslint/eslint-plugin": "^7.14.1",
  139. "@typescript-eslint/parser": "^7.11.0",
  140. "@vscode/test-cli": "^0.0.9",
  141. "@vscode/test-electron": "^2.4.0",
  142. "esbuild": "^0.21.5",
  143. "eslint": "^8.57.0",
  144. "npm-run-all": "^4.1.5",
  145. "typescript": "^5.4.5"
  146. },
  147. "dependencies": {
  148. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  149. "@anthropic-ai/sdk": "^0.26.0",
  150. "@anthropic-ai/vertex-sdk": "^0.4.1",
  151. "@google/generative-ai": "^0.18.0",
  152. "@types/clone-deep": "^4.0.4",
  153. "@types/pdf-parse": "^1.1.4",
  154. "@types/turndown": "^5.0.5",
  155. "@vscode/codicons": "^0.0.36",
  156. "axios": "^1.7.4",
  157. "cheerio": "^1.0.0",
  158. "clone-deep": "^4.0.1",
  159. "default-shell": "^2.2.0",
  160. "delay": "^6.0.0",
  161. "diff": "^5.2.0",
  162. "fast-deep-equal": "^3.1.3",
  163. "globby": "^14.0.2",
  164. "isbinaryfile": "^5.0.2",
  165. "mammoth": "^1.8.0",
  166. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  167. "openai": "^4.61.0",
  168. "os-name": "^6.0.0",
  169. "p-wait-for": "^5.0.2",
  170. "pdf-parse": "^1.1.1",
  171. "puppeteer-chromium-resolver": "^23.0.0",
  172. "puppeteer-core": "^23.4.0",
  173. "serialize-error": "^11.0.3",
  174. "strip-ansi": "^7.1.0",
  175. "tree-sitter-wasms": "^0.1.11",
  176. "turndown": "^7.2.0",
  177. "web-tree-sitter": "^0.22.6"
  178. }
  179. }