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 "check": "cd apps/main-app && npm run check && cd ../hosting-service && npm run check",
24 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts",
25 "hosting:dev": "cd apps/hosting-service && npm run dev",
26 "hosting:start": "cd apps/hosting-service && npm run start"
27 },
28 "trustedDependencies": [
29 "@parcel/watcher",
30 "bun",
31 "esbuild"
32 ]
33}