forked from MrMonkey42/stremio-addon-debrid-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 KB
/
package.json
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
43
{
"name": "debrid-search",
"version": "0.1.5",
"description": "Stremio Addon to search downloads and torrents in your Debrid cloud",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "sbvkrishna",
"license": "MIT",
"type": "module",
"dependencies": {
"@types/node": "^18.0.6",
"cors": "^2.8.5",
"debrid-link-api": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.3",
"fuse.js": "^6.6.2",
"loglevel": "^1.8.1",
"node-fetch": "^3.2.6",
"parse-torrent-title": "git://github.com/TheBeastLT/parse-torrent-title.git#aeae91e512741910bc479ac57dcb0ce78bad3ee0",
"prom-client": "^12.0.0",
"real-debrid-api": "git://github.com/TheBeastLT/node-real-debrid.git#d1f7eaa8593b947edbfbc8a92a176448b48ef445",
"request-ip": "^3.3.0",
"stremio-addon-sdk": "^1.6.10",
"swagger-stats": "^0.99.7"
},
"keywords": [
"stremio",
"stremio-addons",
"addons"
],
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": "^18.x",
"npm": "^9.x"
}
}