package.json 4.9 KB

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