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-12-06 02:04:18 +00:00
|
|
|
path: ["packages/create/bundle/index.js", "packages/core/bundle/index.js"],
|
|
|
|
import: {
|
|
|
|
"packages/create/bundle/index.js": "{ createLightNode }",
|
|
|
|
"packages/core/bundle/index.js":
|
|
|
|
"{ waitForRemotePeer, createEncoder, createDecoder }",
|
|
|
|
},
|
2022-12-02 08:43:45 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "ECIES encryption",
|
|
|
|
path: "packages/message-encryption/bundle/ecies.js",
|
2023-03-07 05:43:15 +00:00
|
|
|
import: "{ generatePrivateKey, createEncoder, createDecoder }",
|
2022-12-02 08:43:45 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Symmetric encryption",
|
|
|
|
path: "packages/message-encryption/bundle/symmetric.js",
|
2023-03-07 05:43:15 +00:00
|
|
|
import: "{ generateSymmetricKey, createEncoder, createDecoder }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "DNS discovery",
|
2022-11-03 12:04:33 +00:00
|
|
|
path: "packages/dns-discovery/bundle/index.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-12-06 02:04:18 +00:00
|
|
|
import: "{ wakuRelay }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Light protocols",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-12-06 02:04:18 +00:00
|
|
|
import: "{ wakuLightPush, wakuFilter }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "History retrieval protocols",
|
2022-10-30 21:56:48 +00:00
|
|
|
path: "packages/core/bundle/index.js",
|
2022-12-06 02:04:18 +00:00
|
|
|
import: "{ wakuStore }",
|
2022-08-03 05:31:21 +00:00
|
|
|
},
|
|
|
|
];
|