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
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9a93b3e9112f319dbc8bc70b1317543164d62f07 36 lines 941 B view raw
1{ 2 "name": "@atbb/appview", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 "build": "tsc", 8 "dev": "tsx watch --env-file=../../.env src/index.ts", 9 "start": "node dist/index.js", 10 "lint": "tsc --noEmit", 11 "lint:fix": "oxlint --fix src/", 12 "test": "vitest run", 13 "clean": "rm -rf dist", 14 "db:generate": "drizzle-kit generate", 15 "db:migrate": "drizzle-kit migrate" 16 }, 17 "dependencies": { 18 "@atbb/db": "workspace:*", 19 "@atbb/lexicon": "workspace:*", 20 "@atproto/api": "^0.15.0", 21 "@atproto/common-web": "^0.4.0", 22 "@atproto/oauth-client-node": "^0.3.16", 23 "@hono/node-server": "^1.14.0", 24 "@skyware/jetstream": "^0.2.5", 25 "drizzle-orm": "^0.45.1", 26 "hono": "^4.7.0", 27 "postgres": "^3.4.8" 28 }, 29 "devDependencies": { 30 "@types/node": "^22.0.0", 31 "drizzle-kit": "^0.31.8", 32 "tsx": "^4.0.0", 33 "typescript": "^5.7.0", 34 "vitest": "^3.1.0" 35 } 36}