libp2p 1.1.1-856ccd708 → 1.1.1-ddaa59a60
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/dist/index.min.js +36 -94
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +18 -18
- package/src/version.ts +1 -1
package/dist/src/version.d.ts
CHANGED
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libp2p",
|
|
3
|
-
"version": "1.1.1-
|
|
3
|
+
"version": "1.1.1-ddaa59a60",
|
|
4
4
|
"description": "JavaScript implementation of libp2p, a modular peer to peer network stack",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/libp2p#readme",
|
|
@@ -84,16 +84,16 @@
|
|
|
84
84
|
"test:webkit": "aegir test -t browser -f \"./dist/test/**/*.spec.js\" -- --browser webkit"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@libp2p/crypto": "3.0.4-
|
|
88
|
-
"@libp2p/interface": "1.1.1-
|
|
89
|
-
"@libp2p/interface-internal": "1.0.5-
|
|
90
|
-
"@libp2p/logger": "4.0.4-
|
|
91
|
-
"@libp2p/multistream-select": "5.1.1-
|
|
92
|
-
"@libp2p/peer-collections": "5.1.3-
|
|
93
|
-
"@libp2p/peer-id": "4.0.4-
|
|
94
|
-
"@libp2p/peer-id-factory": "4.0.3-
|
|
95
|
-
"@libp2p/peer-store": "10.0.5-
|
|
96
|
-
"@libp2p/utils": "5.2.0-
|
|
87
|
+
"@libp2p/crypto": "3.0.4-ddaa59a60",
|
|
88
|
+
"@libp2p/interface": "1.1.1-ddaa59a60",
|
|
89
|
+
"@libp2p/interface-internal": "1.0.5-ddaa59a60",
|
|
90
|
+
"@libp2p/logger": "4.0.4-ddaa59a60",
|
|
91
|
+
"@libp2p/multistream-select": "5.1.1-ddaa59a60",
|
|
92
|
+
"@libp2p/peer-collections": "5.1.3-ddaa59a60",
|
|
93
|
+
"@libp2p/peer-id": "4.0.4-ddaa59a60",
|
|
94
|
+
"@libp2p/peer-id-factory": "4.0.3-ddaa59a60",
|
|
95
|
+
"@libp2p/peer-store": "10.0.5-ddaa59a60",
|
|
96
|
+
"@libp2p/utils": "5.2.0-ddaa59a60",
|
|
97
97
|
"@multiformats/multiaddr": "^12.1.10",
|
|
98
98
|
"any-signal": "^4.1.1",
|
|
99
99
|
"datastore-core": "^9.0.1",
|
|
@@ -107,13 +107,13 @@
|
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
109
|
"@chainsafe/libp2p-yamux": "^6.0.1",
|
|
110
|
-
"@libp2p/circuit-relay-v2": "1.0.10-
|
|
111
|
-
"@libp2p/identify": "1.0.9-
|
|
112
|
-
"@libp2p/interface-compliance-tests": "5.1.1-
|
|
113
|
-
"@libp2p/mplex": "10.0.10-
|
|
114
|
-
"@libp2p/plaintext": "1.0.10-
|
|
115
|
-
"@libp2p/tcp": "9.0.10-
|
|
116
|
-
"@libp2p/websockets": "8.0.10-
|
|
110
|
+
"@libp2p/circuit-relay-v2": "1.0.10-ddaa59a60",
|
|
111
|
+
"@libp2p/identify": "1.0.9-ddaa59a60",
|
|
112
|
+
"@libp2p/interface-compliance-tests": "5.1.1-ddaa59a60",
|
|
113
|
+
"@libp2p/mplex": "10.0.10-ddaa59a60",
|
|
114
|
+
"@libp2p/plaintext": "1.0.10-ddaa59a60",
|
|
115
|
+
"@libp2p/tcp": "9.0.10-ddaa59a60",
|
|
116
|
+
"@libp2p/websockets": "8.0.10-ddaa59a60",
|
|
117
117
|
"@multiformats/mafmt": "^12.1.6",
|
|
118
118
|
"@multiformats/multiaddr-matcher": "^1.1.0",
|
|
119
119
|
"aegir": "^42.0.0",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '1.1.1-
|
|
1
|
+
export const version = '1.1.1-ddaa59a60'
|
|
2
2
|
export const name = 'libp2p'
|