This repository was archived by the owner on Jul 20, 2026. It is now read-only.
forked from Nightfruit/reflux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "reflux",
"description": "Reflux is a Stremio addon that allows users to access content of multiples streaming websites, providing a quick and easy way to watch multiples content with a single click.",
"author": "MrSev7en <[email protected]>",
"keywords": [
"reflux",
"stremio",
"addon",
"node",
"typescript"
],
"version": "0.0.3",
"license": "MIT",
"private": true,
"stremio": {
"id": "app.nightfruit-studios.reflux",
"name": "Reflux",
"description": "Reflux permite você acessar o catálogo de vários sites de streaming, proporcionando uma maneira rápida e fácil de assistir a todo o conteúdo disponível."
},
"engines": {
"node": ">= 20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nightfruit/reflux"
},
"scripts": {
"postinstall": "npx prisma generate",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node ./dist/main",
"lint": "biome check --write .",
"lint:fix": "biome check --write --unsafe ."
},
"dependencies": {
"@nestjs/axios": "^4.0.0",
"@nestjs/common": "^10.4.17",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^10.4.17",
"@nestjs/platform-express": "^10.4.17",
"@nestjs/serve-static": "^5.0.3",
"@supercharge/promise-pool": "^3.2.0",
"axios": "^1.9.0",
"cheerio": "^1.0.0",
"nestjs-zod": "^4.3.1",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.2",
"sanitize-html": "^2.16.0",
"string-similarity": "^4.0.4",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nestjs/cli": "^10.4.9",
"@nestjs/schematics": "^10.2.3",
"@prisma/client": "^6.7.0",
"@types/damerau-levenshtein": "^1.0.2",
"@types/express": "^4.17.21",
"@types/node": "^20.17.45",
"@types/sanitize-html": "^2.16.0",
"@types/string-similarity": "^4.0.2",
"prisma": "^6.7.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}