peerbit 4.1.21 → 4.1.22-e182140
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 +109 -109
package/package.json
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
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
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
2
|
+
"name": "peerbit",
|
|
3
|
+
"version": "4.1.22-e182140",
|
|
4
|
+
"description": "Peerbit client",
|
|
5
|
+
"author": "dao.xyz",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"type": "module",
|
|
9
|
+
"types": "./dist/src/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
"*": {
|
|
12
|
+
"*": [
|
|
13
|
+
"*",
|
|
14
|
+
"dist/*",
|
|
15
|
+
"dist/src/*",
|
|
16
|
+
"dist/src/*/index"
|
|
17
|
+
],
|
|
18
|
+
"src/*": [
|
|
19
|
+
"*",
|
|
20
|
+
"dist/*",
|
|
21
|
+
"dist/src/*",
|
|
22
|
+
"dist/src/*/index"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"src",
|
|
28
|
+
"dist",
|
|
29
|
+
"!dist/e2e",
|
|
30
|
+
"!dist/test",
|
|
31
|
+
"!**/*.tsbuildinfo"
|
|
32
|
+
],
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/src/index.d.ts",
|
|
36
|
+
"import": "./dist/src/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"eslintConfig": {
|
|
40
|
+
"extends": "peerbit",
|
|
41
|
+
"parserOptions": {
|
|
42
|
+
"project": true,
|
|
43
|
+
"sourceType": "module"
|
|
44
|
+
},
|
|
45
|
+
"ignorePatterns": [
|
|
46
|
+
"!.aegir.js",
|
|
47
|
+
"test/ts-use",
|
|
48
|
+
"*.d.ts"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/dao-xyz/peerbit"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=18"
|
|
60
|
+
},
|
|
61
|
+
"browser": {
|
|
62
|
+
"./dist/src/transports.js": "./dist/src/transports.browser.js"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@dao-xyz/borsh": "^5.2.3",
|
|
66
|
+
"@peerbit/any-store": "2.1.7-e182140",
|
|
67
|
+
"@peerbit/crypto": "2.3.6-e182140",
|
|
68
|
+
"@peerbit/logger": "1.0.3-e182140",
|
|
69
|
+
"@peerbit/program": "5.1.8-e182140",
|
|
70
|
+
"@peerbit/pubsub": "3.0.23-e182140",
|
|
71
|
+
"@peerbit/blocks": "2.2.7-e182140",
|
|
72
|
+
"@peerbit/indexer-simple": "1.1.11-e182140",
|
|
73
|
+
"@peerbit/indexer-sqlite3": "1.2.15-e182140",
|
|
74
|
+
"datastore-level": "^11.0.1",
|
|
75
|
+
"@chainsafe/libp2p-yamux": "^7.0.1",
|
|
76
|
+
"@libp2p/webrtc": "^5.2.0",
|
|
77
|
+
"@libp2p/websockets": "^9.2.0",
|
|
78
|
+
"@libp2p/identify": "^3.0.20",
|
|
79
|
+
"@libp2p/circuit-relay-v2": "^3.2.0",
|
|
80
|
+
"@libp2p/tcp": "^10.1.0",
|
|
81
|
+
"level": "^8.0.1",
|
|
82
|
+
"memory-level": "^1.0.0",
|
|
83
|
+
"path-browserify": "^1.0.1"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"p-each-series": "^3.0.0",
|
|
87
|
+
"p-map-series": "^3.0.0",
|
|
88
|
+
"@types/path-browserify": "^1.0.2"
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"clean": "aegir clean",
|
|
92
|
+
"build": "aegir build --no-bundle",
|
|
93
|
+
"test": "aegir test",
|
|
94
|
+
"test:browser": "aegir clean && aegir test -t browser",
|
|
95
|
+
"test:node": "aegir clean && aegir test -t node",
|
|
96
|
+
"lint": "aegir lint"
|
|
97
|
+
},
|
|
98
|
+
"localMaintainers": [
|
|
99
|
+
"dao.xyz"
|
|
100
|
+
],
|
|
101
|
+
"keywords": [
|
|
102
|
+
"crdt",
|
|
103
|
+
"database",
|
|
104
|
+
"distributed",
|
|
105
|
+
"decentralised",
|
|
106
|
+
"distributed",
|
|
107
|
+
"ipfs",
|
|
108
|
+
"p2p",
|
|
109
|
+
"peer-to-peer"
|
|
110
|
+
]
|
|
111
111
|
}
|