package.json 4.9 KB

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