@waku/message-encryption 0.0.23 → 0.0.24-34a25c2.0
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/package.json +1 -107
package/package.json
CHANGED
@@ -1,107 +1 @@
|
|
1
|
-
{
|
2
|
-
"name": "@waku/message-encryption",
|
3
|
-
"version": "0.0.23",
|
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
|
-
},
|
21
|
-
"typesVersions": {
|
22
|
-
"*": {
|
23
|
-
"*": [
|
24
|
-
"*",
|
25
|
-
"dist/*",
|
26
|
-
"dist/*/index"
|
27
|
-
]
|
28
|
-
}
|
29
|
-
},
|
30
|
-
"type": "module",
|
31
|
-
"author": "Waku Team",
|
32
|
-
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/message-encryption#readme",
|
33
|
-
"repository": {
|
34
|
-
"type": "git",
|
35
|
-
"url": "https://github.com/waku-org/js-waku.git"
|
36
|
-
},
|
37
|
-
"bugs": {
|
38
|
-
"url": "https://github.com/waku-org/js-waku/issues"
|
39
|
-
},
|
40
|
-
"license": "MIT OR Apache-2.0",
|
41
|
-
"keywords": [
|
42
|
-
"waku",
|
43
|
-
"decentralized",
|
44
|
-
"secure",
|
45
|
-
"communication",
|
46
|
-
"web3",
|
47
|
-
"ethereum",
|
48
|
-
"dapps",
|
49
|
-
"privacy"
|
50
|
-
],
|
51
|
-
"scripts": {
|
52
|
-
"build": "run-s build:**",
|
53
|
-
"build:esm": "tsc",
|
54
|
-
"build:bundle": "rollup --config rollup.config.js",
|
55
|
-
"fix": "run-s fix:*",
|
56
|
-
"fix:lint": "eslint src *.js --fix",
|
57
|
-
"check": "run-s check:*",
|
58
|
-
"check:lint": "eslint src *.js",
|
59
|
-
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
60
|
-
"check:tsc": "tsc -p tsconfig.dev.json",
|
61
|
-
"test": "run-s test:*",
|
62
|
-
"test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
63
|
-
"test:browser": "karma start karma.conf.cjs",
|
64
|
-
"prepublish": "npm run build",
|
65
|
-
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
66
|
-
},
|
67
|
-
"engines": {
|
68
|
-
"node": ">=18"
|
69
|
-
},
|
70
|
-
"browser": {
|
71
|
-
"crypto": false
|
72
|
-
},
|
73
|
-
"dependencies": {
|
74
|
-
"@noble/secp256k1": "^1.7.1",
|
75
|
-
"@waku/core": "0.0.25",
|
76
|
-
"@waku/interfaces": "0.0.20",
|
77
|
-
"@waku/proto": "0.0.5",
|
78
|
-
"@waku/utils": "0.0.13",
|
79
|
-
"debug": "^4.3.4",
|
80
|
-
"js-sha3": "^0.9.2"
|
81
|
-
},
|
82
|
-
"devDependencies": {
|
83
|
-
"@rollup/plugin-commonjs": "^25.0.4",
|
84
|
-
"@rollup/plugin-json": "^6.0.0",
|
85
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
86
|
-
"@types/chai": "^4.3.5",
|
87
|
-
"@types/mocha": "^10.0.1",
|
88
|
-
"@waku/build-utils": "*",
|
89
|
-
"chai": "^4.3.7",
|
90
|
-
"cspell": "^7.3.2",
|
91
|
-
"fast-check": "^3.13.1",
|
92
|
-
"mocha": "^10.2.0",
|
93
|
-
"npm-run-all": "^4.1.5",
|
94
|
-
"process": "^0.11.10",
|
95
|
-
"rollup": "^3.29.2"
|
96
|
-
},
|
97
|
-
"files": [
|
98
|
-
"dist",
|
99
|
-
"bundle",
|
100
|
-
"src/**/*.ts",
|
101
|
-
"!**/*.spec.*",
|
102
|
-
"!**/*.json",
|
103
|
-
"CHANGELOG.md",
|
104
|
-
"LICENSE",
|
105
|
-
"README.md"
|
106
|
-
]
|
107
|
-
}
|
1
|
+
{"name":"@waku/message-encryption","version":"0.0.24-34a25c2.0","description":"Waku Message Payload Encryption","types":"./dist/index.d.ts","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"./ecies":{"types":"./dist/ecies.d.ts","import":"./dist/ecies.js"},"./symmetric":{"types":"./dist/symmetric.d.ts","import":"./dist/symmetric.js"}},"typesVersions":{"*":{"*":["*","dist/*","dist/*/index"]}},"type":"module","author":"Waku Team","homepage":"https://github.com/waku-org/js-waku/tree/master/packages/message-encryption#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 *.js","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"},"browser":{"crypto":false},"dependencies":{"@noble/secp256k1":"^1.7.1","@waku/core":"0.0.26-34a25c2.0","@waku/interfaces":"0.0.21-34a25c2.0","@waku/proto":"0.0.6-34a25c2.0","@waku/utils":"0.0.14-34a25c2.0","debug":"^4.3.4","js-sha3":"^0.9.2"},"devDependencies":{"@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":"*","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"},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
|