mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
36 lines
1.5 KiB
JSON
36 lines
1.5 KiB
JSON
{
|
|
"name": "benchmark",
|
|
"packageManager": "pnpm@10.6.5",
|
|
"scripts": {
|
|
"lint": "turbo lint",
|
|
"check-types": "turbo check-types",
|
|
"format": "turbo format",
|
|
"build": "turbo build",
|
|
"build:extension": "cd .. && npm run vscode-test",
|
|
"build:runner": "turbo build --filter @benchmark/runner",
|
|
"cli": "pnpm --filter @benchmark/cli dev",
|
|
"web": "pnpm --filter @benchmark/web dev",
|
|
"studio": "pnpm --filter @benchmark/db db:studio",
|
|
"docker:build": "docker build -f Dockerfile -t roo-code-benchmark ..",
|
|
"docker:run": "touch /tmp/benchmarks.db && docker run -d -it -p 3000:3000 -v /tmp/benchmarks.db:/tmp/benchmarks.db roo-code-benchmark",
|
|
"docker:start": "npm run docker:build && npm run docker:run",
|
|
"docker:shell": "docker exec -it $(docker ps --filter \"ancestor=roo-code-benchmark\" -q) /bin/bash",
|
|
"docker:cli": "docker exec -it -w /home/vscode/repo/benchmark $(docker ps --filter \"ancestor=roo-code-benchmark\" -q) xvfb-run npm run cli --",
|
|
"docker:stop": "docker stop $(docker ps --filter \"ancestor=roo-code-benchmark\" -q)",
|
|
"docker:rm": "docker rm $(docker ps -a --filter \"ancestor=roo-code-benchmark\" -q)",
|
|
"docker:clean": "npm run docker:stop && npm run docker:rm"
|
|
},
|
|
"devDependencies": {
|
|
"@dotenvx/dotenvx": "^1.39.0",
|
|
"@eslint/js": "^9.22.0",
|
|
"eslint": "^9.22.0",
|
|
"globals": "^16.0.0",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^6.0.1",
|
|
"tsup": "^8.4.0",
|
|
"tsx": "^4.19.3",
|
|
"turbo": "^2.4.4",
|
|
"typescript": "^5",
|
|
"typescript-eslint": "^8.26.0"
|
|
}
|
|
}
|