├── .dockerignore ├── .github └── workflows │ └── publish-docker-image.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── compose.yaml ├── package.json ├── patches └── stremio-addon-sdk@1.6.10.patch ├── pnpm-lock.yaml ├── src ├── addon │ ├── manifest.ts │ ├── server.ts │ └── streams.ts ├── index.ts ├── router.ts ├── torrent │ ├── eztv.ts │ ├── insane.ts │ ├── itorrent.ts │ ├── jackett.ts │ ├── ncore.ts │ ├── search.ts │ ├── webtorrent.ts │ └── yts.ts └── utils │ ├── dotenv.ts │ ├── file.ts │ ├── https.ts │ ├── imdb.ts │ ├── language.ts │ ├── quality.ts │ └── shows.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/publish-docker-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/.github/workflows/publish-docker-image.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/compose.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/package.json -------------------------------------------------------------------------------- /patches/stremio-addon-sdk@1.6.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/patches/stremio-addon-sdk@1.6.10.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/addon/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/addon/manifest.ts -------------------------------------------------------------------------------- /src/addon/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/addon/server.ts -------------------------------------------------------------------------------- /src/addon/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/addon/streams.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/torrent/eztv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/eztv.ts -------------------------------------------------------------------------------- /src/torrent/insane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/insane.ts -------------------------------------------------------------------------------- /src/torrent/itorrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/itorrent.ts -------------------------------------------------------------------------------- /src/torrent/jackett.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/jackett.ts -------------------------------------------------------------------------------- /src/torrent/ncore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/ncore.ts -------------------------------------------------------------------------------- /src/torrent/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/search.ts -------------------------------------------------------------------------------- /src/torrent/webtorrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/webtorrent.ts -------------------------------------------------------------------------------- /src/torrent/yts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/torrent/yts.ts -------------------------------------------------------------------------------- /src/utils/dotenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/dotenv.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/https.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/https.ts -------------------------------------------------------------------------------- /src/utils/imdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/imdb.ts -------------------------------------------------------------------------------- /src/utils/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/language.ts -------------------------------------------------------------------------------- /src/utils/quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/quality.ts -------------------------------------------------------------------------------- /src/utils/shows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/src/utils/shows.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyakaspeter/stremio-torrent-stream/HEAD/tsconfig.json --------------------------------------------------------------------------------