-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "cable-handshake.ts",
"version": "1.0.0",
"author": "Kira Oakley <[email protected]>",
"description": "TypeScript implementation of the Cable Handshake Protocol.",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"main": "dist/src/handshake.js",
"scripts": {
"test": "tsc && tape dist/test/*.js",
"test-integration": "cd test/integration && ./run.sh",
"build": "tsc",
"benchmark": "build && node dist/bench/messages.js && node dist/bench/handshakes.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cabal-club/cable-handshake.ts.git"
},
"keywords": [
"p2p",
"cable",
"cabal"
],
"bugs": {
"url": "https://github.com/cabal-club/cable-handshake.ts/issues"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/debug": "^4.1.12",
"@types/duplexer3": "^0.1.4",
"@types/node": "^20.10.6",
"@types/noise-handshake": "^3.0.3",
"@types/tape": "^5.6.4",
"duplexer3": "^1.0.0",
"get-port": "^7.0.0",
"tape": "^5.7.2",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/cabal-club/cable-handshake.ts",
"license": "AGPL-3.0-only",
"dependencies": {
"debug": "^4.3.4",
"noise-handshake": "^4.0.0"
}
}