19 lines
560 B
JSON
19 lines
560 B
JSON
{
|
|
"name": "@ruvector/edge-net-relay",
|
|
"version": "0.1.0",
|
|
"description": "Edge-Net WebSocket Relay Server for Google Cloud Functions",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"deploy": "gcloud functions deploy edge-net-relay --gen2 --runtime=nodejs20 --trigger-http --allow-unauthenticated --entry-point=relay --region=us-central1 --memory=256MB --timeout=300s"
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/functions-framework": "^3.3.0",
|
|
"ws": "^8.16.0"
|
|
}
|
|
}
|