package.json 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. {
  2. "name": "roo-cline",
  3. "displayName": "Roo Cline",
  4. "description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.",
  5. "publisher": "RooVeterinaryInc",
  6. "version": "2.2.44",
  7. "icon": "assets/icons/rocket.png",
  8. "galleryBanner": {
  9. "color": "#617A91",
  10. "theme": "dark"
  11. },
  12. "engines": {
  13. "vscode": "^1.93.1"
  14. },
  15. "author": {
  16. "name": "Roo Vet"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/RooVetGit/Roo-Cline"
  21. },
  22. "homepage": "https://github.com/RooVetGit/Roo-Cline",
  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. "mcp",
  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": "roo-cline-ActivityBar",
  52. "title": "Roo Cline",
  53. "icon": "$(rocket)"
  54. }
  55. ]
  56. },
  57. "views": {
  58. "roo-cline-ActivityBar": [
  59. {
  60. "type": "webview",
  61. "id": "roo-cline.SidebarProvider",
  62. "name": ""
  63. }
  64. ]
  65. },
  66. "commands": [
  67. {
  68. "command": "roo-cline.plusButtonClicked",
  69. "title": "New Task",
  70. "icon": "$(add)"
  71. },
  72. {
  73. "command": "roo-cline.mcpButtonClicked",
  74. "title": "MCP Servers",
  75. "icon": "$(server)"
  76. },
  77. {
  78. "command": "roo-cline.historyButtonClicked",
  79. "title": "History",
  80. "icon": "$(history)"
  81. },
  82. {
  83. "command": "roo-cline.popoutButtonClicked",
  84. "title": "Open in Editor",
  85. "icon": "$(link-external)"
  86. },
  87. {
  88. "command": "roo-cline.settingsButtonClicked",
  89. "title": "Settings",
  90. "icon": "$(settings-gear)"
  91. },
  92. {
  93. "command": "roo-cline.openInNewTab",
  94. "title": "Open In New Tab",
  95. "category": "Roo Cline"
  96. }
  97. ],
  98. "menus": {
  99. "view/title": [
  100. {
  101. "command": "roo-cline.plusButtonClicked",
  102. "group": "navigation@1",
  103. "when": "view == roo-cline.SidebarProvider"
  104. },
  105. {
  106. "command": "roo-cline.mcpButtonClicked",
  107. "group": "navigation@2",
  108. "when": "view == roo-cline.SidebarProvider"
  109. },
  110. {
  111. "command": "roo-cline.historyButtonClicked",
  112. "group": "navigation@3",
  113. "when": "view == roo-cline.SidebarProvider"
  114. },
  115. {
  116. "command": "roo-cline.popoutButtonClicked",
  117. "group": "navigation@4",
  118. "when": "view == roo-cline.SidebarProvider"
  119. },
  120. {
  121. "command": "roo-cline.settingsButtonClicked",
  122. "group": "navigation@5",
  123. "when": "view == roo-cline.SidebarProvider"
  124. }
  125. ]
  126. },
  127. "configuration": {
  128. "title": "RooCline",
  129. "properties": {
  130. "roo-cline.allowedCommands": {
  131. "type": "array",
  132. "items": {
  133. "type": "string"
  134. },
  135. "default": [
  136. "npm test",
  137. "npm install",
  138. "tsc",
  139. "git log",
  140. "git diff",
  141. "git show"
  142. ],
  143. "description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
  144. }
  145. }
  146. }
  147. },
  148. "scripts": {
  149. "build": "npm run build:webview && npm run vsix",
  150. "build:webview": "cd webview-ui && npm run build",
  151. "changeset": "changeset",
  152. "check-types": "tsc --noEmit",
  153. "compile": "npm run check-types && npm run lint && node esbuild.js",
  154. "compile-tests": "tsc -p . --outDir out",
  155. "install:all": "npm install && cd webview-ui && npm install",
  156. "lint": "eslint src --ext ts && npm run lint --prefix webview-ui",
  157. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  158. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  159. "start:webview": "cd webview-ui && npm run start",
  160. "test": "jest && npm run test:webview",
  161. "test:webview": "cd webview-ui && npm run test",
  162. "test:extension": "vscode-test",
  163. "prepare": "husky",
  164. "publish:marketplace": "vsce publish",
  165. "publish": "npm run build && changeset publish && npm install --package-lock-only",
  166. "version-packages": "changeset version && npm install --package-lock-only",
  167. "vscode:prepublish": "npm run package",
  168. "vsix": "mkdir -p bin && npx vsce package --out bin",
  169. "watch": "npm-run-all -p watch:*",
  170. "watch:esbuild": "node esbuild.js --watch",
  171. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  172. "watch-tests": "tsc -p . -w --outDir out"
  173. },
  174. "devDependencies": {
  175. "@changesets/cli": "^2.27.10",
  176. "@changesets/types": "^6.0.0",
  177. "@types/diff": "^5.2.1",
  178. "@types/jest": "^29.5.14",
  179. "@types/mocha": "^10.0.7",
  180. "@types/node": "20.x",
  181. "@typescript-eslint/eslint-plugin": "^7.14.1",
  182. "@typescript-eslint/parser": "^7.11.0",
  183. "@vscode/test-cli": "^0.0.9",
  184. "@vscode/test-electron": "^2.4.0",
  185. "dotenv": "^16.4.7",
  186. "esbuild": "^0.24.0",
  187. "eslint": "^8.57.0",
  188. "husky": "^9.1.7",
  189. "jest": "^29.7.0",
  190. "lint-staged": "^15.2.11",
  191. "npm-run-all": "^4.1.5",
  192. "ts-jest": "^29.2.5",
  193. "typescript": "^5.4.5"
  194. },
  195. "dependencies": {
  196. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  197. "@anthropic-ai/sdk": "^0.26.0",
  198. "@anthropic-ai/vertex-sdk": "^0.4.1",
  199. "@aws-sdk/client-bedrock-runtime": "^3.706.0",
  200. "@google/generative-ai": "^0.18.0",
  201. "@modelcontextprotocol/sdk": "^1.0.1",
  202. "@types/clone-deep": "^4.0.4",
  203. "@types/pdf-parse": "^1.1.4",
  204. "@types/turndown": "^5.0.5",
  205. "@types/vscode": "^1.95.0",
  206. "@vscode/codicons": "^0.0.36",
  207. "axios": "^1.7.4",
  208. "cheerio": "^1.0.0",
  209. "chokidar": "^4.0.1",
  210. "clone-deep": "^4.0.1",
  211. "default-shell": "^2.2.0",
  212. "delay": "^6.0.0",
  213. "diff": "^5.2.0",
  214. "fast-deep-equal": "^3.1.3",
  215. "globby": "^14.0.2",
  216. "isbinaryfile": "^5.0.2",
  217. "mammoth": "^1.8.0",
  218. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  219. "openai": "^4.73.1",
  220. "os-name": "^6.0.0",
  221. "p-wait-for": "^5.0.2",
  222. "pdf-parse": "^1.1.1",
  223. "puppeteer-chromium-resolver": "^23.0.0",
  224. "puppeteer-core": "^23.4.0",
  225. "serialize-error": "^11.0.3",
  226. "sound-play": "^1.1.0",
  227. "strip-ansi": "^7.1.0",
  228. "tree-sitter-wasms": "^0.1.11",
  229. "turndown": "^7.2.0",
  230. "web-tree-sitter": "^0.22.6",
  231. "zod": "^3.23.8"
  232. },
  233. "lint-staged": {
  234. "src/**/*.{ts,tsx}": [
  235. "npx eslint -c .eslintrc.json"
  236. ]
  237. }
  238. }