-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 946 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "waku-dispatcher",
"version": "0.0.15",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"@libp2p/crypto": "^4.0.3",
"@waku/message-encryption": "0.0.31",
"@waku/sdk": "0.0.29",
"ethers": "^6.12.0"
},
"scripts": {
"build": "run-s build:**",
"build:esm": "tsc --build"
},
"main": "dist/index.js",
"author": "Václav Pavlín <vaclav.pavlin@gmail.com",
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"bundledDependencies": [
"@waku/message-encryption"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src/**/*.ts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"bundleDependencies": [
"@waku/message-encryption"
]
}