package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@roo-code/cli",
  3. "version": "0.0.49",
  4. "description": "Roo Code CLI - Run the Roo Code agent from the command line",
  5. "private": true,
  6. "type": "module",
  7. "main": "dist/index.js",
  8. "bin": {
  9. "roo": "dist/index.js"
  10. },
  11. "scripts": {
  12. "format": "prettier --write 'src/**/*.ts'",
  13. "lint": "eslint src --ext .ts --max-warnings=0",
  14. "check-types": "tsc --noEmit",
  15. "test": "vitest run",
  16. "build": "tsup",
  17. "build:extension": "pnpm --filter roo-cline bundle",
  18. "build:all": "pnpm --filter roo-cline bundle && tsup",
  19. "dev": "tsup --watch",
  20. "start": "ROO_AUTH_BASE_URL=http://localhost:3000 ROO_SDK_BASE_URL=http://localhost:3001 ROO_CODE_PROVIDER_URL=http://localhost:8080/proxy node dist/index.js",
  21. "start:production": "node dist/index.js",
  22. "release": "scripts/release.sh",
  23. "clean": "rimraf dist .turbo"
  24. },
  25. "dependencies": {
  26. "@inkjs/ui": "^2.0.0",
  27. "@roo-code/core": "workspace:^",
  28. "@roo-code/types": "workspace:^",
  29. "@roo-code/vscode-shim": "workspace:^",
  30. "@trpc/client": "^11.8.1",
  31. "@vscode/ripgrep": "^1.15.9",
  32. "commander": "^12.1.0",
  33. "cross-spawn": "^7.0.6",
  34. "execa": "^9.5.2",
  35. "fuzzysort": "^3.1.0",
  36. "ink": "^6.6.0",
  37. "p-wait-for": "^5.0.2",
  38. "react": "^19.1.0",
  39. "superjson": "^2.2.6",
  40. "zustand": "^5.0.0"
  41. },
  42. "devDependencies": {
  43. "@roo-code/config-eslint": "workspace:^",
  44. "@roo-code/config-typescript": "workspace:^",
  45. "@types/node": "^24.1.0",
  46. "@types/react": "^19.1.6",
  47. "ink-testing-library": "^4.0.0",
  48. "rimraf": "^6.0.1",
  49. "tsup": "^8.4.0",
  50. "vitest": "^3.2.3"
  51. }
  52. }