mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
35 lines
879 B
JSON
35 lines
879 B
JSON
{
|
|
"name": "@roo-code/cli",
|
|
"version": "0.1.0",
|
|
"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",
|
|
"build": "tsup",
|
|
"start": "node dist/index.js",
|
|
"clean": "rimraf dist .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@roo-code/types": "workspace:^",
|
|
"@roo-code/vscode-shim": "workspace:^",
|
|
"@vscode/ripgrep": "^1.15.9",
|
|
"commander": "^12.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@roo-code/config-eslint": "workspace:^",
|
|
"@roo-code/config-typescript": "workspace:^",
|
|
"@types/node": "^24.1.0",
|
|
"rimraf": "^6.0.1",
|
|
"tsup": "^8.4.0",
|
|
"typescript": "5.8.3",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|