-
-
Notifications
You must be signed in to change notification settings - Fork 319
/
package.json
124 lines (124 loc) · 2.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "11.1.2",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bin": {
"bittorrent-tracker": "./bin/cmd.js"
},
"browser": {
"./lib/common-node.js": false,
"./lib/client/http-tracker.js": false,
"./lib/client/udp-tracker.js": false,
"./server.js": false,
"socks": false
},
"chromeapp": {
"./server.js": false,
"dgram": "chrome-dgram",
"socks": false
},
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
},
"type": "module",
"dependencies": {
"@thaunknown/simple-peer": "^10.0.8",
"@thaunknown/simple-websocket": "^9.1.3",
"bencode": "^4.0.0",
"bittorrent-peerid": "^1.3.6",
"chrome-dgram": "^3.0.6",
"compact2string": "^1.4.1",
"cross-fetch-ponyfill": "^1.0.3",
"debug": "^4.3.4",
"ip": "^2.0.1",
"lru": "^3.1.0",
"minimist": "^1.2.8",
"once": "^1.4.0",
"queue-microtask": "^1.2.3",
"random-iterate": "^1.0.1",
"run-parallel": "^1.2.0",
"run-series": "^1.1.9",
"socks": "^2.8.3",
"string2compact": "^2.0.1",
"uint8-util": "^2.2.5",
"unordered-array-remove": "^1.0.2",
"ws": "^8.17.0"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "1.0.11",
"@webtorrent/semantic-release-config": "1.0.10",
"magnet-uri": "7.0.5",
"semantic-release": "21.1.2",
"standard": "*",
"tape": "5.9.0",
"undici": "^6.16.1",
"webrtc-polyfill": "^1.1.5",
"webtorrent-fixtures": "2.0.2"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"import": "./index.js"
},
"./client": {
"import": "./client.js"
},
"./server": {
"import": "./server.js"
}
},
"keywords": [
"bittorrent",
"p2p",
"peer",
"peer-to-peer",
"stream",
"torrent",
"tracker",
"wire"
],
"license": "MIT",
"main": "index.js",
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
},
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
},
"scripts": {
"preversion": "npm run update-authors",
"test": "standard && tape test/*.js",
"update-authors": "./tools/update-authors.sh"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}