@ruvector/edge-net 0.1.1 → 0.1.2
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.
- package/README.md +119 -0
- package/cli.js +17 -0
- package/join.html +985 -0
- package/join.js +1333 -0
- package/network.js +820 -0
- package/networks.js +817 -0
- package/package.json +15 -3
- package/webrtc.js +964 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruvector/edge-net",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Distributed compute intelligence network - contribute browser compute, earn credits. Features Time Crystal coordination, Neural DAG attention, and P2P swarm intelligence.",
|
|
6
6
|
"main": "ruvector_edge_net.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"types": "ruvector_edge_net.d.ts",
|
|
9
9
|
"bin": {
|
|
10
10
|
"edge-net": "./cli.js",
|
|
11
|
-
"ruvector-edge": "./cli.js"
|
|
11
|
+
"ruvector-edge": "./cli.js",
|
|
12
|
+
"edge-net-join": "./join.js"
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"wasm",
|
|
@@ -48,6 +49,11 @@
|
|
|
48
49
|
"node/",
|
|
49
50
|
"index.js",
|
|
50
51
|
"cli.js",
|
|
52
|
+
"join.js",
|
|
53
|
+
"join.html",
|
|
54
|
+
"network.js",
|
|
55
|
+
"networks.js",
|
|
56
|
+
"webrtc.js",
|
|
51
57
|
"README.md",
|
|
52
58
|
"LICENSE"
|
|
53
59
|
],
|
|
@@ -69,6 +75,12 @@
|
|
|
69
75
|
"scripts": {
|
|
70
76
|
"start": "node cli.js start",
|
|
71
77
|
"benchmark": "node cli.js benchmark",
|
|
72
|
-
"info": "node cli.js info"
|
|
78
|
+
"info": "node cli.js info",
|
|
79
|
+
"join": "node join.js",
|
|
80
|
+
"join:generate": "node join.js --generate",
|
|
81
|
+
"join:multi": "node join.js --generate",
|
|
82
|
+
"network": "node network.js stats",
|
|
83
|
+
"peers": "node join.js --peers",
|
|
84
|
+
"history": "node join.js --history"
|
|
73
85
|
}
|
|
74
86
|
}
|