mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
31 lines
660 B
JSON
31 lines
660 B
JSON
{
|
|
"name": "@benchmark/lib",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src --ext ts --max-warnings=0",
|
|
"check-types": "tsc --noEmit",
|
|
"format": "prettier --write src",
|
|
"build": "tsup"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@benchmark/eslint-config": "workspace:^",
|
|
"@benchmark/typescript-config": "workspace:^"
|
|
}
|
|
}
|