@libp2p/peer-store 8.2.0 → 8.2.1-ab0e3980
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/README.md +3 -3
- package/dist/index.min.js +9 -9
- package/package.json +26 -114
- package/dist/typedoc-urls.json +0 -16
package/package.json
CHANGED
|
@@ -1,23 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/peer-store",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.1-ab0e3980",
|
|
4
4
|
"description": "Stores information about peers libp2p knows on the network",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
|
-
"homepage": "https://github.com/libp2p/js-libp2p
|
|
6
|
+
"homepage": "https://github.com/libp2p/js-libp2p/tree/master/packages/peer-store#readme",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/libp2p/js-libp2p
|
|
9
|
+
"url": "git+https://github.com/libp2p/js-libp2p.git"
|
|
10
10
|
},
|
|
11
11
|
"bugs": {
|
|
12
|
-
"url": "https://github.com/libp2p/js-libp2p
|
|
12
|
+
"url": "https://github.com/libp2p/js-libp2p/issues"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
15
|
"IPFS"
|
|
16
16
|
],
|
|
17
|
-
"engines": {
|
|
18
|
-
"node": ">=16.0.0",
|
|
19
|
-
"npm": ">=7.0.0"
|
|
20
|
-
},
|
|
21
17
|
"type": "module",
|
|
22
18
|
"types": "./dist/src/index.d.ts",
|
|
23
19
|
"files": [
|
|
@@ -42,91 +38,6 @@
|
|
|
42
38
|
"src/pb/peer.js"
|
|
43
39
|
]
|
|
44
40
|
},
|
|
45
|
-
"release": {
|
|
46
|
-
"branches": [
|
|
47
|
-
"master"
|
|
48
|
-
],
|
|
49
|
-
"plugins": [
|
|
50
|
-
[
|
|
51
|
-
"@semantic-release/commit-analyzer",
|
|
52
|
-
{
|
|
53
|
-
"preset": "conventionalcommits",
|
|
54
|
-
"releaseRules": [
|
|
55
|
-
{
|
|
56
|
-
"breaking": true,
|
|
57
|
-
"release": "major"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"revert": true,
|
|
61
|
-
"release": "patch"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"type": "feat",
|
|
65
|
-
"release": "minor"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"type": "fix",
|
|
69
|
-
"release": "patch"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"type": "docs",
|
|
73
|
-
"release": "patch"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"type": "test",
|
|
77
|
-
"release": "patch"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"type": "deps",
|
|
81
|
-
"release": "patch"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"scope": "no-release",
|
|
85
|
-
"release": false
|
|
86
|
-
}
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
[
|
|
91
|
-
"@semantic-release/release-notes-generator",
|
|
92
|
-
{
|
|
93
|
-
"preset": "conventionalcommits",
|
|
94
|
-
"presetConfig": {
|
|
95
|
-
"types": [
|
|
96
|
-
{
|
|
97
|
-
"type": "feat",
|
|
98
|
-
"section": "Features"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"type": "fix",
|
|
102
|
-
"section": "Bug Fixes"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"type": "chore",
|
|
106
|
-
"section": "Trivial Changes"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"type": "docs",
|
|
110
|
-
"section": "Documentation"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"type": "deps",
|
|
114
|
-
"section": "Dependencies"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"type": "test",
|
|
118
|
-
"section": "Tests"
|
|
119
|
-
}
|
|
120
|
-
]
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
|
-
"@semantic-release/changelog",
|
|
125
|
-
"@semantic-release/npm",
|
|
126
|
-
"@semantic-release/github",
|
|
127
|
-
"@semantic-release/git"
|
|
128
|
-
]
|
|
129
|
-
},
|
|
130
41
|
"scripts": {
|
|
131
42
|
"clean": "aegir clean",
|
|
132
43
|
"lint": "aegir lint",
|
|
@@ -139,37 +50,38 @@
|
|
|
139
50
|
"test:firefox": "aegir test -t browser -- --browser firefox",
|
|
140
51
|
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
|
|
141
52
|
"test:node": "aegir test -t node --cov",
|
|
142
|
-
"test:electron-main": "aegir test -t electron-main"
|
|
143
|
-
"release": "aegir release",
|
|
144
|
-
"docs": "aegir docs"
|
|
53
|
+
"test:electron-main": "aegir test -t electron-main"
|
|
145
54
|
},
|
|
146
55
|
"dependencies": {
|
|
147
|
-
"@libp2p/interface-libp2p": "
|
|
148
|
-
"@libp2p/interface-peer-id": "
|
|
149
|
-
"@libp2p/interface-peer-store": "
|
|
150
|
-
"@libp2p/interfaces": "
|
|
151
|
-
"@libp2p/logger": "
|
|
152
|
-
"@libp2p/peer-collections": "
|
|
153
|
-
"@libp2p/peer-id": "
|
|
154
|
-
"@libp2p/peer-id-factory": "
|
|
155
|
-
"@libp2p/peer-record": "
|
|
156
|
-
"@multiformats/multiaddr": "^12.
|
|
157
|
-
"interface-datastore": "^8.
|
|
56
|
+
"@libp2p/interface-libp2p": "3.2.0-ab0e3980",
|
|
57
|
+
"@libp2p/interface-peer-id": "2.0.2-ab0e3980",
|
|
58
|
+
"@libp2p/interface-peer-store": "2.0.4-ab0e3980",
|
|
59
|
+
"@libp2p/interfaces": "3.3.2-ab0e3980",
|
|
60
|
+
"@libp2p/logger": "2.1.1-ab0e3980",
|
|
61
|
+
"@libp2p/peer-collections": "3.0.2-ab0e3980",
|
|
62
|
+
"@libp2p/peer-id": "2.0.3-ab0e3980",
|
|
63
|
+
"@libp2p/peer-id-factory": "2.0.3-ab0e3980",
|
|
64
|
+
"@libp2p/peer-record": "5.0.4-ab0e3980",
|
|
65
|
+
"@multiformats/multiaddr": "^12.1.3",
|
|
66
|
+
"interface-datastore": "^8.2.0",
|
|
158
67
|
"it-all": "^3.0.2",
|
|
159
68
|
"mortice": "^3.0.1",
|
|
160
|
-
"multiformats": "^11.0.
|
|
69
|
+
"multiformats": "^11.0.2",
|
|
161
70
|
"protons-runtime": "^5.0.0",
|
|
162
|
-
"uint8arraylist": "^2.
|
|
163
|
-
"uint8arrays": "^4.0.
|
|
71
|
+
"uint8arraylist": "^2.4.3",
|
|
72
|
+
"uint8arrays": "^4.0.3"
|
|
164
73
|
},
|
|
165
74
|
"devDependencies": {
|
|
166
|
-
"@types/sinon": "^10.0.
|
|
167
|
-
"aegir": "^39.0.
|
|
75
|
+
"@types/sinon": "^10.0.15",
|
|
76
|
+
"aegir": "^39.0.10",
|
|
168
77
|
"datastore-core": "^9.0.1",
|
|
169
78
|
"delay": "^6.0.0",
|
|
170
79
|
"p-defer": "^4.0.0",
|
|
171
|
-
"p-event": "^
|
|
80
|
+
"p-event": "^6.0.0",
|
|
172
81
|
"protons": "^7.0.2",
|
|
173
|
-
"sinon": "^15.0
|
|
82
|
+
"sinon": "^15.1.0"
|
|
83
|
+
},
|
|
84
|
+
"typedoc": {
|
|
85
|
+
"entryPoint": "./src/index.ts"
|
|
174
86
|
}
|
|
175
87
|
}
|
package/dist/typedoc-urls.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"codec": "https://libp2p.github.io/js-libp2p-peer-store/functions/_internal_.Address.codec.html",
|
|
3
|
-
"decode": "https://libp2p.github.io/js-libp2p-peer-store/functions/_internal_.Address.decode.html",
|
|
4
|
-
"encode": "https://libp2p.github.io/js-libp2p-peer-store/functions/_internal_.Address.encode.html",
|
|
5
|
-
"Peer$metadataEntry": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.Peer.Peer_metadataEntry-1.html",
|
|
6
|
-
"Peer$tagsEntry": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.Peer.Peer_tagsEntry-1.html",
|
|
7
|
-
"PersistentStore": "https://libp2p.github.io/js-libp2p-peer-store/classes/_internal_.PersistentStore.html",
|
|
8
|
-
"Address": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.Address-1.html",
|
|
9
|
-
"Peer": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.Peer-1.html",
|
|
10
|
-
"PeerUpdate": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.PeerUpdate.html",
|
|
11
|
-
"Tag": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/_internal_.Tag-1.html",
|
|
12
|
-
"PersistentPeerStore": "https://libp2p.github.io/js-libp2p-peer-store/classes/PersistentPeerStore.html",
|
|
13
|
-
"AddressFilter": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/AddressFilter.html",
|
|
14
|
-
"PersistentPeerStoreComponents": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/PersistentPeerStoreComponents.html",
|
|
15
|
-
"PersistentPeerStoreInit": "https://libp2p.github.io/js-libp2p-peer-store/interfaces/PersistentPeerStoreInit.html"
|
|
16
|
-
}
|