Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 51 lines 1.7 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 "node-html-parser": "^7.1.0", 17 "tailwindcss": "^4.1.17", 18 "typescript": "^5.9.3" 19 }, 20 "scripts": { 21 "test": "bun test", 22 "dev": "bun run --watch apps/main-app/src/index.ts", 23 "start": "bun run apps/main-app/src/index.ts", 24 "build": "cd apps/main-app && bun run build.ts", 25 "build:hosting": "cd apps/hosting-service && npm run build", 26 "build:all": "bun run build && npm run build:hosting", 27 "check": "bun tsc --noEmit", 28 "screenshot": "bun run apps/main-app/scripts/screenshot-sites.ts", 29 "site-images": "bun run apps/main-app/scripts/poll-site-images.ts", 30 "hosting:dev": "cd apps/hosting-service && npm run dev", 31 "hosting:start": "cd apps/hosting-service && npm run start", 32 "lint": "biome check .", 33 "lint:fix": "biome check --write .", 34 "format": "biome format --write .", 35 "codegen": "./scripts/codegen.sh", 36 "download:aturi": "bun run scripts/download-place-wisp-fs.ts", 37 "publish:cli": "cd cli && bun run build && npm publish && cd ../packages/create-wisp && npm publish" 38 }, 39 "trustedDependencies": [ 40 "@parcel/watcher", 41 "bun", 42 "esbuild" 43 ], 44 "devDependencies": { 45 "@biomejs/biome": "^2.4.6", 46 "@oven/bun-darwin-aarch64": "^1.3.6", 47 "@oven/bun-linux-x64": "^1.3.6", 48 "@types/bun": "^1.3.5", 49 "@typescript/native-preview": "^7.0.0-dev.20260421.2" 50 } 51}