@waku/enr 0.0.19-a42b7be.0 → 0.0.19

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 +91 -1
package/CHANGELOG.md CHANGED
@@ -59,6 +59,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
59
  * devDependencies
60
60
  * @waku/interfaces bumped from 0.0.16 to 0.0.17
61
61
 
62
+ ## [0.0.19](https://github.com/waku-org/js-waku/compare/enr-v0.0.18...enr-v0.0.19) (2023-11-01)
63
+
64
+
65
+ ### Features
66
+
67
+ * Logger with log levels ([#1672](https://github.com/waku-org/js-waku/issues/1672)) ([0f7d63e](https://github.com/waku-org/js-waku/commit/0f7d63ef93716223dc8fea7e8cb09e12e267b386))
68
+
69
+
70
+ ### Dependencies
71
+
72
+ * The following workspace dependencies were updated
73
+ * dependencies
74
+ * @waku/utils bumped from 0.0.12 to 0.0.13
75
+ * devDependencies
76
+ * @waku/interfaces bumped from 0.0.19 to 0.0.20
77
+
62
78
  ## [0.0.18](https://github.com/waku-org/js-waku/compare/enr-v0.0.17...enr-v0.0.18) (2023-10-16)
63
79
 
64
80
 
package/package.json CHANGED
@@ -1 +1,91 @@
1
- {"name":"@waku/enr","version":"0.0.19-a42b7be.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":"run-s test:*","test:node":"TS_NODE_PROJECT=./tsconfig.dev.json mocha","test:browser":"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":"^1.0.17","@libp2p/peer-id":"^3.0.3","@multiformats/multiaddr":"^12.0.0","@noble/secp256k1":"^1.7.1","@waku/utils":"0.0.13-a42b7be.0","debug":"^4.3.4","js-sha3":"^0.9.2"},"devDependencies":{"@libp2p/peer-id-factory":"^3.0.3","@rollup/plugin-commonjs":"^25.0.4","@rollup/plugin-json":"^6.0.0","@rollup/plugin-node-resolve":"^15.2.3","@types/chai":"^4.3.5","@types/mocha":"^10.0.1","@waku/build-utils":"*","@waku/interfaces":"0.0.20-a42b7be.0","chai":"^4.3.7","cspell":"^7.3.2","fast-check":"^3.13.1","mocha":"^10.2.0","npm-run-all":"^4.1.5","process":"^0.11.10","rollup":"^3.29.2","uint8arrays":"^4.0.4"},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
1
+ {
2
+ "name": "@waku/enr",
3
+ "version": "0.0.19",
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": "run-s test:*",
45
+ "test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
46
+ "test:browser": "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": "^1.0.17",
56
+ "@libp2p/peer-id": "^3.0.3",
57
+ "@multiformats/multiaddr": "^12.0.0",
58
+ "@noble/secp256k1": "^1.7.1",
59
+ "@waku/utils": "0.0.13",
60
+ "debug": "^4.3.4",
61
+ "js-sha3": "^0.9.2"
62
+ },
63
+ "devDependencies": {
64
+ "@libp2p/peer-id-factory": "^3.0.3",
65
+ "@rollup/plugin-commonjs": "^25.0.4",
66
+ "@rollup/plugin-json": "^6.0.0",
67
+ "@rollup/plugin-node-resolve": "^15.2.3",
68
+ "@types/chai": "^4.3.5",
69
+ "@types/mocha": "^10.0.1",
70
+ "@waku/build-utils": "*",
71
+ "@waku/interfaces": "0.0.20",
72
+ "chai": "^4.3.7",
73
+ "cspell": "^7.3.2",
74
+ "fast-check": "^3.13.1",
75
+ "mocha": "^10.2.0",
76
+ "npm-run-all": "^4.1.5",
77
+ "process": "^0.11.10",
78
+ "rollup": "^3.29.2",
79
+ "uint8arrays": "^4.0.4"
80
+ },
81
+ "files": [
82
+ "dist",
83
+ "bundle",
84
+ "src/**/*.ts",
85
+ "!**/*.spec.*",
86
+ "!**/*.json",
87
+ "CHANGELOG.md",
88
+ "LICENSE",
89
+ "README.md"
90
+ ]
91
+ }