-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "helia-typescript",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Building Helia with TypeScript",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "npm run build && test-node-example test/*"
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "ESNext"
}
},
"dependencies": {
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.1",
"@helia/unixfs": "^3.0.0",
"@libp2p/bootstrap": "^10.0.12",
"@libp2p/circuit-relay-v2": "^1.1.2",
"@libp2p/echo": "^1.1.2",
"@libp2p/identify": "^1.0.14",
"@libp2p/peer-id": "^4.2.1",
"@libp2p/peer-id-factory": "^4.2.1",
"@libp2p/tcp": "^9.0.12",
"@libp2p/tls": "^1.1.2",
"@multiformats/multiaddr": "^12.3.0",
"blockstore-core": "^4.4.1",
"blockstore-level": "^1.1.8",
"datastore-core": "^9.1.1",
"datastore-level": "^10.1.8",
"delay": "^6.0.0",
"express": "^4.19.2",
"helia": "^4.0.1",
"it-pipe": "^3.0.1",
"level": "^8.0.1",
"libp2p": "^1.2.0"
},
"devDependencies": {
"test-ipfs-example": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}