feat(types,auth): zod contracts + magic-link session auth

This commit is contained in:
Marco Sadjadi
2026-05-19 00:22:17 +02:00
parent 439c91cbbf
commit 15697ba6dd
6 changed files with 335 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "@bmm/auth",
"version": "0.1.0",
"type": "module",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@bmm/db": "workspace:*",
"drizzle-orm": "0.36.4"
},
"devDependencies": {
"@types/node": "22.10.2",
"typescript": "5.7.2"
}
}