@waku/core 0.0.29 → 0.0.30-682cc66.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 -134
package/package.json
CHANGED
@@ -1,134 +1 @@
|
|
1
|
-
{
|
2
|
-
"name": "@waku/core",
|
3
|
-
"version": "0.0.29",
|
4
|
-
"description": "TypeScript implementation of the Waku v2 protocol",
|
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
|
-
"./lib/predefined_bootstrap_nodes": {
|
13
|
-
"types": "./dist/lib/predefined_bootstrap_nodes.d.ts",
|
14
|
-
"import": "./dist/lib/predefined_bootstrap_nodes.js"
|
15
|
-
},
|
16
|
-
"./lib/message/version_0": {
|
17
|
-
"types": "./dist/lib/message/version_0.d.ts",
|
18
|
-
"import": "./dist/lib/message/version_0.js"
|
19
|
-
},
|
20
|
-
"./lib/base_protocol": {
|
21
|
-
"types": "./dist/lib/base_protocol.d.ts",
|
22
|
-
"import": "./dist/lib/base_protocol.js"
|
23
|
-
}
|
24
|
-
},
|
25
|
-
"typesVersions": {
|
26
|
-
"*": {
|
27
|
-
"lib/*": [
|
28
|
-
"dist/lib/*"
|
29
|
-
],
|
30
|
-
"constants/*": [
|
31
|
-
"dist/constants/*"
|
32
|
-
]
|
33
|
-
}
|
34
|
-
},
|
35
|
-
"type": "module",
|
36
|
-
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/core#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
|
-
"decentralised",
|
48
|
-
"communication",
|
49
|
-
"web3",
|
50
|
-
"ethereum",
|
51
|
-
"dapps"
|
52
|
-
],
|
53
|
-
"scripts": {
|
54
|
-
"build": "run-s build:**",
|
55
|
-
"build:esm": "tsc",
|
56
|
-
"build:bundle": "rollup --config rollup.config.js",
|
57
|
-
"fix": "run-s fix:*",
|
58
|
-
"fix:lint": "eslint src *.js --fix",
|
59
|
-
"check": "run-s check:*",
|
60
|
-
"check:tsc": "tsc -p tsconfig.dev.json",
|
61
|
-
"check:lint": "eslint src *.js",
|
62
|
-
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
63
|
-
"test": "NODE_ENV=test run-s test:*",
|
64
|
-
"test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
|
65
|
-
"test:browser": "NODE_ENV=test karma start karma.conf.cjs",
|
66
|
-
"watch:build": "tsc -p tsconfig.json -w",
|
67
|
-
"watch:test": "mocha --watch",
|
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
|
-
"dependencies": {
|
75
|
-
"@libp2p/ping": "^1.0.12",
|
76
|
-
"@waku/enr": "^0.0.23",
|
77
|
-
"@waku/interfaces": "0.0.24",
|
78
|
-
"@waku/proto": "0.0.7",
|
79
|
-
"@waku/utils": "0.0.17",
|
80
|
-
"debug": "^4.3.4",
|
81
|
-
"it-all": "^3.0.4",
|
82
|
-
"it-length-prefixed": "^9.0.4",
|
83
|
-
"it-pipe": "^3.0.1",
|
84
|
-
"p-event": "^6.0.1",
|
85
|
-
"uint8arraylist": "^2.4.3",
|
86
|
-
"uuid": "^9.0.0"
|
87
|
-
},
|
88
|
-
"devDependencies": {
|
89
|
-
"@multiformats/multiaddr": "^12.0.0",
|
90
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
91
|
-
"@rollup/plugin-json": "^6.0.0",
|
92
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
93
|
-
"@types/chai": "^4.3.11",
|
94
|
-
"@types/debug": "^4.1.12",
|
95
|
-
"@types/mocha": "^10.0.6",
|
96
|
-
"@types/uuid": "^9.0.8",
|
97
|
-
"@waku/build-utils": "*",
|
98
|
-
"chai": "^4.3.10",
|
99
|
-
"cspell": "^8.6.1",
|
100
|
-
"fast-check": "^3.15.1",
|
101
|
-
"ignore-loader": "^0.1.2",
|
102
|
-
"isomorphic-fetch": "^3.0.0",
|
103
|
-
"mocha": "^10.3.0",
|
104
|
-
"npm-run-all": "^4.1.5",
|
105
|
-
"process": "^0.11.10",
|
106
|
-
"rollup": "^4.12.0"
|
107
|
-
},
|
108
|
-
"peerDependencies": {
|
109
|
-
"@multiformats/multiaddr": "^12.0.0",
|
110
|
-
"libp2p": "^1.1.2",
|
111
|
-
"@waku/enr": "^0.0.21",
|
112
|
-
"@waku/interfaces": "0.0.22",
|
113
|
-
"@waku/proto": "0.0.6",
|
114
|
-
"@waku/utils": "0.0.15"
|
115
|
-
},
|
116
|
-
"peerDependenciesMeta": {
|
117
|
-
"@multiformats/multiaddr": {
|
118
|
-
"optional": true
|
119
|
-
},
|
120
|
-
"@waku/interfaces": {
|
121
|
-
"optional": true
|
122
|
-
}
|
123
|
-
},
|
124
|
-
"files": [
|
125
|
-
"dist",
|
126
|
-
"bundle",
|
127
|
-
"src/**/*.ts",
|
128
|
-
"!**/*.spec.*",
|
129
|
-
"!**/*.json",
|
130
|
-
"CHANGELOG.md",
|
131
|
-
"LICENSE",
|
132
|
-
"README.md"
|
133
|
-
]
|
134
|
-
}
|
1
|
+
{"name":"@waku/core","version":"0.0.30-682cc66.0","description":"TypeScript implementation of the Waku v2 protocol","types":"./dist/index.d.ts","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js"},"./lib/predefined_bootstrap_nodes":{"types":"./dist/lib/predefined_bootstrap_nodes.d.ts","import":"./dist/lib/predefined_bootstrap_nodes.js"},"./lib/message/version_0":{"types":"./dist/lib/message/version_0.d.ts","import":"./dist/lib/message/version_0.js"},"./lib/base_protocol":{"types":"./dist/lib/base_protocol.d.ts","import":"./dist/lib/base_protocol.js"}},"typesVersions":{"*":{"lib/*":["dist/lib/*"],"constants/*":["dist/constants/*"]}},"type":"module","homepage":"https://github.com/waku-org/js-waku/tree/master/packages/core#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","decentralised","communication","web3","ethereum","dapps"],"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:tsc":"tsc -p tsconfig.dev.json","check:lint":"eslint src *.js","check:spelling":"cspell \"{README.md,src/**/*.ts}\"","test":"NODE_ENV=test run-s test:*","test:node":"NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha","test:browser":"NODE_ENV=test karma start karma.conf.cjs","watch:build":"tsc -p tsconfig.json -w","watch:test":"mocha --watch","prepublish":"npm run build","reset-hard":"git clean -dfx -e .idea && git reset --hard && npm i && npm run build"},"engines":{"node":">=18"},"dependencies":{"@libp2p/ping":"^1.0.12","@waku/enr":"0.0.24-682cc66.0","@waku/interfaces":"0.0.25-682cc66.0","@waku/proto":"0.0.8-682cc66.0","@waku/utils":"0.0.18-682cc66.0","debug":"^4.3.4","it-all":"^3.0.4","it-length-prefixed":"^9.0.4","it-pipe":"^3.0.1","p-event":"^6.0.1","uint8arraylist":"^2.4.3","uuid":"^9.0.0"},"devDependencies":{"@multiformats/multiaddr":"^12.0.0","@rollup/plugin-commonjs":"^25.0.7","@rollup/plugin-json":"^6.0.0","@rollup/plugin-node-resolve":"^15.2.3","@types/chai":"^4.3.11","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/uuid":"^9.0.8","@waku/build-utils":"*","chai":"^4.3.10","cspell":"^8.6.1","fast-check":"^3.15.1","ignore-loader":"^0.1.2","isomorphic-fetch":"^3.0.0","mocha":"^10.3.0","npm-run-all":"^4.1.5","process":"^0.11.10","rollup":"^4.12.0"},"peerDependencies":{"@multiformats/multiaddr":"^12.0.0","libp2p":"^1.1.2","@waku/enr":"0.0.24-682cc66.0","@waku/interfaces":"0.0.25-682cc66.0","@waku/proto":"0.0.8-682cc66.0","@waku/utils":"0.0.18-682cc66.0"},"peerDependenciesMeta":{"@multiformats/multiaddr":{"optional":true},"@waku/interfaces":{"optional":true}},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
|