zero-knowledge file sharing
13
fork

Configure Feed

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

at main 21 lines 527 B view raw
1{ 2 "name": "drop", 3 "private": true, 4 "type": "module", 5 "scripts": { 6 "install:all": "bun install && bun install --cwd web", 7 "dev": "bun run install:all && bun run --cwd web dev & bun run --hot src/index.ts", 8 "build": "bun run --cwd web build", 9 "start": "bun run install:all && bun run build && bun run src/index.ts" 10 }, 11 "dependencies": { 12 "hono": "^4.12.12" 13 }, 14 "devDependencies": { 15 "@types/bun": "^1.3.12", 16 "oxfmt": "^0.45.0" 17 }, 18 "peerDependencies": { 19 "typescript": "^6.0.2" 20 } 21}