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
1{
2 "name": "@atbb/web",
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 "test": "vitest run",
12 "clean": "rm -rf dist"
13 },
14 "dependencies": {
15 "hono": "^4.7.0",
16 "@hono/node-server": "^1.14.0"
17 },
18 "devDependencies": {
19 "@types/node": "^22.0.0",
20 "tsx": "^4.0.0",
21 "typescript": "^5.7.0",
22 "typed-htmx": "^0.3.0"
23 }
24}