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 12cdce5206cc3afa214fcc3ac95eb5fcac32023b 26 lines 590 B view raw
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 "tsx": "^4.0.0", 23 "typescript": "^5.7.0", 24 "typed-htmx": "^0.3.0" 25 } 26}