Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
at main 46 lines 1.5 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 "apps/webhook-service", 11 "cli" 12 ], 13 "dependencies": { 14 "@tailwindcss/cli": "^4.1.17", 15 "bun-plugin-tailwind": "^0.1.2", 16 "tailwindcss": "^4.1.17" 17 }, 18 "scripts": { 19 "test": "bun test", 20 "dev": "bun run --watch apps/main-app/src/index.ts", 21 "start": "bun run apps/main-app/src/index.ts", 22 "build": "cd apps/main-app && bun run build.ts", 23 "build:hosting": "cd apps/hosting-service && npm run build", 24 "build:all": "bun run build && npm run build:hosting", 25 "check": "cd apps/main-app && npm run check && cd ../hosting-service && npm run check", 26 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts", 27 "hosting:dev": "cd apps/hosting-service && npm run dev", 28 "hosting:start": "cd apps/hosting-service && npm run start", 29 "lint": "biome check .", 30 "lint:fix": "biome check --write .", 31 "format": "biome format --write .", 32 "codegen": "./scripts/codegen.sh", 33 "publish:cli": "cd cli && bun run build && npm publish && cd ../packages/create-wisp && npm publish" 34 }, 35 "trustedDependencies": [ 36 "@parcel/watcher", 37 "bun", 38 "esbuild" 39 ], 40 "devDependencies": { 41 "@biomejs/biome": "^2.4.6", 42 "@oven/bun-darwin-aarch64": "^1.3.6", 43 "@oven/bun-linux-x64": "^1.3.6", 44 "@types/bun": "^1.3.5" 45 } 46}