package.json 5.4 KB

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