Initial commit of Vellum, an event photo product for guest uploads, host moderation, and original-quality galleries.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-07 19:36:14 -04:00
co-authored by Cursor
commit 27e2f196eb
149 changed files with 13847 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "@album/database",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./schema": "./src/schema.ts"
},
"scripts": {
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"generate": "drizzle-kit generate",
"migrate": "bun src/migrate.ts",
"push": "drizzle-kit push",
"studio": "drizzle-kit studio",
"seed": "bun src/seed.ts"
},
"dependencies": {
"dotenv": "^16.5.0",
"drizzle-orm": "^0.45.2",
"postgres": "^3.4.7"
},
"devDependencies": {
"drizzle-kit": "^0.31.1",
"typescript": "^5.8.3"
}
}