-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.25 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
{
"name": "go-libp2p",
"version": "0.0.6",
"description": "Install the latest go-libp2p binary",
"author": "Protocol Labs, Inc.",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/libp2p/npm-go-libp2p#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/npm-go-libp2p.git"
},
"bugs": {
"url": "https://github.com/libp2p/npm-go-libp2p/issues"
},
"keywords": [
"install",
"libp2p"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"bin": {
"go-libp2p": "bin/p2pd"
},
"type": "module",
"types": "./dist/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
],
"src/*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
]
}
},
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": [
"bin/*"
]
},
"scripts": {
"postinstall": "node src/post-install.js",
"restore-bin": "git reset -- bin/p2pd && git checkout -- bin/p2pd",
"test": "npm run test:node",
"test:node": "aegir test -t node",
"lint": "aegir lint",
"dep-check": "aegir dep-check -i pre-commit",
"release": "aegir release",
"build": "aegir build --bundle false"
},
"dependencies": {
"blockstore-core": "^5.0.0",
"browser-readablestream-to-it": "^2.0.7",
"cachedir": "^2.3.0",
"delay": "^6.0.0",
"gunzip-maybe": "^1.4.2",
"ipfs-unixfs-importer": "^15.1.5",
"it-last": "^3.0.2",
"it-to-buffer": "^4.0.7",
"multiformats": "^13.1.0",
"p-retry": "^6.2.0",
"package-config": "^5.0.0",
"tar-fs": "^3.0.6",
"tar-stream": "^3.1.7",
"uint8arrays": "^5.0.3",
"unzip-stream": "^0.3.0"
},
"devDependencies": {
"@types/gunzip-maybe": "^1.4.0",
"@types/tar-fs": "^2.0.1",
"@types/unzip-stream": "^0.3.1",
"aegir": "^44.1.1",
"execa": "^9.1.0",
"pre-commit": "^1.2.2"
},
"pre-commit": "restore-bin"
}