mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 04:27:11 +00:00
Sparsifier build on 1M+ edges exceeds Cloud Run's 4-min startup probe. Skip on startup for graphs > 100K edges, defer to rebuild_graph job. Co-Authored-By: claude-flow <ruv@ruv.net>
19 lines
613 B
JSON
19 lines
613 B
JSON
{
|
|
"name": "@ruvector/edge-net-relay",
|
|
"version": "0.2.0",
|
|
"description": "Edge-Net WebSocket Relay with Brain API Bridge (ADR-069 Phase 1)",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "node --test tests/relay.test.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"
|
|
}
|
|
}
|