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