{
  "name": "bittorrent-tracker",
  "description": "Simple, robust, BitTorrent tracker (client & server) implementation",
  "version": "11.2.3",
  "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": {
    "@thaunknown/simple-peer": "^10.0.8",
    "@thaunknown/simple-websocket": "^9.1.3",
    "bencode": "^4.0.0",
    "bittorrent-peerid": "^2.0.0",
    "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.11",
    "magnet-uri": "7.0.8",
    "semantic-release": "25.0.3",
    "standard": "*",
    "tape": "5.9.0",
    "undici": "^6.16.1",
    "webrtc-polyfill": "^1.1.5",
    "webtorrent-fixtures": "2.0.3"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "exports": {
    ".": {
      "import": "./index.js"
    },
    "./client": {
      "import": "./client.js"
    },
    "./server": {
      "import": "./server.js"
    },
    "./websocket-tracker": {
      "import": "./lib/client/websocket-tracker.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"
  }
}
