package.json 4.3 KB

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