WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at b3ee9b87ea2ad23e761f2ce5526526be75b084b4 32 lines 639 B view raw
1{ 2 "name": "@atbb/db", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "main": "./dist/index.js", 7 "types": "./dist/index.d.ts", 8 "exports": { 9 ".": { 10 "types": "./dist/index.d.ts", 11 "default": "./dist/index.js" 12 }, 13 "./schema": { 14 "types": "./dist/schema.d.ts", 15 "default": "./dist/schema.js" 16 } 17 }, 18 "scripts": { 19 "build": "tsc", 20 "lint": "tsc --noEmit", 21 "clean": "rm -rf dist", 22 "test": "vitest run" 23 }, 24 "dependencies": { 25 "drizzle-orm": "^0.45.1", 26 "postgres": "^3.4.8" 27 }, 28 "devDependencies": { 29 "@types/node": "^22.0.0", 30 "typescript": "^5.7.0" 31 } 32}