17 lines
543 B
JSON
17 lines
543 B
JSON
{
|
|
"name": "rmaps-sync-server",
|
|
"version": "1.0.0",
|
|
"description": "WebSocket sync server for rmaps-online location sharing",
|
|
"main": "server.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node --watch server.js",
|
|
"generate-vapid": "node -e \"const wp = require('web-push'); const keys = wp.generateVAPIDKeys(); console.log('VAPID_PUBLIC_KEY=' + keys.publicKey); console.log('VAPID_PRIVATE_KEY=' + keys.privateKey);\""
|
|
},
|
|
"dependencies": {
|
|
"web-push": "^3.6.7",
|
|
"ws": "^8.18.0"
|
|
}
|
|
}
|