-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
123 lines (123 loc) · 3.25 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
123
{
"name": "@tabcat/zzzync",
"version": "5.0.0",
"description": "replication protocol over IPLD, IPNS, and IPFS Provider Records",
"type": "module",
"types": "./dist/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
],
"src/*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
]
}
},
"files": [
"dist/src",
"!**/*.tsbuildinfo"
],
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./advertisers/dht": {
"types": "./dist/src/advertisers/dht.d.ts",
"import": "./dist/src/advertisers/dht.js"
},
"./namers/w3": {
"types": "./dist/src/namers/w3.d.ts",
"import": "./dist/src/namers/w3.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"build": "rm -rf dist .aegir.js && aegir build && ln -sf ./dist/test/aegir.js ./.aegir.js",
"docs": "aegir docs",
"test": "npm run test:node",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabcat/zzzync.git"
},
"keywords": [
"IPFS",
"IPLD",
"IPNS",
"DHT",
"replication"
],
"author": "tabcat <tabcat00@proton.me>",
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/tabcat/zzzync/issues"
},
"homepage": "https://github.com/tabcat/zzzync#readme",
"typedoc": {
"entryPoint": "./src/index.ts"
},
"browser": {
"./dist/test/utils/create-libp2p.js": "./dist/test/utils/create-libp2p.browser.js"
},
"devDependencies": {
"@chainsafe/libp2p-noise": "^14.1.0",
"@chainsafe/libp2p-yamux": "^6.0.1",
"@libp2p/circuit-relay-v2": "^1.0.10",
"@libp2p/identify": "^1.0.9",
"@libp2p/peer-id-factory": "^4.0.3",
"@libp2p/tcp": "^9.0.10",
"@libp2p/webrtc": "^4.0.14",
"aegir": "^42.1.0",
"blockstore-core": "^4.3.10",
"go-ipfs": "^0.22.0",
"helia": "^3.0.0",
"ipfsd-ctl": "^13.0.0",
"kubo-rpc-client": "^3.0.2",
"merge-options": "^3.0.4",
"wherearewe": "^2.0.1"
},
"dependencies": {
"@helia/interface": "^3.0.0",
"@helia/ipns": "^4.0.0",
"@ipld/car": "^5.2.5",
"@libp2p/crypto": "^3.0.4",
"@libp2p/interface": "^1.1.1",
"@libp2p/kad-dht": "^12.0.2",
"@libp2p/websockets": "^8.0.10",
"@multiformats/multiaddr": "^12.1.12",
"datastore-core": "^9.2.7",
"interface-blockstore": "^5.2.9",
"interface-blockstore-tests": "^6.1.9",
"interface-datastore": "^8.2.10",
"interface-store": "^5.1.7",
"it-drain": "^3.0.5",
"libp2p": "^1.1.1",
"multiformats": "^13.0.0",
"uint8arrays": "^5.0.1",
"w3name": "^1.0.8",
"web3.storage": "^4.5.5"
}
}