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/atproto",
3 "version": "0.1.0",
4 "private": true,
5 "type": "module",
6 "main": "./dist/index.js",
7 "types": "./dist/index.d.ts",
8 "exports": {
9 ".": {
10 "types": "./dist/index.d.ts",
11 "default": "./dist/index.js"
12 }
13 },
14 "scripts": {
15 "build": "tsc",
16 "lint": "tsc --noEmit",
17 "lint:fix": "oxlint --fix src/",
18 "clean": "rm -rf dist",
19 "test": "vitest run --passWithNoTests"
20 },
21 "dependencies": {
22 "@atbb/logger": "workspace:*",
23 "@atproto/api": "^0.15.0"
24 },
25 "devDependencies": {
26 "@types/node": "^22.0.0",
27 "typescript": "^5.7.0"
28 }
29}