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 7053d91e453849a52c2348a40bda621cdbe290e8 33 lines 676 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 "lint:fix": "oxlint --fix src/", 22 "clean": "rm -rf dist", 23 "test": "vitest run" 24 }, 25 "dependencies": { 26 "drizzle-orm": "^0.45.1", 27 "postgres": "^3.4.8" 28 }, 29 "devDependencies": { 30 "@types/node": "^22.0.0", 31 "typescript": "^5.7.0" 32 } 33}