forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.91 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
{
"name": "ipfs-daemon",
"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-daemon#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"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"lint": "aegir lint",
"test": "aegir test -t node",
"test:node": "aegir test -t node -- --exit",
"clean": "aegir clean",
"dep-check": "aegir dep-check -i ipfs-core-types -i @mapbox/node-pre-gyp",
"build": "aegir build --no-bundle"
},
"dependencies": {
"@libp2p/logger": "^2.0.0",
"@libp2p/webrtc-star": "^3.0.0",
"@mapbox/node-pre-gyp": "^1.0.5",
"ipfs-core": "^0.15.0",
"ipfs-core-types": "^0.11.0",
"ipfs-grpc-server": "^0.9.0",
"ipfs-http-gateway": "^0.10.0",
"ipfs-http-server": "^0.12.0",
"ipfs-utils": "^9.0.6",
"libp2p": "^0.38.0"
},
"devDependencies": {
"aegir": "^37.0.11",
"node-fetch": "^3.2.3",
"ws": "^8.5.0"
},
"optionalDependencies": {
"electron-webrtc": "^0.3.0",
"prom-client": "^14.0.1",
"wrtc": "^0.4.6"
}
}