package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@roo-code/cli",
  3. "version": "0.0.47",
  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. "fuzzysort": "^3.1.0",
  34. "ink": "^6.6.0",
  35. "p-wait-for": "^5.0.2",
  36. "react": "^19.1.0",
  37. "superjson": "^2.2.6",
  38. "zustand": "^5.0.0"
  39. },
  40. "devDependencies": {
  41. "@roo-code/config-eslint": "workspace:^",
  42. "@roo-code/config-typescript": "workspace:^",
  43. "@types/node": "^24.1.0",
  44. "@types/react": "^19.1.6",
  45. "ink-testing-library": "^4.0.0",
  46. "rimraf": "^6.0.1",
  47. "tsup": "^8.4.0",
  48. "vitest": "^3.2.3"
  49. }
  50. }