forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.88 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
118
119
120
121
122
{
"name": "ipfs-cli",
"version": "0.13.5",
"description": "JavaScript implementation of the IPFS specification",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"bugs": {
"url": "https://github.com/ipfs/js-ipfs/issues"
},
"keywords": [
"IPFS"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"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"
},
"./utils": {
"types": "./src/utils.d.ts",
"import": "./src/utils.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"lint": "aegir lint",
"test": "aegir test -t node --cov",
"test:node": "aegir test -t node --cov",
"clean": "aegir clean",
"dep-check": "aegir dep-check -i ipfs-core-types",
"build": "aegir build --no-bundle"
},
"dependencies": {
"@ipld/dag-cbor": "^7.0.0",
"@ipld/dag-json": "^8.0.1",
"@ipld/dag-pb": "^2.1.3",
"@libp2p/logger": "^2.0.0",
"@libp2p/peer-id": "^1.1.10",
"@multiformats/mafmt": "^11.0.2",
"@multiformats/multiaddr": "^10.1.8",
"@multiformats/multiaddr-to-uri": "^9.0.1",
"byteman": "^1.3.5",
"execa": "^6.1.0",
"get-folder-size": "^4.0.0",
"ipfs-core": "^0.15.0",
"ipfs-core-types": "^0.11.0",
"ipfs-core-utils": "^0.15.0",
"ipfs-daemon": "^0.13.0",
"ipfs-http-client": "^57.0.0",
"ipfs-utils": "^9.0.6",
"it-concat": "^2.0.0",
"it-map": "^1.0.6",
"it-merge": "^1.0.3",
"it-pipe": "^2.0.3",
"it-split": "^1.0.0",
"it-tar": "^6.0.0",
"jsondiffpatch": "^0.4.1",
"multiformats": "^9.5.1",
"parse-duration": "^1.0.0",
"pretty-bytes": "^6.0.0",
"progress": "^2.0.3",
"stream-to-it": "^0.2.2",
"uint8arrays": "^3.0.0",
"yargs": "^17.4.0"
},
"devDependencies": {
"@libp2p/crypto": "^1.0.0",
"@types/get-folder-size": "^3.0.1",
"@types/ncp": "^2.0.5",
"@types/progress": "^2.0.3",
"@types/rimraf": "^3.0.1",
"@types/yargs": "^17.0.10",
"aegir": "^37.0.11",
"ipfs-repo": "^15.0.0",
"it-all": "^1.0.4",
"it-first": "^1.0.4",
"it-to-buffer": "^2.0.0",
"nanoid": "^4.0.0",
"ncp": "^2.0.0",
"pako": "^2.0.4",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"string-argv": "^0.3.1",
"temp-write": "^5.0.0"
}
}