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