forked from mpetrunic/js-libp2p-interfaces
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.04 KB
/
package.json
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
111
112
113
114
115
116
117
{
"name": "libp2p-interfaces",
"version": "3.0.0",
"description": "Interfaces for JS Libp2p",
"type": "module",
"files": [
"src",
"dist"
],
"typesVersions": {
"*": {
"*": [
"dist/src/*",
"dist/src/*/index"
]
}
},
"eslintConfig": {
"extends": "ipfs"
},
"scripts": {
"lint": "aegir lint",
"dep-check": "aegir dep-check dist/src/**/*.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/js-libp2p-interfaces.git"
},
"keywords": [
"libp2p",
"interface"
],
"author": "",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-interfaces/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/libp2p-interfaces#readme",
"dependencies": {
"multiaddr": "^10.0.0",
"multiformats": "^9.4.10"
},
"devDependencies": {
"aegir": "^36.0.0"
},
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./connection": {
"import": "./dist/src/connection/index.js",
"types": "./dist/src/connection/index.d.ts"
},
"./connection/status": {
"import": "./dist/src/connection/status.js",
"types": "./dist/src/connection/status.d.ts"
},
"./content-routing": {
"import": "./dist/src/content-routing/index.js",
"types": "./dist/src/content-routing/index.d.ts"
},
"./crypto": {
"import": "./dist/src/crypto/index.js",
"types": "./dist/src/crypto/index.d.ts"
},
"./crypto/errors": {
"import": "./dist/src/crypto/errors.js",
"types": "./dist/src/crypto/errors.d.ts"
},
"./dht": {
"import": "./dist/src/dht/index.js",
"types": "./dist/src/dht/index.d.ts"
},
"./keys": {
"import": "./dist/src/keys/index.js",
"types": "./dist/src/keys/index.d.ts"
},
"./peer-discovery": {
"import": "./dist/src/peer-discovery/index.js",
"types": "./dist/src/peer-discovery/index.d.ts"
},
"./peer-id": {
"import": "./dist/src/peer-id/index.js",
"types": "./dist/src/peer-id/index.d.ts"
},
"./peer-routing": {
"import": "./dist/src/peer-routing/index.js",
"types": "./dist/src/peer-routing/index.d.ts"
},
"./pubsub": {
"import": "./dist/src/pubsub/index.js",
"types": "./dist/src/pubsub/index.d.ts"
},
"./record": {
"import": "./dist/src/record/index.js",
"types": "./dist/src/record/index.d.ts"
},
"./stream-muxer": {
"import": "./dist/src/stream-muxer/index.js",
"types": "./dist/src/stream-muxer/index.d.ts"
},
"./topology": {
"import": "./dist/src/topology/index.js",
"types": "./dist/src/topology/index.d.ts"
},
"./transport": {
"import": "./dist/src/transport/index.js",
"types": "./dist/src/transport/index.d.ts"
},
"./value-store": {
"import": "./dist/src/value-store/index.js",
"types": "./dist/src/value-store/index.d.ts"
}
}
}