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
|
|
|
},
|
|
|
|
{
|
2023-06-05 11:40:13 +00:00
|
|
|
name: "Waku Simple Light Node",
|
|
|
|
path: ["packages/sdk/bundle/index.js", "packages/core/bundle/index.js"],
|
2022-12-06 02:04:18 +00:00
|
|
|
import: {
|
2023-06-05 11:40:13 +00:00
|
|
|
"packages/sdk/bundle/index.js":
|
|
|
|
"{ createLightNode, waitForRemotePeer, createEncoder, createDecoder, bytesToUtf8, utf8ToBytes, Decoder, Encoder, DecodedMessage, WakuNode }",
|
2022-12-06 02:04:18 +00:00
|
|
|
},
|
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",
|
2023-05-11 08:38:00 +00:00
|
|
|
path: "packages/relay/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",
|
2023-07-26 06:00:48 +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
|
|
|
},
|
2023-03-13 03:50:46 +00:00
|
|
|
{
|
|
|
|
name: "Deterministic Message Hashing",
|
|
|
|
path: "packages/message-hash/bundle/index.js",
|
|
|
|
import: "{ messageHash }",
|
|
|
|
},
|
2022-08-03 05:31:21 +00:00
|
|
|
];
|