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 "bun-plugin-tailwind": "^0.1.2", 13 "tailwindcss": "^4.1.17" 14 }, 15 "scripts": { 16 "test": "bun test", 17 "dev": "bun run --watch apps/main-app/src/index.ts", 18 "start": "bun run apps/main-app/src/index.ts", 19 "build": "cd apps/main-app && bun run build.ts", 20 "build:hosting": "cd apps/hosting-service && npm run build", 21 "build:all": "bun run build && npm run build:hosting", 22 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts", 23 "hosting:dev": "cd apps/hosting-service && npm run dev", 24 "hosting:start": "cd apps/hosting-service && npm run start" 25 } 26}