bittorrent-tracker/package.json
semantic-release-bot df39fed6fa chore(release): 10.0.1
## [10.0.1](https://github.com/webtorrent/bittorrent-tracker/compare/v10.0.0...v10.0.1) (2022-12-07)

### Bug Fixes

* **deps:** update dependency bencode to v3 ([#434](https://github.com/webtorrent/bittorrent-tracker/issues/434)) [skip ci] ([926ceee](926ceee0ba))
* **deps:** update dependency string2compact to v2 ([#437](https://github.com/webtorrent/bittorrent-tracker/issues/437)) ([9be843c](9be843c5e4))
2022-12-07 16:43:39 +00:00

117 lines
2.6 KiB
JSON

{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "10.0.1",
"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,
"socks": false
},
"chromeapp": {
"./server.js": false,
"dgram": "chrome-dgram",
"socks": false
},
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
},
"type": "module",
"dependencies": {
"bencode": "^3.0.0",
"bittorrent-peerid": "^1.3.3",
"bn.js": "^5.2.0",
"chrome-dgram": "^3.0.6",
"clone": "^2.0.0",
"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.3",
"random-iterate": "^1.0.1",
"randombytes": "^2.1.0",
"run-parallel": "^1.2.0",
"run-series": "^1.1.9",
"simple-get": "^4.0.0",
"simple-peer": "^9.11.0",
"simple-websocket": "^9.1.0",
"socks": "^2.0.0",
"string2compact": "^2.0.0",
"unordered-array-remove": "^1.0.2",
"ws": "^7.4.5"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.8",
"magnet-uri": "6.2.0",
"semantic-release": "19.0.5",
"standard": "*",
"tape": "5.6.1",
"webtorrent-fixtures": "2.0.0",
"wrtc": "0.4.7"
},
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"keywords": [
"bittorrent",
"p2p",
"peer",
"peer-to-peer",
"stream",
"torrent",
"tracker",
"wire"
],
"license": "MIT",
"main": "index.js",
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5"
},
"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"
}
}