@waku/discovery 0.0.1 → 0.0.2-070b625.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.
Files changed (2) hide show
  1. package/package.json +1 -109
  2. package/CHANGELOG.md +0 -23
package/package.json CHANGED
@@ -1,109 +1 @@
1
- {
2
- "name": "@waku/discovery",
3
- "version": "0.0.1",
4
- "description": "Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.",
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/discovery#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
- "build:bundle": "rollup --config rollup.config.js",
38
- "fix": "run-s fix:*",
39
- "fix:lint": "eslint src *.js --fix",
40
- "check": "run-s check:*",
41
- "check:lint": "eslint src --ext .ts",
42
- "check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
43
- "check:tsc": "tsc -p tsconfig.dev.json",
44
- "prepublish": "npm run build",
45
- "reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build",
46
- "test": "NODE_ENV=test run-s test:*",
47
- "test:node": "NODE_ENV=test TS_NODE_PROJECT=./tsconfig.dev.json mocha",
48
- "test:browser": "NODE_ENV=test karma start karma.conf.cjs"
49
- },
50
- "engines": {
51
- "node": ">=18"
52
- },
53
- "dependencies": {
54
- "@waku/interfaces": "0.0.23",
55
- "@waku/proto": "^0.0.6",
56
- "@waku/enr": "0.0.22",
57
- "@waku/core": "0.0.28",
58
- "@waku/utils": "0.0.16",
59
- "debug": "^4.3.4",
60
- "dns-query": "^0.11.2",
61
- "hi-base32": "^0.5.1",
62
- "uint8arrays": "^5.0.1"
63
- },
64
- "devDependencies": {
65
- "@libp2p/peer-id": "^4.0.4",
66
- "@libp2p/peer-id-factory": "^4.0.5",
67
- "@multiformats/multiaddr": "^12.0.0",
68
- "@rollup/plugin-commonjs": "^25.0.7",
69
- "@rollup/plugin-json": "^6.0.0",
70
- "@rollup/plugin-node-resolve": "^15.2.3",
71
- "@types/chai": "^4.3.11",
72
- "@types/node-localstorage": "^1.3.3",
73
- "@waku/build-utils": "*",
74
- "chai": "^4.3.10",
75
- "chai-as-promised": "^7.1.1",
76
- "cspell": "^8.6.1",
77
- "mocha": "^10.3.0",
78
- "node-localstorage": "^3.0.5",
79
- "npm-run-all": "^4.1.5",
80
- "rollup": "^4.12.0",
81
- "sinon": "^17.0.1"
82
- },
83
- "peerDependencies": {
84
- "@waku/core": "0.0.27",
85
- "@waku/enr": "0.0.21",
86
- "@waku/interfaces": "0.0.22",
87
- "@waku/proto": "0.0.6",
88
- "@waku/utils": "0.0.15",
89
- "@libp2p/interface": "^1.1.2"
90
- },
91
- "peerDependenciesMeta": {
92
- "@waku/interfaces": {
93
- "optional": true
94
- },
95
- "@libp2p/interface": {
96
- "optional": true
97
- }
98
- },
99
- "files": [
100
- "dist",
101
- "bundle",
102
- "src/**/*.ts",
103
- "!**/*.spec.*",
104
- "!**/*.json",
105
- "CHANGELOG.md",
106
- "LICENSE",
107
- "README.md"
108
- ]
109
- }
1
+ {"name":"@waku/discovery","version":"0.0.2-070b625.0","description":"Contains various discovery mechanisms: DNS Discovery (EIP-1459, Peer Exchange, Local Peer Cache Discovery.","types":"./dist/index.d.ts","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js"}},"type":"module","author":"Waku Team","homepage":"https://github.com/waku-org/js-waku/tree/master/packages/discovery#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 --ext .ts","check:spelling":"cspell \"{README.md,src/**/*.ts}\"","check:tsc":"tsc -p tsconfig.dev.json","prepublish":"npm run build","reset-hard":"git clean -dfx -e .idea && git reset --hard && npm i && npm run build","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"},"engines":{"node":">=18"},"dependencies":{"@waku/interfaces":"0.0.23-070b625.0","@waku/proto":"0.0.7-070b625.0","@waku/enr":"0.0.22-070b625.0","@waku/core":"0.0.28-070b625.0","@waku/utils":"0.0.16-070b625.0","debug":"^4.3.4","dns-query":"^0.11.2","hi-base32":"^0.5.1","uint8arrays":"^5.0.1"},"devDependencies":{"@libp2p/peer-id":"^4.0.4","@libp2p/peer-id-factory":"^4.0.5","@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/node-localstorage":"^1.3.3","@waku/build-utils":"*","chai":"^4.3.10","chai-as-promised":"^7.1.1","cspell":"^8.6.1","mocha":"^10.3.0","node-localstorage":"^3.0.5","npm-run-all":"^4.1.5","rollup":"^4.12.0","sinon":"^17.0.1"},"peerDependencies":{"@waku/core":"0.0.28-070b625.0","@waku/enr":"0.0.22-070b625.0","@waku/interfaces":"0.0.23-070b625.0","@waku/proto":"0.0.7-070b625.0","@waku/utils":"0.0.16-070b625.0","@libp2p/interface":"^1.1.2"},"peerDependenciesMeta":{"@waku/interfaces":{"optional":true},"@libp2p/interface":{"optional":true}},"files":["dist","bundle","src/**/*.ts","!**/*.spec.*","!**/*.json","CHANGELOG.md","LICENSE","README.md"]}
package/CHANGELOG.md DELETED
@@ -1,23 +0,0 @@
1
- # Changelog
2
-
3
- ## 0.0.1 (2024-04-09)
4
-
5
-
6
- ### ⚠ BREAKING CHANGES
7
-
8
- * @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876))
9
-
10
- ### Features
11
-
12
- * @waku/discovery ([#1876](https://github.com/waku-org/js-waku/issues/1876)) ([1e86c3d](https://github.com/waku-org/js-waku/commit/1e86c3d63e6532dabbe10e01376d42dc6bcb0b85))
13
- * 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))
14
-
15
-
16
- ### Dependencies
17
-
18
- * The following workspace dependencies were updated
19
- * dependencies
20
- * @waku/interfaces bumped from 0.0.22 to 0.0.23
21
- * @waku/enr bumped from 0.0.21 to 0.0.22
22
- * @waku/core bumped from 0.0.27 to 0.0.28
23
- * @waku/utils bumped from 0.0.15 to 0.0.16