@ruvector/edge-net 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/package.json +9 -1
  2. package/real-agents.js +706 -0
  3. package/sync.js +799 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruvector/edge-net",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "Distributed compute intelligence network with AI agents and workers - contribute browser compute, spawn distributed AI agents, earn credits. Features Time Crystal coordination, Neural DAG attention, P2P swarm intelligence, and multi-agent workflows.",
6
6
  "main": "ruvector_edge_net.js",
@@ -61,6 +61,8 @@
61
61
  "networks.js",
62
62
  "webrtc.js",
63
63
  "agents.js",
64
+ "real-agents.js",
65
+ "sync.js",
64
66
  "README.md",
65
67
  "LICENSE"
66
68
  ],
@@ -75,6 +77,12 @@
75
77
  "./agents": {
76
78
  "import": "./agents.js"
77
79
  },
80
+ "./real-agents": {
81
+ "import": "./real-agents.js"
82
+ },
83
+ "./sync": {
84
+ "import": "./sync.js"
85
+ },
78
86
  "./network": {
79
87
  "import": "./network.js"
80
88
  },