-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@canvas-js/libp2p-rendezvous",
"version": "0.2.1",
"type": "module",
"author": "Canvas Technologies, Inc. (https://canvas.xyz)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"generate": "protons ./src/protocol/message.proto",
"build": "tsc --build tsconfig.json test/tsconfig.json",
"dev": "tsc --build tsconfig.json test/tsconfig.json --watch",
"clean": "tsc --build tsconfig.json test/tsconfig.json --clean",
"test": "ava --serial"
},
"exports": {
"./protocol": "./lib/protocol/index.js",
"./client": "./lib/client/index.js",
"./server": "./lib/server/index.js"
},
"dependencies": {
"@libp2p/interface": "^2.2.1",
"@libp2p/interface-internal": "^2.1.1",
"@libp2p/logger": "^5.1.4",
"@libp2p/peer-id": "^5.0.8",
"@libp2p/peer-record": "^8.0.12",
"@multiformats/multiaddr": "^12.3.3",
"@types/better-sqlite3": "^7.6.12",
"better-sqlite3": "^11.6.0",
"it-length-prefixed": "^9.1.0",
"it-pipe": "^3.0.1",
"it-pushable": "^3.2.3",
"protons-runtime": "^5.5.0",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@libp2p/crypto": "^5.0.7",
"@libp2p/identify": "^3.0.12",
"@libp2p/websockets": "^9.0.13",
"ava": "^6.2.0",
"libp2p": "^2.3.1",
"prettier": "^3.4.1",
"protons": "^7.6.0",
"typescript": "^5.7.2"
}
}