anydrop/server/package.json
ordinarthur fd249abbf1
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 1m1s
feat: push notifications + background transfer alerts
- Web Push API for offline device notifications
- Custom service worker with push event handling
- Local notifications for background tab transfers
- VAPID keys in K8s config
- Persistent deviceId per device
2026-04-14 12:03:43 +02:00

26 lines
530 B
JSON

{
"name": "@anydrop/server",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anydrop/shared": "*",
"nanoid": "^5.1.5",
"web-push": "^3.6.7",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"tsx": "^4.19.4"
}
}