Initial commit: webshare-api

Torznab + fake qBittorrent proxy for Webshare.cz, with Compose/Docker
packaging, MIT license, and tests.
This commit is contained in:
2026-08-07 08:37:10 +02:00
commit 3fcadfe973
19 changed files with 2047 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "webshare-api",
"version": "1.0.0",
"description": "Webshare.cz HTTP API: Torznab indexer + fake qBittorrent client + stream redirect for Sonarr/Radarr",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --coverage --runInBand"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.7.0",
"express": "^4.19.0",
"multer": "^1.4.5-lts.1",
"xml2js": "^0.6.0"
},
"devDependencies": {
"jest": "^30.4.2",
"supertest": "^7.2.2"
}
}