@waku/message-encryption 0.0.26-efe9b8d.0 → 0.0.26
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 +16 -0
- package/package.json +123 -1
package/CHANGELOG.md
CHANGED
@@ -76,6 +76,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
76
76
|
* @waku/interfaces bumped from 0.0.21 to 0.0.22
|
77
77
|
* @waku/utils bumped from 0.0.14 to 0.0.15
|
78
78
|
|
79
|
+
## [0.0.26](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.25...message-encryption-v0.0.26) (2024-04-09)
|
80
|
+
|
81
|
+
|
82
|
+
### Features
|
83
|
+
|
84
|
+
* 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))
|
85
|
+
|
86
|
+
|
87
|
+
### Dependencies
|
88
|
+
|
89
|
+
* The following workspace dependencies were updated
|
90
|
+
* dependencies
|
91
|
+
* @waku/core bumped from 0.0.27 to 0.0.28
|
92
|
+
* @waku/interfaces bumped from 0.0.22 to 0.0.23
|
93
|
+
* @waku/utils bumped from 0.0.15 to 0.0.16
|
94
|
+
|
79
95
|
## [0.0.24](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.23...message-encryption-v0.0.24) (2024-01-10)
|
80
96
|
|
81
97
|
|
package/package.json
CHANGED
@@ -1 +1,123 @@
|
|
1
|
-
{
|
1
|
+
{
|
2
|
+
"name": "@waku/message-encryption",
|
3
|
+
"version": "0.0.26",
|
4
|
+
"description": "Waku Message Payload Encryption",
|
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
|
+
"./ecies": {
|
13
|
+
"types": "./dist/ecies.d.ts",
|
14
|
+
"import": "./dist/ecies.js"
|
15
|
+
},
|
16
|
+
"./symmetric": {
|
17
|
+
"types": "./dist/symmetric.d.ts",
|
18
|
+
"import": "./dist/symmetric.js"
|
19
|
+
},
|
20
|
+
"./crypto": {
|
21
|
+
"types": "./dist/crypto/index.d.ts",
|
22
|
+
"import": "./dist/crypto/index.js"
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"typesVersions": {
|
26
|
+
"*": {
|
27
|
+
"*": [
|
28
|
+
"*",
|
29
|
+
"dist/*",
|
30
|
+
"dist/*/index"
|
31
|
+
]
|
32
|
+
}
|
33
|
+
},
|
34
|
+
"type": "module",
|
35
|
+
"author": "Waku Team",
|
36
|
+
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/message-encryption#readme",
|
37
|
+
"repository": {
|
38
|
+
"type": "git",
|
39
|
+
"url": "https://github.com/waku-org/js-waku.git"
|
40
|
+
},
|
41
|
+
"bugs": {
|
42
|
+
"url": "https://github.com/waku-org/js-waku/issues"
|
43
|
+
},
|
44
|
+
"license": "MIT OR Apache-2.0",
|
45
|
+
"keywords": [
|
46
|
+
"waku",
|
47
|
+
"decentralized",
|
48
|
+
"secure",
|
49
|
+
"communication",
|
50
|
+
"web3",
|
51
|
+
"ethereum",
|
52
|
+
"dapps",
|
53
|
+
"privacy"
|
54
|
+
],
|
55
|
+
"scripts": {
|
56
|
+
"build": "run-s build:**",
|
57
|
+
"build:esm": "tsc",
|
58
|
+
"build:bundle": "rollup --config rollup.config.js",
|
59
|
+
"fix": "run-s fix:*",
|
60
|
+
"fix:lint": "eslint src *.js --fix",
|
61
|
+
"check": "run-s check:*",
|
62
|
+
"check:lint": "eslint src *.js",
|
63
|
+
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
64
|
+
"check:tsc": "tsc -p tsconfig.dev.json",
|
65
|
+
"test": "NODE_ENV=test run-s test:*",
|
66
|
+
"test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
67
|
+
"test:browser": "NODE_ENV=test karma start karma.conf.cjs",
|
68
|
+
"prepublish": "npm run build",
|
69
|
+
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
70
|
+
},
|
71
|
+
"engines": {
|
72
|
+
"node": ">=18"
|
73
|
+
},
|
74
|
+
"browser": {
|
75
|
+
"crypto": false
|
76
|
+
},
|
77
|
+
"dependencies": {
|
78
|
+
"@noble/secp256k1": "^1.7.1",
|
79
|
+
"@waku/core": "0.0.28",
|
80
|
+
"@waku/interfaces": "0.0.23",
|
81
|
+
"@waku/proto": "0.0.6",
|
82
|
+
"@waku/utils": "0.0.16",
|
83
|
+
"debug": "^4.3.4",
|
84
|
+
"js-sha3": "^0.9.2",
|
85
|
+
"uint8arrays": "^5.0.1"
|
86
|
+
},
|
87
|
+
"devDependencies": {
|
88
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
89
|
+
"@rollup/plugin-json": "^6.0.0",
|
90
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
91
|
+
"@types/chai": "^4.3.11",
|
92
|
+
"@types/mocha": "^10.0.6",
|
93
|
+
"@waku/build-utils": "*",
|
94
|
+
"chai": "^4.3.10",
|
95
|
+
"cspell": "^8.6.1",
|
96
|
+
"fast-check": "^3.15.1",
|
97
|
+
"mocha": "^10.3.0",
|
98
|
+
"npm-run-all": "^4.1.5",
|
99
|
+
"process": "^0.11.10",
|
100
|
+
"rollup": "^4.12.0"
|
101
|
+
},
|
102
|
+
"peerDependencies": {
|
103
|
+
"@waku/core": "0.0.27",
|
104
|
+
"@waku/interfaces": "0.0.22",
|
105
|
+
"@waku/proto": "0.0.6",
|
106
|
+
"@waku/utils": "0.0.15"
|
107
|
+
},
|
108
|
+
"peerDependenciesMeta": {
|
109
|
+
"@waku/interfaces": {
|
110
|
+
"optional": true
|
111
|
+
}
|
112
|
+
},
|
113
|
+
"files": [
|
114
|
+
"dist",
|
115
|
+
"bundle",
|
116
|
+
"src/**/*.ts",
|
117
|
+
"!**/*.spec.*",
|
118
|
+
"!**/*.json",
|
119
|
+
"CHANGELOG.md",
|
120
|
+
"LICENSE",
|
121
|
+
"README.md"
|
122
|
+
]
|
123
|
+
}
|