zero-knowledge file sharing
0

Configure Feed

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

drop / package.json
682 B 24 lines
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 "test": "bun test", 11 "test:coverage": "bun test --coverage", 12 "typecheck": "bunx tsc --noEmit && bunx tsc --noEmit --project web/tsconfig.json" 13 }, 14 "dependencies": { 15 "hono": "^4.12.19" 16 }, 17 "devDependencies": { 18 "@types/bun": "^1.3.14", 19 "oxfmt": "^0.50.0" 20 }, 21 "peerDependencies": { 22 "typescript": "^6.0.3" 23 } 24}