-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "js-ipfs-fetch",
"version": "5.1.0",
"description": "Use the same `fetch()` API browsers provide for HTTP, but for IPFS",
"type": "module",
"scripts": {
"lint": "standard --fix",
"test": "node test",
"test-browser": "browserify -d ./test | browser-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RangerMauve/js-ipfs-fetch.git"
},
"keywords": [
"ipfs",
"fetch",
"browser",
"p2p"
],
"author": "rangermauve <[email protected]> (https://mauve.moe/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RangerMauve/js-ipfs-fetch/issues"
},
"homepage": "https://github.com/RangerMauve/js-ipfs-fetch#readme",
"dependencies": {
"@ipld/dag-cbor": "^7.0.2",
"@ipld/dag-json": "^8.0.10",
"busboy": "^0.3.1",
"event-iterator": "^2.0.0",
"ipfs-unixfs-exporter": "^7.0.6",
"js-ipld-url": "^1.0.2",
"js-ipld-url-resolve": "^1.1.2",
"make-fetch": "^3.1.2",
"mime": "^2.4.6",
"multiformats": "^9.4.2",
"range-parser": "^1.2.1"
},
"devDependencies": {
"@rangermauve/fetch-event-source": "^1.0.3",
"browser-run": "^8.0.0",
"browserify": "^17.0.0",
"form-data": "^4.0.0",
"get-port": "^6.1.2",
"go-ipfs": "^0.17.0",
"ipfs-core": "^0.9.1",
"ipfs-http-client": "^60.0.0",
"ipfsd-ctl": "^13.0.0",
"standard": "^14.3.4",
"tape": "^5.0.1"
}
}