Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
at hosting-service-fixes 47 lines 1.4 kB view raw
1{ 2 "name": "wispctl", 3 "version": "1.0.8", 4 "description": "CLI for wisp.place - deploy static sites to the AT Protocol", 5 "type": "module", 6 "main": "./dist/index.js", 7 "bin": { 8 "wispctl": "dist/index.js" 9 }, 10 "files": [ 11 "dist" 12 ], 13 "scripts": { 14 "dev": "bun run index.ts", 15 "build": "bun build ./index.ts --outdir ./dist --target node --sourcemap=linked && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' ./dist/index.js", 16 "typecheck": "tsc --noEmit" 17 }, 18 "devDependencies": { 19 "@atproto/api": "^0.18.17", 20 "@atproto/identity": "^0.4.10", 21 "@atproto/lex-cbor": "^0.0.9", 22 "@atproto/lex-data": "^0.0.9", 23 "@atproto/oauth-client-node": "^0.3.15", 24 "@atproto/repo": "^0.8.12", 25 "@atproto/sync": "^0.1.39", 26 "@atproto/syntax": "^0.4.3", 27 "@clack/prompts": "^0.10.0", 28 "@hono/node-server": "^1.13.8", 29 "@oven/bun-darwin-aarch64": "^1.3.6", 30 "@types/bun": "latest", 31 "@types/mime-types": "^3.0.1", 32 "@types/node": "^22.0.0", 33 "@wispplace/atproto-utils": "workspace:*", 34 "@wispplace/bun-firehose": "workspace:*", 35 "@wispplace/constants": "workspace:*", 36 "@wispplace/fs-utils": "workspace:*", 37 "@wispplace/lexicons": "workspace:*", 38 "commander": "^14.0.2", 39 "hono": "^4.7.4", 40 "ignore": "^7.0.5", 41 "mime-types": "^3.0.2", 42 "multiformats": "^13.4.2", 43 "open": "^11.0.0", 44 "picocolors": "^1.1.1", 45 "typescript": "^5" 46 } 47}