@waku/interfaces 0.0.23-efe9b8d.0 → 0.0.23
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 +19 -0
- package/package.json +69 -1
package/CHANGELOG.md
CHANGED
@@ -5,6 +5,25 @@ 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.23](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.22...interfaces-v0.0.23) (2024-04-09)
|
9
|
+
|
10
|
+
|
11
|
+
### ⚠ BREAKING CHANGES
|
12
|
+
|
13
|
+
* **store:** move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913))
|
14
|
+
* **lightpush:** move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887))
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
* **metadata:** Use error codes ([#1904](https://github.com/waku-org/js-waku/issues/1904)) ([1882023](https://github.com/waku-org/js-waku/commit/1882023c58c830fc31921fe786bce734536ac1da))
|
19
|
+
* Peer-exchange uses error codes ([#1907](https://github.com/waku-org/js-waku/issues/1907)) ([877fe1d](https://github.com/waku-org/js-waku/commit/877fe1dc1daf6826b60ac5011af2915c47864d90))
|
20
|
+
|
21
|
+
|
22
|
+
### Miscellaneous Chores
|
23
|
+
|
24
|
+
* **lightpush:** Move protocol implementation opinions to `@waku/sdk` ([#1887](https://github.com/waku-org/js-waku/issues/1887)) ([8deab11](https://github.com/waku-org/js-waku/commit/8deab11890160b40a22e7d11926a2307afb93af4))
|
25
|
+
* **store:** Move protocol implementation opinions to `@waku/sdk` ([#1913](https://github.com/waku-org/js-waku/issues/1913)) ([bf42c8f](https://github.com/waku-org/js-waku/commit/bf42c8f53a291172d6af64cbf72c4092146899df))
|
26
|
+
|
8
27
|
## [0.0.22](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.21...interfaces-v0.0.22) (2024-03-04)
|
9
28
|
|
10
29
|
|
package/package.json
CHANGED
@@ -1 +1,69 @@
|
|
1
|
-
{
|
1
|
+
{
|
2
|
+
"name": "@waku/interfaces",
|
3
|
+
"version": "0.0.23",
|
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": "^12.0.0",
|
51
|
+
"@multiformats/multiaddr": "^12.0.0",
|
52
|
+
"cspell": "^8.6.1",
|
53
|
+
"npm-run-all": "^4.1.5",
|
54
|
+
"libp2p": "^1.1.2"
|
55
|
+
},
|
56
|
+
"files": [
|
57
|
+
"dist",
|
58
|
+
"bundle",
|
59
|
+
"src/**/*.ts",
|
60
|
+
"!**/*.spec.*",
|
61
|
+
"!**/*.json",
|
62
|
+
"CHANGELOG.md",
|
63
|
+
"LICENSE",
|
64
|
+
"README.md"
|
65
|
+
],
|
66
|
+
"dependencies": {
|
67
|
+
"@waku/proto": "^0.0.6"
|
68
|
+
}
|
69
|
+
}
|