mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Some checks are pending
Code QA Roo Code / check-translations (push) Waiting to run
Code QA Roo Code / knip (push) Waiting to run
Code QA Roo Code / compile (push) Waiting to run
Code QA Roo Code / platform-unit-test (ubuntu-latest) (push) Waiting to run
Code QA Roo Code / platform-unit-test (windows-latest) (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
Nightly Publish / publish-nightly (push) Waiting to run
Deploy roocode.com / check-secrets (push) Waiting to run
Deploy roocode.com / deploy (push) Blocked by required conditions
* Remove Roo Code Cloud and evals * Remove unused onboarding and web helper files * Update ChatView welcome tests after cloud removal
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@roo-code/cli",
|
|
"version": "0.1.17",
|
|
"description": "Roo Code CLI - Run the Roo Code agent from the command line",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"roo": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write 'src/**/*.ts'",
|
|
"lint": "eslint src --ext .ts --max-warnings=0",
|
|
"check-types": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:integration": "tsx scripts/integration/run.ts",
|
|
"build": "tsup",
|
|
"build:extension": "pnpm --filter roo-cline bundle",
|
|
"dev": "tsx src/index.ts",
|
|
"dev:local": "tsx src/index.ts",
|
|
"clean": "rimraf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@inkjs/ui": "^2.0.0",
|
|
"@roo-code/core": "workspace:^",
|
|
"@roo-code/types": "workspace:^",
|
|
"@roo-code/vscode-shim": "workspace:^",
|
|
"@trpc/client": "^11.8.1",
|
|
"@vscode/ripgrep": "^1.15.9",
|
|
"commander": "^12.1.0",
|
|
"cross-spawn": "^7.0.6",
|
|
"execa": "^9.5.2",
|
|
"fuzzysort": "^3.1.0",
|
|
"ink": "^6.6.0",
|
|
"p-wait-for": "^5.0.2",
|
|
"react": "^19.1.0",
|
|
"superjson": "^2.2.6",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@roo-code/config-eslint": "workspace:^",
|
|
"@roo-code/config-typescript": "workspace:^",
|
|
"@types/node": "^24.1.0",
|
|
"@types/react": "^19.1.6",
|
|
"ink-testing-library": "^4.0.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsup": "^8.4.0",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|