-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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": "@stabilityprotocol/p2p",
"version": "1.2.0",
"source": "src/index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "[email protected]:stabilityprotocol/p2p.git",
"author": "[email protected]",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --detectOpenHandles --forceExit",
"test:dev": "node --experimental-vm-modules ./node_modules/.bin/jest --detectOpenHandles --forceExit --watch"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"p-event": "^5.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^6.2.0",
"@chainsafe/libp2p-noise": "^11.0.4",
"@libp2p/bootstrap": "^6.0.3",
"@libp2p/kad-dht": "^8.0.9",
"@libp2p/mplex": "^7.1.3",
"@libp2p/pubsub-peer-discovery": "^8.0.2",
"@libp2p/tcp": "^6.2.2",
"@libp2p/websockets": "^6.0.0",
"debug": "^4.3.4",
"libp2p": "^0.44.0",
"uint8arrays": "^4.0.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}