mirror of
https://github.com/waku-org/js-waku.git
synced 2025-02-10 19:36:59 +00:00
* move constants & core's func to @waku/utils * setup @waku/relay * use @waku/relay for create * address: principal review * fix: size-limit * move all constants to @waku/core * move TopicOnlyDecoder to relay * merge: master * fix: tests * Move constants out of core (#1340) * update package.lock * change constants folder into a ts file * use dependency version as * instead of version number * add constants import from @waku/core * add empty changelog file for relay --------- Co-authored-by: fryorcraken.eth <110212804+fryorcraken@users.noreply.github.com>
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
module.exports = [
|
|
{
|
|
name: "Waku core",
|
|
path: "packages/core/bundle/index.js",
|
|
import: "{ WakuNode }",
|
|
},
|
|
{
|
|
name: "Waku default setup",
|
|
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 }",
|
|
},
|
|
},
|
|
{
|
|
name: "ECIES encryption",
|
|
path: "packages/message-encryption/bundle/ecies.js",
|
|
import: "{ generatePrivateKey, createEncoder, createDecoder }",
|
|
},
|
|
{
|
|
name: "Symmetric encryption",
|
|
path: "packages/message-encryption/bundle/symmetric.js",
|
|
import: "{ generateSymmetricKey, createEncoder, createDecoder }",
|
|
},
|
|
{
|
|
name: "DNS discovery",
|
|
path: "packages/dns-discovery/bundle/index.js",
|
|
import: "{ PeerDiscoveryDns }",
|
|
},
|
|
{
|
|
name: "Privacy preserving protocols",
|
|
path: "packages/relay/bundle/index.js",
|
|
import: "{ wakuRelay }",
|
|
},
|
|
{
|
|
name: "Light protocols",
|
|
path: "packages/core/bundle/index.js",
|
|
import: "{ wakuLightPush, wakuFilter }",
|
|
},
|
|
{
|
|
name: "History retrieval protocols",
|
|
path: "packages/core/bundle/index.js",
|
|
import: "{ wakuStore }",
|
|
},
|
|
{
|
|
name: "Deterministic Message Hashing",
|
|
path: "packages/message-hash/bundle/index.js",
|
|
import: "{ messageHash }",
|
|
},
|
|
];
|