mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 22:15:18 +00:00
- Build dual WASM targets (web + nodejs) for universal compatibility - Add Node.js polyfills for web APIs (crypto, performance, window, document) - Create universal entry point with auto-detection of environment - Update CLI with comprehensive benchmark, demo, and info commands - Fix ESM/CJS compatibility with .cjs extension for Node.js module - Package includes both browser and Node.js WASM binaries Published to npm as @ruvector/edge-net v0.1.1 Package: 885.4 kB compressed, 3.2 MB unpacked 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "@ruvector/edge-net",
|
|
"version": "0.1.1",
|
|
"type": "module",
|
|
"description": "Distributed compute intelligence network - contribute browser compute, earn credits. Features Time Crystal coordination, Neural DAG attention, and P2P swarm intelligence.",
|
|
"main": "ruvector_edge_net.js",
|
|
"module": "ruvector_edge_net.js",
|
|
"types": "ruvector_edge_net.d.ts",
|
|
"bin": {
|
|
"edge-net": "./cli.js",
|
|
"ruvector-edge": "./cli.js"
|
|
},
|
|
"keywords": [
|
|
"wasm",
|
|
"distributed-computing",
|
|
"p2p",
|
|
"web-workers",
|
|
"ai",
|
|
"machine-learning",
|
|
"compute",
|
|
"credits",
|
|
"marketplace",
|
|
"browser",
|
|
"edge-computing",
|
|
"vector-search",
|
|
"embeddings",
|
|
"cryptography",
|
|
"time-crystal",
|
|
"dag-attention",
|
|
"swarm-intelligence",
|
|
"neural-network"
|
|
],
|
|
"author": "RuVector Team <team@ruvector.dev>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/ruvector/tree/main/examples/edge-net",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
},
|
|
"files": [
|
|
"ruvector_edge_net_bg.wasm",
|
|
"ruvector_edge_net.js",
|
|
"ruvector_edge_net.d.ts",
|
|
"ruvector_edge_net_bg.wasm.d.ts",
|
|
"node/",
|
|
"index.js",
|
|
"cli.js",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./ruvector_edge_net.js",
|
|
"types": "./ruvector_edge_net.d.ts"
|
|
},
|
|
"./wasm": {
|
|
"import": "./ruvector_edge_net_bg.wasm"
|
|
}
|
|
},
|
|
"sideEffects": [
|
|
"./snippets/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node cli.js start",
|
|
"benchmark": "node cli.js benchmark",
|
|
"info": "node cli.js info"
|
|
}
|
|
}
|