Merge pull request #1292 from waku-org/fix/utils-types

This commit is contained in:
fryorcraken.eth 2023-04-03 15:59:49 +10:00 committed by GitHub
commit e385652411
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 10 deletions

20
package-lock.json generated
View File

@ -28909,7 +28909,7 @@
},
"packages/core": {
"name": "@waku/core",
"version": "0.0.14",
"version": "0.0.15",
"license": "MIT OR Apache-2.0",
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^6.1.0",
@ -29008,13 +29008,13 @@
},
"packages/create": {
"name": "@waku/create",
"version": "0.0.10",
"version": "0.0.11",
"license": "MIT OR Apache-2.0",
"dependencies": {
"@chainsafe/libp2p-noise": "^11.0.0",
"@libp2p/mplex": "^7.1.1",
"@libp2p/websockets": "^5.0.3",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/dns-discovery": "0.0.9",
"libp2p": "^0.42.2"
},
@ -29274,11 +29274,11 @@
},
"packages/message-encryption": {
"name": "@waku/message-encryption",
"version": "0.0.12",
"version": "0.0.13",
"license": "MIT OR Apache-2.0",
"dependencies": {
"@noble/secp256k1": "^1.7.1",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/interfaces": "0.0.10",
"@waku/proto": "0.0.4",
"@waku/utils": "0.0.3",
@ -29328,12 +29328,12 @@
},
"packages/peer-exchange": {
"name": "@waku/peer-exchange",
"version": "0.0.7",
"version": "0.0.8",
"license": "MIT OR Apache-2.0",
"dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/enr": "0.0.9",
"@waku/proto": "0.0.4",
"@waku/utils": "0.0.3",
@ -34046,7 +34046,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/dns-discovery": "0.0.9",
"@waku/interfaces": "0.0.10",
"cspell": "^6.31.1",
@ -34265,7 +34265,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/interfaces": "0.0.10",
"@waku/proto": "0.0.4",
"@waku/utils": "0.0.3",
@ -34310,7 +34310,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*",
"@waku/core": "0.0.14",
"@waku/core": "0.0.15",
"@waku/enr": "0.0.9",
"@waku/interfaces": "0.0.10",
"@waku/proto": "0.0.4",

View File

@ -18,6 +18,15 @@
"import": "./dist/bytes/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/*/index"
]
}
},
"type": "module",
"author": "Waku Team",
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/utils#readme",