mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
47 lines
1.8 KiB
JSON
47 lines
1.8 KiB
JSON
{
|
|
"name": "@roo-code-cloud/roomote",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "next lint --max-warnings 0",
|
|
"check-types": "tsc --noEmit",
|
|
"test": "dotenvx run -f ../../.env.test -- vitest",
|
|
"dev": "dotenvx run -f ../../.env.development -- next dev --turbopack --port 3001",
|
|
"build": "dotenvx run -f ../../.env.production -- next build",
|
|
"start": "dotenvx run -f ../../.env.production -- next start --port 3001",
|
|
"controller": "dotenvx run -f ../../.env.development -f ../../.env.keys -f ../../.env.local -- tsx src/lib/controller.ts",
|
|
"controller:production": "dotenvx run -f ../../.env.production -- tsx src/lib/controller.ts",
|
|
"worker": "dotenvx run -f ../../.env.development -- tsx src/lib/worker.ts",
|
|
"worker:production": "dotenvx run -f ../../.env.production -- tsx src/lib/worker.ts",
|
|
"cli": "dotenvx run -f ../../.env.development -- tsx src/lib/cli.ts",
|
|
"cli:production": "dotenvx run -f ../../.env.production -- tsx src/lib/cli.ts",
|
|
"clean": "rimraf .next .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@roo-code-cloud/db": "workspace:^",
|
|
"@roo-code-cloud/env": "workspace:^",
|
|
"@roo-code-cloud/ipc": "workspace:^",
|
|
"@roo-code-cloud/job-auth": "workspace:^",
|
|
"@roo-code/types": "^1.30.0",
|
|
"bullmq": "^5.37.0",
|
|
"cmd-ts": "^0.13.0",
|
|
"drizzle-orm": "^0.44.2",
|
|
"execa": "^9.6.0",
|
|
"ioredis": "^5.6.1",
|
|
"next": "^15.3.3",
|
|
"p-wait-for": "^5.0.2",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"simple-git": "^3.28.0",
|
|
"zod": "^3.25.41"
|
|
},
|
|
"devDependencies": {
|
|
"@roo-code-cloud/config-eslint": "workspace:^",
|
|
"@roo-code-cloud/config-typescript": "workspace:^",
|
|
"@types/node": "^22.15.20",
|
|
"@types/react": "^19.1.6",
|
|
"@types/react-dom": "^19.1.6",
|
|
"tsx": "^4.19.3",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|