package.json 5.5 KB

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