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/cli",
3 "version": "0.1.0",
4 "private": true,
5 "type": "module",
6 "bin": {
7 "atbb": "./dist/index.js"
8 },
9 "scripts": {
10 "build": "tsc",
11 "dev": "tsx --env-file=../../.env src/index.ts",
12 "lint": "tsc --noEmit",
13 "lint:fix": "oxlint --fix src/",
14 "clean": "rm -rf dist",
15 "test": "vitest run --passWithNoTests"
16 },
17 "dependencies": {
18 "@atbb/atproto": "workspace:*",
19 "@atbb/db": "workspace:*",
20 "@atbb/logger": "workspace:*",
21 "@atproto/api": "^0.15.0",
22 "citty": "^0.1.6",
23 "consola": "^3.4.0",
24 "@inquirer/prompts": "^7.0.0",
25 "drizzle-orm": "^0.45.1",
26 "postgres": "^3.4.8"
27 },
28 "devDependencies": {
29 "@types/node": "^22.0.0",
30 "tsx": "^4.0.0",
31 "typescript": "^5.7.0",
32 "vitest": "^3.0.0"
33 }
34}