Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
at main 1.1 kB view raw
1{ 2 "name": "wisp-hosting-service", 3 "version": "1.0.0", 4 "type": "module", 5 "scripts": { 6 "dev": "tsx --env-file=.env src/index.ts", 7 "build": "bun run build.ts", 8 "start": "tsx src/index.ts", 9 "check": "tsc --noEmit", 10 "backfill": "tsx src/index.ts --backfill" 11 }, 12 "dependencies": { 13 "@wisp/lexicons": "workspace:*", 14 "@wisp/constants": "workspace:*", 15 "@wisp/observability": "workspace:*", 16 "@wisp/atproto-utils": "workspace:*", 17 "@wisp/database": "workspace:*", 18 "@wisp/fs-utils": "workspace:*", 19 "@wisp/safe-fetch": "workspace:*", 20 "@atproto/api": "^0.17.4", 21 "@atproto/identity": "^0.4.9", 22 "@atproto/lexicon": "^0.5.2", 23 "@atproto/sync": "^0.1.36", 24 "@atproto/xrpc": "^0.7.5", 25 "@hono/node-server": "^1.19.6", 26 "hono": "^4.10.4", 27 "mime-types": "^2.1.35", 28 "multiformats": "^13.4.1", 29 "postgres": "^3.4.5" 30 }, 31 "devDependencies": { 32 "@types/bun": "^1.3.1", 33 "@types/mime-types": "^2.1.4", 34 "@types/node": "^22.10.5", 35 "tsx": "^4.19.2", 36 "typescript": "^5.9.3" 37 } 38}