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 "elysia": "^1.4.18",
15 "tailwindcss": "^4.1.17"
16 },
17 "scripts": {
18 "test": "bun test",
19 "dev": "bun run --watch apps/main-app/src/index.ts",
20 "start": "bun run apps/main-app/src/index.ts",
21 "build": "cd apps/main-app && bun run build.ts",
22 "build:hosting": "cd apps/hosting-service && npm run build",
23 "build:all": "bun run build && npm run build:hosting",
24 "check": "cd apps/main-app && npm run check && cd ../hosting-service && npm run check",
25 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts",
26 "hosting:dev": "cd apps/hosting-service && npm run dev",
27 "hosting:start": "cd apps/hosting-service && npm run start"
28 },
29 "trustedDependencies": [
30 "@parcel/watcher",
31 "bun",
32 "esbuild"
33 ]
34}