forked from mpetrunic/js-libp2p-interfaces
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.36 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
{
"name": "libp2p-connection",
"version": "0.2.0",
"description": "JS Libp2p connections",
"type": "module",
"files": [
"src",
"dist"
],
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"*",
"*/index",
"dist/src/*",
"dist/src/*/index"
]
}
},
"eslintConfig": {
"extends": "ipfs"
},
"scripts": {
"lint": "aegir lint",
"dep-check": "aegir dep-check dist/src/**/*.js",
"pretest": "npm run build",
"build": "tsc",
"test": "aegir test -f ./dist/test/*.js"
},
"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-connection#readme",
"dependencies": {
"err-code": "^3.0.1",
"libp2p-interfaces": "^3.0.0",
"multiaddr": "^10.0.1",
"peer-id": "^0.16.0"
},
"devDependencies": {
"aegir": "^36.0.0"
},
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./status": {
"import": "./dist/src/status.js",
"types": "./dist/src/status.d.ts"
}
}
}