package.json 7.0 KB

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