package.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.5.34",
  6. "icon": "icons/icon.png",
  7. "galleryBanner": {
  8. "color": "#C1DCEA",
  9. "theme": "light"
  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. ],
  26. "keywords": [
  27. "AI",
  28. "Claude",
  29. "agentic",
  30. "productivity",
  31. "automation"
  32. ],
  33. "activationEvents": [],
  34. "main": "./dist/extension.js",
  35. "contributes": {
  36. "viewsContainers": {
  37. "activitybar": [
  38. {
  39. "id": "claude-dev-ActivityBar",
  40. "title": "Claude Dev",
  41. "icon": "$(robot)"
  42. }
  43. ]
  44. },
  45. "views": {
  46. "claude-dev-ActivityBar": [
  47. {
  48. "type": "webview",
  49. "id": "claude-dev.SidebarProvider",
  50. "name": ""
  51. }
  52. ]
  53. },
  54. "commands": [
  55. {
  56. "command": "claude-dev.plusButtonTapped",
  57. "title": "New Task",
  58. "icon": "$(add)"
  59. },
  60. {
  61. "command": "claude-dev.historyButtonTapped",
  62. "title": "History",
  63. "icon": "$(history)"
  64. },
  65. {
  66. "command": "claude-dev.popoutButtonTapped",
  67. "title": "Open in Editor",
  68. "icon": "$(link-external)"
  69. },
  70. {
  71. "command": "claude-dev.settingsButtonTapped",
  72. "title": "Settings",
  73. "icon": "$(settings-gear)"
  74. },
  75. {
  76. "command": "claude-dev.openInNewTab",
  77. "title": "Open In New Tab",
  78. "category": "Claude Dev"
  79. }
  80. ],
  81. "menus": {
  82. "view/title": [
  83. {
  84. "command": "claude-dev.plusButtonTapped",
  85. "group": "navigation@1",
  86. "when": "view == claude-dev.SidebarProvider"
  87. },
  88. {
  89. "command": "claude-dev.historyButtonTapped",
  90. "group": "navigation@2",
  91. "when": "view == claude-dev.SidebarProvider"
  92. },
  93. {
  94. "command": "claude-dev.popoutButtonTapped",
  95. "group": "navigation@3",
  96. "when": "view == claude-dev.SidebarProvider"
  97. },
  98. {
  99. "command": "claude-dev.settingsButtonTapped",
  100. "group": "navigation@4",
  101. "when": "view == claude-dev.SidebarProvider"
  102. }
  103. ]
  104. }
  105. },
  106. "scripts": {
  107. "vscode:prepublish": "npm run package",
  108. "compile": "npm run check-types && npm run lint && node esbuild.js",
  109. "watch": "npm-run-all -p watch:*",
  110. "watch:esbuild": "node esbuild.js --watch",
  111. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  112. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  113. "compile-tests": "tsc -p . --outDir out",
  114. "watch-tests": "tsc -p . -w --outDir out",
  115. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  116. "check-types": "tsc --noEmit",
  117. "lint": "eslint src --ext ts",
  118. "test": "vscode-test",
  119. "install:all": "npm install && cd webview-ui && npm install",
  120. "start:webview": "cd webview-ui && npm run start",
  121. "build:webview": "cd webview-ui && npm run build",
  122. "test:webview": "cd webview-ui && npm run test",
  123. "publish:marketplace": "vsce publish && ovsx publish"
  124. },
  125. "devDependencies": {
  126. "@types/diff": "^5.2.1",
  127. "@types/mocha": "^10.0.7",
  128. "@types/node": "20.x",
  129. "@types/vscode": "^1.93.0",
  130. "@typescript-eslint/eslint-plugin": "^7.14.1",
  131. "@typescript-eslint/parser": "^7.11.0",
  132. "@vscode/test-cli": "^0.0.9",
  133. "@vscode/test-electron": "^2.4.0",
  134. "esbuild": "^0.21.5",
  135. "eslint": "^8.57.0",
  136. "npm-run-all": "^4.1.5",
  137. "typescript": "^5.4.5"
  138. },
  139. "dependencies": {
  140. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  141. "@anthropic-ai/sdk": "^0.26.0",
  142. "@anthropic-ai/vertex-sdk": "^0.4.1",
  143. "@types/clone-deep": "^4.0.4",
  144. "@types/pdf-parse": "^1.1.4",
  145. "@vscode/codicons": "^0.0.36",
  146. "axios": "^1.7.4",
  147. "clone-deep": "^4.0.1",
  148. "default-shell": "^2.2.0",
  149. "delay": "^6.0.0",
  150. "diff": "^5.2.0",
  151. "globby": "^14.0.2",
  152. "mammoth": "^1.8.0",
  153. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  154. "openai": "^4.54.0",
  155. "os-name": "^6.0.0",
  156. "p-wait-for": "^5.0.2",
  157. "pdf-parse": "^1.1.1",
  158. "serialize-error": "^11.0.3",
  159. "tree-sitter-wasms": "^0.1.11",
  160. "web-tree-sitter": "^0.22.6"
  161. }
  162. }