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 main 34 lines 709 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 "@libsql/client": "^0.14.0", 27 "drizzle-orm": "^0.45.1", 28 "postgres": "^3.4.8" 29 }, 30 "devDependencies": { 31 "@types/node": "^22.0.0", 32 "typescript": "^5.7.0" 33 } 34}