-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "ipns-publisher",
"version": "0.0.0",
"description": "IPNS publisher for w3name.",
"private": true,
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "run-p start:*",
"start:ipfs": "ipfs daemon --init --init-profile=server",
"start:publisher": "node src/index.js",
"start:inbound": "node src/server.js",
"test": "mocha --experimental-vm-modules --timeout 5000",
"lint": "standard"
},
"keywords": [
"IPNS",
"republisher",
"publisher",
"name",
"w3name"
],
"author": "Alan Shaw",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"debug": "^4.3.3",
"dotenv": "^15.0.0",
"format-number": "^3.0.0",
"ipns": "^1.0.1",
"kubo": "^0.32.1",
"kubo-rpc-client": "^5.0.2",
"libp2p-crypto": "^0.21.2",
"npm-run-all": "^4.1.5",
"p-queue": "^7.2.0",
"uint8arrays": "^3.0.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"assert": "^2.0.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"standard": "^16.0.4"
}
}