bittorrent-tracker/package.json

106 lines
2.3 KiB
JSON

{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "9.17.0",
"author": {
"name": "WebTorrent LLC",
"email": "feross@webtorrent.io",
"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
},
"chromeapp": {
"./server.js": false,
"dgram": "chrome-dgram"
},
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
},
"dependencies": {
"bencode": "^2.0.1",
"bittorrent-peerid": "^1.3.2",
"bn.js": "^5.1.1",
"chrome-dgram": "^3.0.4",
"compact2string": "^1.4.1",
"debug": "^4.1.1",
"ip": "^1.1.5",
"lru": "^3.1.0",
"minimist": "^1.2.5",
"once": "^1.4.0",
"queue-microtask": "^1.2.2",
"random-iterate": "^1.0.1",
"randombytes": "^2.1.0",
"run-parallel": "^1.2.0",
"run-series": "^1.1.8",
"simple-get": "^4.0.0",
"simple-peer": "^9.7.1",
"simple-websocket": "^9.0.0",
"string2compact": "^1.3.0",
"unordered-array-remove": "^1.0.2",
"ws": "^7.3.0"
},
"devDependencies": {
"magnet-uri": "^5.2.4",
"standard": "*",
"tape": "^5.0.0",
"webtorrent-fixtures": "^1.7.3",
"wrtc": "^0.4.4"
},
"engines": {
"node": ">=10"
},
"keywords": [
"bittorrent",
"p2p",
"peer",
"peer-to-peer",
"stream",
"torrent",
"tracker",
"wire"
],
"license": "MIT",
"main": "index.js",
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
},
"scripts": {
"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"
],
"lockFileMaintenance": {
"enabled": false
}
}
}