package.json 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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.1.17",
  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. "openrouter",
  36. "coding",
  37. "agent",
  38. "autonomous",
  39. "chatgpt",
  40. "sonnet",
  41. "ai",
  42. "llama"
  43. ],
  44. "activationEvents": [],
  45. "main": "./dist/extension.js",
  46. "contributes": {
  47. "viewsContainers": {
  48. "activitybar": [
  49. {
  50. "id": "roo-cline-ActivityBar",
  51. "title": "Roo Cline",
  52. "icon": "$(rocket)"
  53. }
  54. ]
  55. },
  56. "views": {
  57. "roo-cline-ActivityBar": [
  58. {
  59. "type": "webview",
  60. "id": "roo-cline.SidebarProvider",
  61. "name": ""
  62. }
  63. ]
  64. },
  65. "commands": [
  66. {
  67. "command": "roo-cline.plusButtonClicked",
  68. "title": "New Task",
  69. "icon": "$(add)"
  70. },
  71. {
  72. "command": "roo-cline.historyButtonClicked",
  73. "title": "History",
  74. "icon": "$(history)"
  75. },
  76. {
  77. "command": "roo-cline.popoutButtonClicked",
  78. "title": "Open in Editor",
  79. "icon": "$(link-external)"
  80. },
  81. {
  82. "command": "roo-cline.settingsButtonClicked",
  83. "title": "Settings",
  84. "icon": "$(settings-gear)"
  85. },
  86. {
  87. "command": "roo-cline.openInNewTab",
  88. "title": "Open In New Tab",
  89. "category": "Roo Cline"
  90. }
  91. ],
  92. "menus": {
  93. "view/title": [
  94. {
  95. "command": "roo-cline.plusButtonClicked",
  96. "group": "navigation@1",
  97. "when": "view == roo-cline.SidebarProvider"
  98. },
  99. {
  100. "command": "roo-cline.historyButtonClicked",
  101. "group": "navigation@2",
  102. "when": "view == roo-cline.SidebarProvider"
  103. },
  104. {
  105. "command": "roo-cline.popoutButtonClicked",
  106. "group": "navigation@3",
  107. "when": "view == roo-cline.SidebarProvider"
  108. },
  109. {
  110. "command": "roo-cline.settingsButtonClicked",
  111. "group": "navigation@4",
  112. "when": "view == roo-cline.SidebarProvider"
  113. }
  114. ]
  115. },
  116. "configuration": {
  117. "title": "RooCline",
  118. "properties": {
  119. "roo-cline.allowedCommands": {
  120. "type": "array",
  121. "items": {
  122. "type": "string"
  123. },
  124. "default": [
  125. "npm test",
  126. "npm install",
  127. "tsc",
  128. "git log",
  129. "git diff",
  130. "git show"
  131. ],
  132. "description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
  133. }
  134. }
  135. }
  136. },
  137. "scripts": {
  138. "vscode:prepublish": "npm run package",
  139. "vsix": "vsce package",
  140. "compile": "npm run check-types && npm run lint && node esbuild.js",
  141. "watch": "npm-run-all -p watch:*",
  142. "watch:esbuild": "node esbuild.js --watch",
  143. "watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
  144. "package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
  145. "compile-tests": "tsc -p . --outDir out",
  146. "watch-tests": "tsc -p . -w --outDir out",
  147. "pretest": "npm run compile-tests && npm run compile && npm run lint",
  148. "check-types": "tsc --noEmit",
  149. "lint": "eslint src --ext ts",
  150. "test": "jest",
  151. "install:all": "npm install && cd webview-ui && npm install",
  152. "start:webview": "cd webview-ui && npm run start",
  153. "build:webview": "cd webview-ui && npm run build",
  154. "test:webview": "cd webview-ui && npm run test",
  155. "publish:marketplace": "vsce publish",
  156. "prepare": "husky"
  157. },
  158. "devDependencies": {
  159. "@changesets/cli": "^2.27.10",
  160. "@types/diff": "^5.2.1",
  161. "@types/jest": "^29.5.14",
  162. "@types/mocha": "^10.0.7",
  163. "@types/node": "20.x",
  164. "@typescript-eslint/eslint-plugin": "^7.14.1",
  165. "@typescript-eslint/parser": "^7.11.0",
  166. "@vscode/test-cli": "^0.0.9",
  167. "@vscode/test-electron": "^2.4.0",
  168. "esbuild": "^0.24.0",
  169. "eslint": "^8.57.0",
  170. "husky": "^9.1.7",
  171. "jest": "^29.7.0",
  172. "npm-run-all": "^4.1.5",
  173. "ts-jest": "^29.2.5",
  174. "typescript": "^5.4.5"
  175. },
  176. "dependencies": {
  177. "@anthropic-ai/bedrock-sdk": "^0.10.2",
  178. "@anthropic-ai/sdk": "^0.26.0",
  179. "@anthropic-ai/vertex-sdk": "^0.4.1",
  180. "@google/generative-ai": "^0.18.0",
  181. "@types/clone-deep": "^4.0.4",
  182. "@types/pdf-parse": "^1.1.4",
  183. "@types/turndown": "^5.0.5",
  184. "@types/vscode": "^1.95.0",
  185. "@vscode/codicons": "^0.0.36",
  186. "axios": "^1.7.4",
  187. "cheerio": "^1.0.0",
  188. "clone-deep": "^4.0.1",
  189. "default-shell": "^2.2.0",
  190. "delay": "^6.0.0",
  191. "diff": "^5.2.0",
  192. "fast-deep-equal": "^3.1.3",
  193. "globby": "^14.0.2",
  194. "isbinaryfile": "^5.0.2",
  195. "mammoth": "^1.8.0",
  196. "monaco-vscode-textmate-theme-converter": "^0.1.7",
  197. "openai": "^4.61.0",
  198. "os-name": "^6.0.0",
  199. "p-wait-for": "^5.0.2",
  200. "pdf-parse": "^1.1.1",
  201. "play-sound": "^1.1.6",
  202. "puppeteer-chromium-resolver": "^23.0.0",
  203. "puppeteer-core": "^23.4.0",
  204. "serialize-error": "^11.0.3",
  205. "strip-ansi": "^7.1.0",
  206. "tree-sitter-wasms": "^0.1.11",
  207. "turndown": "^7.2.0",
  208. "web-tree-sitter": "^0.22.6"
  209. }
  210. }