forked from ipfs/helia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.93 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
{
"name": "helia",
"version": "5.1.0",
"description": "An implementation of IPFS in JavaScript",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/helia.git"
},
"bugs": {
"url": "https://github.com/ipfs/helia/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"IPFS"
],
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"doc-check": "aegir doc-check",
"build": "aegir build",
"test": "aegir test",
"test:chrome": "aegir test -t browser --cov",
"test:chrome-webworker": "aegir test -t webworker",
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"test:node": "aegir test -t node --cov",
"test:electron-main": "aegir test -t electron-main",
"prepublishOnly": "node scripts/update-version.js && npm run build"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.0",
"@helia/block-brokers": "^4.0.1",
"@helia/delegated-routing-v1-http-api-client": "^4.1.0",
"@helia/interface": "^5.0.0",
"@helia/routers": "^2.1.0",
"@helia/utils": "^1.0.1",
"@libp2p/autonat": "^2.0.0",
"@libp2p/bootstrap": "^11.0.0",
"@libp2p/circuit-relay-v2": "^3.0.0",
"@libp2p/crypto": "^5.0.0",
"@libp2p/dcutr": "^2.0.0",
"@libp2p/identify": "^3.0.0",
"@libp2p/interface": "^2.0.0",
"@libp2p/kad-dht": "^14.0.0",
"@libp2p/keychain": "^5.0.2",
"@libp2p/logger": "^5.0.0",
"@libp2p/mdns": "^11.0.0",
"@libp2p/mplex": "^11.0.0",
"@libp2p/ping": "^2.0.0",
"@libp2p/tcp": "^10.0.0",
"@libp2p/tls": "^2.0.1",
"@libp2p/upnp-nat": "^2.0.0",
"@libp2p/webrtc": "^5.0.0",
"@libp2p/websockets": "^9.0.0",
"@libp2p/webtransport": "^5.0.0",
"@multiformats/dns": "^1.0.1",
"blockstore-core": "^5.0.0",
"datastore-core": "^10.0.0",
"interface-blockstore": "^5.2.10",
"interface-datastore": "^8.2.11",
"ipns": "^10.0.0",
"libp2p": "^2.0.0",
"multiformats": "^13.1.0"
},
"devDependencies": {
"@multiformats/mafmt": "^12.1.6",
"@multiformats/multiaddr": "^12.1.14",
"aegir": "^45.0.1",
"it-all": "^3.0.4",
"it-drain": "^3.0.5"
},
"browser": {
"./dist/src/utils/libp2p-defaults.js": "./dist/src/utils/libp2p-defaults.browser.js"
},
"sideEffects": false
}