-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 869 Bytes
/
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
{
"name": "y-libp2p",
"version": "0.0.2",
"description": "js-libp2p provider for yjs",
"main": "dist/index.js",
"author": "marcopolo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@chainsafe/libp2p-noise": "^4.1.1",
"@types/jest": "^27.0.3",
"babel-jest": "^27.4.2",
"jest": "^27.4.3",
"libp2p-gossipsub": "^0.11.4",
"libp2p-mplex": "^0.10.4",
"libp2p-websockets": "^0.16.2",
"multiaddr": "^10.0.1",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"build-watch": "tsc -w"
},
"dependencies": {
"y-protocols": "^1.0.x",
"peer-id": ">=0.16.0"
},
"peerDependencies": {
"yjs": "13.5.x",
"libp2p": ">=0.33.0"
}
}