package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@roo-code/cli",
  3. "version": "0.0.45",
  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. "dev": "tsup --watch",
  18. "start": "ROO_SDK_BASE_URL=http://localhost:3001 ROO_AUTH_BASE_URL=http://localhost:3000 node dist/index.js",
  19. "start:production": "node dist/index.js",
  20. "release": "scripts/release.sh",
  21. "clean": "rimraf dist .turbo"
  22. },
  23. "dependencies": {
  24. "@inkjs/ui": "^2.0.0",
  25. "@roo-code/core": "workspace:^",
  26. "@roo-code/types": "workspace:^",
  27. "@roo-code/vscode-shim": "workspace:^",
  28. "@trpc/client": "^11.8.1",
  29. "@vscode/ripgrep": "^1.15.9",
  30. "commander": "^12.1.0",
  31. "fuzzysort": "^3.1.0",
  32. "ink": "^6.6.0",
  33. "p-wait-for": "^5.0.2",
  34. "react": "^19.1.0",
  35. "superjson": "^2.2.6",
  36. "zustand": "^5.0.0"
  37. },
  38. "devDependencies": {
  39. "@roo-code/config-eslint": "workspace:^",
  40. "@roo-code/config-typescript": "workspace:^",
  41. "@types/node": "^24.1.0",
  42. "@types/react": "^19.1.6",
  43. "ink-testing-library": "^4.0.0",
  44. "rimraf": "^6.0.1",
  45. "tsup": "^8.4.0",
  46. "vitest": "^3.2.3"
  47. }
  48. }