-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "ipns-publisher-api",
"version": "1.0.0",
"description": "A Helia node with a custom API for publishing IPNS names",
"main": "index.js",
"type": "module",
"ts-node": {
"esm": true
},
"scripts": {
"start": "ts-node-esm src/index.ts",
"dev": "nodemon --exec ts-node-esm src/index.ts",
"build": "tsc"
},
"author": "",
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^6.2.0",
"@chainsafe/libp2p-noise": "^11.0.1",
"@chainsafe/libp2p-yamux": "^3.0.7",
"@helia/ipns": "^1.0.1",
"@helia/unixfs": "^1.2.1",
"@libp2p/bootstrap": "^6.0.3",
"@libp2p/kad-dht": "^8.0.1",
"@libp2p/peer-id": "^2.0.3",
"@libp2p/tcp": "^6.1.4",
"@libp2p/websockets": "^5.0.7",
"blockstore-core": "^4.1.0",
"datastore-core": "^9.1.0",
"datastore-level": "10.1.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"fastify-plugin": "^4.5.0",
"helia": "1.0.0",
"ipfs-unixfs-importer": "^15.1.1",
"ipns": "^6.0.0",
"libp2p": "^0.43.2",
"multiformats": "^11.0.2"
},
"devDependencies": {
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}