Files
better-auth/packages/drizzle-adapter/package.json
2026-05-12 17:30:34 +01:00

63 lines
1.4 KiB
JSON

{
"name": "@better-auth/drizzle-adapter",
"version": "1.6.11",
"description": "Drizzle adapter for Better Auth",
"type": "module",
"license": "MIT",
"homepage": "https://www.better-auth.com/docs/adapters/drizzle",
"repository": {
"type": "git",
"url": "git+https://github.com/better-auth/better-auth.git",
"directory": "packages/drizzle-adapter"
},
"keywords": [
"auth",
"drizzle",
"adapter",
"typescript",
"better-auth"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint:package": "publint run --strict --pack false",
"lint:types": "attw --profile esm-only --pack .",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"dev-source": "./src/index.ts",
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"peerDependencies": {
"@better-auth/core": "workspace:^",
"@better-auth/utils": "catalog:",
"drizzle-orm": "^0.45.2"
},
"peerDependenciesMeta": {
"drizzle-orm": {
"optional": true
}
},
"devDependencies": {
"@better-auth/core": "workspace:*",
"@better-auth/utils": "catalog:",
"drizzle-orm": "^0.45.2",
"tsdown": "catalog:",
"typescript": "catalog:"
}
}