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 feat/atb-60-theme-import-export 30 lines 708 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/css-sanitizer": "workspace:*", 17 "@atbb/logger": "workspace:*", 18 "@hono/node-server": "^1.14.0", 19 "hono": "^4.7.0" 20 }, 21 "devDependencies": { 22 "@types/node": "^22.0.0", 23 "axe-core": "^4.11.1", 24 "jsdom": "^28.1.0", 25 "tsx": "^4.0.0", 26 "typed-htmx": "^0.3.0", 27 "typescript": "^5.7.0", 28 "vitest": "^4.0.18" 29 } 30}