- Create initial database migration with full auth schema: - users, sessions, passkeys, devices tables - orgs, org_members, org_sites, org_invites tables - email_verifications, password_resets, login_requests tables - Indexes for common lookups and cleanup jobs - Add @reviq/db-schema package with kysely-codegen - Add @reviq/db package with Kysely client Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
547 B
JSON
26 lines
547 B
JSON
{
|
|
"name": "@reviq/db",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "tsc --build --clean && rm -rf dist/ node_modules/ .eslintcache",
|
|
"lint": "eslint . --cache"
|
|
},
|
|
"dependencies": {
|
|
"@reviq/db-schema": "workspace:*",
|
|
"kysely": "^0.28.9",
|
|
"pg": "^8.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.3",
|
|
"@types/pg": "^8.11.10",
|
|
"@macalinao/tsconfig": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|