-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@uniscrape/server",
"version": "1.0.0",
"description": "Universal Media Scraping Server - Stremio/Plex/Jellyfin/Stash Plugin",
"main": "server/index.js",
"type": "module",
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"stremio": "node stremio-addon/index.js",
"install:service": "node cli/install.js",
"docker:build": "docker build -t uniscrape-server -f docker/Dockerfile .",
"docker:run": "docker compose -f docker/docker-compose.yml up -d",
"test": "node --test server/**/*.test.js"
},
"dependencies": {
"express": "^5.0.0",
"cors": "^2.8.5",
"axios": "^1.7.0",
"cheerio": "^1.0.0",
"js-yaml": "^4.1.0",
"cloudscraper": "^2.0.0",
"magnet-uri": "^7.0.0",
"rss-parser": "^3.13.0",
"node-schedule": "^2.1.0",
"express-rate-limit": "^7.0.0",
"helmet": "^8.0.0",
"compression": "^1.7.0",
"morgan": "^1.10.0",
"dotenv": "^16.4.0",
"winston": "^3.15.0",
"uuid": "^10.0.0",
"node-cron": "^3.0.0"
},
"optionalDependencies": {},
"bin": {
"uniscrape": "./cli/uniscrape.js"
},
"engines": {
"node": ">=20.0.0"
}
}