Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
at main 41 lines 1.3 kB view raw
1{ 2 "name": "@wispplace/monorepo", 3 "version": "1.0.50", 4 "private": true, 5 "workspaces": [ 6 "packages/@wispplace/*", 7 "apps/main-app", 8 "apps/hosting-service", 9 "apps/firehose-service", 10 "cli" 11 ], 12 "dependencies": { 13 "@tailwindcss/cli": "^4.1.17", 14 "bun-plugin-tailwind": "^0.1.2", 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 "codegen": "./scripts/codegen.sh", 29 "publish:cli": "cd cli && bun run build && npm publish && cd ../packages/create-wisp && npm publish" 30 }, 31 "trustedDependencies": [ 32 "@parcel/watcher", 33 "bun", 34 "esbuild" 35 ], 36 "devDependencies": { 37 "@oven/bun-darwin-aarch64": "^1.3.6", 38 "@oven/bun-linux-x64": "^1.3.6", 39 "@types/bun": "^1.3.5" 40 } 41}