Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
1{ 2 "name": "@wisp/monorepo", 3 "version": "1.0.50", 4 "private": true, 5 "workspaces": [ 6 "packages/@wisp/*", 7 "apps/main-app", 8 "apps/hosting-service" 9 ], 10 "dependencies": { 11 "@tailwindcss/cli": "^4.1.17", 12 "atproto-ui": "^0.12.0", 13 "bun-plugin-tailwind": "^0.1.2", 14 "tailwindcss": "^4.1.17" 15 }, 16 "scripts": { 17 "test": "bun test", 18 "dev": "bun run --watch apps/main-app/src/index.ts", 19 "start": "bun run apps/main-app/src/index.ts", 20 "build": "cd apps/main-app && bun run build.ts", 21 "build:hosting": "cd apps/hosting-service && npm run build", 22 "build:all": "bun run build && npm run build:hosting", 23 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts", 24 "hosting:dev": "cd apps/hosting-service && npm run dev", 25 "hosting:start": "cd apps/hosting-service && npm run start" 26 }, 27 "trustedDependencies": [ 28 "@parcel/watcher", 29 "bun", 30 "esbuild" 31 ] 32}