@waku/enr 0.0.22-efe9b8d.0 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +104 -1
package/CHANGELOG.md CHANGED
@@ -67,6 +67,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
67
67
  * devDependencies
68
68
  * @waku/interfaces bumped from 0.0.20 to 0.0.21
69
69
 
70
+ ## [0.0.22](https://github.com/waku-org/js-waku/compare/enr-v0.0.21...enr-v0.0.22) (2024-04-09)
71
+
72
+
73
+ ### Features
74
+
75
+ * Add cross peer dependency for [@waku](https://github.com/waku) packages ([#1889](https://github.com/waku-org/js-waku/issues/1889)) ([8f86740](https://github.com/waku-org/js-waku/commit/8f867404e3e950b6e491c8831068962c6968ed4e))
76
+
77
+
78
+ ### Dependencies
79
+
80
+ * The following workspace dependencies were updated
81
+ * dependencies
82
+ * @waku/utils bumped from 0.0.15 to 0.0.16
83
+ * devDependencies
84
+ * @waku/interfaces bumped from 0.0.22 to 0.0.23
85
+
70
86
  ## [0.0.21](https://github.com/waku-org/js-waku/compare/enr-v0.0.20...enr-v0.0.21) (2024-03-04)
71
87
 
72
88
 
package/package.json CHANGED
@@ -1 +1,104 @@
1
- {"name":"@waku/enr","version":"0.0.22-efe9b8d.0","description":"ENR (EIP-778) for Waku","types":"./dist/index.d.ts","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js"}},"type":"module","author":"Waku Team","homepage":"https://github.com/waku-org/js-waku/tree/master/packages/enr#readme","repository":{"type":"git","url":"https://github.com/waku-org/js-waku.git"},"bugs":{"url":"https://github.com/waku-org/js-waku/issues"},"license":"MIT OR Apache-2.0","keywords":["waku","decentralized","secure","communication","web3","ethereum","dapps","privacy"],"scripts":{"build":"run-s build:**","build:esm":"tsc","build:bundle":"rollup --config rollup.config.js","fix":"run-s fix:*","fix:lint":"eslint src *.js --fix","check":"run-s check:*","check:lint":"eslint src --ext .ts","check:spelling":"cspell \"{README.md,src/**/*.ts}\"","check:tsc":"tsc -p tsconfig.dev.json","test":"NODE_ENV=test run-s test:*","test:node":"NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha","test:browser":"NODE_ENV=test karma start karma.conf.cjs","prepublish":"npm run build","reset-hard":"git clean -dfx -e .idea && git reset --hard && npm i && npm run build"},"engines":{"node":">=18"},"dependencies":{"@ethersproject/rlp":"^5.7.0","@libp2p/crypto":"^4.0.0","@libp2p/peer-id":"^4.0.4","@multiformats/multiaddr":"^12.0.0","@noble/secp256k1":"^1.7.1","@waku/utils":"0.0.16-efe9b8d.0","debug":"^4.3.4","js-sha3":"^0.9.2"},"devDependencies":{"@libp2p/peer-id-factory":"^4.0.5","@rollup/plugin-commonjs":"^25.0.7","@rollup/plugin-json":"^6.0.0","@rollup/plugin-node-resolve":"^15.2.3","@types/chai":"^4.3.11","@types/mocha":"^10.0.6","@waku/build-utils":"*","@waku/interfaces":"0.0.23-efe9b8d.0","chai":"^4.3.10","cspell":"^8.6.1","fast-check":"^3.15.1","mocha":"^10.3.0","npm-run-all":"^4.1.5","process":"^0.11.10","rollup":"^4.12.0","uint8arrays":"^5.0.1"},"peerDependencies":{"@waku/utils":"0.0.16-efe9b8d.0","@waku/interfaces":"0.0.23-efe9b8d.0","@multiformats/multiaddr":"^12.0.0"},"peerDependenciesMeta":{"@waku/interfaces":{"optional":true},"@multiformats/multiaddr":{"optional":true}},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
1
+ {
2
+ "name": "@waku/enr",
3
+ "version": "0.0.22",
4
+ "description": "ENR (EIP-778) for Waku",
5
+ "types": "./dist/index.d.ts",
6
+ "module": "./dist/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "type": "module",
14
+ "author": "Waku Team",
15
+ "homepage": "https://github.com/waku-org/js-waku/tree/master/packages/enr#readme",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/waku-org/js-waku.git"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/waku-org/js-waku/issues"
22
+ },
23
+ "license": "MIT OR Apache-2.0",
24
+ "keywords": [
25
+ "waku",
26
+ "decentralized",
27
+ "secure",
28
+ "communication",
29
+ "web3",
30
+ "ethereum",
31
+ "dapps",
32
+ "privacy"
33
+ ],
34
+ "scripts": {
35
+ "build": "run-s build:**",
36
+ "build:esm": "tsc",
37
+ "build:bundle": "rollup --config rollup.config.js",
38
+ "fix": "run-s fix:*",
39
+ "fix:lint": "eslint src *.js --fix",
40
+ "check": "run-s check:*",
41
+ "check:lint": "eslint src --ext .ts",
42
+ "check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
43
+ "check:tsc": "tsc -p tsconfig.dev.json",
44
+ "test": "NODE_ENV=test run-s test:*",
45
+ "test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
46
+ "test:browser": "NODE_ENV=test karma start karma.conf.cjs",
47
+ "prepublish": "npm run build",
48
+ "reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
49
+ },
50
+ "engines": {
51
+ "node": ">=18"
52
+ },
53
+ "dependencies": {
54
+ "@ethersproject/rlp": "^5.7.0",
55
+ "@libp2p/crypto": "^4.0.0",
56
+ "@libp2p/peer-id": "^4.0.4",
57
+ "@multiformats/multiaddr": "^12.0.0",
58
+ "@noble/secp256k1": "^1.7.1",
59
+ "@waku/utils": "0.0.16",
60
+ "debug": "^4.3.4",
61
+ "js-sha3": "^0.9.2"
62
+ },
63
+ "devDependencies": {
64
+ "@libp2p/peer-id-factory": "^4.0.5",
65
+ "@rollup/plugin-commonjs": "^25.0.7",
66
+ "@rollup/plugin-json": "^6.0.0",
67
+ "@rollup/plugin-node-resolve": "^15.2.3",
68
+ "@types/chai": "^4.3.11",
69
+ "@types/mocha": "^10.0.6",
70
+ "@waku/build-utils": "*",
71
+ "@waku/interfaces": "0.0.23",
72
+ "chai": "^4.3.10",
73
+ "cspell": "^8.6.1",
74
+ "fast-check": "^3.15.1",
75
+ "mocha": "^10.3.0",
76
+ "npm-run-all": "^4.1.5",
77
+ "process": "^0.11.10",
78
+ "rollup": "^4.12.0",
79
+ "uint8arrays": "^5.0.1"
80
+ },
81
+ "peerDependencies": {
82
+ "@waku/utils": "0.0.15",
83
+ "@waku/interfaces": "0.0.22",
84
+ "@multiformats/multiaddr": "^12.0.0"
85
+ },
86
+ "peerDependenciesMeta": {
87
+ "@waku/interfaces": {
88
+ "optional": true
89
+ },
90
+ "@multiformats/multiaddr": {
91
+ "optional": true
92
+ }
93
+ },
94
+ "files": [
95
+ "dist",
96
+ "bundle",
97
+ "src/**/*.ts",
98
+ "!**/*.spec.*",
99
+ "!**/*.json",
100
+ "CHANGELOG.md",
101
+ "LICENSE",
102
+ "README.md"
103
+ ]
104
+ }