2022-08-03 05:31:21 +00:00
|
|
|
module.exports = [
|
|
|
|
{
|
|
|
|
name: "Waku core",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-09-08 01:32:33 +00:00
|
|
|
import: "{ WakuNode }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Waku default setup",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: [
|
|
|
|
"packages/core/bundle/index.js",
|
|
|
|
"packages/core/bundle/lib/create_waku.js",
|
|
|
|
],
|
2022-08-05 14:36:46 +00:00
|
|
|
import: {
|
2022-10-30 21:56:48 +00:00
|
|
|
"./packages/core/bundle/lib/create_waku.js": "{ createLightNode }",
|
|
|
|
"./packages/core/bundle/lib/wait_for_remote_peer.js":
|
|
|
|
"{ waitForRemotePeer }",
|
|
|
|
"./packages/core/bundle/lib/waku_message/version_0.js":
|
2022-09-19 03:50:29 +00:00
|
|
|
"{ MessageV0, DecoderV0, EncoderV0 }",
|
2022-08-05 14:36:46 +00:00
|
|
|
},
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Asymmetric, symmetric encryption and signature",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/lib/waku_message/version_1.js",
|
2022-09-19 03:50:29 +00:00
|
|
|
import: "{ MessageV1, AsymEncoder, AsymDecoder, SymEncoder, SymDecoder }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "DNS discovery",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/lib/peer_discovery_dns.js",
|
2022-08-05 14:36:46 +00:00
|
|
|
import: "{ PeerDiscoveryDns }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Privacy preserving protocols",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-08-03 05:31:21 +00:00
|
|
|
import: "{ WakuRelay }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Light protocols",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-08-03 05:31:21 +00:00
|
|
|
import: "{ WakuLightPush, WakuFilter }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "History retrieval protocols",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-08-03 05:31:21 +00:00
|
|
|
import: "{ WakuStore }",
|
|
|
|
},
|
|
|
|
];
|