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 "lint:fix": "oxlint --fix src/",
12 "test": "vitest run",
13 "clean": "rm -rf dist"
14 },
15 "dependencies": {
16 "@atbb/logger": "workspace:*",
17 "@hono/node-server": "^1.14.0",
18 "hono": "^4.7.0"
19 },
20 "devDependencies": {
21 "@types/node": "^22.0.0",
22 "axe-core": "^4.11.1",
23 "jsdom": "^28.1.0",
24 "tsx": "^4.0.0",
25 "typed-htmx": "^0.3.0",
26 "typescript": "^5.7.0",
27 "vitest": "^4.0.18"
28 }
29}