├── .github ├── poster.png └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── package.json ├── src ├── bin.mts ├── types │ └── memory-chunk-store.d.ts ├── webtorrent.node.ts └── webtorrent.ts └── tsconfig.json /.github/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/.github/poster.png -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/package.json -------------------------------------------------------------------------------- /src/bin.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/src/bin.mts -------------------------------------------------------------------------------- /src/types/memory-chunk-store.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/src/types/memory-chunk-store.d.ts -------------------------------------------------------------------------------- /src/webtorrent.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/src/webtorrent.node.ts -------------------------------------------------------------------------------- /src/webtorrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/src/webtorrent.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrxdst/webtorrent-mpv-hook/HEAD/tsconfig.json --------------------------------------------------------------------------------