@waku/interfaces 0.0.20-a42b7be.0 → 0.0.20
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.
- package/CHANGELOG.md +7 -0
- package/package.json +66 -1
package/CHANGELOG.md
CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.0.20](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.19...interfaces-v0.0.20) (2023-11-01)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* Fail early when trying to send empty payload ([#1642](https://github.com/waku-org/js-waku/issues/1642)) ([6bad4ea](https://github.com/waku-org/js-waku/commit/6bad4ea7d1dee79c296c550390da57ffa824e2cf))
|
14
|
+
|
8
15
|
## [0.0.19](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.18...interfaces-v0.0.19) (2023-10-16)
|
9
16
|
|
10
17
|
|
package/package.json
CHANGED
@@ -1 +1,66 @@
|
|
1
|
-
{
|
1
|
+
{
|
2
|
+
"name": "@waku/interfaces",
|
3
|
+
"version": "0.0.20",
|
4
|
+
"description": "Definition of Waku interfaces",
|
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/interfaces#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
|
+
"fix": "run-s fix:*",
|
38
|
+
"fix:lint": "eslint src --fix",
|
39
|
+
"check": "run-s check:*",
|
40
|
+
"check:lint": "eslint src",
|
41
|
+
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
42
|
+
"check:tsc": "tsc -p tsconfig.dev.json",
|
43
|
+
"prepublish": "npm run build",
|
44
|
+
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
45
|
+
},
|
46
|
+
"engines": {
|
47
|
+
"node": ">=18"
|
48
|
+
},
|
49
|
+
"devDependencies": {
|
50
|
+
"@chainsafe/libp2p-gossipsub": "^10.1.0",
|
51
|
+
"@multiformats/multiaddr": "^12.0.0",
|
52
|
+
"cspell": "^7.3.2",
|
53
|
+
"npm-run-all": "^4.1.5",
|
54
|
+
"libp2p": "^0.46.14"
|
55
|
+
},
|
56
|
+
"files": [
|
57
|
+
"dist",
|
58
|
+
"bundle",
|
59
|
+
"src/**/*.ts",
|
60
|
+
"!**/*.spec.*",
|
61
|
+
"!**/*.json",
|
62
|
+
"CHANGELOG.md",
|
63
|
+
"LICENSE",
|
64
|
+
"README.md"
|
65
|
+
]
|
66
|
+
}
|