mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Hannes Rudolph <hrudolph@gmail.com>
31 lines
732 B
JSON
31 lines
732 B
JSON
{
|
|
"name": "@roo-code/core",
|
|
"description": "Platform agnostic core functionality for Roo Code.",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./cli": "./src/cli.ts",
|
|
"./browser": "./src/browser.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src --ext=ts --max-warnings=0",
|
|
"check-types": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"clean": "rimraf .turbo"
|
|
},
|
|
"dependencies": {
|
|
"@roo-code/types": "workspace:^",
|
|
"esbuild": "^0.25.0",
|
|
"execa": "^9.5.2",
|
|
"ignore": "^7.0.3",
|
|
"openai": "^5.12.2",
|
|
"zod": "^3.25.61"
|
|
},
|
|
"devDependencies": {
|
|
"@roo-code/config-eslint": "workspace:^",
|
|
"@roo-code/config-typescript": "workspace:^",
|
|
"@types/node": "^24.1.0",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|