forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.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
{
"name": "ipfs-http-response",
"version": "3.0.4",
"description": "Creates an HTTP response from an IPFS Hash",
"author": "Vasco Santos <[email protected]>",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-http-response#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"bugs": {
"url": "https://github.com/ipfs/js-ipfs/issues"
},
"keywords": [
"http",
"ipfs",
"response"
],
"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"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"lint": "aegir lint",
"clean": "aegir clean",
"build": "aegir build --no-bundle",
"test": "aegir test -t node",
"test:node": "aegir test -t node --cov",
"dep-check": "aegir dep-check -i global"
},
"dependencies": {
"@libp2p/logger": "^2.0.0",
"ejs": "^3.1.6",
"file-type": "^17.1.1",
"filesize": "^9.0.11",
"it-buffer": "^0.1.1",
"it-concat": "^2.0.0",
"it-map": "^1.0.6",
"it-reader": "^6.0.1",
"it-to-stream": "^1.0.0",
"mime-types": "^2.1.30",
"p-try-each": "^1.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/mime-types": "^2.1.1",
"aegir": "^37.0.11",
"get-stream": "^6.0.0",
"ipfs-core": "^0.15.0",
"ipfsd-ctl": "^12.0.0",
"it-all": "^1.0.4",
"uint8arrays": "^3.0.0"
},
"browser": {
"file-type": "file-type/browser",
"fs": false
}
}