2022-08-03 15:31:21 +10:00
|
|
|
module.exports = [
|
|
|
|
{
|
2024-02-08 12:09:10 -08:00
|
|
|
name: "Waku node",
|
|
|
|
path: "packages/sdk/bundle/index.js",
|
2022-09-08 11:32:33 +10:00
|
|
|
import: "{ WakuNode }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
|
|
|
{
|
2023-06-05 17:10:13 +05:30
|
|
|
name: "Waku Simple Light Node",
|
|
|
|
path: ["packages/sdk/bundle/index.js", "packages/core/bundle/index.js"],
|
2022-12-06 13:04:18 +11:00
|
|
|
import: {
|
2023-06-05 17:10:13 +05:30
|
|
|
"packages/sdk/bundle/index.js":
|
2024-10-09 00:43:34 +02:00
|
|
|
"{ createLightNode, createEncoder, createDecoder, bytesToUtf8, utf8ToBytes, Decoder, Encoder, DecodedMessage, WakuNode }",
|
2022-12-06 13:04:18 +11:00
|
|
|
},
|
2022-12-02 19:43:45 +11:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "ECIES encryption",
|
|
|
|
path: "packages/message-encryption/bundle/ecies.js",
|
2023-03-07 16:43:15 +11:00
|
|
|
import: "{ generatePrivateKey, createEncoder, createDecoder }",
|
2022-12-02 19:43:45 +11:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Symmetric encryption",
|
|
|
|
path: "packages/message-encryption/bundle/symmetric.js",
|
2023-03-07 16:43:15 +11:00
|
|
|
import: "{ generateSymmetricKey, createEncoder, createDecoder }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "DNS discovery",
|
2024-03-12 15:56:49 +05:30
|
|
|
path: "packages/discovery/bundle/index.js",
|
2022-08-06 00:36:46 +10:00
|
|
|
import: "{ PeerDiscoveryDns }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
2024-03-12 15:56:49 +05:30
|
|
|
{
|
|
|
|
name: "Peer Exchange discovery",
|
|
|
|
path: "packages/discovery/bundle/index.js",
|
|
|
|
import: "{ wakuPeerExchangeDiscovery }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Local Peer Cache Discovery",
|
|
|
|
path: "packages/discovery/bundle/index.js",
|
|
|
|
import: "{ wakuLocalPeerCacheDiscovery }",
|
|
|
|
},
|
2022-08-03 15:31:21 +10:00
|
|
|
{
|
|
|
|
name: "Privacy preserving protocols",
|
2023-05-11 14:08:00 +05:30
|
|
|
path: "packages/relay/bundle/index.js",
|
2022-12-06 13:04:18 +11:00
|
|
|
import: "{ wakuRelay }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
|
|
|
{
|
2024-03-11 18:50:34 +05:30
|
|
|
name: "Waku Filter",
|
2024-04-19 17:20:34 +05:30
|
|
|
path: "packages/sdk/bundle/index.js",
|
2024-03-11 18:50:34 +05:30
|
|
|
import: "{ wakuFilter }",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Waku LightPush",
|
|
|
|
path: "packages/sdk/bundle/index.js",
|
|
|
|
import: "{ wakuLightPush }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "History retrieval protocols",
|
2024-04-01 16:47:47 +05:30
|
|
|
path: "packages/sdk/bundle/index.js",
|
2022-12-06 13:04:18 +11:00
|
|
|
import: "{ wakuStore }",
|
2022-08-03 15:31:21 +10:00
|
|
|
},
|
2023-03-13 14:50:46 +11:00
|
|
|
{
|
|
|
|
name: "Deterministic Message Hashing",
|
|
|
|
path: "packages/message-hash/bundle/index.js",
|
|
|
|
import: "{ messageHash }",
|
|
|
|
},
|
2022-08-03 15:31:21 +10:00
|
|
|
];
|