Files
better-auth/package.json
2025-12-01 10:33:38 -08:00

39 lines
1.4 KiB
JSON

{
"name": "@better-auth/root",
"private": true,
"type": "module",
"packageManager": "pnpm@10.23.0",
"scripts": {
"build": "turbo build --filter=./packages/*",
"dev": "turbo dev --filter=./packages/* --filter=!./packages/cli",
"clean": "turbo clean --filter=./packages/* && rm -rf node_modules",
"format": "biome format . --write",
"lint": "biome check .",
"lint:dependencies": "knip --strict",
"lint:fix": "biome check . --fix --unsafe",
"lint:spell": "cspell .",
"lint:packages": "turbo lint:package --filter=./packages/*",
"release": "turbo build --filter=./packages/* && 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 build --filter=./packages/* && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",
"bump": "bumpp",
"test": "turbo test --continue --filter=./packages/* --filter=./test",
"e2e:smoke": "turbo e2e:smoke --filter=./e2e/*",
"e2e:integration": "turbo e2e:integration --filter=./e2e/*",
"typecheck": "tsc --build"
},
"devDependencies": {
"cspell": "^9.3.2",
"knip": "^5.70.2",
"publint": "^0.3.15",
"@biomejs/biome": "2.3.7",
"@types/bun": "^1.3.3",
"@types/node": "^24.10.1",
"bumpp": "^10.3.1",
"tinyglobby": "^0.2.15",
"turbo": "^2.6.1",
"typescript": "catalog:",
"vitest": "catalog:"
}
}