ruvector/examples/edge-net/relay/package.json
rUv d32da2090f feat(edge-net): add real WASM integration, relay infrastructure, and consent UI
- Add EdgeNet service with real WASM module initialization from CDN
- Add PiKey cryptographic identity store with Ed25519 signatures
- Add IndexedDB persistence for credits, tasks, and settings
- Add ConsentWidget for CPU/GPU contribution with settings modal
- Add IdentityPanel for crypto identity management
- Add DocumentationPanel with comprehensive user guide
- Add SpecializedNetworks component for network communities
- Deploy Edge-Net Genesis Relay to Google Cloud Run with security:
  - Origin validation (CORS whitelist)
  - Rate limiting (100 msgs/min per node)
  - Message size limits (64KB)
  - Connection timeout (30s heartbeat)
  - Max 5 connections per IP
- Update Header with Edge-Net branding
- Update Sidebar with Docs tab
- Update networkStore to use real WASM stats
- Configure dashboard to connect to Genesis relay

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 16:41:07 +00:00

18 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"
}
}