2014-03-26 08:17:54 +00:00
|
|
|
{
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2023-05-25 17:21:37 +00:00
|
|
|
"version": "10.0.3",
|
2014-03-26 08:17:54 +00:00
|
|
|
"author": {
|
2020-05-17 19:38:46 +00:00
|
|
|
"name": "WebTorrent LLC",
|
2017-04-14 19:50:19 +00:00
|
|
|
"email": "feross@webtorrent.io",
|
|
|
|
"url": "https://webtorrent.io"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
2015-03-20 04:52:58 +00:00
|
|
|
"bin": {
|
|
|
|
"bittorrent-tracker": "./bin/cmd.js"
|
|
|
|
},
|
2015-03-24 08:52:21 +00:00
|
|
|
"browser": {
|
2015-10-24 00:31:34 +00:00
|
|
|
"./lib/common-node.js": false,
|
|
|
|
"./lib/client/http-tracker.js": false,
|
|
|
|
"./lib/client/udp-tracker.js": false,
|
2021-08-20 21:08:36 +00:00
|
|
|
"./server.js": false,
|
|
|
|
"socks": false
|
2015-03-24 08:52:21 +00:00
|
|
|
},
|
2019-08-08 01:39:04 +00:00
|
|
|
"chromeapp": {
|
|
|
|
"./server.js": false,
|
2021-09-01 18:27:58 +00:00
|
|
|
"dgram": "chrome-dgram",
|
|
|
|
"socks": false
|
2019-08-08 01:39:04 +00:00
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"bugs": {
|
2017-04-14 19:50:19 +00:00
|
|
|
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
2022-12-05 22:06:54 +00:00
|
|
|
"type": "module",
|
2014-03-26 08:17:54 +00:00
|
|
|
"dependencies": {
|
2023-05-25 17:18:36 +00:00
|
|
|
"@thaunknown/simple-websocket": "^9.1.0",
|
2023-02-01 02:43:44 +00:00
|
|
|
"bencode": "^3.0.3",
|
2021-05-24 04:25:19 +00:00
|
|
|
"bittorrent-peerid": "^1.3.3",
|
2021-05-24 04:25:06 +00:00
|
|
|
"chrome-dgram": "^3.0.6",
|
2021-10-29 14:37:52 +00:00
|
|
|
"clone": "^2.0.0",
|
2020-05-10 18:38:35 +00:00
|
|
|
"compact2string": "^1.4.1",
|
|
|
|
"debug": "^4.1.1",
|
|
|
|
"ip": "^1.1.5",
|
|
|
|
"lru": "^3.1.0",
|
|
|
|
"minimist": "^1.2.5",
|
|
|
|
"once": "^1.4.0",
|
2021-05-24 04:25:19 +00:00
|
|
|
"queue-microtask": "^1.2.3",
|
2015-05-19 11:32:09 +00:00
|
|
|
"random-iterate": "^1.0.1",
|
2021-05-24 04:25:37 +00:00
|
|
|
"run-parallel": "^1.2.0",
|
2021-05-24 04:25:13 +00:00
|
|
|
"run-series": "^1.1.9",
|
2020-05-15 18:22:22 +00:00
|
|
|
"simple-get": "^4.0.0",
|
2021-05-24 04:25:19 +00:00
|
|
|
"simple-peer": "^9.11.0",
|
2021-09-02 11:40:52 +00:00
|
|
|
"socks": "^2.0.0",
|
2022-12-07 16:40:29 +00:00
|
|
|
"string2compact": "^2.0.0",
|
2023-05-26 16:54:30 +00:00
|
|
|
"uint8-util": "^2.1.9",
|
2017-02-14 01:27:16 +00:00
|
|
|
"unordered-array-remove": "^1.0.2",
|
2023-02-01 14:19:06 +00:00
|
|
|
"ws": "^8.0.0"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-30 03:17:11 +00:00
|
|
|
"@mapbox/node-pre-gyp": "1.0.10",
|
2023-05-08 11:04:24 +00:00
|
|
|
"@webtorrent/semantic-release-config": "1.0.9",
|
2023-04-02 20:43:54 +00:00
|
|
|
"magnet-uri": "7.0.3",
|
2023-03-18 20:39:04 +00:00
|
|
|
"semantic-release": "20.1.3",
|
2016-08-26 01:56:49 +00:00
|
|
|
"standard": "*",
|
2023-01-17 02:30:17 +00:00
|
|
|
"tape": "5.6.3",
|
2023-02-01 02:43:44 +00:00
|
|
|
"webtorrent-fixtures": "2.0.2",
|
2021-05-31 03:38:08 +00:00
|
|
|
"wrtc": "0.4.7"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
2019-08-05 21:54:20 +00:00
|
|
|
"engines": {
|
2022-12-05 22:06:54 +00:00
|
|
|
"node": ">=12.20.0"
|
|
|
|
},
|
|
|
|
"exports": {
|
|
|
|
"import": "./index.js"
|
2017-03-03 13:00:55 +00:00
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"keywords": [
|
|
|
|
"bittorrent",
|
|
|
|
"p2p",
|
2015-12-21 22:35:24 +00:00
|
|
|
"peer",
|
|
|
|
"peer-to-peer",
|
|
|
|
"stream",
|
|
|
|
"torrent",
|
|
|
|
"tracker",
|
|
|
|
"wire"
|
2014-03-26 08:17:54 +00:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "index.js",
|
2019-08-05 21:54:20 +00:00
|
|
|
"optionalDependencies": {
|
2021-05-24 02:27:48 +00:00
|
|
|
"bufferutil": "^4.0.3",
|
2021-05-24 12:43:18 +00:00
|
|
|
"utf-8-validate": "^5.0.5"
|
2019-08-05 21:54:20 +00:00
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-04-14 19:50:19 +00:00
|
|
|
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-07-02 23:27:08 +00:00
|
|
|
"preversion": "npm run update-authors",
|
2019-08-05 21:54:20 +00:00
|
|
|
"test": "standard && tape test/*.js",
|
|
|
|
"update-authors": "./tools/update-authors.sh"
|
2020-05-17 19:38:46 +00:00
|
|
|
},
|
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/feross"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "patreon",
|
|
|
|
"url": "https://www.patreon.com/feross"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "consulting",
|
|
|
|
"url": "https://feross.org/support"
|
|
|
|
}
|
2021-05-24 02:23:55 +00:00
|
|
|
],
|
|
|
|
"renovate": {
|
|
|
|
"extends": [
|
|
|
|
"github>webtorrent/renovate-config"
|
2021-05-24 12:45:14 +00:00
|
|
|
]
|
2021-06-15 01:47:25 +00:00
|
|
|
},
|
|
|
|
"release": {
|
|
|
|
"extends": "@webtorrent/semantic-release-config"
|
2021-05-24 02:27:30 +00:00
|
|
|
}
|
2014-03-27 07:36:52 +00:00
|
|
|
}
|