{ "name": "webtorrent", "description": "Streaming torrent client", "version": "0.110.1", "author": { "name": "WebTorrent LLC", "email": "feross@webtorrent.io", "url": "https://webtorrent.io" }, "browser": { "./lib/server.js": false, "./lib/conn-pool.js": false, "bittorrent-dht/client": false, "fs-chunk-store": "memory-chunk-store", "load-ip-set": false, "net": false, "os": false, "ut_pex": false, "utp-native": false }, "browserify": { "transform": [ "package-json-versionify" ] }, "bugs": { "url": "https://github.com/webtorrent/webtorrent/issues" }, "chromeapp": { "fs-chunk-store": "memory-chunk-store", "http": "http-node", "load-ip-set": false, "net": "chrome-net", "os": false, "utp-native": false }, "dependencies": { "addr-to-ip-port": "^1.5.1", "bitfield": "^4.0.0", "bittorrent-dht": "^10.0.0", "bittorrent-protocol": "^3.2.0", "chrome-net": "^3.3.4", "chunk-store-stream": "^4.1.1", "create-torrent": "^4.4.2", "debug": "^4.2.0", "end-of-stream": "1.4.1", "escape-html": "^1.0.3", "fs-chunk-store": "^2.0.2", "http-node": "github:feross/http-node#webtorrent", "immediate-chunk-store": "^2.1.1", "load-ip-set": "^2.1.1", "memory-chunk-store": "^1.3.0", "mime": "^2.4.6", "multistream": "^4.0.1", "package-json-versionify": "^1.0.4", "parse-torrent": "^9.0.0", "pump": "^3.0.0", "random-iterate": "^1.0.1", "randombytes": "^2.1.0", "range-parser": "^1.2.1", "readable-stream": "^3.6.0", "render-media": "^3.4.3", "run-parallel": "^1.1.10", "run-parallel-limit": "^1.0.6", "simple-concat": "^1.0.1", "simple-get": "^4.0.0", "simple-peer": "^9.8.0", "simple-sha1": "^3.0.1", "speedometer": "^1.1.0", "stream-to-blob": "^2.0.1", "stream-to-blob-url": "^3.0.2", "stream-with-known-length-to-buffer": "^1.0.4", "torrent-discovery": "^9.4.0", "torrent-piece": "^2.0.0", "unordered-array-remove": "^1.0.2", "ut_metadata": "^3.5.2", "ut_pex": "^2.0.1", "utp-native": "^2.2.1" }, "devDependencies": { "airtap": "^3.0.0", "babel-minify": "^0.5.1", "bittorrent-tracker": "^9.15.0", "browserify": "^17.0.0", "disc": "^1.3.3", "electron": "^10.1.5", "finalhandler": "^1.1.2", "network-address": "^1.1.2", "run-series": "^1.1.9", "serve-static": "^1.14.1", "standard": "*", "tape": "^5.0.1", "webtorrent-fixtures": "^1.7.3" }, "engines": { "node": ">=10" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "homepage": "https://webtorrent.io", "keywords": [ "bittorrent", "bittorrent client", "download", "mad science", "p2p", "peer-to-peer", "peers", "streaming", "swarm", "torrent", "web torrent", "webrtc", "webrtc data", "webtorrent" ], "license": "MIT", "main": "index.js", "repository": { "type": "git", "url": "git://github.com/webtorrent/webtorrent.git" }, "scripts": { "build": "npm run build-js && npm run build-chromeapp", "build-chromeapp": "browserify --browser-field=chromeapp --standalone WebTorrent . | minify --mangle=false > webtorrent.chromeapp.js", "build-chromeapp-debug": "browserify --browser-field=chromeapp --standalone WebTorrent . > webtorrent.chromeapp.js", "build-js": "browserify --standalone WebTorrent . | minify --mangle=false > webtorrent.min.js", "build-js-debug": "browserify --standalone WebTorrent . > webtorrent.debug.js", "size": "npm run size-js && npm run size-disc", "size-disc": "browserify --full-paths . | discify --open", "size-js": "npm run build && cat webtorrent.min.js | gzip | wc -c", "test": "standard && npm run test-node && npm run test-browser", "test-browser": "airtap -- test/*.js test/browser/*.js", "test-browser-local": "airtap --local -- test/*.js test/browser/*.js", "test-node": "tape test/*.js test/node/*.js", "update-authors": "./scripts/update-authors.sh" }, "standard": { "ignore": [ "webtorrent.min.js", "webtorrent.chromeapp.js" ] } }