2
0

package.json 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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.1.6",
  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. "onLanguage",
  47. "onStartupFinished"
  48. ],
  49. "main": "./dist/extension.js",
  50. "contributes": {
  51. "viewsContainers": {
  52. "activitybar": [
  53. {
  54. "id": "roo-cline-ActivityBar",
  55. "title": "Roo Cline",
  56. "icon": "$(rocket)"
  57. }
  58. ]
  59. },
  60. "views": {
  61. "roo-cline-ActivityBar": [
  62. {
  63. "type": "webview",
  64. "id": "roo-cline.SidebarProvider",
  65. "name": ""
  66. }
  67. ]
  68. },
  69. "commands": [
  70. {
  71. "command": "roo-cline.plusButtonClicked",
  72. "title": "New Task",
  73. "icon": "$(add)"
  74. },
  75. {
  76. "command": "roo-cline.mcpButtonClicked",
  77. "title": "MCP Servers",
  78. "icon": "$(server)"
  79. },
  80. {
  81. "command": "roo-cline.promptsButtonClicked",
  82. "title": "Prompts",
  83. "icon": "$(notebook)"
  84. },
  85. {
  86. "command": "roo-cline.historyButtonClicked",
  87. "title": "History",
  88. "icon": "$(history)"
  89. },
  90. {
  91. "command": "roo-cline.popoutButtonClicked",
  92. "title": "Open in Editor",
  93. "icon": "$(link-external)"
  94. },
  95. {
  96. "command": "roo-cline.settingsButtonClicked",
  97. "title": "Settings",
  98. "icon": "$(settings-gear)"
  99. },
  100. {
  101. "command": "roo-cline.openInNewTab",
  102. "title": "Open In New Tab",
  103. "category": "Roo Cline"
  104. }
  105. ],
  106. "menus": {
  107. "view/title": [
  108. {
  109. "command": "roo-cline.plusButtonClicked",
  110. "group": "navigation@1",
  111. "when": "view == roo-cline.SidebarProvider"
  112. },
  113. {
  114. "command": "roo-cline.promptsButtonClicked",
  115. "group": "navigation@2",
  116. "when": "view == roo-cline.SidebarProvider"
  117. },
  118. {
  119. "command": "roo-cline.mcpButtonClicked",
  120. "group": "navigation@3",
  121. "when": "view == roo-cline.SidebarProvider"
  122. },
  123. {
  124. "command": "roo-cline.historyButtonClicked",
  125. "group": "navigation@4",
  126. "when": "view == roo-cline.SidebarProvider"
  127. },
  128. {
  129. "command": "roo-cline.popoutButtonClicked",
  130. "group": "navigation@5",
  131. "when": "view == roo-cline.SidebarProvider"
  132. },
  133. {
  134. "command": "roo-cline.settingsButtonClicked",
  135. "group": "navigation@6",
  136. "when": "view == roo-cline.SidebarProvider"
  137. }
  138. ]
  139. },
  140. "configuration": {
  141. "title": "RooCline",
  142. "properties": {
  143. "roo-cline.allowedCommands": {
  144. "type": "array",
  145. "items": {
  146. "type": "string"
  147. },
  148. "default": [
  149. "npm test",
  150. "npm install",
  151. "tsc",
  152. "git log",
  153. "git diff",
  154. "git show"
  155. ],
  156. "description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
  157. },
  158. "roo-cline.vsCodeLmModelSelector": {
  159. "type": "object",
  160. "properties": {
  161. "vendor": {
  162. "type": "string",
  163. "description": "The vendor of the language model (e.g. copilot)"
  164. },
  165. "family": {
  166. "type": "string",
  167. "description": "The family of the language model (e.g. gpt-4)"
  168. }
  169. },
  170. "description": "Settings for VSCode Language Model API"
  171. }
  172. }
  173. }
  174. },
  175. "scripts": {
  176. "build": "npm run build:webview && npm run vsix",
  177. "build:webview": "cd webview-ui && npm run build",
  178. "changeset": "changeset",
  179. "check-types": "tsc --noEmit",
  180. "compile": "npm run check-types && npm run lint && node esbuild.js",
  181. "compile-tests": "tsc -p . --outDir out",
  182. "install:all": "npm install && cd webview-ui && npm install",
  183. "lint": "eslint src --ext ts && npm run lint --prefix webview-ui",
  184. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  185. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  186. "start:webview": "cd webview-ui && npm run start",
  187. "test": "jest && npm run test:webview",
  188. "test:webview": "cd webview-ui && npm run test",
  189. "test:extension": "vscode-test",
  190. "prepare": "husky",
  191. "publish:marketplace": "vsce publish && ovsx publish",
  192. "publish": "npm run build && changeset publish && npm install --package-lock-only",
  193. "version-packages": "changeset version && npm install --package-lock-only",
  194. "vscode:prepublish": "npm run package",
  195. "vsix": "mkdir -p bin && npx vsce package --out bin",
  196. "watch": "npm-run-all -p watch:*",
  197. "watch:esbuild": "node esbuild.js --watch",
  198. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  199. "watch-tests": "tsc -p . -w --outDir out"
  200. },
  201. "devDependencies": {
  202. "@changesets/cli": "^2.27.10",
  203. "@changesets/types": "^6.0.0",
  204. "@types/diff": "^5.2.1",
  205. "@types/diff-match-patch": "^1.0.36",
  206. "@types/jest": "^29.5.14",
  207. "@types/mocha": "^10.0.7",
  208. "@types/node": "20.x",
  209. "@types/string-similarity": "^4.0.2",
  210. "@typescript-eslint/eslint-plugin": "^7.14.1",
  211. "@typescript-eslint/parser": "^7.11.0",
  212. "@vscode/test-cli": "^0.0.9",
  213. "@vscode/test-electron": "^2.4.0",
  214. "dotenv": "^16.4.7",
  215. "esbuild": "^0.24.0",
  216. "eslint": "^8.57.0",
  217. "husky": "^9.1.7",
  218. "jest": "^29.7.0",
  219. "jest-simple-dot-reporter": "^1.0.5",
  220. "lint-staged": "^15.2.11",
  221. "npm-run-all": "^4.1.5",
  222. "prettier": "^3.4.2",
  223. "ts-jest": "^29.2.5",
  224. "typescript": "^5.4.5"
  225. },
  226. "dependencies": {
  227. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  228. "@anthropic-ai/sdk": "^0.26.0",
  229. "@anthropic-ai/vertex-sdk": "^0.4.1",
  230. "@aws-sdk/client-bedrock-runtime": "^3.706.0",
  231. "@google/generative-ai": "^0.18.0",
  232. "@mistralai/mistralai": "^1.3.6",
  233. "@modelcontextprotocol/sdk": "^1.0.1",
  234. "@types/clone-deep": "^4.0.4",
  235. "@types/pdf-parse": "^1.1.4",
  236. "@types/tmp": "^0.2.6",
  237. "@types/turndown": "^5.0.5",
  238. "@types/vscode": "^1.95.0",
  239. "@vscode/codicons": "^0.0.36",
  240. "axios": "^1.7.4",
  241. "cheerio": "^1.0.0",
  242. "chokidar": "^4.0.1",
  243. "clone-deep": "^4.0.1",
  244. "default-shell": "^2.2.0",
  245. "delay": "^6.0.0",
  246. "diff": "^5.2.0",
  247. "diff-match-patch": "^1.0.5",
  248. "fast-deep-equal": "^3.1.3",
  249. "fastest-levenshtein": "^1.0.16",
  250. "globby": "^14.0.2",
  251. "isbinaryfile": "^5.0.2",
  252. "mammoth": "^1.8.0",
  253. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  254. "openai": "^4.78.1",
  255. "os-name": "^6.0.0",
  256. "p-wait-for": "^5.0.2",
  257. "pdf-parse": "^1.1.1",
  258. "puppeteer-chromium-resolver": "^23.0.0",
  259. "puppeteer-core": "^23.4.0",
  260. "serialize-error": "^11.0.3",
  261. "simple-git": "^3.27.0",
  262. "sound-play": "^1.1.0",
  263. "string-similarity": "^4.0.4",
  264. "strip-ansi": "^7.1.0",
  265. "tmp": "^0.2.3",
  266. "tree-sitter-wasms": "^0.1.11",
  267. "turndown": "^7.2.0",
  268. "web-tree-sitter": "^0.22.6",
  269. "zod": "^3.23.8"
  270. },
  271. "lint-staged": {
  272. "*.{js,jsx,ts,tsx,json,css,md}": [
  273. "prettier --write"
  274. ],
  275. "src/**/*.{ts,tsx}": [
  276. "prettier --write",
  277. "npx eslint -c .eslintrc.json --fix"
  278. ]
  279. }
  280. }