package.json 4.9 KB

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