Roo-Code/packages/build/package.json
Chris Estreich 62c3914034
Farewell jest (#4607)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-06-16 21:39:45 -07:00

24 lines
557 B
JSON

{
"name": "@roo-code/build",
"description": "ESBuild utilities for Roo Code.",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./src/index.ts",
"scripts": {
"lint": "eslint src --ext=ts --max-warnings=0",
"check-types": "tsc --noEmit",
"test": "vitest run",
"build": "tsc",
"clean": "rimraf dist .turbo"
},
"dependencies": {
"zod": "^3.25.61"
},
"devDependencies": {
"@roo-code/config-eslint": "workspace:^",
"@roo-code/config-typescript": "workspace:^",
"@types/node": "20.x",
"vitest": "^3.2.3"
}
}