package.json 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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.1",
  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.historyButtonClicked",
  74. "title": "History",
  75. "icon": "$(history)"
  76. },
  77. {
  78. "command": "cline.popoutButtonClicked",
  79. "title": "Open in Editor",
  80. "icon": "$(link-external)"
  81. },
  82. {
  83. "command": "cline.settingsButtonClicked",
  84. "title": "Settings",
  85. "icon": "$(settings-gear)"
  86. },
  87. {
  88. "command": "cline.openInNewTab",
  89. "title": "Open In New Tab",
  90. "category": "Cline"
  91. }
  92. ],
  93. "menus": {
  94. "view/title": [
  95. {
  96. "command": "cline.plusButtonClicked",
  97. "group": "navigation@1",
  98. "when": "view == claude-dev.SidebarProvider"
  99. },
  100. {
  101. "command": "cline.historyButtonClicked",
  102. "group": "navigation@2",
  103. "when": "view == claude-dev.SidebarProvider"
  104. },
  105. {
  106. "command": "cline.popoutButtonClicked",
  107. "group": "navigation@3",
  108. "when": "view == claude-dev.SidebarProvider"
  109. },
  110. {
  111. "command": "cline.settingsButtonClicked",
  112. "group": "navigation@4",
  113. "when": "view == claude-dev.SidebarProvider"
  114. }
  115. ]
  116. }
  117. },
  118. "scripts": {
  119. "vscode:prepublish": "npm run package",
  120. "compile": "npm run check-types && npm run lint && node esbuild.js",
  121. "watch": "npm-run-all -p watch:*",
  122. "watch:esbuild": "node esbuild.js --watch",
  123. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  124. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  125. "compile-tests": "tsc -p . --outDir out",
  126. "watch-tests": "tsc -p . -w --outDir out",
  127. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  128. "check-types": "tsc --noEmit",
  129. "lint": "eslint src --ext ts",
  130. "test": "vscode-test",
  131. "install:all": "npm install && cd webview-ui && npm install",
  132. "start:webview": "cd webview-ui && npm run start",
  133. "build:webview": "cd webview-ui && npm run build",
  134. "test:webview": "cd webview-ui && npm run test",
  135. "publish:marketplace": "vsce publish && ovsx publish"
  136. },
  137. "devDependencies": {
  138. "@types/diff": "^5.2.1",
  139. "@types/mocha": "^10.0.7",
  140. "@types/node": "20.x",
  141. "@types/vscode": "^1.84.0",
  142. "@typescript-eslint/eslint-plugin": "^7.14.1",
  143. "@typescript-eslint/parser": "^7.11.0",
  144. "@vscode/test-cli": "^0.0.9",
  145. "@vscode/test-electron": "^2.4.0",
  146. "esbuild": "^0.21.5",
  147. "eslint": "^8.57.0",
  148. "npm-run-all": "^4.1.5",
  149. "typescript": "^5.4.5"
  150. },
  151. "dependencies": {
  152. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  153. "@anthropic-ai/sdk": "^0.26.0",
  154. "@anthropic-ai/vertex-sdk": "^0.4.1",
  155. "@google/generative-ai": "^0.18.0",
  156. "@types/clone-deep": "^4.0.4",
  157. "@types/pdf-parse": "^1.1.4",
  158. "@types/turndown": "^5.0.5",
  159. "@vscode/codicons": "^0.0.36",
  160. "axios": "^1.7.4",
  161. "cheerio": "^1.0.0",
  162. "clone-deep": "^4.0.1",
  163. "default-shell": "^2.2.0",
  164. "delay": "^6.0.0",
  165. "diff": "^5.2.0",
  166. "fast-deep-equal": "^3.1.3",
  167. "globby": "^14.0.2",
  168. "isbinaryfile": "^5.0.2",
  169. "mammoth": "^1.8.0",
  170. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  171. "openai": "^4.61.0",
  172. "os-name": "^6.0.0",
  173. "p-wait-for": "^5.0.2",
  174. "pdf-parse": "^1.1.1",
  175. "puppeteer-chromium-resolver": "^23.0.0",
  176. "puppeteer-core": "^23.4.0",
  177. "serialize-error": "^11.0.3",
  178. "strip-ansi": "^7.1.0",
  179. "tree-sitter-wasms": "^0.1.11",
  180. "turndown": "^7.2.0",
  181. "web-tree-sitter": "^0.22.6"
  182. }
  183. }