Files
better-auth/package.json
2025-11-18 18:20:17 +00:00

33 lines
1.3 KiB
JSON

{
"name": "@better-auth/root",
"private": true,
"type": "module",
"packageManager": "pnpm@10.20.0",
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
"dev": "turbo --filter \"./packages/*\" dev",
"clean": "turbo --filter \"./packages/*\" clean && rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --fix --unsafe",
"release": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --no-git-checks",
"release:no-build": "bumpp && pnpm -r publish --access public --no-git-checks --tag next",
"release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",
"bump": "bumpp",
"test": "turbo --filter \"./packages/*\" --filter \"./test\" test --continue",
"e2e:smoke": "turbo --filter \"./e2e/*\" e2e:smoke",
"e2e:integration": "turbo --filter \"./e2e/*\" e2e:integration",
"typecheck": "tsc --build"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/bun": "^1.3.1",
"@types/node": "^24.9.2",
"bumpp": "^10.3.1",
"tinyglobby": "^0.2.15",
"turbo": "^2.6.1",
"typescript": "catalog:",
"vitest": "catalog:"
}
}