Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
1{ 2 "name": "wisp-hosting-service", 3 "version": "1.0.0", 4 "type": "module", 5 "scripts": { 6 "dev": "tsx --env-file=.env watch src/index.ts", 7 "build": "tsc", 8 "start": "tsx src/index.ts", 9 "backfill": "tsx src/index.ts --backfill" 10 }, 11 "dependencies": { 12 "@atproto/api": "^0.17.4", 13 "@atproto/identity": "^0.4.9", 14 "@atproto/lexicon": "^0.5.1", 15 "@atproto/sync": "^0.1.36", 16 "@atproto/xrpc": "^0.7.5", 17 "@hono/node-server": "^1.19.6", 18 "hono": "^4.10.4", 19 "mime-types": "^2.1.35", 20 "multiformats": "^13.4.1", 21 "postgres": "^3.4.5" 22 }, 23 "devDependencies": { 24 "@types/bun": "^1.3.1", 25 "@types/mime-types": "^2.1.4", 26 "@types/node": "^22.10.5", 27 "tsx": "^4.19.2" 28 } 29}