Server
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +2 -59
- .gitignore +130 -0
- api/server.js +33 -0
- package-lock.json +2479 -0
- package.json +34 -0
- src/configs/dataUrl.js +2 -0
- src/configs/header.config.js +4 -0
- src/configs/player_v1.config.js +2 -0
- src/configs/player_v2.config.js +2 -0
- src/controllers/animeInfo.controller.js +27 -0
- src/controllers/category.controller.js +29 -0
- src/controllers/episodeList.controller.js +21 -0
- src/controllers/homeInfo.controller.js +68 -0
- src/controllers/maintenance.controller.js +21 -0
- src/controllers/nextEpisodeSchedule.controller.js +12 -0
- src/controllers/producer.controller.js +32 -0
- src/controllers/qtip.controller.js +12 -0
- src/controllers/random.controller.js +11 -0
- src/controllers/randomId.controller.js +11 -0
- src/controllers/schedule.controller.js +12 -0
- src/controllers/search.controller.js +25 -0
- src/controllers/servers.controller.js +12 -0
- src/controllers/streamInfo.controller.js +17 -0
- src/controllers/suggestion.controller.js +12 -0
- src/controllers/topten.controller.js +22 -0
- src/controllers/voiceactor.controller.js +16 -0
- src/extractors/animeInfo.extractor.js +150 -0
- src/extractors/category.extractor.js +16 -0
- src/extractors/episodeList.extractor.js +41 -0
- src/extractors/getNextEpisodeSchedule.extractor.js +18 -0
- src/extractors/qtip.extractor.js +66 -0
- src/extractors/random.extractor.js +18 -0
- src/extractors/randomId.extractor.js +16 -0
- src/extractors/recommend.extractor.js +65 -0
- src/extractors/related.extractor.js +69 -0
- src/extractors/schedule.extractor.js +47 -0
- src/extractors/search.extractor.js +111 -0
- src/extractors/seasons.extractor.js +31 -0
- src/extractors/spotlight.extractor.js +103 -0
- src/extractors/streamInfo.extractor.js +64 -0
- src/extractors/subtitle.extractor.js +20 -0
- src/extractors/suggestion.extractor.js +50 -0
- src/extractors/topten.extractor.js +55 -0
- src/extractors/trending.extractor.js +35 -0
- src/extractors/voiceactor.extractor.js +77 -0
- src/helper/cache.helper.js +34 -0
- src/helper/countPages.helper.js +24 -0
- src/helper/extractPages.helper.js +92 -0
- src/helper/fetchScript.helper.js +8 -0
- src/helper/formatTitle.helper.js +9 -0
.gitattributes
CHANGED
@@ -1,59 +1,2 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
-
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
12 |
-
*.mds filter=lfs diff=lfs merge=lfs -text
|
13 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
14 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
15 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
16 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
17 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
18 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
19 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
20 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
21 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
22 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
23 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
24 |
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
25 |
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
26 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
27 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
28 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
29 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
30 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
31 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
32 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
33 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
34 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
35 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
36 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
37 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
38 |
-
# Audio files - uncompressed
|
39 |
-
*.pcm filter=lfs diff=lfs merge=lfs -text
|
40 |
-
*.sam filter=lfs diff=lfs merge=lfs -text
|
41 |
-
*.raw filter=lfs diff=lfs merge=lfs -text
|
42 |
-
# Audio files - compressed
|
43 |
-
*.aac filter=lfs diff=lfs merge=lfs -text
|
44 |
-
*.flac filter=lfs diff=lfs merge=lfs -text
|
45 |
-
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
46 |
-
*.ogg filter=lfs diff=lfs merge=lfs -text
|
47 |
-
*.wav filter=lfs diff=lfs merge=lfs -text
|
48 |
-
# Image files - uncompressed
|
49 |
-
*.bmp filter=lfs diff=lfs merge=lfs -text
|
50 |
-
*.gif filter=lfs diff=lfs merge=lfs -text
|
51 |
-
*.png filter=lfs diff=lfs merge=lfs -text
|
52 |
-
*.tiff filter=lfs diff=lfs merge=lfs -text
|
53 |
-
# Image files - compressed
|
54 |
-
*.jpg filter=lfs diff=lfs merge=lfs -text
|
55 |
-
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
56 |
-
*.webp filter=lfs diff=lfs merge=lfs -text
|
57 |
-
# Video files - compressed
|
58 |
-
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
-
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
1 |
+
# Auto detect text files and perform LF normalization
|
2 |
+
* text=auto
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.gitignore
ADDED
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Logs
|
2 |
+
logs
|
3 |
+
*.log
|
4 |
+
npm-debug.log*
|
5 |
+
yarn-debug.log*
|
6 |
+
yarn-error.log*
|
7 |
+
lerna-debug.log*
|
8 |
+
.pnpm-debug.log*
|
9 |
+
|
10 |
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
11 |
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
12 |
+
|
13 |
+
# Runtime data
|
14 |
+
pids
|
15 |
+
*.pid
|
16 |
+
*.seed
|
17 |
+
*.pid.lock
|
18 |
+
|
19 |
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
20 |
+
lib-cov
|
21 |
+
|
22 |
+
# Coverage directory used by tools like istanbul
|
23 |
+
coverage
|
24 |
+
*.lcov
|
25 |
+
|
26 |
+
# nyc test coverage
|
27 |
+
.nyc_output
|
28 |
+
|
29 |
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
30 |
+
.grunt
|
31 |
+
|
32 |
+
# Bower dependency directory (https://bower.io/)
|
33 |
+
bower_components
|
34 |
+
|
35 |
+
# node-waf configuration
|
36 |
+
.lock-wscript
|
37 |
+
|
38 |
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
39 |
+
build/Release
|
40 |
+
|
41 |
+
# Dependency directories
|
42 |
+
node_modules/
|
43 |
+
jspm_packages/
|
44 |
+
|
45 |
+
# Snowpack dependency directory (https://snowpack.dev/)
|
46 |
+
web_modules/
|
47 |
+
|
48 |
+
# TypeScript cache
|
49 |
+
*.tsbuildinfo
|
50 |
+
|
51 |
+
# Optional npm cache directory
|
52 |
+
.npm
|
53 |
+
|
54 |
+
# Optional eslint cache
|
55 |
+
.eslintcache
|
56 |
+
|
57 |
+
# Optional stylelint cache
|
58 |
+
.stylelintcache
|
59 |
+
|
60 |
+
# Microbundle cache
|
61 |
+
.rpt2_cache/
|
62 |
+
.rts2_cache_cjs/
|
63 |
+
.rts2_cache_es/
|
64 |
+
.rts2_cache_umd/
|
65 |
+
|
66 |
+
# Optional REPL history
|
67 |
+
.node_repl_history
|
68 |
+
|
69 |
+
# Output of 'npm pack'
|
70 |
+
*.tgz
|
71 |
+
|
72 |
+
# Yarn Integrity file
|
73 |
+
.yarn-integrity
|
74 |
+
|
75 |
+
# dotenv environment variable files
|
76 |
+
.env
|
77 |
+
.env.development.local
|
78 |
+
.env.test.local
|
79 |
+
.env.production.local
|
80 |
+
.env.local
|
81 |
+
|
82 |
+
# parcel-bundler cache (https://parceljs.org/)
|
83 |
+
.cache
|
84 |
+
.parcel-cache
|
85 |
+
|
86 |
+
# Next.js build output
|
87 |
+
.next
|
88 |
+
out
|
89 |
+
|
90 |
+
# Nuxt.js build / generate output
|
91 |
+
.nuxt
|
92 |
+
dist
|
93 |
+
|
94 |
+
# Gatsby files
|
95 |
+
.cache/
|
96 |
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
97 |
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
98 |
+
# public
|
99 |
+
|
100 |
+
# vuepress build output
|
101 |
+
.vuepress/dist
|
102 |
+
|
103 |
+
# vuepress v2.x temp and cache directory
|
104 |
+
.temp
|
105 |
+
.cache
|
106 |
+
|
107 |
+
# Docusaurus cache and generated files
|
108 |
+
.docusaurus
|
109 |
+
|
110 |
+
# Serverless directories
|
111 |
+
.serverless/
|
112 |
+
|
113 |
+
# FuseBox cache
|
114 |
+
.fusebox/
|
115 |
+
|
116 |
+
# DynamoDB Local files
|
117 |
+
.dynamodb/
|
118 |
+
|
119 |
+
# TernJS port file
|
120 |
+
.tern-port
|
121 |
+
|
122 |
+
# Stores VSCode versions used for testing VSCode extensions
|
123 |
+
.vscode-test
|
124 |
+
|
125 |
+
# yarn v2
|
126 |
+
.yarn/cache
|
127 |
+
.yarn/unplugged
|
128 |
+
.yarn/build-state.yml
|
129 |
+
.yarn/install-state.gz
|
130 |
+
.pnp.*
|
api/server.js
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import dotenv from "dotenv";
|
2 |
+
import express from "express";
|
3 |
+
import cors from "cors";
|
4 |
+
import path from "path";
|
5 |
+
import fs from "fs";
|
6 |
+
import { fileURLToPath } from "url";
|
7 |
+
import { dirname } from "path";
|
8 |
+
import { createApiRoutes } from "../src/routes/apiRoutes.js";
|
9 |
+
|
10 |
+
dotenv.config();
|
11 |
+
|
12 |
+
const app = express();
|
13 |
+
const PORT = process.env.PORT || 7860;
|
14 |
+
const allowedOrigins = process.env.ALLOWED_ORIGINS?.split(",");
|
15 |
+
|
16 |
+
app.use(
|
17 |
+
cors({
|
18 |
+
origin: allowedOrigins || "*",
|
19 |
+
methods: ["GET"],
|
20 |
+
})
|
21 |
+
);
|
22 |
+
|
23 |
+
const jsonResponse = (res, data, status = 200) =>
|
24 |
+
res.status(status).json({ success: true, results: data });
|
25 |
+
|
26 |
+
const jsonError = (res, message = "Internal server error", status = 500) =>
|
27 |
+
res.status(status).json({ success: false, message });
|
28 |
+
|
29 |
+
createApiRoutes(app, jsonResponse, jsonError);
|
30 |
+
|
31 |
+
app.listen(PORT, () => {
|
32 |
+
console.info(`Listening at ${PORT}`);
|
33 |
+
});
|
package-lock.json
ADDED
@@ -0,0 +1,2479 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "anime-api",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"lockfileVersion": 3,
|
5 |
+
"requires": true,
|
6 |
+
"packages": {
|
7 |
+
"": {
|
8 |
+
"name": "anime-api",
|
9 |
+
"version": "1.0.0",
|
10 |
+
"license": "MIT",
|
11 |
+
"dependencies": {
|
12 |
+
"axios": "^1.6.7",
|
13 |
+
"cheerio": "^1.0.0-rc.12",
|
14 |
+
"compression": "^1.7.5",
|
15 |
+
"cors": "^2.8.5",
|
16 |
+
"crypto-js": "^4.2.0",
|
17 |
+
"dotenv": "^16.4.5",
|
18 |
+
"express": "^4.21.2",
|
19 |
+
"express-rate-limit": "^7.5.0",
|
20 |
+
"image-pixels": "^2.2.2",
|
21 |
+
"memory-cache": "^0.2.0",
|
22 |
+
"redis": "^4.7.0"
|
23 |
+
},
|
24 |
+
"devDependencies": {
|
25 |
+
"nodemon": "^3.1.4"
|
26 |
+
}
|
27 |
+
},
|
28 |
+
"node_modules/@redis/bloom": {
|
29 |
+
"version": "1.2.0",
|
30 |
+
"resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz",
|
31 |
+
"integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==",
|
32 |
+
"peerDependencies": {
|
33 |
+
"@redis/client": "^1.0.0"
|
34 |
+
}
|
35 |
+
},
|
36 |
+
"node_modules/@redis/client": {
|
37 |
+
"version": "1.6.0",
|
38 |
+
"resolved": "https://registry.npmjs.org/@redis/client/-/client-1.6.0.tgz",
|
39 |
+
"integrity": "sha512-aR0uffYI700OEEH4gYnitAnv3vzVGXCFvYfdpu/CJKvk4pHfLPEy/JSZyrpQ+15WhXe1yJRXLtfQ84s4mEXnPg==",
|
40 |
+
"dependencies": {
|
41 |
+
"cluster-key-slot": "1.1.2",
|
42 |
+
"generic-pool": "3.9.0",
|
43 |
+
"yallist": "4.0.0"
|
44 |
+
},
|
45 |
+
"engines": {
|
46 |
+
"node": ">=14"
|
47 |
+
}
|
48 |
+
},
|
49 |
+
"node_modules/@redis/graph": {
|
50 |
+
"version": "1.1.1",
|
51 |
+
"resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz",
|
52 |
+
"integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==",
|
53 |
+
"peerDependencies": {
|
54 |
+
"@redis/client": "^1.0.0"
|
55 |
+
}
|
56 |
+
},
|
57 |
+
"node_modules/@redis/json": {
|
58 |
+
"version": "1.0.7",
|
59 |
+
"resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.7.tgz",
|
60 |
+
"integrity": "sha512-6UyXfjVaTBTJtKNG4/9Z8PSpKE6XgSyEb8iwaqDcy+uKrd/DGYHTWkUdnQDyzm727V7p21WUMhsqz5oy65kPcQ==",
|
61 |
+
"peerDependencies": {
|
62 |
+
"@redis/client": "^1.0.0"
|
63 |
+
}
|
64 |
+
},
|
65 |
+
"node_modules/@redis/search": {
|
66 |
+
"version": "1.2.0",
|
67 |
+
"resolved": "https://registry.npmjs.org/@redis/search/-/search-1.2.0.tgz",
|
68 |
+
"integrity": "sha512-tYoDBbtqOVigEDMAcTGsRlMycIIjwMCgD8eR2t0NANeQmgK/lvxNAvYyb6bZDD4frHRhIHkJu2TBRvB0ERkOmw==",
|
69 |
+
"peerDependencies": {
|
70 |
+
"@redis/client": "^1.0.0"
|
71 |
+
}
|
72 |
+
},
|
73 |
+
"node_modules/@redis/time-series": {
|
74 |
+
"version": "1.1.0",
|
75 |
+
"resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.1.0.tgz",
|
76 |
+
"integrity": "sha512-c1Q99M5ljsIuc4YdaCwfUEXsofakb9c8+Zse2qxTadu8TalLXuAESzLvFAvNVbkmSlvlzIQOLpBCmWI9wTOt+g==",
|
77 |
+
"peerDependencies": {
|
78 |
+
"@redis/client": "^1.0.0"
|
79 |
+
}
|
80 |
+
},
|
81 |
+
"node_modules/accepts": {
|
82 |
+
"version": "1.3.8",
|
83 |
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
84 |
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
85 |
+
"dependencies": {
|
86 |
+
"mime-types": "~2.1.34",
|
87 |
+
"negotiator": "0.6.3"
|
88 |
+
},
|
89 |
+
"engines": {
|
90 |
+
"node": ">= 0.6"
|
91 |
+
}
|
92 |
+
},
|
93 |
+
"node_modules/ajv": {
|
94 |
+
"version": "6.12.6",
|
95 |
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
96 |
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
97 |
+
"dependencies": {
|
98 |
+
"fast-deep-equal": "^3.1.1",
|
99 |
+
"fast-json-stable-stringify": "^2.0.0",
|
100 |
+
"json-schema-traverse": "^0.4.1",
|
101 |
+
"uri-js": "^4.2.2"
|
102 |
+
},
|
103 |
+
"funding": {
|
104 |
+
"type": "github",
|
105 |
+
"url": "https://github.com/sponsors/epoberezkin"
|
106 |
+
}
|
107 |
+
},
|
108 |
+
"node_modules/anymatch": {
|
109 |
+
"version": "3.1.3",
|
110 |
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
111 |
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
112 |
+
"dev": true,
|
113 |
+
"dependencies": {
|
114 |
+
"normalize-path": "^3.0.0",
|
115 |
+
"picomatch": "^2.0.4"
|
116 |
+
},
|
117 |
+
"engines": {
|
118 |
+
"node": ">= 8"
|
119 |
+
}
|
120 |
+
},
|
121 |
+
"node_modules/arr-flatten": {
|
122 |
+
"version": "1.1.0",
|
123 |
+
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
|
124 |
+
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
|
125 |
+
"engines": {
|
126 |
+
"node": ">=0.10.0"
|
127 |
+
}
|
128 |
+
},
|
129 |
+
"node_modules/array-flatten": {
|
130 |
+
"version": "1.1.1",
|
131 |
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
132 |
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
|
133 |
+
},
|
134 |
+
"node_modules/arraybuffer-to-string": {
|
135 |
+
"version": "1.0.2",
|
136 |
+
"resolved": "https://registry.npmjs.org/arraybuffer-to-string/-/arraybuffer-to-string-1.0.2.tgz",
|
137 |
+
"integrity": "sha512-WbIYlLVmvIAyUBdQRRuyGOJRriOQy9OAsWcyURmsRQp9+g647hdMSS2VFKXbJLVw0daUu06hqwLXm9etVrXI9A=="
|
138 |
+
},
|
139 |
+
"node_modules/asn1": {
|
140 |
+
"version": "0.2.6",
|
141 |
+
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
|
142 |
+
"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
|
143 |
+
"dependencies": {
|
144 |
+
"safer-buffer": "~2.1.0"
|
145 |
+
}
|
146 |
+
},
|
147 |
+
"node_modules/assert-plus": {
|
148 |
+
"version": "1.0.0",
|
149 |
+
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
|
150 |
+
"integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
|
151 |
+
"engines": {
|
152 |
+
"node": ">=0.8"
|
153 |
+
}
|
154 |
+
},
|
155 |
+
"node_modules/asynckit": {
|
156 |
+
"version": "0.4.0",
|
157 |
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
158 |
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
|
159 |
+
},
|
160 |
+
"node_modules/atob-lite": {
|
161 |
+
"version": "2.0.0",
|
162 |
+
"resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz",
|
163 |
+
"integrity": "sha512-LEeSAWeh2Gfa2FtlQE1shxQ8zi5F9GHarrGKz08TMdODD5T4eH6BMsvtnhbWZ+XQn+Gb6om/917ucvRu7l7ukw=="
|
164 |
+
},
|
165 |
+
"node_modules/aws-sign2": {
|
166 |
+
"version": "0.7.0",
|
167 |
+
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
|
168 |
+
"integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
|
169 |
+
"engines": {
|
170 |
+
"node": "*"
|
171 |
+
}
|
172 |
+
},
|
173 |
+
"node_modules/aws4": {
|
174 |
+
"version": "1.13.2",
|
175 |
+
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
|
176 |
+
"integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw=="
|
177 |
+
},
|
178 |
+
"node_modules/axios": {
|
179 |
+
"version": "1.7.9",
|
180 |
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
181 |
+
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
182 |
+
"dependencies": {
|
183 |
+
"follow-redirects": "^1.15.6",
|
184 |
+
"form-data": "^4.0.0",
|
185 |
+
"proxy-from-env": "^1.1.0"
|
186 |
+
}
|
187 |
+
},
|
188 |
+
"node_modules/balanced-match": {
|
189 |
+
"version": "1.0.2",
|
190 |
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
191 |
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
192 |
+
"dev": true
|
193 |
+
},
|
194 |
+
"node_modules/bcrypt-pbkdf": {
|
195 |
+
"version": "1.0.2",
|
196 |
+
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
|
197 |
+
"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
|
198 |
+
"dependencies": {
|
199 |
+
"tweetnacl": "^0.14.3"
|
200 |
+
}
|
201 |
+
},
|
202 |
+
"node_modules/binary-extensions": {
|
203 |
+
"version": "2.3.0",
|
204 |
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
205 |
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
206 |
+
"dev": true,
|
207 |
+
"engines": {
|
208 |
+
"node": ">=8"
|
209 |
+
},
|
210 |
+
"funding": {
|
211 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
212 |
+
}
|
213 |
+
},
|
214 |
+
"node_modules/bmp-js": {
|
215 |
+
"version": "0.1.0",
|
216 |
+
"resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz",
|
217 |
+
"integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw=="
|
218 |
+
},
|
219 |
+
"node_modules/body-parser": {
|
220 |
+
"version": "1.20.3",
|
221 |
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
|
222 |
+
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
|
223 |
+
"dependencies": {
|
224 |
+
"bytes": "3.1.2",
|
225 |
+
"content-type": "~1.0.5",
|
226 |
+
"debug": "2.6.9",
|
227 |
+
"depd": "2.0.0",
|
228 |
+
"destroy": "1.2.0",
|
229 |
+
"http-errors": "2.0.0",
|
230 |
+
"iconv-lite": "0.4.24",
|
231 |
+
"on-finished": "2.4.1",
|
232 |
+
"qs": "6.13.0",
|
233 |
+
"raw-body": "2.5.2",
|
234 |
+
"type-is": "~1.6.18",
|
235 |
+
"unpipe": "1.0.0"
|
236 |
+
},
|
237 |
+
"engines": {
|
238 |
+
"node": ">= 0.8",
|
239 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
240 |
+
}
|
241 |
+
},
|
242 |
+
"node_modules/body-parser/node_modules/iconv-lite": {
|
243 |
+
"version": "0.4.24",
|
244 |
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
245 |
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
246 |
+
"dependencies": {
|
247 |
+
"safer-buffer": ">= 2.1.2 < 3"
|
248 |
+
},
|
249 |
+
"engines": {
|
250 |
+
"node": ">=0.10.0"
|
251 |
+
}
|
252 |
+
},
|
253 |
+
"node_modules/boolbase": {
|
254 |
+
"version": "1.0.0",
|
255 |
+
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
|
256 |
+
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
|
257 |
+
},
|
258 |
+
"node_modules/brace-expansion": {
|
259 |
+
"version": "1.1.11",
|
260 |
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
261 |
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
262 |
+
"dev": true,
|
263 |
+
"dependencies": {
|
264 |
+
"balanced-match": "^1.0.0",
|
265 |
+
"concat-map": "0.0.1"
|
266 |
+
}
|
267 |
+
},
|
268 |
+
"node_modules/braces": {
|
269 |
+
"version": "3.0.3",
|
270 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
271 |
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
272 |
+
"dev": true,
|
273 |
+
"dependencies": {
|
274 |
+
"fill-range": "^7.1.1"
|
275 |
+
},
|
276 |
+
"engines": {
|
277 |
+
"node": ">=8"
|
278 |
+
}
|
279 |
+
},
|
280 |
+
"node_modules/buffer-to-uint8array": {
|
281 |
+
"version": "1.1.0",
|
282 |
+
"resolved": "https://registry.npmjs.org/buffer-to-uint8array/-/buffer-to-uint8array-1.1.0.tgz",
|
283 |
+
"integrity": "sha512-JVTSbtA6YuOGdu5NL0ffizsBwuwbTXfV7OC91FhazMz9UKP/KlDS+Z7wuiSRClbnTQz52fJgVXI9YDXQRVl2sQ=="
|
284 |
+
},
|
285 |
+
"node_modules/bytes": {
|
286 |
+
"version": "3.1.2",
|
287 |
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
288 |
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
289 |
+
"engines": {
|
290 |
+
"node": ">= 0.8"
|
291 |
+
}
|
292 |
+
},
|
293 |
+
"node_modules/call-bind-apply-helpers": {
|
294 |
+
"version": "1.0.1",
|
295 |
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
|
296 |
+
"integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
|
297 |
+
"dependencies": {
|
298 |
+
"es-errors": "^1.3.0",
|
299 |
+
"function-bind": "^1.1.2"
|
300 |
+
},
|
301 |
+
"engines": {
|
302 |
+
"node": ">= 0.4"
|
303 |
+
}
|
304 |
+
},
|
305 |
+
"node_modules/call-bound": {
|
306 |
+
"version": "1.0.3",
|
307 |
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
|
308 |
+
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
|
309 |
+
"dependencies": {
|
310 |
+
"call-bind-apply-helpers": "^1.0.1",
|
311 |
+
"get-intrinsic": "^1.2.6"
|
312 |
+
},
|
313 |
+
"engines": {
|
314 |
+
"node": ">= 0.4"
|
315 |
+
},
|
316 |
+
"funding": {
|
317 |
+
"url": "https://github.com/sponsors/ljharb"
|
318 |
+
}
|
319 |
+
},
|
320 |
+
"node_modules/caseless": {
|
321 |
+
"version": "0.12.0",
|
322 |
+
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
323 |
+
"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="
|
324 |
+
},
|
325 |
+
"node_modules/cheerio": {
|
326 |
+
"version": "1.0.0",
|
327 |
+
"resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz",
|
328 |
+
"integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==",
|
329 |
+
"dependencies": {
|
330 |
+
"cheerio-select": "^2.1.0",
|
331 |
+
"dom-serializer": "^2.0.0",
|
332 |
+
"domhandler": "^5.0.3",
|
333 |
+
"domutils": "^3.1.0",
|
334 |
+
"encoding-sniffer": "^0.2.0",
|
335 |
+
"htmlparser2": "^9.1.0",
|
336 |
+
"parse5": "^7.1.2",
|
337 |
+
"parse5-htmlparser2-tree-adapter": "^7.0.0",
|
338 |
+
"parse5-parser-stream": "^7.1.2",
|
339 |
+
"undici": "^6.19.5",
|
340 |
+
"whatwg-mimetype": "^4.0.0"
|
341 |
+
},
|
342 |
+
"engines": {
|
343 |
+
"node": ">=18.17"
|
344 |
+
},
|
345 |
+
"funding": {
|
346 |
+
"url": "https://github.com/cheeriojs/cheerio?sponsor=1"
|
347 |
+
}
|
348 |
+
},
|
349 |
+
"node_modules/cheerio-select": {
|
350 |
+
"version": "2.1.0",
|
351 |
+
"resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz",
|
352 |
+
"integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==",
|
353 |
+
"dependencies": {
|
354 |
+
"boolbase": "^1.0.0",
|
355 |
+
"css-select": "^5.1.0",
|
356 |
+
"css-what": "^6.1.0",
|
357 |
+
"domelementtype": "^2.3.0",
|
358 |
+
"domhandler": "^5.0.3",
|
359 |
+
"domutils": "^3.0.1"
|
360 |
+
},
|
361 |
+
"funding": {
|
362 |
+
"url": "https://github.com/sponsors/fb55"
|
363 |
+
}
|
364 |
+
},
|
365 |
+
"node_modules/chokidar": {
|
366 |
+
"version": "3.6.0",
|
367 |
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
368 |
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
369 |
+
"dev": true,
|
370 |
+
"dependencies": {
|
371 |
+
"anymatch": "~3.1.2",
|
372 |
+
"braces": "~3.0.2",
|
373 |
+
"glob-parent": "~5.1.2",
|
374 |
+
"is-binary-path": "~2.1.0",
|
375 |
+
"is-glob": "~4.0.1",
|
376 |
+
"normalize-path": "~3.0.0",
|
377 |
+
"readdirp": "~3.6.0"
|
378 |
+
},
|
379 |
+
"engines": {
|
380 |
+
"node": ">= 8.10.0"
|
381 |
+
},
|
382 |
+
"funding": {
|
383 |
+
"url": "https://paulmillr.com/funding/"
|
384 |
+
},
|
385 |
+
"optionalDependencies": {
|
386 |
+
"fsevents": "~2.3.2"
|
387 |
+
}
|
388 |
+
},
|
389 |
+
"node_modules/clamp": {
|
390 |
+
"version": "1.0.1",
|
391 |
+
"resolved": "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz",
|
392 |
+
"integrity": "sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA=="
|
393 |
+
},
|
394 |
+
"node_modules/clip-pixels": {
|
395 |
+
"version": "1.0.1",
|
396 |
+
"resolved": "https://registry.npmjs.org/clip-pixels/-/clip-pixels-1.0.1.tgz",
|
397 |
+
"integrity": "sha512-nJ22fZvCwkJfMppkOEE7GciLX08rDnVzEJ+U46kBFZtwNzH2V4tNxMWa9Tc365WspCxy1c3NtGJ5EeT4SgjmCA=="
|
398 |
+
},
|
399 |
+
"node_modules/cluster-key-slot": {
|
400 |
+
"version": "1.1.2",
|
401 |
+
"resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz",
|
402 |
+
"integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==",
|
403 |
+
"engines": {
|
404 |
+
"node": ">=0.10.0"
|
405 |
+
}
|
406 |
+
},
|
407 |
+
"node_modules/combined-stream": {
|
408 |
+
"version": "1.0.8",
|
409 |
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
410 |
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
411 |
+
"dependencies": {
|
412 |
+
"delayed-stream": "~1.0.0"
|
413 |
+
},
|
414 |
+
"engines": {
|
415 |
+
"node": ">= 0.8"
|
416 |
+
}
|
417 |
+
},
|
418 |
+
"node_modules/compressible": {
|
419 |
+
"version": "2.0.18",
|
420 |
+
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
|
421 |
+
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
|
422 |
+
"dependencies": {
|
423 |
+
"mime-db": ">= 1.43.0 < 2"
|
424 |
+
},
|
425 |
+
"engines": {
|
426 |
+
"node": ">= 0.6"
|
427 |
+
}
|
428 |
+
},
|
429 |
+
"node_modules/compression": {
|
430 |
+
"version": "1.7.5",
|
431 |
+
"resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz",
|
432 |
+
"integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==",
|
433 |
+
"dependencies": {
|
434 |
+
"bytes": "3.1.2",
|
435 |
+
"compressible": "~2.0.18",
|
436 |
+
"debug": "2.6.9",
|
437 |
+
"negotiator": "~0.6.4",
|
438 |
+
"on-headers": "~1.0.2",
|
439 |
+
"safe-buffer": "5.2.1",
|
440 |
+
"vary": "~1.1.2"
|
441 |
+
},
|
442 |
+
"engines": {
|
443 |
+
"node": ">= 0.8.0"
|
444 |
+
}
|
445 |
+
},
|
446 |
+
"node_modules/compression/node_modules/negotiator": {
|
447 |
+
"version": "0.6.4",
|
448 |
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
|
449 |
+
"integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
|
450 |
+
"engines": {
|
451 |
+
"node": ">= 0.6"
|
452 |
+
}
|
453 |
+
},
|
454 |
+
"node_modules/compute-dims": {
|
455 |
+
"version": "1.1.0",
|
456 |
+
"resolved": "https://registry.npmjs.org/compute-dims/-/compute-dims-1.1.0.tgz",
|
457 |
+
"integrity": "sha512-YHMiIKjH/8Eom8zATk3g8/lH3HxGCZcVQyEfEoVrfWI7od/WRpTgRGShnei3jArYSx77mQqPxZNokjGHCdLfxg==",
|
458 |
+
"dependencies": {
|
459 |
+
"utils-copy": "^1.0.0",
|
460 |
+
"validate.io-array": "^1.0.6",
|
461 |
+
"validate.io-matrix-like": "^1.0.2",
|
462 |
+
"validate.io-ndarray-like": "^1.0.0",
|
463 |
+
"validate.io-positive-integer": "^1.0.0"
|
464 |
+
}
|
465 |
+
},
|
466 |
+
"node_modules/concat-map": {
|
467 |
+
"version": "0.0.1",
|
468 |
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
469 |
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
470 |
+
"dev": true
|
471 |
+
},
|
472 |
+
"node_modules/const-max-uint32": {
|
473 |
+
"version": "1.0.2",
|
474 |
+
"resolved": "https://registry.npmjs.org/const-max-uint32/-/const-max-uint32-1.0.2.tgz",
|
475 |
+
"integrity": "sha512-T8/9bffg5RThuejasJWrwqxs3Q0fsJvyl7/33IB6svroD8JC93E7X60AuuOnDE8RlP6Jlb5FxmlrVDpl9KiU2Q=="
|
476 |
+
},
|
477 |
+
"node_modules/const-pinf-float64": {
|
478 |
+
"version": "1.0.0",
|
479 |
+
"resolved": "https://registry.npmjs.org/const-pinf-float64/-/const-pinf-float64-1.0.0.tgz",
|
480 |
+
"integrity": "sha512-wfs+V4HdSN7C3CWJWR7hVa24yTPn3mDJthwhRIObZBh6UjTjkUMUrCP3UrNGozB/HjTpcScnGXtQUNa+yjsIJQ=="
|
481 |
+
},
|
482 |
+
"node_modules/content-disposition": {
|
483 |
+
"version": "0.5.4",
|
484 |
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
485 |
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
486 |
+
"dependencies": {
|
487 |
+
"safe-buffer": "5.2.1"
|
488 |
+
},
|
489 |
+
"engines": {
|
490 |
+
"node": ">= 0.6"
|
491 |
+
}
|
492 |
+
},
|
493 |
+
"node_modules/content-type": {
|
494 |
+
"version": "1.0.5",
|
495 |
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
496 |
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
497 |
+
"engines": {
|
498 |
+
"node": ">= 0.6"
|
499 |
+
}
|
500 |
+
},
|
501 |
+
"node_modules/cookie": {
|
502 |
+
"version": "0.7.1",
|
503 |
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
|
504 |
+
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
|
505 |
+
"engines": {
|
506 |
+
"node": ">= 0.6"
|
507 |
+
}
|
508 |
+
},
|
509 |
+
"node_modules/cookie-signature": {
|
510 |
+
"version": "1.0.6",
|
511 |
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
512 |
+
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
|
513 |
+
},
|
514 |
+
"node_modules/core-util-is": {
|
515 |
+
"version": "1.0.2",
|
516 |
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
517 |
+
"integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
|
518 |
+
},
|
519 |
+
"node_modules/cors": {
|
520 |
+
"version": "2.8.5",
|
521 |
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
|
522 |
+
"integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
|
523 |
+
"dependencies": {
|
524 |
+
"object-assign": "^4",
|
525 |
+
"vary": "^1"
|
526 |
+
},
|
527 |
+
"engines": {
|
528 |
+
"node": ">= 0.10"
|
529 |
+
}
|
530 |
+
},
|
531 |
+
"node_modules/crypto-js": {
|
532 |
+
"version": "4.2.0",
|
533 |
+
"resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
|
534 |
+
"integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q=="
|
535 |
+
},
|
536 |
+
"node_modules/css-select": {
|
537 |
+
"version": "5.1.0",
|
538 |
+
"resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
|
539 |
+
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
|
540 |
+
"dependencies": {
|
541 |
+
"boolbase": "^1.0.0",
|
542 |
+
"css-what": "^6.1.0",
|
543 |
+
"domhandler": "^5.0.2",
|
544 |
+
"domutils": "^3.0.1",
|
545 |
+
"nth-check": "^2.0.1"
|
546 |
+
},
|
547 |
+
"funding": {
|
548 |
+
"url": "https://github.com/sponsors/fb55"
|
549 |
+
}
|
550 |
+
},
|
551 |
+
"node_modules/css-what": {
|
552 |
+
"version": "6.1.0",
|
553 |
+
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
|
554 |
+
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
|
555 |
+
"engines": {
|
556 |
+
"node": ">= 6"
|
557 |
+
},
|
558 |
+
"funding": {
|
559 |
+
"url": "https://github.com/sponsors/fb55"
|
560 |
+
}
|
561 |
+
},
|
562 |
+
"node_modules/dashdash": {
|
563 |
+
"version": "1.14.1",
|
564 |
+
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
565 |
+
"integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
|
566 |
+
"dependencies": {
|
567 |
+
"assert-plus": "^1.0.0"
|
568 |
+
},
|
569 |
+
"engines": {
|
570 |
+
"node": ">=0.10"
|
571 |
+
}
|
572 |
+
},
|
573 |
+
"node_modules/debug": {
|
574 |
+
"version": "2.6.9",
|
575 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
576 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
577 |
+
"dependencies": {
|
578 |
+
"ms": "2.0.0"
|
579 |
+
}
|
580 |
+
},
|
581 |
+
"node_modules/delayed-stream": {
|
582 |
+
"version": "1.0.0",
|
583 |
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
584 |
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
585 |
+
"engines": {
|
586 |
+
"node": ">=0.4.0"
|
587 |
+
}
|
588 |
+
},
|
589 |
+
"node_modules/depd": {
|
590 |
+
"version": "2.0.0",
|
591 |
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
592 |
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
593 |
+
"engines": {
|
594 |
+
"node": ">= 0.8"
|
595 |
+
}
|
596 |
+
},
|
597 |
+
"node_modules/destroy": {
|
598 |
+
"version": "1.2.0",
|
599 |
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
600 |
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
601 |
+
"engines": {
|
602 |
+
"node": ">= 0.8",
|
603 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
604 |
+
}
|
605 |
+
},
|
606 |
+
"node_modules/dom-serializer": {
|
607 |
+
"version": "2.0.0",
|
608 |
+
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
|
609 |
+
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
|
610 |
+
"dependencies": {
|
611 |
+
"domelementtype": "^2.3.0",
|
612 |
+
"domhandler": "^5.0.2",
|
613 |
+
"entities": "^4.2.0"
|
614 |
+
},
|
615 |
+
"funding": {
|
616 |
+
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
|
617 |
+
}
|
618 |
+
},
|
619 |
+
"node_modules/domelementtype": {
|
620 |
+
"version": "2.3.0",
|
621 |
+
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
|
622 |
+
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
|
623 |
+
"funding": [
|
624 |
+
{
|
625 |
+
"type": "github",
|
626 |
+
"url": "https://github.com/sponsors/fb55"
|
627 |
+
}
|
628 |
+
]
|
629 |
+
},
|
630 |
+
"node_modules/domhandler": {
|
631 |
+
"version": "5.0.3",
|
632 |
+
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
|
633 |
+
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
|
634 |
+
"dependencies": {
|
635 |
+
"domelementtype": "^2.3.0"
|
636 |
+
},
|
637 |
+
"engines": {
|
638 |
+
"node": ">= 4"
|
639 |
+
},
|
640 |
+
"funding": {
|
641 |
+
"url": "https://github.com/fb55/domhandler?sponsor=1"
|
642 |
+
}
|
643 |
+
},
|
644 |
+
"node_modules/domutils": {
|
645 |
+
"version": "3.2.2",
|
646 |
+
"resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
|
647 |
+
"integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
|
648 |
+
"dependencies": {
|
649 |
+
"dom-serializer": "^2.0.0",
|
650 |
+
"domelementtype": "^2.3.0",
|
651 |
+
"domhandler": "^5.0.3"
|
652 |
+
},
|
653 |
+
"funding": {
|
654 |
+
"url": "https://github.com/fb55/domutils?sponsor=1"
|
655 |
+
}
|
656 |
+
},
|
657 |
+
"node_modules/dotenv": {
|
658 |
+
"version": "16.4.7",
|
659 |
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
|
660 |
+
"integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
|
661 |
+
"engines": {
|
662 |
+
"node": ">=12"
|
663 |
+
},
|
664 |
+
"funding": {
|
665 |
+
"url": "https://dotenvx.com"
|
666 |
+
}
|
667 |
+
},
|
668 |
+
"node_modules/dtype": {
|
669 |
+
"version": "2.0.0",
|
670 |
+
"resolved": "https://registry.npmjs.org/dtype/-/dtype-2.0.0.tgz",
|
671 |
+
"integrity": "sha512-s2YVcLKdFGS0hpFqJaTwscsyt0E8nNFdmo73Ocd81xNPj4URI4rj6D60A+vFMIw7BXWlb4yRkEwfBqcZzPGiZg==",
|
672 |
+
"engines": {
|
673 |
+
"node": ">= 0.8.0"
|
674 |
+
}
|
675 |
+
},
|
676 |
+
"node_modules/dunder-proto": {
|
677 |
+
"version": "1.0.1",
|
678 |
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
679 |
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
680 |
+
"dependencies": {
|
681 |
+
"call-bind-apply-helpers": "^1.0.1",
|
682 |
+
"es-errors": "^1.3.0",
|
683 |
+
"gopd": "^1.2.0"
|
684 |
+
},
|
685 |
+
"engines": {
|
686 |
+
"node": ">= 0.4"
|
687 |
+
}
|
688 |
+
},
|
689 |
+
"node_modules/ecc-jsbn": {
|
690 |
+
"version": "0.1.2",
|
691 |
+
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
|
692 |
+
"integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
|
693 |
+
"dependencies": {
|
694 |
+
"jsbn": "~0.1.0",
|
695 |
+
"safer-buffer": "^2.1.0"
|
696 |
+
}
|
697 |
+
},
|
698 |
+
"node_modules/ee-first": {
|
699 |
+
"version": "1.1.1",
|
700 |
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
701 |
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
|
702 |
+
},
|
703 |
+
"node_modules/encodeurl": {
|
704 |
+
"version": "2.0.0",
|
705 |
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
706 |
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
707 |
+
"engines": {
|
708 |
+
"node": ">= 0.8"
|
709 |
+
}
|
710 |
+
},
|
711 |
+
"node_modules/encoding-sniffer": {
|
712 |
+
"version": "0.2.0",
|
713 |
+
"resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz",
|
714 |
+
"integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==",
|
715 |
+
"dependencies": {
|
716 |
+
"iconv-lite": "^0.6.3",
|
717 |
+
"whatwg-encoding": "^3.1.1"
|
718 |
+
},
|
719 |
+
"funding": {
|
720 |
+
"url": "https://github.com/fb55/encoding-sniffer?sponsor=1"
|
721 |
+
}
|
722 |
+
},
|
723 |
+
"node_modules/entities": {
|
724 |
+
"version": "4.5.0",
|
725 |
+
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
726 |
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
|
727 |
+
"engines": {
|
728 |
+
"node": ">=0.12"
|
729 |
+
},
|
730 |
+
"funding": {
|
731 |
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
732 |
+
}
|
733 |
+
},
|
734 |
+
"node_modules/es-define-property": {
|
735 |
+
"version": "1.0.1",
|
736 |
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
737 |
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
738 |
+
"engines": {
|
739 |
+
"node": ">= 0.4"
|
740 |
+
}
|
741 |
+
},
|
742 |
+
"node_modules/es-errors": {
|
743 |
+
"version": "1.3.0",
|
744 |
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
745 |
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
746 |
+
"engines": {
|
747 |
+
"node": ">= 0.4"
|
748 |
+
}
|
749 |
+
},
|
750 |
+
"node_modules/es-object-atoms": {
|
751 |
+
"version": "1.1.1",
|
752 |
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
753 |
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
754 |
+
"dependencies": {
|
755 |
+
"es-errors": "^1.3.0"
|
756 |
+
},
|
757 |
+
"engines": {
|
758 |
+
"node": ">= 0.4"
|
759 |
+
}
|
760 |
+
},
|
761 |
+
"node_modules/escape-html": {
|
762 |
+
"version": "1.0.3",
|
763 |
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
764 |
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
|
765 |
+
},
|
766 |
+
"node_modules/etag": {
|
767 |
+
"version": "1.8.1",
|
768 |
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
769 |
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
770 |
+
"engines": {
|
771 |
+
"node": ">= 0.6"
|
772 |
+
}
|
773 |
+
},
|
774 |
+
"node_modules/express": {
|
775 |
+
"version": "4.21.2",
|
776 |
+
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
|
777 |
+
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
|
778 |
+
"dependencies": {
|
779 |
+
"accepts": "~1.3.8",
|
780 |
+
"array-flatten": "1.1.1",
|
781 |
+
"body-parser": "1.20.3",
|
782 |
+
"content-disposition": "0.5.4",
|
783 |
+
"content-type": "~1.0.4",
|
784 |
+
"cookie": "0.7.1",
|
785 |
+
"cookie-signature": "1.0.6",
|
786 |
+
"debug": "2.6.9",
|
787 |
+
"depd": "2.0.0",
|
788 |
+
"encodeurl": "~2.0.0",
|
789 |
+
"escape-html": "~1.0.3",
|
790 |
+
"etag": "~1.8.1",
|
791 |
+
"finalhandler": "1.3.1",
|
792 |
+
"fresh": "0.5.2",
|
793 |
+
"http-errors": "2.0.0",
|
794 |
+
"merge-descriptors": "1.0.3",
|
795 |
+
"methods": "~1.1.2",
|
796 |
+
"on-finished": "2.4.1",
|
797 |
+
"parseurl": "~1.3.3",
|
798 |
+
"path-to-regexp": "0.1.12",
|
799 |
+
"proxy-addr": "~2.0.7",
|
800 |
+
"qs": "6.13.0",
|
801 |
+
"range-parser": "~1.2.1",
|
802 |
+
"safe-buffer": "5.2.1",
|
803 |
+
"send": "0.19.0",
|
804 |
+
"serve-static": "1.16.2",
|
805 |
+
"setprototypeof": "1.2.0",
|
806 |
+
"statuses": "2.0.1",
|
807 |
+
"type-is": "~1.6.18",
|
808 |
+
"utils-merge": "1.0.1",
|
809 |
+
"vary": "~1.1.2"
|
810 |
+
},
|
811 |
+
"engines": {
|
812 |
+
"node": ">= 0.10.0"
|
813 |
+
},
|
814 |
+
"funding": {
|
815 |
+
"type": "opencollective",
|
816 |
+
"url": "https://opencollective.com/express"
|
817 |
+
}
|
818 |
+
},
|
819 |
+
"node_modules/express-rate-limit": {
|
820 |
+
"version": "7.5.0",
|
821 |
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.5.0.tgz",
|
822 |
+
"integrity": "sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==",
|
823 |
+
"engines": {
|
824 |
+
"node": ">= 16"
|
825 |
+
},
|
826 |
+
"funding": {
|
827 |
+
"url": "https://github.com/sponsors/express-rate-limit"
|
828 |
+
},
|
829 |
+
"peerDependencies": {
|
830 |
+
"express": "^4.11 || 5 || ^5.0.0-beta.1"
|
831 |
+
}
|
832 |
+
},
|
833 |
+
"node_modules/extend": {
|
834 |
+
"version": "3.0.2",
|
835 |
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
836 |
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
|
837 |
+
},
|
838 |
+
"node_modules/extsprintf": {
|
839 |
+
"version": "1.3.0",
|
840 |
+
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
841 |
+
"integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
|
842 |
+
"engines": [
|
843 |
+
"node >=0.6.0"
|
844 |
+
]
|
845 |
+
},
|
846 |
+
"node_modules/fast-deep-equal": {
|
847 |
+
"version": "3.1.3",
|
848 |
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
849 |
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
|
850 |
+
},
|
851 |
+
"node_modules/fast-json-stable-stringify": {
|
852 |
+
"version": "2.1.0",
|
853 |
+
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
854 |
+
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
855 |
+
},
|
856 |
+
"node_modules/file-type": {
|
857 |
+
"version": "10.11.0",
|
858 |
+
"resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz",
|
859 |
+
"integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==",
|
860 |
+
"engines": {
|
861 |
+
"node": ">=6"
|
862 |
+
}
|
863 |
+
},
|
864 |
+
"node_modules/fill-range": {
|
865 |
+
"version": "7.1.1",
|
866 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
867 |
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
868 |
+
"dev": true,
|
869 |
+
"dependencies": {
|
870 |
+
"to-regex-range": "^5.0.1"
|
871 |
+
},
|
872 |
+
"engines": {
|
873 |
+
"node": ">=8"
|
874 |
+
}
|
875 |
+
},
|
876 |
+
"node_modules/finalhandler": {
|
877 |
+
"version": "1.3.1",
|
878 |
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
|
879 |
+
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
|
880 |
+
"dependencies": {
|
881 |
+
"debug": "2.6.9",
|
882 |
+
"encodeurl": "~2.0.0",
|
883 |
+
"escape-html": "~1.0.3",
|
884 |
+
"on-finished": "2.4.1",
|
885 |
+
"parseurl": "~1.3.3",
|
886 |
+
"statuses": "2.0.1",
|
887 |
+
"unpipe": "~1.0.0"
|
888 |
+
},
|
889 |
+
"engines": {
|
890 |
+
"node": ">= 0.8"
|
891 |
+
}
|
892 |
+
},
|
893 |
+
"node_modules/flatten-vertex-data": {
|
894 |
+
"version": "1.0.2",
|
895 |
+
"resolved": "https://registry.npmjs.org/flatten-vertex-data/-/flatten-vertex-data-1.0.2.tgz",
|
896 |
+
"integrity": "sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==",
|
897 |
+
"dependencies": {
|
898 |
+
"dtype": "^2.0.0"
|
899 |
+
}
|
900 |
+
},
|
901 |
+
"node_modules/flip-pixels": {
|
902 |
+
"version": "1.0.2",
|
903 |
+
"resolved": "https://registry.npmjs.org/flip-pixels/-/flip-pixels-1.0.2.tgz",
|
904 |
+
"integrity": "sha512-oXbJGbjDnfJRWPC7Va38EFhd+A8JWE5/hCiKcK8qjCdbLj9DTpsq6MEudwpRTH+V4qq+Jw7d3pUgQdSr3x3mTA=="
|
905 |
+
},
|
906 |
+
"node_modules/follow-redirects": {
|
907 |
+
"version": "1.15.9",
|
908 |
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
|
909 |
+
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
|
910 |
+
"funding": [
|
911 |
+
{
|
912 |
+
"type": "individual",
|
913 |
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
914 |
+
}
|
915 |
+
],
|
916 |
+
"engines": {
|
917 |
+
"node": ">=4.0"
|
918 |
+
},
|
919 |
+
"peerDependenciesMeta": {
|
920 |
+
"debug": {
|
921 |
+
"optional": true
|
922 |
+
}
|
923 |
+
}
|
924 |
+
},
|
925 |
+
"node_modules/forever-agent": {
|
926 |
+
"version": "0.6.1",
|
927 |
+
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
|
928 |
+
"integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
|
929 |
+
"engines": {
|
930 |
+
"node": "*"
|
931 |
+
}
|
932 |
+
},
|
933 |
+
"node_modules/form-data": {
|
934 |
+
"version": "4.0.1",
|
935 |
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
|
936 |
+
"integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
|
937 |
+
"dependencies": {
|
938 |
+
"asynckit": "^0.4.0",
|
939 |
+
"combined-stream": "^1.0.8",
|
940 |
+
"mime-types": "^2.1.12"
|
941 |
+
},
|
942 |
+
"engines": {
|
943 |
+
"node": ">= 6"
|
944 |
+
}
|
945 |
+
},
|
946 |
+
"node_modules/forwarded": {
|
947 |
+
"version": "0.2.0",
|
948 |
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
949 |
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
950 |
+
"engines": {
|
951 |
+
"node": ">= 0.6"
|
952 |
+
}
|
953 |
+
},
|
954 |
+
"node_modules/fresh": {
|
955 |
+
"version": "0.5.2",
|
956 |
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
957 |
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
958 |
+
"engines": {
|
959 |
+
"node": ">= 0.6"
|
960 |
+
}
|
961 |
+
},
|
962 |
+
"node_modules/fsevents": {
|
963 |
+
"version": "2.3.3",
|
964 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
965 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
966 |
+
"dev": true,
|
967 |
+
"hasInstallScript": true,
|
968 |
+
"optional": true,
|
969 |
+
"os": [
|
970 |
+
"darwin"
|
971 |
+
],
|
972 |
+
"engines": {
|
973 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
974 |
+
}
|
975 |
+
},
|
976 |
+
"node_modules/function-bind": {
|
977 |
+
"version": "1.1.2",
|
978 |
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
979 |
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
980 |
+
"funding": {
|
981 |
+
"url": "https://github.com/sponsors/ljharb"
|
982 |
+
}
|
983 |
+
},
|
984 |
+
"node_modules/generic-pool": {
|
985 |
+
"version": "3.9.0",
|
986 |
+
"resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz",
|
987 |
+
"integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==",
|
988 |
+
"engines": {
|
989 |
+
"node": ">= 4"
|
990 |
+
}
|
991 |
+
},
|
992 |
+
"node_modules/get-intrinsic": {
|
993 |
+
"version": "1.2.7",
|
994 |
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
|
995 |
+
"integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
|
996 |
+
"dependencies": {
|
997 |
+
"call-bind-apply-helpers": "^1.0.1",
|
998 |
+
"es-define-property": "^1.0.1",
|
999 |
+
"es-errors": "^1.3.0",
|
1000 |
+
"es-object-atoms": "^1.0.0",
|
1001 |
+
"function-bind": "^1.1.2",
|
1002 |
+
"get-proto": "^1.0.0",
|
1003 |
+
"gopd": "^1.2.0",
|
1004 |
+
"has-symbols": "^1.1.0",
|
1005 |
+
"hasown": "^2.0.2",
|
1006 |
+
"math-intrinsics": "^1.1.0"
|
1007 |
+
},
|
1008 |
+
"engines": {
|
1009 |
+
"node": ">= 0.4"
|
1010 |
+
},
|
1011 |
+
"funding": {
|
1012 |
+
"url": "https://github.com/sponsors/ljharb"
|
1013 |
+
}
|
1014 |
+
},
|
1015 |
+
"node_modules/get-proto": {
|
1016 |
+
"version": "1.0.1",
|
1017 |
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
1018 |
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
1019 |
+
"dependencies": {
|
1020 |
+
"dunder-proto": "^1.0.1",
|
1021 |
+
"es-object-atoms": "^1.0.0"
|
1022 |
+
},
|
1023 |
+
"engines": {
|
1024 |
+
"node": ">= 0.4"
|
1025 |
+
}
|
1026 |
+
},
|
1027 |
+
"node_modules/getpass": {
|
1028 |
+
"version": "0.1.7",
|
1029 |
+
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
|
1030 |
+
"integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
|
1031 |
+
"dependencies": {
|
1032 |
+
"assert-plus": "^1.0.0"
|
1033 |
+
}
|
1034 |
+
},
|
1035 |
+
"node_modules/glob-parent": {
|
1036 |
+
"version": "5.1.2",
|
1037 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
1038 |
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
1039 |
+
"dev": true,
|
1040 |
+
"dependencies": {
|
1041 |
+
"is-glob": "^4.0.1"
|
1042 |
+
},
|
1043 |
+
"engines": {
|
1044 |
+
"node": ">= 6"
|
1045 |
+
}
|
1046 |
+
},
|
1047 |
+
"node_modules/gopd": {
|
1048 |
+
"version": "1.2.0",
|
1049 |
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
1050 |
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
1051 |
+
"engines": {
|
1052 |
+
"node": ">= 0.4"
|
1053 |
+
},
|
1054 |
+
"funding": {
|
1055 |
+
"url": "https://github.com/sponsors/ljharb"
|
1056 |
+
}
|
1057 |
+
},
|
1058 |
+
"node_modules/har-schema": {
|
1059 |
+
"version": "2.0.0",
|
1060 |
+
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
1061 |
+
"integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==",
|
1062 |
+
"engines": {
|
1063 |
+
"node": ">=4"
|
1064 |
+
}
|
1065 |
+
},
|
1066 |
+
"node_modules/har-validator": {
|
1067 |
+
"version": "5.1.5",
|
1068 |
+
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
|
1069 |
+
"integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
|
1070 |
+
"deprecated": "this library is no longer supported",
|
1071 |
+
"dependencies": {
|
1072 |
+
"ajv": "^6.12.3",
|
1073 |
+
"har-schema": "^2.0.0"
|
1074 |
+
},
|
1075 |
+
"engines": {
|
1076 |
+
"node": ">=6"
|
1077 |
+
}
|
1078 |
+
},
|
1079 |
+
"node_modules/has-flag": {
|
1080 |
+
"version": "3.0.0",
|
1081 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
1082 |
+
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
|
1083 |
+
"dev": true,
|
1084 |
+
"engines": {
|
1085 |
+
"node": ">=4"
|
1086 |
+
}
|
1087 |
+
},
|
1088 |
+
"node_modules/has-symbols": {
|
1089 |
+
"version": "1.1.0",
|
1090 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
1091 |
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
1092 |
+
"engines": {
|
1093 |
+
"node": ">= 0.4"
|
1094 |
+
},
|
1095 |
+
"funding": {
|
1096 |
+
"url": "https://github.com/sponsors/ljharb"
|
1097 |
+
}
|
1098 |
+
},
|
1099 |
+
"node_modules/hasown": {
|
1100 |
+
"version": "2.0.2",
|
1101 |
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
1102 |
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
1103 |
+
"dependencies": {
|
1104 |
+
"function-bind": "^1.1.2"
|
1105 |
+
},
|
1106 |
+
"engines": {
|
1107 |
+
"node": ">= 0.4"
|
1108 |
+
}
|
1109 |
+
},
|
1110 |
+
"node_modules/htmlparser2": {
|
1111 |
+
"version": "9.1.0",
|
1112 |
+
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz",
|
1113 |
+
"integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==",
|
1114 |
+
"funding": [
|
1115 |
+
"https://github.com/fb55/htmlparser2?sponsor=1",
|
1116 |
+
{
|
1117 |
+
"type": "github",
|
1118 |
+
"url": "https://github.com/sponsors/fb55"
|
1119 |
+
}
|
1120 |
+
],
|
1121 |
+
"dependencies": {
|
1122 |
+
"domelementtype": "^2.3.0",
|
1123 |
+
"domhandler": "^5.0.3",
|
1124 |
+
"domutils": "^3.1.0",
|
1125 |
+
"entities": "^4.5.0"
|
1126 |
+
}
|
1127 |
+
},
|
1128 |
+
"node_modules/http-errors": {
|
1129 |
+
"version": "2.0.0",
|
1130 |
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
|
1131 |
+
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
|
1132 |
+
"dependencies": {
|
1133 |
+
"depd": "2.0.0",
|
1134 |
+
"inherits": "2.0.4",
|
1135 |
+
"setprototypeof": "1.2.0",
|
1136 |
+
"statuses": "2.0.1",
|
1137 |
+
"toidentifier": "1.0.1"
|
1138 |
+
},
|
1139 |
+
"engines": {
|
1140 |
+
"node": ">= 0.8"
|
1141 |
+
}
|
1142 |
+
},
|
1143 |
+
"node_modules/http-signature": {
|
1144 |
+
"version": "1.2.0",
|
1145 |
+
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
|
1146 |
+
"integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==",
|
1147 |
+
"dependencies": {
|
1148 |
+
"assert-plus": "^1.0.0",
|
1149 |
+
"jsprim": "^1.2.2",
|
1150 |
+
"sshpk": "^1.7.0"
|
1151 |
+
},
|
1152 |
+
"engines": {
|
1153 |
+
"node": ">=0.8",
|
1154 |
+
"npm": ">=1.3.7"
|
1155 |
+
}
|
1156 |
+
},
|
1157 |
+
"node_modules/iconv-lite": {
|
1158 |
+
"version": "0.6.3",
|
1159 |
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
1160 |
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
1161 |
+
"dependencies": {
|
1162 |
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
1163 |
+
},
|
1164 |
+
"engines": {
|
1165 |
+
"node": ">=0.10.0"
|
1166 |
+
}
|
1167 |
+
},
|
1168 |
+
"node_modules/ignore-by-default": {
|
1169 |
+
"version": "1.0.1",
|
1170 |
+
"resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
|
1171 |
+
"integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
|
1172 |
+
"dev": true
|
1173 |
+
},
|
1174 |
+
"node_modules/image-decode": {
|
1175 |
+
"version": "1.2.2",
|
1176 |
+
"resolved": "https://registry.npmjs.org/image-decode/-/image-decode-1.2.2.tgz",
|
1177 |
+
"integrity": "sha512-WJSWrPNmEnWVYGkY22bA6206MKYjfGl01fdlwIp6ovdnPL2qGJyC3wQj8QqYbdblchzwgglFg8Jcb/1f6fhaTQ==",
|
1178 |
+
"dependencies": {
|
1179 |
+
"bmp-js": "^0.1.0",
|
1180 |
+
"buffer-to-uint8array": "^1.1.0",
|
1181 |
+
"image-type": "^3.0.0",
|
1182 |
+
"jpeg-js": "^0.3.4",
|
1183 |
+
"omggif": "^1.0.9",
|
1184 |
+
"pngjs": "^3.3.3",
|
1185 |
+
"to-array-buffer": "^3.0.0",
|
1186 |
+
"utif": "^2.0.1"
|
1187 |
+
}
|
1188 |
+
},
|
1189 |
+
"node_modules/image-pixels": {
|
1190 |
+
"version": "2.2.2",
|
1191 |
+
"resolved": "https://registry.npmjs.org/image-pixels/-/image-pixels-2.2.2.tgz",
|
1192 |
+
"integrity": "sha512-jcHECwLUEUBMQLqpZF0Bs0ac/jvZXs/97JwD6J39rP98vgTyvvNKhUjYaWf+BSKKPYXfenctOQV95sDC7Z/aZQ==",
|
1193 |
+
"dependencies": {
|
1194 |
+
"arr-flatten": "^1.1.0",
|
1195 |
+
"arraybuffer-to-string": "^1.0.2",
|
1196 |
+
"clip-pixels": "^1.0.1",
|
1197 |
+
"flip-pixels": "^1.0.1",
|
1198 |
+
"image-decode": "^1.1.0",
|
1199 |
+
"image-type": "^3.0.0",
|
1200 |
+
"is-base64": "^0.1.0",
|
1201 |
+
"is-blob": "^2.0.0",
|
1202 |
+
"is-browser": "^2.1.0",
|
1203 |
+
"is-buffer": "^2.0.3",
|
1204 |
+
"is-float-array": "^1.0.0",
|
1205 |
+
"is-plain-obj": "^1.1.0",
|
1206 |
+
"is-promise": "^2.1.0",
|
1207 |
+
"is-relative": "^1.0.0",
|
1208 |
+
"is-url": "^1.2.4",
|
1209 |
+
"object-assign": "^4.1.1",
|
1210 |
+
"parse-rect": "^1.2.0",
|
1211 |
+
"primitive-pool": "^1.1.0",
|
1212 |
+
"pxls": "^2.3.2",
|
1213 |
+
"request": "^2.88.0",
|
1214 |
+
"to-array-buffer": "^3.1.1",
|
1215 |
+
"to-uint8": "^1.4.0",
|
1216 |
+
"weak-map": "^1.0.5"
|
1217 |
+
}
|
1218 |
+
},
|
1219 |
+
"node_modules/image-type": {
|
1220 |
+
"version": "3.1.0",
|
1221 |
+
"resolved": "https://registry.npmjs.org/image-type/-/image-type-3.1.0.tgz",
|
1222 |
+
"integrity": "sha512-edYRXKQ3WD2yHXFGUbwoJVn5v7j1A6Z505uZUYIfzCwOOhPGLYSc3VOucF9fqbsaUbgb37DdjOU+WV4uo7ZooQ==",
|
1223 |
+
"dependencies": {
|
1224 |
+
"file-type": "^10.9.0"
|
1225 |
+
},
|
1226 |
+
"engines": {
|
1227 |
+
"node": ">=6"
|
1228 |
+
}
|
1229 |
+
},
|
1230 |
+
"node_modules/inherits": {
|
1231 |
+
"version": "2.0.4",
|
1232 |
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
1233 |
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
1234 |
+
},
|
1235 |
+
"node_modules/ipaddr.js": {
|
1236 |
+
"version": "1.9.1",
|
1237 |
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
1238 |
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
1239 |
+
"engines": {
|
1240 |
+
"node": ">= 0.10"
|
1241 |
+
}
|
1242 |
+
},
|
1243 |
+
"node_modules/is-base64": {
|
1244 |
+
"version": "0.1.0",
|
1245 |
+
"resolved": "https://registry.npmjs.org/is-base64/-/is-base64-0.1.0.tgz",
|
1246 |
+
"integrity": "sha512-WRRyllsGXJM7ZN7gPTCCQ/6wNPTRDwiWdPK66l5sJzcU/oOzcIcRRf0Rux8bkpox/1yjt0F6VJRsQOIG2qz5sg=="
|
1247 |
+
},
|
1248 |
+
"node_modules/is-binary-path": {
|
1249 |
+
"version": "2.1.0",
|
1250 |
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
1251 |
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
1252 |
+
"dev": true,
|
1253 |
+
"dependencies": {
|
1254 |
+
"binary-extensions": "^2.0.0"
|
1255 |
+
},
|
1256 |
+
"engines": {
|
1257 |
+
"node": ">=8"
|
1258 |
+
}
|
1259 |
+
},
|
1260 |
+
"node_modules/is-blob": {
|
1261 |
+
"version": "2.1.0",
|
1262 |
+
"resolved": "https://registry.npmjs.org/is-blob/-/is-blob-2.1.0.tgz",
|
1263 |
+
"integrity": "sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw==",
|
1264 |
+
"engines": {
|
1265 |
+
"node": ">=6"
|
1266 |
+
},
|
1267 |
+
"funding": {
|
1268 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1269 |
+
}
|
1270 |
+
},
|
1271 |
+
"node_modules/is-browser": {
|
1272 |
+
"version": "2.1.0",
|
1273 |
+
"resolved": "https://registry.npmjs.org/is-browser/-/is-browser-2.1.0.tgz",
|
1274 |
+
"integrity": "sha512-F5rTJxDQ2sW81fcfOR1GnCXT6sVJC104fCyfj+mjpwNEwaPYSn5fte5jiHmBg3DHsIoL/l8Kvw5VN5SsTRcRFQ=="
|
1275 |
+
},
|
1276 |
+
"node_modules/is-buffer": {
|
1277 |
+
"version": "2.0.5",
|
1278 |
+
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
|
1279 |
+
"integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
|
1280 |
+
"funding": [
|
1281 |
+
{
|
1282 |
+
"type": "github",
|
1283 |
+
"url": "https://github.com/sponsors/feross"
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"type": "patreon",
|
1287 |
+
"url": "https://www.patreon.com/feross"
|
1288 |
+
},
|
1289 |
+
{
|
1290 |
+
"type": "consulting",
|
1291 |
+
"url": "https://feross.org/support"
|
1292 |
+
}
|
1293 |
+
],
|
1294 |
+
"engines": {
|
1295 |
+
"node": ">=4"
|
1296 |
+
}
|
1297 |
+
},
|
1298 |
+
"node_modules/is-extglob": {
|
1299 |
+
"version": "2.1.1",
|
1300 |
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
1301 |
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
1302 |
+
"dev": true,
|
1303 |
+
"engines": {
|
1304 |
+
"node": ">=0.10.0"
|
1305 |
+
}
|
1306 |
+
},
|
1307 |
+
"node_modules/is-float-array": {
|
1308 |
+
"version": "1.0.0",
|
1309 |
+
"resolved": "https://registry.npmjs.org/is-float-array/-/is-float-array-1.0.0.tgz",
|
1310 |
+
"integrity": "sha512-4ew1Sx6B6kEAl3T3NOM0yB94J3NZnBdNt4paw0e8nY73yHHTeTEhyQ3Lj7EQEnv5LD+GxNTaT4L46jcKjjpLiQ=="
|
1311 |
+
},
|
1312 |
+
"node_modules/is-glob": {
|
1313 |
+
"version": "4.0.3",
|
1314 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
1315 |
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
1316 |
+
"dev": true,
|
1317 |
+
"dependencies": {
|
1318 |
+
"is-extglob": "^2.1.1"
|
1319 |
+
},
|
1320 |
+
"engines": {
|
1321 |
+
"node": ">=0.10.0"
|
1322 |
+
}
|
1323 |
+
},
|
1324 |
+
"node_modules/is-number": {
|
1325 |
+
"version": "7.0.0",
|
1326 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
1327 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
1328 |
+
"dev": true,
|
1329 |
+
"engines": {
|
1330 |
+
"node": ">=0.12.0"
|
1331 |
+
}
|
1332 |
+
},
|
1333 |
+
"node_modules/is-plain-obj": {
|
1334 |
+
"version": "1.1.0",
|
1335 |
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
1336 |
+
"integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==",
|
1337 |
+
"engines": {
|
1338 |
+
"node": ">=0.10.0"
|
1339 |
+
}
|
1340 |
+
},
|
1341 |
+
"node_modules/is-promise": {
|
1342 |
+
"version": "2.2.2",
|
1343 |
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
|
1344 |
+
"integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
|
1345 |
+
},
|
1346 |
+
"node_modules/is-relative": {
|
1347 |
+
"version": "1.0.0",
|
1348 |
+
"resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
|
1349 |
+
"integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==",
|
1350 |
+
"dependencies": {
|
1351 |
+
"is-unc-path": "^1.0.0"
|
1352 |
+
},
|
1353 |
+
"engines": {
|
1354 |
+
"node": ">=0.10.0"
|
1355 |
+
}
|
1356 |
+
},
|
1357 |
+
"node_modules/is-typedarray": {
|
1358 |
+
"version": "1.0.0",
|
1359 |
+
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
1360 |
+
"integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
|
1361 |
+
},
|
1362 |
+
"node_modules/is-unc-path": {
|
1363 |
+
"version": "1.0.0",
|
1364 |
+
"resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz",
|
1365 |
+
"integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==",
|
1366 |
+
"dependencies": {
|
1367 |
+
"unc-path-regex": "^0.1.2"
|
1368 |
+
},
|
1369 |
+
"engines": {
|
1370 |
+
"node": ">=0.10.0"
|
1371 |
+
}
|
1372 |
+
},
|
1373 |
+
"node_modules/is-url": {
|
1374 |
+
"version": "1.2.4",
|
1375 |
+
"resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
|
1376 |
+
"integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
|
1377 |
+
},
|
1378 |
+
"node_modules/isstream": {
|
1379 |
+
"version": "0.1.2",
|
1380 |
+
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
1381 |
+
"integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="
|
1382 |
+
},
|
1383 |
+
"node_modules/jpeg-js": {
|
1384 |
+
"version": "0.3.7",
|
1385 |
+
"resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.3.7.tgz",
|
1386 |
+
"integrity": "sha512-9IXdWudL61npZjvLuVe/ktHiA41iE8qFyLB+4VDTblEsWBzeg8WQTlktdUK4CdncUqtUgUg0bbOmTE2bKBKaBQ=="
|
1387 |
+
},
|
1388 |
+
"node_modules/jsbn": {
|
1389 |
+
"version": "0.1.1",
|
1390 |
+
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
1391 |
+
"integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="
|
1392 |
+
},
|
1393 |
+
"node_modules/json-schema": {
|
1394 |
+
"version": "0.4.0",
|
1395 |
+
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
|
1396 |
+
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
|
1397 |
+
},
|
1398 |
+
"node_modules/json-schema-traverse": {
|
1399 |
+
"version": "0.4.1",
|
1400 |
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
1401 |
+
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
1402 |
+
},
|
1403 |
+
"node_modules/json-stringify-safe": {
|
1404 |
+
"version": "5.0.1",
|
1405 |
+
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
1406 |
+
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
|
1407 |
+
},
|
1408 |
+
"node_modules/jsprim": {
|
1409 |
+
"version": "1.4.2",
|
1410 |
+
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
|
1411 |
+
"integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
|
1412 |
+
"dependencies": {
|
1413 |
+
"assert-plus": "1.0.0",
|
1414 |
+
"extsprintf": "1.3.0",
|
1415 |
+
"json-schema": "0.4.0",
|
1416 |
+
"verror": "1.10.0"
|
1417 |
+
},
|
1418 |
+
"engines": {
|
1419 |
+
"node": ">=0.6.0"
|
1420 |
+
}
|
1421 |
+
},
|
1422 |
+
"node_modules/math-intrinsics": {
|
1423 |
+
"version": "1.1.0",
|
1424 |
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
1425 |
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
1426 |
+
"engines": {
|
1427 |
+
"node": ">= 0.4"
|
1428 |
+
}
|
1429 |
+
},
|
1430 |
+
"node_modules/media-typer": {
|
1431 |
+
"version": "0.3.0",
|
1432 |
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
1433 |
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
1434 |
+
"engines": {
|
1435 |
+
"node": ">= 0.6"
|
1436 |
+
}
|
1437 |
+
},
|
1438 |
+
"node_modules/memory-cache": {
|
1439 |
+
"version": "0.2.0",
|
1440 |
+
"resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz",
|
1441 |
+
"integrity": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA=="
|
1442 |
+
},
|
1443 |
+
"node_modules/merge-descriptors": {
|
1444 |
+
"version": "1.0.3",
|
1445 |
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
1446 |
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
1447 |
+
"funding": {
|
1448 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1449 |
+
}
|
1450 |
+
},
|
1451 |
+
"node_modules/methods": {
|
1452 |
+
"version": "1.1.2",
|
1453 |
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
1454 |
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
1455 |
+
"engines": {
|
1456 |
+
"node": ">= 0.6"
|
1457 |
+
}
|
1458 |
+
},
|
1459 |
+
"node_modules/mime": {
|
1460 |
+
"version": "1.6.0",
|
1461 |
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
1462 |
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
1463 |
+
"bin": {
|
1464 |
+
"mime": "cli.js"
|
1465 |
+
},
|
1466 |
+
"engines": {
|
1467 |
+
"node": ">=4"
|
1468 |
+
}
|
1469 |
+
},
|
1470 |
+
"node_modules/mime-db": {
|
1471 |
+
"version": "1.52.0",
|
1472 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
1473 |
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
1474 |
+
"engines": {
|
1475 |
+
"node": ">= 0.6"
|
1476 |
+
}
|
1477 |
+
},
|
1478 |
+
"node_modules/mime-types": {
|
1479 |
+
"version": "2.1.35",
|
1480 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
1481 |
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
1482 |
+
"dependencies": {
|
1483 |
+
"mime-db": "1.52.0"
|
1484 |
+
},
|
1485 |
+
"engines": {
|
1486 |
+
"node": ">= 0.6"
|
1487 |
+
}
|
1488 |
+
},
|
1489 |
+
"node_modules/minimatch": {
|
1490 |
+
"version": "3.1.2",
|
1491 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
1492 |
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
1493 |
+
"dev": true,
|
1494 |
+
"dependencies": {
|
1495 |
+
"brace-expansion": "^1.1.7"
|
1496 |
+
},
|
1497 |
+
"engines": {
|
1498 |
+
"node": "*"
|
1499 |
+
}
|
1500 |
+
},
|
1501 |
+
"node_modules/ms": {
|
1502 |
+
"version": "2.0.0",
|
1503 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
1504 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
1505 |
+
},
|
1506 |
+
"node_modules/negotiator": {
|
1507 |
+
"version": "0.6.3",
|
1508 |
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
1509 |
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
1510 |
+
"engines": {
|
1511 |
+
"node": ">= 0.6"
|
1512 |
+
}
|
1513 |
+
},
|
1514 |
+
"node_modules/nodemon": {
|
1515 |
+
"version": "3.1.9",
|
1516 |
+
"resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz",
|
1517 |
+
"integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==",
|
1518 |
+
"dev": true,
|
1519 |
+
"dependencies": {
|
1520 |
+
"chokidar": "^3.5.2",
|
1521 |
+
"debug": "^4",
|
1522 |
+
"ignore-by-default": "^1.0.1",
|
1523 |
+
"minimatch": "^3.1.2",
|
1524 |
+
"pstree.remy": "^1.1.8",
|
1525 |
+
"semver": "^7.5.3",
|
1526 |
+
"simple-update-notifier": "^2.0.0",
|
1527 |
+
"supports-color": "^5.5.0",
|
1528 |
+
"touch": "^3.1.0",
|
1529 |
+
"undefsafe": "^2.0.5"
|
1530 |
+
},
|
1531 |
+
"bin": {
|
1532 |
+
"nodemon": "bin/nodemon.js"
|
1533 |
+
},
|
1534 |
+
"engines": {
|
1535 |
+
"node": ">=10"
|
1536 |
+
},
|
1537 |
+
"funding": {
|
1538 |
+
"type": "opencollective",
|
1539 |
+
"url": "https://opencollective.com/nodemon"
|
1540 |
+
}
|
1541 |
+
},
|
1542 |
+
"node_modules/nodemon/node_modules/debug": {
|
1543 |
+
"version": "4.4.0",
|
1544 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
1545 |
+
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
1546 |
+
"dev": true,
|
1547 |
+
"dependencies": {
|
1548 |
+
"ms": "^2.1.3"
|
1549 |
+
},
|
1550 |
+
"engines": {
|
1551 |
+
"node": ">=6.0"
|
1552 |
+
},
|
1553 |
+
"peerDependenciesMeta": {
|
1554 |
+
"supports-color": {
|
1555 |
+
"optional": true
|
1556 |
+
}
|
1557 |
+
}
|
1558 |
+
},
|
1559 |
+
"node_modules/nodemon/node_modules/ms": {
|
1560 |
+
"version": "2.1.3",
|
1561 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
1562 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
1563 |
+
"dev": true
|
1564 |
+
},
|
1565 |
+
"node_modules/normalize-path": {
|
1566 |
+
"version": "3.0.0",
|
1567 |
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
1568 |
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
1569 |
+
"dev": true,
|
1570 |
+
"engines": {
|
1571 |
+
"node": ">=0.10.0"
|
1572 |
+
}
|
1573 |
+
},
|
1574 |
+
"node_modules/nth-check": {
|
1575 |
+
"version": "2.1.1",
|
1576 |
+
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
|
1577 |
+
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
|
1578 |
+
"dependencies": {
|
1579 |
+
"boolbase": "^1.0.0"
|
1580 |
+
},
|
1581 |
+
"funding": {
|
1582 |
+
"url": "https://github.com/fb55/nth-check?sponsor=1"
|
1583 |
+
}
|
1584 |
+
},
|
1585 |
+
"node_modules/oauth-sign": {
|
1586 |
+
"version": "0.9.0",
|
1587 |
+
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
|
1588 |
+
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
|
1589 |
+
"engines": {
|
1590 |
+
"node": "*"
|
1591 |
+
}
|
1592 |
+
},
|
1593 |
+
"node_modules/object-assign": {
|
1594 |
+
"version": "4.1.1",
|
1595 |
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
1596 |
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
1597 |
+
"engines": {
|
1598 |
+
"node": ">=0.10.0"
|
1599 |
+
}
|
1600 |
+
},
|
1601 |
+
"node_modules/object-inspect": {
|
1602 |
+
"version": "1.13.3",
|
1603 |
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
|
1604 |
+
"integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
|
1605 |
+
"engines": {
|
1606 |
+
"node": ">= 0.4"
|
1607 |
+
},
|
1608 |
+
"funding": {
|
1609 |
+
"url": "https://github.com/sponsors/ljharb"
|
1610 |
+
}
|
1611 |
+
},
|
1612 |
+
"node_modules/object-keys": {
|
1613 |
+
"version": "1.1.1",
|
1614 |
+
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
|
1615 |
+
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
|
1616 |
+
"engines": {
|
1617 |
+
"node": ">= 0.4"
|
1618 |
+
}
|
1619 |
+
},
|
1620 |
+
"node_modules/omggif": {
|
1621 |
+
"version": "1.0.10",
|
1622 |
+
"resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz",
|
1623 |
+
"integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw=="
|
1624 |
+
},
|
1625 |
+
"node_modules/on-finished": {
|
1626 |
+
"version": "2.4.1",
|
1627 |
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
1628 |
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
1629 |
+
"dependencies": {
|
1630 |
+
"ee-first": "1.1.1"
|
1631 |
+
},
|
1632 |
+
"engines": {
|
1633 |
+
"node": ">= 0.8"
|
1634 |
+
}
|
1635 |
+
},
|
1636 |
+
"node_modules/on-headers": {
|
1637 |
+
"version": "1.0.2",
|
1638 |
+
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
|
1639 |
+
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
|
1640 |
+
"engines": {
|
1641 |
+
"node": ">= 0.8"
|
1642 |
+
}
|
1643 |
+
},
|
1644 |
+
"node_modules/pako": {
|
1645 |
+
"version": "1.0.11",
|
1646 |
+
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
1647 |
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
|
1648 |
+
},
|
1649 |
+
"node_modules/parse-rect": {
|
1650 |
+
"version": "1.2.0",
|
1651 |
+
"resolved": "https://registry.npmjs.org/parse-rect/-/parse-rect-1.2.0.tgz",
|
1652 |
+
"integrity": "sha512-4QZ6KYbnE6RTwg9E0HpLchUM9EZt6DnDxajFZZDSV4p/12ZJEvPO702DZpGvRYEPo00yKDys7jASi+/w7aO8LA==",
|
1653 |
+
"dependencies": {
|
1654 |
+
"pick-by-alias": "^1.2.0"
|
1655 |
+
}
|
1656 |
+
},
|
1657 |
+
"node_modules/parse5": {
|
1658 |
+
"version": "7.2.1",
|
1659 |
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz",
|
1660 |
+
"integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==",
|
1661 |
+
"dependencies": {
|
1662 |
+
"entities": "^4.5.0"
|
1663 |
+
},
|
1664 |
+
"funding": {
|
1665 |
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
1666 |
+
}
|
1667 |
+
},
|
1668 |
+
"node_modules/parse5-htmlparser2-tree-adapter": {
|
1669 |
+
"version": "7.1.0",
|
1670 |
+
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz",
|
1671 |
+
"integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==",
|
1672 |
+
"dependencies": {
|
1673 |
+
"domhandler": "^5.0.3",
|
1674 |
+
"parse5": "^7.0.0"
|
1675 |
+
},
|
1676 |
+
"funding": {
|
1677 |
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
1678 |
+
}
|
1679 |
+
},
|
1680 |
+
"node_modules/parse5-parser-stream": {
|
1681 |
+
"version": "7.1.2",
|
1682 |
+
"resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz",
|
1683 |
+
"integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==",
|
1684 |
+
"dependencies": {
|
1685 |
+
"parse5": "^7.0.0"
|
1686 |
+
},
|
1687 |
+
"funding": {
|
1688 |
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
1689 |
+
}
|
1690 |
+
},
|
1691 |
+
"node_modules/parseurl": {
|
1692 |
+
"version": "1.3.3",
|
1693 |
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
1694 |
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
1695 |
+
"engines": {
|
1696 |
+
"node": ">= 0.8"
|
1697 |
+
}
|
1698 |
+
},
|
1699 |
+
"node_modules/path-to-regexp": {
|
1700 |
+
"version": "0.1.12",
|
1701 |
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
|
1702 |
+
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
|
1703 |
+
},
|
1704 |
+
"node_modules/performance-now": {
|
1705 |
+
"version": "2.1.0",
|
1706 |
+
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
|
1707 |
+
"integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
|
1708 |
+
},
|
1709 |
+
"node_modules/pick-by-alias": {
|
1710 |
+
"version": "1.2.0",
|
1711 |
+
"resolved": "https://registry.npmjs.org/pick-by-alias/-/pick-by-alias-1.2.0.tgz",
|
1712 |
+
"integrity": "sha512-ESj2+eBxhGrcA1azgHs7lARG5+5iLakc/6nlfbpjcLl00HuuUOIuORhYXN4D1HfvMSKuVtFQjAlnwi1JHEeDIw=="
|
1713 |
+
},
|
1714 |
+
"node_modules/picomatch": {
|
1715 |
+
"version": "2.3.1",
|
1716 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
1717 |
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
1718 |
+
"dev": true,
|
1719 |
+
"engines": {
|
1720 |
+
"node": ">=8.6"
|
1721 |
+
},
|
1722 |
+
"funding": {
|
1723 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
1724 |
+
}
|
1725 |
+
},
|
1726 |
+
"node_modules/pngjs": {
|
1727 |
+
"version": "3.4.0",
|
1728 |
+
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz",
|
1729 |
+
"integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==",
|
1730 |
+
"engines": {
|
1731 |
+
"node": ">=4.0.0"
|
1732 |
+
}
|
1733 |
+
},
|
1734 |
+
"node_modules/primitive-pool": {
|
1735 |
+
"version": "1.1.0",
|
1736 |
+
"resolved": "https://registry.npmjs.org/primitive-pool/-/primitive-pool-1.1.0.tgz",
|
1737 |
+
"integrity": "sha512-pl4l1R9OWWb4XmUpeX30yGz8ukZ25EiLhwlP2KqOqCb8NkwJt8qUeuCQEsk8CiAS7msICbPD18csu8jcIX7GNg=="
|
1738 |
+
},
|
1739 |
+
"node_modules/proxy-addr": {
|
1740 |
+
"version": "2.0.7",
|
1741 |
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
1742 |
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
1743 |
+
"dependencies": {
|
1744 |
+
"forwarded": "0.2.0",
|
1745 |
+
"ipaddr.js": "1.9.1"
|
1746 |
+
},
|
1747 |
+
"engines": {
|
1748 |
+
"node": ">= 0.10"
|
1749 |
+
}
|
1750 |
+
},
|
1751 |
+
"node_modules/proxy-from-env": {
|
1752 |
+
"version": "1.1.0",
|
1753 |
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
1754 |
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
|
1755 |
+
},
|
1756 |
+
"node_modules/psl": {
|
1757 |
+
"version": "1.15.0",
|
1758 |
+
"resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
|
1759 |
+
"integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
|
1760 |
+
"dependencies": {
|
1761 |
+
"punycode": "^2.3.1"
|
1762 |
+
},
|
1763 |
+
"funding": {
|
1764 |
+
"url": "https://github.com/sponsors/lupomontero"
|
1765 |
+
}
|
1766 |
+
},
|
1767 |
+
"node_modules/pstree.remy": {
|
1768 |
+
"version": "1.1.8",
|
1769 |
+
"resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
|
1770 |
+
"integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
|
1771 |
+
"dev": true
|
1772 |
+
},
|
1773 |
+
"node_modules/punycode": {
|
1774 |
+
"version": "2.3.1",
|
1775 |
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
1776 |
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
1777 |
+
"engines": {
|
1778 |
+
"node": ">=6"
|
1779 |
+
}
|
1780 |
+
},
|
1781 |
+
"node_modules/pxls": {
|
1782 |
+
"version": "2.3.2",
|
1783 |
+
"resolved": "https://registry.npmjs.org/pxls/-/pxls-2.3.2.tgz",
|
1784 |
+
"integrity": "sha512-pQkwgbLqWPcuES5iEmGa10OlCf5xG0blkIF3dg7PpRZShbTYcvAdfFfGL03SMrkaSUaa/V0UpN9HWg40O2AIIw==",
|
1785 |
+
"dependencies": {
|
1786 |
+
"arr-flatten": "^1.1.0",
|
1787 |
+
"compute-dims": "^1.1.0",
|
1788 |
+
"flip-pixels": "^1.0.2",
|
1789 |
+
"is-browser": "^2.1.0",
|
1790 |
+
"is-buffer": "^2.0.3",
|
1791 |
+
"to-uint8": "^1.4.1"
|
1792 |
+
}
|
1793 |
+
},
|
1794 |
+
"node_modules/qs": {
|
1795 |
+
"version": "6.13.0",
|
1796 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
|
1797 |
+
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
|
1798 |
+
"dependencies": {
|
1799 |
+
"side-channel": "^1.0.6"
|
1800 |
+
},
|
1801 |
+
"engines": {
|
1802 |
+
"node": ">=0.6"
|
1803 |
+
},
|
1804 |
+
"funding": {
|
1805 |
+
"url": "https://github.com/sponsors/ljharb"
|
1806 |
+
}
|
1807 |
+
},
|
1808 |
+
"node_modules/range-parser": {
|
1809 |
+
"version": "1.2.1",
|
1810 |
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
1811 |
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
1812 |
+
"engines": {
|
1813 |
+
"node": ">= 0.6"
|
1814 |
+
}
|
1815 |
+
},
|
1816 |
+
"node_modules/raw-body": {
|
1817 |
+
"version": "2.5.2",
|
1818 |
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
|
1819 |
+
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
|
1820 |
+
"dependencies": {
|
1821 |
+
"bytes": "3.1.2",
|
1822 |
+
"http-errors": "2.0.0",
|
1823 |
+
"iconv-lite": "0.4.24",
|
1824 |
+
"unpipe": "1.0.0"
|
1825 |
+
},
|
1826 |
+
"engines": {
|
1827 |
+
"node": ">= 0.8"
|
1828 |
+
}
|
1829 |
+
},
|
1830 |
+
"node_modules/raw-body/node_modules/iconv-lite": {
|
1831 |
+
"version": "0.4.24",
|
1832 |
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
1833 |
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
1834 |
+
"dependencies": {
|
1835 |
+
"safer-buffer": ">= 2.1.2 < 3"
|
1836 |
+
},
|
1837 |
+
"engines": {
|
1838 |
+
"node": ">=0.10.0"
|
1839 |
+
}
|
1840 |
+
},
|
1841 |
+
"node_modules/readdirp": {
|
1842 |
+
"version": "3.6.0",
|
1843 |
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
1844 |
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
1845 |
+
"dev": true,
|
1846 |
+
"dependencies": {
|
1847 |
+
"picomatch": "^2.2.1"
|
1848 |
+
},
|
1849 |
+
"engines": {
|
1850 |
+
"node": ">=8.10.0"
|
1851 |
+
}
|
1852 |
+
},
|
1853 |
+
"node_modules/redis": {
|
1854 |
+
"version": "4.7.0",
|
1855 |
+
"resolved": "https://registry.npmjs.org/redis/-/redis-4.7.0.tgz",
|
1856 |
+
"integrity": "sha512-zvmkHEAdGMn+hMRXuMBtu4Vo5P6rHQjLoHftu+lBqq8ZTA3RCVC/WzD790bkKKiNFp7d5/9PcSD19fJyyRvOdQ==",
|
1857 |
+
"workspaces": [
|
1858 |
+
"./packages/*"
|
1859 |
+
],
|
1860 |
+
"dependencies": {
|
1861 |
+
"@redis/bloom": "1.2.0",
|
1862 |
+
"@redis/client": "1.6.0",
|
1863 |
+
"@redis/graph": "1.1.1",
|
1864 |
+
"@redis/json": "1.0.7",
|
1865 |
+
"@redis/search": "1.2.0",
|
1866 |
+
"@redis/time-series": "1.1.0"
|
1867 |
+
}
|
1868 |
+
},
|
1869 |
+
"node_modules/regex-regex": {
|
1870 |
+
"version": "1.0.0",
|
1871 |
+
"resolved": "https://registry.npmjs.org/regex-regex/-/regex-regex-1.0.0.tgz",
|
1872 |
+
"integrity": "sha512-FPbEhFTLpxKNgHKay3zMfkHzFK2ebViAlyvsz5euO4kwekH0T6fAL4Sdo2CgQ7Y1tGB5HqQm8SBq7pW5GegvVA=="
|
1873 |
+
},
|
1874 |
+
"node_modules/request": {
|
1875 |
+
"version": "2.88.2",
|
1876 |
+
"resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
|
1877 |
+
"integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
|
1878 |
+
"deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
|
1879 |
+
"dependencies": {
|
1880 |
+
"aws-sign2": "~0.7.0",
|
1881 |
+
"aws4": "^1.8.0",
|
1882 |
+
"caseless": "~0.12.0",
|
1883 |
+
"combined-stream": "~1.0.6",
|
1884 |
+
"extend": "~3.0.2",
|
1885 |
+
"forever-agent": "~0.6.1",
|
1886 |
+
"form-data": "~2.3.2",
|
1887 |
+
"har-validator": "~5.1.3",
|
1888 |
+
"http-signature": "~1.2.0",
|
1889 |
+
"is-typedarray": "~1.0.0",
|
1890 |
+
"isstream": "~0.1.2",
|
1891 |
+
"json-stringify-safe": "~5.0.1",
|
1892 |
+
"mime-types": "~2.1.19",
|
1893 |
+
"oauth-sign": "~0.9.0",
|
1894 |
+
"performance-now": "^2.1.0",
|
1895 |
+
"qs": "~6.5.2",
|
1896 |
+
"safe-buffer": "^5.1.2",
|
1897 |
+
"tough-cookie": "~2.5.0",
|
1898 |
+
"tunnel-agent": "^0.6.0",
|
1899 |
+
"uuid": "^3.3.2"
|
1900 |
+
},
|
1901 |
+
"engines": {
|
1902 |
+
"node": ">= 6"
|
1903 |
+
}
|
1904 |
+
},
|
1905 |
+
"node_modules/request/node_modules/form-data": {
|
1906 |
+
"version": "2.3.3",
|
1907 |
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
1908 |
+
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
1909 |
+
"dependencies": {
|
1910 |
+
"asynckit": "^0.4.0",
|
1911 |
+
"combined-stream": "^1.0.6",
|
1912 |
+
"mime-types": "^2.1.12"
|
1913 |
+
},
|
1914 |
+
"engines": {
|
1915 |
+
"node": ">= 0.12"
|
1916 |
+
}
|
1917 |
+
},
|
1918 |
+
"node_modules/request/node_modules/qs": {
|
1919 |
+
"version": "6.5.3",
|
1920 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
|
1921 |
+
"integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
|
1922 |
+
"engines": {
|
1923 |
+
"node": ">=0.6"
|
1924 |
+
}
|
1925 |
+
},
|
1926 |
+
"node_modules/safe-buffer": {
|
1927 |
+
"version": "5.2.1",
|
1928 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
1929 |
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
1930 |
+
"funding": [
|
1931 |
+
{
|
1932 |
+
"type": "github",
|
1933 |
+
"url": "https://github.com/sponsors/feross"
|
1934 |
+
},
|
1935 |
+
{
|
1936 |
+
"type": "patreon",
|
1937 |
+
"url": "https://www.patreon.com/feross"
|
1938 |
+
},
|
1939 |
+
{
|
1940 |
+
"type": "consulting",
|
1941 |
+
"url": "https://feross.org/support"
|
1942 |
+
}
|
1943 |
+
]
|
1944 |
+
},
|
1945 |
+
"node_modules/safer-buffer": {
|
1946 |
+
"version": "2.1.2",
|
1947 |
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
1948 |
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
1949 |
+
},
|
1950 |
+
"node_modules/semver": {
|
1951 |
+
"version": "7.7.0",
|
1952 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.0.tgz",
|
1953 |
+
"integrity": "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==",
|
1954 |
+
"dev": true,
|
1955 |
+
"bin": {
|
1956 |
+
"semver": "bin/semver.js"
|
1957 |
+
},
|
1958 |
+
"engines": {
|
1959 |
+
"node": ">=10"
|
1960 |
+
}
|
1961 |
+
},
|
1962 |
+
"node_modules/send": {
|
1963 |
+
"version": "0.19.0",
|
1964 |
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
|
1965 |
+
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
|
1966 |
+
"dependencies": {
|
1967 |
+
"debug": "2.6.9",
|
1968 |
+
"depd": "2.0.0",
|
1969 |
+
"destroy": "1.2.0",
|
1970 |
+
"encodeurl": "~1.0.2",
|
1971 |
+
"escape-html": "~1.0.3",
|
1972 |
+
"etag": "~1.8.1",
|
1973 |
+
"fresh": "0.5.2",
|
1974 |
+
"http-errors": "2.0.0",
|
1975 |
+
"mime": "1.6.0",
|
1976 |
+
"ms": "2.1.3",
|
1977 |
+
"on-finished": "2.4.1",
|
1978 |
+
"range-parser": "~1.2.1",
|
1979 |
+
"statuses": "2.0.1"
|
1980 |
+
},
|
1981 |
+
"engines": {
|
1982 |
+
"node": ">= 0.8.0"
|
1983 |
+
}
|
1984 |
+
},
|
1985 |
+
"node_modules/send/node_modules/encodeurl": {
|
1986 |
+
"version": "1.0.2",
|
1987 |
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
1988 |
+
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
|
1989 |
+
"engines": {
|
1990 |
+
"node": ">= 0.8"
|
1991 |
+
}
|
1992 |
+
},
|
1993 |
+
"node_modules/send/node_modules/ms": {
|
1994 |
+
"version": "2.1.3",
|
1995 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
1996 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
1997 |
+
},
|
1998 |
+
"node_modules/serve-static": {
|
1999 |
+
"version": "1.16.2",
|
2000 |
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
|
2001 |
+
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
|
2002 |
+
"dependencies": {
|
2003 |
+
"encodeurl": "~2.0.0",
|
2004 |
+
"escape-html": "~1.0.3",
|
2005 |
+
"parseurl": "~1.3.3",
|
2006 |
+
"send": "0.19.0"
|
2007 |
+
},
|
2008 |
+
"engines": {
|
2009 |
+
"node": ">= 0.8.0"
|
2010 |
+
}
|
2011 |
+
},
|
2012 |
+
"node_modules/setprototypeof": {
|
2013 |
+
"version": "1.2.0",
|
2014 |
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
2015 |
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
|
2016 |
+
},
|
2017 |
+
"node_modules/side-channel": {
|
2018 |
+
"version": "1.1.0",
|
2019 |
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
2020 |
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
2021 |
+
"dependencies": {
|
2022 |
+
"es-errors": "^1.3.0",
|
2023 |
+
"object-inspect": "^1.13.3",
|
2024 |
+
"side-channel-list": "^1.0.0",
|
2025 |
+
"side-channel-map": "^1.0.1",
|
2026 |
+
"side-channel-weakmap": "^1.0.2"
|
2027 |
+
},
|
2028 |
+
"engines": {
|
2029 |
+
"node": ">= 0.4"
|
2030 |
+
},
|
2031 |
+
"funding": {
|
2032 |
+
"url": "https://github.com/sponsors/ljharb"
|
2033 |
+
}
|
2034 |
+
},
|
2035 |
+
"node_modules/side-channel-list": {
|
2036 |
+
"version": "1.0.0",
|
2037 |
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
2038 |
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
2039 |
+
"dependencies": {
|
2040 |
+
"es-errors": "^1.3.0",
|
2041 |
+
"object-inspect": "^1.13.3"
|
2042 |
+
},
|
2043 |
+
"engines": {
|
2044 |
+
"node": ">= 0.4"
|
2045 |
+
},
|
2046 |
+
"funding": {
|
2047 |
+
"url": "https://github.com/sponsors/ljharb"
|
2048 |
+
}
|
2049 |
+
},
|
2050 |
+
"node_modules/side-channel-map": {
|
2051 |
+
"version": "1.0.1",
|
2052 |
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
2053 |
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
2054 |
+
"dependencies": {
|
2055 |
+
"call-bound": "^1.0.2",
|
2056 |
+
"es-errors": "^1.3.0",
|
2057 |
+
"get-intrinsic": "^1.2.5",
|
2058 |
+
"object-inspect": "^1.13.3"
|
2059 |
+
},
|
2060 |
+
"engines": {
|
2061 |
+
"node": ">= 0.4"
|
2062 |
+
},
|
2063 |
+
"funding": {
|
2064 |
+
"url": "https://github.com/sponsors/ljharb"
|
2065 |
+
}
|
2066 |
+
},
|
2067 |
+
"node_modules/side-channel-weakmap": {
|
2068 |
+
"version": "1.0.2",
|
2069 |
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
2070 |
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
2071 |
+
"dependencies": {
|
2072 |
+
"call-bound": "^1.0.2",
|
2073 |
+
"es-errors": "^1.3.0",
|
2074 |
+
"get-intrinsic": "^1.2.5",
|
2075 |
+
"object-inspect": "^1.13.3",
|
2076 |
+
"side-channel-map": "^1.0.1"
|
2077 |
+
},
|
2078 |
+
"engines": {
|
2079 |
+
"node": ">= 0.4"
|
2080 |
+
},
|
2081 |
+
"funding": {
|
2082 |
+
"url": "https://github.com/sponsors/ljharb"
|
2083 |
+
}
|
2084 |
+
},
|
2085 |
+
"node_modules/simple-update-notifier": {
|
2086 |
+
"version": "2.0.0",
|
2087 |
+
"resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
|
2088 |
+
"integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
|
2089 |
+
"dev": true,
|
2090 |
+
"dependencies": {
|
2091 |
+
"semver": "^7.5.3"
|
2092 |
+
},
|
2093 |
+
"engines": {
|
2094 |
+
"node": ">=10"
|
2095 |
+
}
|
2096 |
+
},
|
2097 |
+
"node_modules/sshpk": {
|
2098 |
+
"version": "1.18.0",
|
2099 |
+
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz",
|
2100 |
+
"integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
|
2101 |
+
"dependencies": {
|
2102 |
+
"asn1": "~0.2.3",
|
2103 |
+
"assert-plus": "^1.0.0",
|
2104 |
+
"bcrypt-pbkdf": "^1.0.0",
|
2105 |
+
"dashdash": "^1.12.0",
|
2106 |
+
"ecc-jsbn": "~0.1.1",
|
2107 |
+
"getpass": "^0.1.1",
|
2108 |
+
"jsbn": "~0.1.0",
|
2109 |
+
"safer-buffer": "^2.0.2",
|
2110 |
+
"tweetnacl": "~0.14.0"
|
2111 |
+
},
|
2112 |
+
"bin": {
|
2113 |
+
"sshpk-conv": "bin/sshpk-conv",
|
2114 |
+
"sshpk-sign": "bin/sshpk-sign",
|
2115 |
+
"sshpk-verify": "bin/sshpk-verify"
|
2116 |
+
},
|
2117 |
+
"engines": {
|
2118 |
+
"node": ">=0.10.0"
|
2119 |
+
}
|
2120 |
+
},
|
2121 |
+
"node_modules/statuses": {
|
2122 |
+
"version": "2.0.1",
|
2123 |
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
|
2124 |
+
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
|
2125 |
+
"engines": {
|
2126 |
+
"node": ">= 0.8"
|
2127 |
+
}
|
2128 |
+
},
|
2129 |
+
"node_modules/string-to-arraybuffer": {
|
2130 |
+
"version": "1.0.2",
|
2131 |
+
"resolved": "https://registry.npmjs.org/string-to-arraybuffer/-/string-to-arraybuffer-1.0.2.tgz",
|
2132 |
+
"integrity": "sha512-DaGZidzi93dwjQen5I2osxR9ERS/R7B1PFyufNMnzhj+fmlDQAc1DSDIJVJhgI8Oq221efIMbABUBdPHDRt43Q==",
|
2133 |
+
"dependencies": {
|
2134 |
+
"atob-lite": "^2.0.0",
|
2135 |
+
"is-base64": "^0.1.0"
|
2136 |
+
}
|
2137 |
+
},
|
2138 |
+
"node_modules/supports-color": {
|
2139 |
+
"version": "5.5.0",
|
2140 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
2141 |
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
2142 |
+
"dev": true,
|
2143 |
+
"dependencies": {
|
2144 |
+
"has-flag": "^3.0.0"
|
2145 |
+
},
|
2146 |
+
"engines": {
|
2147 |
+
"node": ">=4"
|
2148 |
+
}
|
2149 |
+
},
|
2150 |
+
"node_modules/to-array-buffer": {
|
2151 |
+
"version": "3.2.0",
|
2152 |
+
"resolved": "https://registry.npmjs.org/to-array-buffer/-/to-array-buffer-3.2.0.tgz",
|
2153 |
+
"integrity": "sha512-zN33mwi0gpL+7xW1ITLfJ48CEj6ZQW0ZAP0MU+2W3kEY0PAIncyuxmD4OqkUVhPAbTP7amq9j/iwvZKYS+lzSQ==",
|
2154 |
+
"dependencies": {
|
2155 |
+
"flatten-vertex-data": "^1.0.2",
|
2156 |
+
"is-blob": "^2.0.1",
|
2157 |
+
"string-to-arraybuffer": "^1.0.0"
|
2158 |
+
}
|
2159 |
+
},
|
2160 |
+
"node_modules/to-regex-range": {
|
2161 |
+
"version": "5.0.1",
|
2162 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
2163 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
2164 |
+
"dev": true,
|
2165 |
+
"dependencies": {
|
2166 |
+
"is-number": "^7.0.0"
|
2167 |
+
},
|
2168 |
+
"engines": {
|
2169 |
+
"node": ">=8.0"
|
2170 |
+
}
|
2171 |
+
},
|
2172 |
+
"node_modules/to-uint8": {
|
2173 |
+
"version": "1.4.1",
|
2174 |
+
"resolved": "https://registry.npmjs.org/to-uint8/-/to-uint8-1.4.1.tgz",
|
2175 |
+
"integrity": "sha512-o+ochsMlTZyucbww8It401FC2Rx+OP2RpDeYbA6h+y9HgedDl1UjdsJ9CmzKEG7AFP9es5PmJ4eDWeeeXihESg==",
|
2176 |
+
"dependencies": {
|
2177 |
+
"arr-flatten": "^1.1.0",
|
2178 |
+
"clamp": "^1.0.1",
|
2179 |
+
"is-base64": "^0.1.0",
|
2180 |
+
"is-float-array": "^1.0.0",
|
2181 |
+
"to-array-buffer": "^3.0.0"
|
2182 |
+
}
|
2183 |
+
},
|
2184 |
+
"node_modules/toidentifier": {
|
2185 |
+
"version": "1.0.1",
|
2186 |
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
2187 |
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
2188 |
+
"engines": {
|
2189 |
+
"node": ">=0.6"
|
2190 |
+
}
|
2191 |
+
},
|
2192 |
+
"node_modules/touch": {
|
2193 |
+
"version": "3.1.1",
|
2194 |
+
"resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
|
2195 |
+
"integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
|
2196 |
+
"dev": true,
|
2197 |
+
"bin": {
|
2198 |
+
"nodetouch": "bin/nodetouch.js"
|
2199 |
+
}
|
2200 |
+
},
|
2201 |
+
"node_modules/tough-cookie": {
|
2202 |
+
"version": "2.5.0",
|
2203 |
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
|
2204 |
+
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
|
2205 |
+
"dependencies": {
|
2206 |
+
"psl": "^1.1.28",
|
2207 |
+
"punycode": "^2.1.1"
|
2208 |
+
},
|
2209 |
+
"engines": {
|
2210 |
+
"node": ">=0.8"
|
2211 |
+
}
|
2212 |
+
},
|
2213 |
+
"node_modules/tunnel-agent": {
|
2214 |
+
"version": "0.6.0",
|
2215 |
+
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
2216 |
+
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
|
2217 |
+
"dependencies": {
|
2218 |
+
"safe-buffer": "^5.0.1"
|
2219 |
+
},
|
2220 |
+
"engines": {
|
2221 |
+
"node": "*"
|
2222 |
+
}
|
2223 |
+
},
|
2224 |
+
"node_modules/tweetnacl": {
|
2225 |
+
"version": "0.14.5",
|
2226 |
+
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
|
2227 |
+
"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="
|
2228 |
+
},
|
2229 |
+
"node_modules/type-is": {
|
2230 |
+
"version": "1.6.18",
|
2231 |
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
2232 |
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
2233 |
+
"dependencies": {
|
2234 |
+
"media-typer": "0.3.0",
|
2235 |
+
"mime-types": "~2.1.24"
|
2236 |
+
},
|
2237 |
+
"engines": {
|
2238 |
+
"node": ">= 0.6"
|
2239 |
+
}
|
2240 |
+
},
|
2241 |
+
"node_modules/type-name": {
|
2242 |
+
"version": "2.0.2",
|
2243 |
+
"resolved": "https://registry.npmjs.org/type-name/-/type-name-2.0.2.tgz",
|
2244 |
+
"integrity": "sha512-kkgkuqR/jKdKO5oh/I2SMu2dGbLXoJq0zkdgbxaqYK+hr9S9edwVVGf+tMUFTx2gH9TN2+Zu9JZ/Njonb3cjhA=="
|
2245 |
+
},
|
2246 |
+
"node_modules/unc-path-regex": {
|
2247 |
+
"version": "0.1.2",
|
2248 |
+
"resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz",
|
2249 |
+
"integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==",
|
2250 |
+
"engines": {
|
2251 |
+
"node": ">=0.10.0"
|
2252 |
+
}
|
2253 |
+
},
|
2254 |
+
"node_modules/undefsafe": {
|
2255 |
+
"version": "2.0.5",
|
2256 |
+
"resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
|
2257 |
+
"integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
|
2258 |
+
"dev": true
|
2259 |
+
},
|
2260 |
+
"node_modules/undici": {
|
2261 |
+
"version": "6.21.1",
|
2262 |
+
"resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz",
|
2263 |
+
"integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==",
|
2264 |
+
"engines": {
|
2265 |
+
"node": ">=18.17"
|
2266 |
+
}
|
2267 |
+
},
|
2268 |
+
"node_modules/unpipe": {
|
2269 |
+
"version": "1.0.0",
|
2270 |
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
2271 |
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
2272 |
+
"engines": {
|
2273 |
+
"node": ">= 0.8"
|
2274 |
+
}
|
2275 |
+
},
|
2276 |
+
"node_modules/uri-js": {
|
2277 |
+
"version": "4.4.1",
|
2278 |
+
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
|
2279 |
+
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
2280 |
+
"dependencies": {
|
2281 |
+
"punycode": "^2.1.0"
|
2282 |
+
}
|
2283 |
+
},
|
2284 |
+
"node_modules/utif": {
|
2285 |
+
"version": "2.0.1",
|
2286 |
+
"resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz",
|
2287 |
+
"integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==",
|
2288 |
+
"dependencies": {
|
2289 |
+
"pako": "^1.0.5"
|
2290 |
+
}
|
2291 |
+
},
|
2292 |
+
"node_modules/utils-copy": {
|
2293 |
+
"version": "1.1.1",
|
2294 |
+
"resolved": "https://registry.npmjs.org/utils-copy/-/utils-copy-1.1.1.tgz",
|
2295 |
+
"integrity": "sha512-+NhJVV+PcxjdpkMrVTqXhQHPldlFGca5XR9YnGyNn7kQ0fMi+DqNLzdnhJ4TJ1HNy/HzB7c+FPg3y+4icY99ZA==",
|
2296 |
+
"dependencies": {
|
2297 |
+
"const-pinf-float64": "^1.0.0",
|
2298 |
+
"object-keys": "^1.0.9",
|
2299 |
+
"type-name": "^2.0.0",
|
2300 |
+
"utils-copy-error": "^1.0.0",
|
2301 |
+
"utils-indexof": "^1.0.0",
|
2302 |
+
"utils-regex-from-string": "^1.0.0",
|
2303 |
+
"validate.io-array": "^1.0.3",
|
2304 |
+
"validate.io-buffer": "^1.0.1",
|
2305 |
+
"validate.io-nonnegative-integer": "^1.0.0"
|
2306 |
+
}
|
2307 |
+
},
|
2308 |
+
"node_modules/utils-copy-error": {
|
2309 |
+
"version": "1.0.1",
|
2310 |
+
"resolved": "https://registry.npmjs.org/utils-copy-error/-/utils-copy-error-1.0.1.tgz",
|
2311 |
+
"integrity": "sha512-RbJcGPZ6Ru2HQk9SWkvbdWNPX58pt4MO5uXsOQRu4LEGWB3LglkRrmnE/Ph1qWg6ywQ0qj95wTz1OeqQ2l8DCA==",
|
2312 |
+
"dependencies": {
|
2313 |
+
"object-keys": "^1.0.9",
|
2314 |
+
"utils-copy": "^1.1.0"
|
2315 |
+
}
|
2316 |
+
},
|
2317 |
+
"node_modules/utils-indexof": {
|
2318 |
+
"version": "1.0.0",
|
2319 |
+
"resolved": "https://registry.npmjs.org/utils-indexof/-/utils-indexof-1.0.0.tgz",
|
2320 |
+
"integrity": "sha512-76QBfRJpn4A0P5uTO1x00x+Yog36w2Pab0n+aT9UfUvVa4l+e8k3p7YwNpDvfQ6+aKGZdxZpxcNotNS4YjFcyg==",
|
2321 |
+
"dependencies": {
|
2322 |
+
"validate.io-array-like": "^1.0.1",
|
2323 |
+
"validate.io-integer-primitive": "^1.0.0"
|
2324 |
+
}
|
2325 |
+
},
|
2326 |
+
"node_modules/utils-merge": {
|
2327 |
+
"version": "1.0.1",
|
2328 |
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
2329 |
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
2330 |
+
"engines": {
|
2331 |
+
"node": ">= 0.4.0"
|
2332 |
+
}
|
2333 |
+
},
|
2334 |
+
"node_modules/utils-regex-from-string": {
|
2335 |
+
"version": "1.0.0",
|
2336 |
+
"resolved": "https://registry.npmjs.org/utils-regex-from-string/-/utils-regex-from-string-1.0.0.tgz",
|
2337 |
+
"integrity": "sha512-xKfdmEF19iUu9TKxFiohQUlQTuqYdV80/CxHiudVI37iEV/OA4HHlXZoc4qvuO1B74EcBVpErBreRO/dpdLeYA==",
|
2338 |
+
"dependencies": {
|
2339 |
+
"regex-regex": "^1.0.0",
|
2340 |
+
"validate.io-string-primitive": "^1.0.0"
|
2341 |
+
}
|
2342 |
+
},
|
2343 |
+
"node_modules/uuid": {
|
2344 |
+
"version": "3.4.0",
|
2345 |
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
|
2346 |
+
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
|
2347 |
+
"deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
|
2348 |
+
"bin": {
|
2349 |
+
"uuid": "bin/uuid"
|
2350 |
+
}
|
2351 |
+
},
|
2352 |
+
"node_modules/validate.io-array": {
|
2353 |
+
"version": "1.0.6",
|
2354 |
+
"resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz",
|
2355 |
+
"integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg=="
|
2356 |
+
},
|
2357 |
+
"node_modules/validate.io-array-like": {
|
2358 |
+
"version": "1.0.2",
|
2359 |
+
"resolved": "https://registry.npmjs.org/validate.io-array-like/-/validate.io-array-like-1.0.2.tgz",
|
2360 |
+
"integrity": "sha512-rGLiN0cvY9OWzQcWP+RtqZR/MK9RUz3gKDTCcRLtEQ/BvlanMF5PyqtVIN+CgrIBCv/ypfme9v7r4yMJPYpbNA==",
|
2361 |
+
"dependencies": {
|
2362 |
+
"const-max-uint32": "^1.0.2",
|
2363 |
+
"validate.io-integer-primitive": "^1.0.0"
|
2364 |
+
}
|
2365 |
+
},
|
2366 |
+
"node_modules/validate.io-buffer": {
|
2367 |
+
"version": "1.0.2",
|
2368 |
+
"resolved": "https://registry.npmjs.org/validate.io-buffer/-/validate.io-buffer-1.0.2.tgz",
|
2369 |
+
"integrity": "sha512-6Tad+/QYOxWEXsesKYak1mHOzGdPYS4QeHFImWn7ECi4GR0x3vh7+6+1yoLKNXiklKuTFOxHLG3kZy9tPX0GvQ=="
|
2370 |
+
},
|
2371 |
+
"node_modules/validate.io-integer": {
|
2372 |
+
"version": "1.0.5",
|
2373 |
+
"resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz",
|
2374 |
+
"integrity": "sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==",
|
2375 |
+
"dependencies": {
|
2376 |
+
"validate.io-number": "^1.0.3"
|
2377 |
+
}
|
2378 |
+
},
|
2379 |
+
"node_modules/validate.io-integer-primitive": {
|
2380 |
+
"version": "1.0.0",
|
2381 |
+
"resolved": "https://registry.npmjs.org/validate.io-integer-primitive/-/validate.io-integer-primitive-1.0.0.tgz",
|
2382 |
+
"integrity": "sha512-4ARGKA4FImVWJgrgttLYsYJmDGwxlhLfDCdq09gyVgohLKKRUfD3VAo1L2vTRCLt6hDhDtFKdZiuYUTWyBggwg==",
|
2383 |
+
"dependencies": {
|
2384 |
+
"validate.io-number-primitive": "^1.0.0"
|
2385 |
+
}
|
2386 |
+
},
|
2387 |
+
"node_modules/validate.io-matrix-like": {
|
2388 |
+
"version": "1.0.2",
|
2389 |
+
"resolved": "https://registry.npmjs.org/validate.io-matrix-like/-/validate.io-matrix-like-1.0.2.tgz",
|
2390 |
+
"integrity": "sha512-86mqLUIkZCRAOVKZvpCB7sDCw1dKBjBkY+C6WO/wLo/jQx0sOqQZz3LLtDw0DCfuAKxRuhSmIpX3nzr0nWrbdw=="
|
2391 |
+
},
|
2392 |
+
"node_modules/validate.io-ndarray-like": {
|
2393 |
+
"version": "1.0.0",
|
2394 |
+
"resolved": "https://registry.npmjs.org/validate.io-ndarray-like/-/validate.io-ndarray-like-1.0.0.tgz",
|
2395 |
+
"integrity": "sha512-OV85AosxraPFSXJwzv/d7Cu5/dLiyLtsHmxtHTJcHW1N0uscd0eJ2df1Zk+HdID0eUctUllW/1YuQPUJFv1pTA=="
|
2396 |
+
},
|
2397 |
+
"node_modules/validate.io-nonnegative-integer": {
|
2398 |
+
"version": "1.0.0",
|
2399 |
+
"resolved": "https://registry.npmjs.org/validate.io-nonnegative-integer/-/validate.io-nonnegative-integer-1.0.0.tgz",
|
2400 |
+
"integrity": "sha512-uOMekPwcl84yg8NR7zgIZCZ9pHCtd9CK1Ri51N+ZJLTe1HyLbmdFdy7ZmfkiHkMvB1pOxeQmd1/LBjKhUD1L3A==",
|
2401 |
+
"dependencies": {
|
2402 |
+
"validate.io-integer": "^1.0.5"
|
2403 |
+
}
|
2404 |
+
},
|
2405 |
+
"node_modules/validate.io-number": {
|
2406 |
+
"version": "1.0.3",
|
2407 |
+
"resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz",
|
2408 |
+
"integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg=="
|
2409 |
+
},
|
2410 |
+
"node_modules/validate.io-number-primitive": {
|
2411 |
+
"version": "1.0.0",
|
2412 |
+
"resolved": "https://registry.npmjs.org/validate.io-number-primitive/-/validate.io-number-primitive-1.0.0.tgz",
|
2413 |
+
"integrity": "sha512-8rlCe7N0TRTd50dwk4WNoMXNbX/4+RdtqE3TO6Bk0GJvAgbQlfL5DGr/Pl9ZLbWR6CutMjE2cu+yOoCnFWk+Qw=="
|
2414 |
+
},
|
2415 |
+
"node_modules/validate.io-positive-integer": {
|
2416 |
+
"version": "1.0.0",
|
2417 |
+
"resolved": "https://registry.npmjs.org/validate.io-positive-integer/-/validate.io-positive-integer-1.0.0.tgz",
|
2418 |
+
"integrity": "sha512-eg4LSdyqjICNUZWRilcQ5l+YayRlu6yi+GQsWw1bCmtG9yayOPmLa1fPymEHPPhbvWPAv3w0LLbCsf03pBHZkg==",
|
2419 |
+
"dependencies": {
|
2420 |
+
"validate.io-integer": "^1.0.5"
|
2421 |
+
}
|
2422 |
+
},
|
2423 |
+
"node_modules/validate.io-string-primitive": {
|
2424 |
+
"version": "1.0.1",
|
2425 |
+
"resolved": "https://registry.npmjs.org/validate.io-string-primitive/-/validate.io-string-primitive-1.0.1.tgz",
|
2426 |
+
"integrity": "sha512-TORbkLMdOFkEbPtfdx76FSVQGSAzyUEMxI+pBq5pfFm1ZzIesP+XiGc6eIK75aKu7RA7a8EcqUv5OrY5wfog5w=="
|
2427 |
+
},
|
2428 |
+
"node_modules/vary": {
|
2429 |
+
"version": "1.1.2",
|
2430 |
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
2431 |
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
2432 |
+
"engines": {
|
2433 |
+
"node": ">= 0.8"
|
2434 |
+
}
|
2435 |
+
},
|
2436 |
+
"node_modules/verror": {
|
2437 |
+
"version": "1.10.0",
|
2438 |
+
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
|
2439 |
+
"integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
|
2440 |
+
"engines": [
|
2441 |
+
"node >=0.6.0"
|
2442 |
+
],
|
2443 |
+
"dependencies": {
|
2444 |
+
"assert-plus": "^1.0.0",
|
2445 |
+
"core-util-is": "1.0.2",
|
2446 |
+
"extsprintf": "^1.2.0"
|
2447 |
+
}
|
2448 |
+
},
|
2449 |
+
"node_modules/weak-map": {
|
2450 |
+
"version": "1.0.8",
|
2451 |
+
"resolved": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.8.tgz",
|
2452 |
+
"integrity": "sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw=="
|
2453 |
+
},
|
2454 |
+
"node_modules/whatwg-encoding": {
|
2455 |
+
"version": "3.1.1",
|
2456 |
+
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
2457 |
+
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
2458 |
+
"dependencies": {
|
2459 |
+
"iconv-lite": "0.6.3"
|
2460 |
+
},
|
2461 |
+
"engines": {
|
2462 |
+
"node": ">=18"
|
2463 |
+
}
|
2464 |
+
},
|
2465 |
+
"node_modules/whatwg-mimetype": {
|
2466 |
+
"version": "4.0.0",
|
2467 |
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
2468 |
+
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
|
2469 |
+
"engines": {
|
2470 |
+
"node": ">=18"
|
2471 |
+
}
|
2472 |
+
},
|
2473 |
+
"node_modules/yallist": {
|
2474 |
+
"version": "4.0.0",
|
2475 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
2476 |
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
2477 |
+
}
|
2478 |
+
}
|
2479 |
+
}
|
package.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "anime-api",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "A restful api to provide all information about anime",
|
5 |
+
"main": "./api/server.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node ./api/server.js",
|
8 |
+
"dev": "nodemon server.js",
|
9 |
+
"test": "echo \"Error: no test specified\" && exit 1"
|
10 |
+
},
|
11 |
+
"author": "Sayan Das",
|
12 |
+
"license": "MIT",
|
13 |
+
"dependencies": {
|
14 |
+
"axios": "^1.6.7",
|
15 |
+
"cheerio": "^1.0.0-rc.12",
|
16 |
+
"compression": "^1.7.5",
|
17 |
+
"cors": "^2.8.5",
|
18 |
+
"crypto-js": "^4.2.0",
|
19 |
+
"dotenv": "^16.4.5",
|
20 |
+
"express": "^4.21.2",
|
21 |
+
"express-rate-limit": "^7.5.0",
|
22 |
+
"image-pixels": "^2.2.2",
|
23 |
+
"memory-cache": "^0.2.0",
|
24 |
+
"redis": "^4.7.0"
|
25 |
+
},
|
26 |
+
"type": "module",
|
27 |
+
"devDependencies": {
|
28 |
+
"nodemon": "^3.1.4"
|
29 |
+
},
|
30 |
+
"repository": {
|
31 |
+
"type": "git",
|
32 |
+
"url": "https://github.com/itzzzme/anime-api.git"
|
33 |
+
}
|
34 |
+
}
|
src/configs/dataUrl.js
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
export const dataURL =
|
2 |
+
"data:image/png;base64,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JDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAtwCFrnv+pEcAAQQQECJAoQsZJDEQQAABBHQLUOi65096BBBAAAEhAhS6kEESAwEEEEBAt8D/ATY93seMmImHAAAAAElFTkSuQmCC";
|
src/configs/header.config.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export const DEFAULT_HEADERS = {
|
2 |
+
"User-Agent":
|
3 |
+
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36",
|
4 |
+
};
|
src/configs/player_v1.config.js
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
export const PLAYER_SCRIPT_URL =
|
2 |
+
"https://megacloud.tv/js/player/a/e1-player.min.js";
|
src/configs/player_v2.config.js
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
export const PLAYER_SCRIPT_URL =
|
2 |
+
"https://rapid-cloud.co/js/player/prod/e6-player-v2.min.js";
|
src/controllers/animeInfo.controller.js
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractAnimeInfo from "../extractors/animeInfo.extractor.js";
|
2 |
+
import extractSeasons from "../extractors/seasons.extractor.js";
|
3 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
4 |
+
|
5 |
+
export const getAnimeInfo = async (req, res) => {
|
6 |
+
const { id } = req.query;
|
7 |
+
const cacheKey = `animeInfo_${id}`;
|
8 |
+
|
9 |
+
try {
|
10 |
+
const cachedResponse = await getCachedData(cacheKey);
|
11 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0) {
|
12 |
+
return cachedResponse;
|
13 |
+
}
|
14 |
+
const [seasons, data] = await Promise.all([
|
15 |
+
extractSeasons(id),
|
16 |
+
extractAnimeInfo(id),
|
17 |
+
]);
|
18 |
+
const responseData = { data: data, seasons: seasons };
|
19 |
+
setCachedData(cacheKey, responseData).catch((err) => {
|
20 |
+
console.error("Failed to set cache:", err);
|
21 |
+
});
|
22 |
+
return responseData;
|
23 |
+
} catch (e) {
|
24 |
+
console.error(e);
|
25 |
+
return res.status(500).json({ error: "An error occurred" });
|
26 |
+
}
|
27 |
+
};
|
src/controllers/category.controller.js
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { extractor } from "../extractors/category.extractor.js";
|
2 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
3 |
+
|
4 |
+
export const getCategory = async (req, res, routeType) => {
|
5 |
+
if (routeType === "genre/martial-arts") {
|
6 |
+
routeType = "genre/marial-arts";
|
7 |
+
}
|
8 |
+
const requestedPage = parseInt(req.query.page) || 1;
|
9 |
+
const cacheKey = `${routeType.replace(/\//g, "_")}_page_${requestedPage}`;
|
10 |
+
try {
|
11 |
+
const cachedResponse = await getCachedData(cacheKey);
|
12 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0)
|
13 |
+
return cachedResponse;
|
14 |
+
const { data, totalPages } = await extractor(routeType, requestedPage);
|
15 |
+
if (requestedPage > totalPages) {
|
16 |
+
const error = new Error("Requested page exceeds total available pages.");
|
17 |
+
error.status = 404;
|
18 |
+
throw error;
|
19 |
+
}
|
20 |
+
const responseData = { totalPages: totalPages, data: data };
|
21 |
+
setCachedData(cacheKey, responseData).catch((err) => {
|
22 |
+
console.error("Failed to set cache:", err);
|
23 |
+
});
|
24 |
+
return responseData;
|
25 |
+
} catch (e) {
|
26 |
+
console.error(e);
|
27 |
+
return e;
|
28 |
+
}
|
29 |
+
};
|
src/controllers/episodeList.controller.js
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractEpisodesList from "../extractors/episodeList.extractor.js";
|
2 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
3 |
+
|
4 |
+
export const getEpisodes = async (req,res) => {
|
5 |
+
const { id } = req.params;
|
6 |
+
const cacheKey = `episodes_${id}`;
|
7 |
+
try {
|
8 |
+
const cachedResponse = await getCachedData(cacheKey);
|
9 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0) {
|
10 |
+
return cachedResponse;
|
11 |
+
}
|
12 |
+
const data = await extractEpisodesList(encodeURIComponent(id));
|
13 |
+
setCachedData(cacheKey, data).catch((err) => {
|
14 |
+
console.error("Failed to set cache:", err);
|
15 |
+
});
|
16 |
+
return data;
|
17 |
+
} catch (e) {
|
18 |
+
console.error("Error fetching episodes:", e);
|
19 |
+
return e;
|
20 |
+
}
|
21 |
+
};
|
src/controllers/homeInfo.controller.js
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import getSpotlights from "../extractors/spotlight.extractor.js";
|
2 |
+
import getTrending from "../extractors/trending.extractor.js";
|
3 |
+
import extractPage from "../helper/extractPages.helper.js";
|
4 |
+
import extractTopTen from "../extractors/topten.extractor.js";
|
5 |
+
import { routeTypes } from "../routes/category.route.js";
|
6 |
+
import extractSchedule from "../extractors/schedule.extractor.js";
|
7 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
8 |
+
|
9 |
+
const genres = routeTypes
|
10 |
+
.slice(0, 41)
|
11 |
+
.map((genre) => genre.replace("genre/", ""));
|
12 |
+
|
13 |
+
export const getHomeInfo = async (req,res) => {
|
14 |
+
const cacheKey = "homeInfo";
|
15 |
+
try {
|
16 |
+
const cachedResponse = await getCachedData(cacheKey);
|
17 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0) {
|
18 |
+
return cachedResponse;
|
19 |
+
}
|
20 |
+
const [
|
21 |
+
spotlights,
|
22 |
+
trending,
|
23 |
+
topTen,
|
24 |
+
schedule,
|
25 |
+
topAiring,
|
26 |
+
mostPopular,
|
27 |
+
mostFavorite,
|
28 |
+
latestCompleted,
|
29 |
+
latestEpisode,
|
30 |
+
topUpcoming,
|
31 |
+
recentlyAdded,
|
32 |
+
] = await Promise.all([
|
33 |
+
getSpotlights(),
|
34 |
+
getTrending(),
|
35 |
+
extractTopTen(),
|
36 |
+
extractSchedule(new Date().toISOString().split("T")[0]),
|
37 |
+
extractPage(1, "top-airing"),
|
38 |
+
extractPage(1, "most-popular"),
|
39 |
+
extractPage(1, "most-favorite"),
|
40 |
+
extractPage(1, "completed"),
|
41 |
+
extractPage(1, "recently-updated"),
|
42 |
+
extractPage(1, "top-upcoming"),
|
43 |
+
extractPage(1, "recently-added"),
|
44 |
+
]);
|
45 |
+
const responseData = {
|
46 |
+
spotlights,
|
47 |
+
trending,
|
48 |
+
topTen,
|
49 |
+
today: { schedule },
|
50 |
+
topAiring: topAiring[0],
|
51 |
+
mostPopular: mostPopular[0],
|
52 |
+
mostFavorite: mostFavorite[0],
|
53 |
+
latestCompleted: latestCompleted[0],
|
54 |
+
latestEpisode: latestEpisode[0],
|
55 |
+
topUpcoming: topUpcoming[0],
|
56 |
+
recentlyAdded: recentlyAdded[0],
|
57 |
+
genres,
|
58 |
+
};
|
59 |
+
|
60 |
+
setCachedData(cacheKey, responseData).catch((err) => {
|
61 |
+
console.error("Failed to set cache:", err);
|
62 |
+
});
|
63 |
+
return responseData;
|
64 |
+
} catch (fetchError) {
|
65 |
+
console.error("Error fetching fresh data:", fetchError);
|
66 |
+
return fetchError;
|
67 |
+
}
|
68 |
+
};
|
src/controllers/maintenance.controller.js
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { join, dirname } from "path";
|
2 |
+
import fs from "fs";
|
3 |
+
import { fileURLToPath } from "url";
|
4 |
+
|
5 |
+
const __filename = fileURLToPath(import.meta.url);
|
6 |
+
const __dirname = dirname(__filename);
|
7 |
+
|
8 |
+
export const handleMaintenance = (req, res) => {
|
9 |
+
const filePath = join(
|
10 |
+
dirname(dirname(__dirname)),
|
11 |
+
"public",
|
12 |
+
"maintenance.html"
|
13 |
+
);
|
14 |
+
fs.readFile(filePath, "utf8", (err, data) => {
|
15 |
+
if (err) {
|
16 |
+
console.error(err);
|
17 |
+
return res.status(500).send("Internal Server Error");
|
18 |
+
}
|
19 |
+
res.status(404).send(data);
|
20 |
+
});
|
21 |
+
};
|
src/controllers/nextEpisodeSchedule.controller.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractNextEpisodeSchedule from "../extractors/getNextEpisodeSchedule.extractor.js";
|
2 |
+
|
3 |
+
export const getNextEpisodeSchedule = async (req) => {
|
4 |
+
const { id } = req.params;
|
5 |
+
try {
|
6 |
+
const nextEpisodeSchedule = await extractNextEpisodeSchedule(id);
|
7 |
+
return { nextEpisodeSchedule: nextEpisodeSchedule };
|
8 |
+
} catch (e) {
|
9 |
+
console.error(e);
|
10 |
+
return e;
|
11 |
+
}
|
12 |
+
};
|
src/controllers/producer.controller.js
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
2 |
+
import extractPage from "../helper/extractPages.helper.js";
|
3 |
+
|
4 |
+
export const getProducer = async (req) => {
|
5 |
+
const { id } = req.params;
|
6 |
+
const routeType = `producer/${id}`;
|
7 |
+
const requestedPage = parseInt(req.query.page) || 1;
|
8 |
+
const cacheKey = `${routeType.replace(/\//g, "_")}_page_${requestedPage}`;
|
9 |
+
try {
|
10 |
+
const cachedResponse = await getCachedData(cacheKey);
|
11 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0) {
|
12 |
+
return cachedResponse;
|
13 |
+
}
|
14 |
+
const [data, totalPages] = await extractPage(requestedPage, routeType);
|
15 |
+
if (requestedPage > totalPages) {
|
16 |
+
const error = new Error("Requested page exceeds total available pages.");
|
17 |
+
error.status = 404;
|
18 |
+
throw error;
|
19 |
+
}
|
20 |
+
const responseData = { totalPages: totalPages, data: data };
|
21 |
+
setCachedData(cacheKey, responseData).catch((err) => {
|
22 |
+
console.error("Failed to set cache:", err);
|
23 |
+
});
|
24 |
+
return { data, totalPages };
|
25 |
+
} catch (e) {
|
26 |
+
console.error(e);
|
27 |
+
if (e.status === 404) {
|
28 |
+
throw e;
|
29 |
+
}
|
30 |
+
throw new Error("An error occurred while processing your request.");
|
31 |
+
}
|
32 |
+
};
|
src/controllers/qtip.controller.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractQtip from "../extractors/qtip.extractor.js";
|
2 |
+
|
3 |
+
export const getQtip = async (req) => {
|
4 |
+
try {
|
5 |
+
const { id } = req.params;
|
6 |
+
const data = await extractQtip(id);
|
7 |
+
return data;
|
8 |
+
} catch (e) {
|
9 |
+
console.error(e);
|
10 |
+
return e;
|
11 |
+
}
|
12 |
+
};
|
src/controllers/random.controller.js
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractRandom from "../extractors/random.extractor.js";
|
2 |
+
|
3 |
+
export const getRandom = async (req,res) => {
|
4 |
+
try {
|
5 |
+
const data = await extractRandom();
|
6 |
+
return data;
|
7 |
+
} catch (error) {
|
8 |
+
console.error("Error getting random anime:", error.message);
|
9 |
+
return e;
|
10 |
+
}
|
11 |
+
};
|
src/controllers/randomId.controller.js
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractRandomId from "../extractors/randomId.extractor.js";
|
2 |
+
|
3 |
+
export const getRandomId = async (req,res) => {
|
4 |
+
try {
|
5 |
+
const data = await extractRandomId();
|
6 |
+
return data;
|
7 |
+
} catch (error) {
|
8 |
+
console.error("Error getting random anime ID:", error.message);
|
9 |
+
return e;
|
10 |
+
}
|
11 |
+
};
|
src/controllers/schedule.controller.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractSchedule from "../extractors/schedule.extractor.js";
|
2 |
+
|
3 |
+
export const getSchedule = async (req) => {
|
4 |
+
const date = req.query.date;
|
5 |
+
try {
|
6 |
+
const data = await extractSchedule(encodeURIComponent(date));
|
7 |
+
return data;
|
8 |
+
} catch (e) {
|
9 |
+
console.error(e);
|
10 |
+
return e;
|
11 |
+
}
|
12 |
+
};
|
src/controllers/search.controller.js
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractSearchResults from "../extractors/search.extractor.js";
|
2 |
+
|
3 |
+
export const search = async (req) => {
|
4 |
+
try {
|
5 |
+
let { keyword } = req.query;
|
6 |
+
let page = parseInt(req.query.page) || 1;
|
7 |
+
|
8 |
+
const [totalPage, data] = await extractSearchResults(
|
9 |
+
encodeURIComponent(keyword),
|
10 |
+
page
|
11 |
+
);
|
12 |
+
if (page > totalPage) {
|
13 |
+
const error = new Error("Requested page exceeds total available pages.");
|
14 |
+
error.status = 404;
|
15 |
+
throw error;
|
16 |
+
}
|
17 |
+
return { data, totalPage };
|
18 |
+
} catch (e) {
|
19 |
+
console.error(e);
|
20 |
+
if (e.status === 404) {
|
21 |
+
throw e;
|
22 |
+
}
|
23 |
+
throw new Error("An error occurred while processing your request.");
|
24 |
+
}
|
25 |
+
};
|
src/controllers/servers.controller.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { extractServers } from "../extractors/streamInfo.extractor.js";
|
2 |
+
|
3 |
+
export const getServers = async (req) => {
|
4 |
+
try {
|
5 |
+
const { ep } = req.query;
|
6 |
+
const servers = await extractServers(ep);
|
7 |
+
return servers;
|
8 |
+
} catch (e) {
|
9 |
+
console.error(e);
|
10 |
+
return e;
|
11 |
+
}
|
12 |
+
};
|
src/controllers/streamInfo.controller.js
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { extractStreamingInfo } from "../extractors/streamInfo.extractor.js";
|
2 |
+
|
3 |
+
export const getStreamInfo = async (req) => {
|
4 |
+
try {
|
5 |
+
const input = req.query.id;
|
6 |
+
const server = req.query.server;
|
7 |
+
const type = req.query.type;
|
8 |
+
const match = input.match(/ep=(\d+)/);
|
9 |
+
if (!match) throw new Error("Invalid URL format");
|
10 |
+
const finalId = match[1];
|
11 |
+
const streamingInfo = await extractStreamingInfo(finalId, server, type);
|
12 |
+
return streamingInfo;
|
13 |
+
} catch (e) {
|
14 |
+
console.error(e);
|
15 |
+
return e;
|
16 |
+
}
|
17 |
+
};
|
src/controllers/suggestion.controller.js
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import getSuggestion from "../extractors/suggestion.extractor.js";
|
2 |
+
|
3 |
+
export const getSuggestions = async (req) => {
|
4 |
+
const { keyword } = req.query;
|
5 |
+
try {
|
6 |
+
const data = await getSuggestion(encodeURIComponent(keyword));
|
7 |
+
return data;
|
8 |
+
} catch (e) {
|
9 |
+
console.error(e);
|
10 |
+
return e;
|
11 |
+
}
|
12 |
+
};
|
src/controllers/topten.controller.js
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractTopTen from "../extractors/topten.extractor.js";
|
2 |
+
import { getCachedData, setCachedData } from "../helper/cache.helper.js";
|
3 |
+
|
4 |
+
export const getTopTen = async (req,res) => {
|
5 |
+
const cacheKey = "topTen";
|
6 |
+
try {
|
7 |
+
const cachedResponse = await getCachedData(cacheKey);
|
8 |
+
if (cachedResponse && Object.keys(cachedResponse).length > 0) {
|
9 |
+
return cachedResponse;
|
10 |
+
}
|
11 |
+
const topTen = await extractTopTen();
|
12 |
+
await setCachedData(cacheKey, topTen).catch((err) => {
|
13 |
+
console.error("Failed to set cache:", err);
|
14 |
+
});
|
15 |
+
return topTen;
|
16 |
+
} catch (e) {
|
17 |
+
console.error(e);
|
18 |
+
return c
|
19 |
+
.status(500)
|
20 |
+
.json({ success: false, error: "Internal Server Error" });
|
21 |
+
}
|
22 |
+
};
|
src/controllers/voiceactor.controller.js
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import extractVoiceActor from "../extractors/voiceactor.extractor.js";
|
2 |
+
|
3 |
+
export const getVoiceActors = async (req, res) => {
|
4 |
+
const requestedPage = parseInt(req.query.page) || 1;
|
5 |
+
const id = req.params.id;
|
6 |
+
try {
|
7 |
+
const { totalPages, charactersVoiceActors: data } = await extractVoiceActor(
|
8 |
+
id,
|
9 |
+
requestedPage
|
10 |
+
);
|
11 |
+
return { currentPage: requestedPage, totalPages, data };
|
12 |
+
} catch (e) {
|
13 |
+
console.error(e);
|
14 |
+
return e;
|
15 |
+
}
|
16 |
+
};
|
src/extractors/animeInfo.extractor.js
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import formatTitle from "../helper/formatTitle.helper.js";
|
4 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
5 |
+
import extractRecommendedData from "./recommend.extractor.js";
|
6 |
+
import extractRelatedData from "./related.extractor.js";
|
7 |
+
|
8 |
+
const baseUrl = v1_base_url;
|
9 |
+
|
10 |
+
async function extractAnimeInfo(id) {
|
11 |
+
try {
|
12 |
+
const [resp, characterData] = await Promise.all([
|
13 |
+
axios.get(`https://${baseUrl}/${id}`),
|
14 |
+
axios.get(
|
15 |
+
`https://${baseUrl}/ajax/character/list/${id.split("-").pop()}`
|
16 |
+
),
|
17 |
+
]);
|
18 |
+
const $1 = cheerio.load(characterData.data.html);
|
19 |
+
const $ = cheerio.load(resp.data);
|
20 |
+
const data_id = id.split("-").pop();
|
21 |
+
const titleElement = $("#ani_detail .film-name");
|
22 |
+
const showType = $("#ani_detail .prebreadcrumb ol li")
|
23 |
+
.eq(1)
|
24 |
+
.find("a")
|
25 |
+
.text()
|
26 |
+
.trim();
|
27 |
+
const posterElement = $("#ani_detail .film-poster");
|
28 |
+
const tvInfoElement = $("#ani_detail .film-stats");
|
29 |
+
const tvInfo = {};
|
30 |
+
tvInfoElement.find(".tick-item, span.item").each((_, element) => {
|
31 |
+
const el = $(element);
|
32 |
+
const text = el.text().trim();
|
33 |
+
if (el.hasClass("tick-quality")) tvInfo.quality = text;
|
34 |
+
else if (el.hasClass("tick-sub")) tvInfo.sub = text;
|
35 |
+
else if (el.hasClass("tick-dub")) tvInfo.dub = text;
|
36 |
+
else if (el.hasClass("tick-pg")) tvInfo.rating = text;
|
37 |
+
else if (el.is("span.item")) {
|
38 |
+
if (!tvInfo.showType) tvInfo.showType = text;
|
39 |
+
else if (!tvInfo.duration) tvInfo.duration = text;
|
40 |
+
}
|
41 |
+
});
|
42 |
+
|
43 |
+
const element = $(
|
44 |
+
"#ani_detail > .ani_detail-stage > .container > .anis-content > .anisc-info-wrap > .anisc-info > .item"
|
45 |
+
);
|
46 |
+
const overviewElement = $("#ani_detail .film-description .text");
|
47 |
+
|
48 |
+
const title = titleElement.text().trim();
|
49 |
+
const japanese_title = titleElement.attr("data-jname");
|
50 |
+
const poster = posterElement.find("img").attr("src");
|
51 |
+
|
52 |
+
const animeInfo = {};
|
53 |
+
element.each((_, el) => {
|
54 |
+
const key = $(el).find(".item-head").text().trim().replace(":", "");
|
55 |
+
const value =
|
56 |
+
key === "Genres" || key === "Producers"
|
57 |
+
? $(el)
|
58 |
+
.find("a")
|
59 |
+
.map((_, a) => $(a).text().split(" ").join("-").trim())
|
60 |
+
.get()
|
61 |
+
: $(el).find(".name").text().split(" ").join("-").trim();
|
62 |
+
animeInfo[key] = value;
|
63 |
+
});
|
64 |
+
|
65 |
+
const season_id = formatTitle(title, data_id);
|
66 |
+
animeInfo["Overview"] = overviewElement.text().trim();
|
67 |
+
animeInfo["tvInfo"] = tvInfo;
|
68 |
+
|
69 |
+
let adultContent = false;
|
70 |
+
const tickRateText = $(".tick-rate", posterElement).text().trim();
|
71 |
+
if (tickRateText.includes("18+")) {
|
72 |
+
adultContent = true;
|
73 |
+
}
|
74 |
+
|
75 |
+
const [recommended_data, related_data] = await Promise.all([
|
76 |
+
extractRecommendedData($),
|
77 |
+
extractRelatedData($),
|
78 |
+
]);
|
79 |
+
|
80 |
+
const charactersVoiceActors = $1(".bac-list-wrap .bac-item")
|
81 |
+
.map((index, el) => {
|
82 |
+
const character = {
|
83 |
+
id:
|
84 |
+
$1(el)
|
85 |
+
.find(".per-info.ltr .pi-avatar")
|
86 |
+
.attr("href")
|
87 |
+
?.split("/")[2] || "",
|
88 |
+
poster:
|
89 |
+
$1(el).find(".per-info.ltr .pi-avatar img").attr("data-src") || "",
|
90 |
+
name: $1(el).find(".per-info.ltr .pi-detail a").text(),
|
91 |
+
cast: $1(el).find(".per-info.ltr .pi-detail .pi-cast").text(),
|
92 |
+
};
|
93 |
+
|
94 |
+
let voiceActors = [];
|
95 |
+
const rtlVoiceActors = $1(el).find(".per-info.rtl");
|
96 |
+
const xxVoiceActors = $1(el).find(
|
97 |
+
".per-info.per-info-xx .pix-list .pi-avatar"
|
98 |
+
);
|
99 |
+
if (rtlVoiceActors.length > 0) {
|
100 |
+
voiceActors = rtlVoiceActors
|
101 |
+
.map((_, actorEl) => ({
|
102 |
+
id: $1(actorEl).find("a").attr("href")?.split("/").pop() || "",
|
103 |
+
poster: $1(actorEl).find("img").attr("data-src") || "",
|
104 |
+
name:
|
105 |
+
$1(actorEl).find(".pi-detail .pi-name a").text().trim() || "",
|
106 |
+
}))
|
107 |
+
.get();
|
108 |
+
} else if (xxVoiceActors.length > 0) {
|
109 |
+
voiceActors = xxVoiceActors
|
110 |
+
.map((_, actorEl) => ({
|
111 |
+
id: $1(actorEl).attr("href")?.split("/").pop() || "",
|
112 |
+
poster: $1(actorEl).find("img").attr("data-src") || "",
|
113 |
+
name: $1(actorEl).attr("title") || "",
|
114 |
+
}))
|
115 |
+
.get();
|
116 |
+
}
|
117 |
+
if (voiceActors.length === 0) {
|
118 |
+
voiceActors = $1(el)
|
119 |
+
.find(".per-info.per-info-xx .pix-list .pi-avatar")
|
120 |
+
.map((_, actorEl) => ({
|
121 |
+
id: $1(actorEl).attr("href")?.split("/")[2] || "",
|
122 |
+
poster: $1(actorEl).find("img").attr("data-src") || "",
|
123 |
+
name: $1(actorEl).attr("title") || "",
|
124 |
+
}))
|
125 |
+
.get();
|
126 |
+
}
|
127 |
+
|
128 |
+
return { character, voiceActors };
|
129 |
+
})
|
130 |
+
.get();
|
131 |
+
|
132 |
+
return {
|
133 |
+
adultContent,
|
134 |
+
data_id,
|
135 |
+
id: season_id,
|
136 |
+
title,
|
137 |
+
japanese_title,
|
138 |
+
poster,
|
139 |
+
showType,
|
140 |
+
animeInfo,
|
141 |
+
charactersVoiceActors,
|
142 |
+
recommended_data,
|
143 |
+
related_data,
|
144 |
+
};
|
145 |
+
} catch (e) {
|
146 |
+
console.error("Error extracting anime info:", e);
|
147 |
+
}
|
148 |
+
}
|
149 |
+
|
150 |
+
export default extractAnimeInfo;
|
src/extractors/category.extractor.js
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import countPages from "../helper/countPages.helper.js";
|
3 |
+
import extractPage from "../helper/extractPages.helper.js";
|
4 |
+
|
5 |
+
export async function extractor(path, page) {
|
6 |
+
try {
|
7 |
+
const [data, totalPages] = await extractPage(page, path);
|
8 |
+
return { data, totalPages };
|
9 |
+
} catch (error) {
|
10 |
+
console.error(
|
11 |
+
`Error extracting data for ${path} from page ${page}:`,
|
12 |
+
error.message
|
13 |
+
);
|
14 |
+
throw error;
|
15 |
+
}
|
16 |
+
}
|
src/extractors/episodeList.extractor.js
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
4 |
+
|
5 |
+
const baseUrl = v1_base_url;
|
6 |
+
|
7 |
+
async function extractEpisodesList(id) {
|
8 |
+
try {
|
9 |
+
const showId = id.split("-").pop();
|
10 |
+
const response = await axios.get(
|
11 |
+
`https://${baseUrl}/ajax/v2/episode/list/${showId}`,
|
12 |
+
{
|
13 |
+
headers: {
|
14 |
+
"X-Requested-With": "XMLHttpRequest",
|
15 |
+
Referer: `${baseUrl}/watch/${id}`,
|
16 |
+
},
|
17 |
+
}
|
18 |
+
);
|
19 |
+
if (!response.data.html) return [];
|
20 |
+
const $ = cheerio.load(response.data.html);
|
21 |
+
const res = {
|
22 |
+
totalEpisodes: 0,
|
23 |
+
episodes: [],
|
24 |
+
};
|
25 |
+
res.totalEpisodes = Number($(".detail-infor-content .ss-list a").length);
|
26 |
+
$(".detail-infor-content .ss-list a").each((_, el) => {
|
27 |
+
res.episodes.push({
|
28 |
+
episode_no: Number($(el).attr("data-number")),
|
29 |
+
id: $(el)?.attr("href")?.split("/")?.pop() || null,
|
30 |
+
title: $(el)?.attr("title")?.trim() || null,
|
31 |
+
japanese_title: $(el).find(".ep-name").attr("data-jname"),
|
32 |
+
filler: $(el).hasClass("ssl-item-filler"),
|
33 |
+
});
|
34 |
+
});
|
35 |
+
return res;
|
36 |
+
} catch (error) {
|
37 |
+
console.error(error);
|
38 |
+
return [];
|
39 |
+
}
|
40 |
+
}
|
41 |
+
export default extractEpisodesList;
|
src/extractors/getNextEpisodeSchedule.extractor.js
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
4 |
+
|
5 |
+
const baseUrl = v1_base_url;
|
6 |
+
|
7 |
+
export default async function extractNextEpisodeSchedule(id) {
|
8 |
+
try {
|
9 |
+
const { data } = await axios.get(`https://${baseUrl}/watch/${id}`);
|
10 |
+
const $ = cheerio.load(data);
|
11 |
+
const nextEpisodeSchedule = $(
|
12 |
+
".schedule-alert > .alert.small > span:last"
|
13 |
+
).attr("data-value");
|
14 |
+
return nextEpisodeSchedule;
|
15 |
+
} catch (error) {
|
16 |
+
console.error(error);
|
17 |
+
}
|
18 |
+
}
|
src/extractors/qtip.extractor.js
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
4 |
+
|
5 |
+
const baseUrl = v1_base_url;
|
6 |
+
|
7 |
+
export default async function extractQtip(id) {
|
8 |
+
try {
|
9 |
+
const { data } = await axios.get(
|
10 |
+
`https://${baseUrl}/ajax/movie/qtip/${id}`,
|
11 |
+
{
|
12 |
+
headers: {
|
13 |
+
"x-requested-with": "XMLHttpRequest",
|
14 |
+
},
|
15 |
+
}
|
16 |
+
);
|
17 |
+
const $ = cheerio.load(data);
|
18 |
+
|
19 |
+
const title = $(".pre-qtip-title").text();
|
20 |
+
const rating = $(".pqd-li i.fas.fa-star").parent().text().trim();
|
21 |
+
const quality = $(".tick-item.tick-quality").text();
|
22 |
+
const subCount = $(".tick-item.tick-sub").text().trim();
|
23 |
+
const dubCount = $(".tick-item.tick-dub").text().trim();
|
24 |
+
const episodeCount = $(".tick-item.tick-eps").text().trim();
|
25 |
+
const type = $(".badge.badge-quality").text();
|
26 |
+
const description = $(".pre-qtip-description").text().trim();
|
27 |
+
const japaneseTitle = $(".pre-qtip-line:contains('Japanese:') .stick-text")
|
28 |
+
.text()
|
29 |
+
.trim();
|
30 |
+
const airedDate = $(".pre-qtip-line:contains('Aired:') .stick-text")
|
31 |
+
.text()
|
32 |
+
.trim();
|
33 |
+
const status = $(".pre-qtip-line:contains('Status:') .stick-text")
|
34 |
+
.text()
|
35 |
+
.trim();
|
36 |
+
const Synonyms = $(".pre-qtip-line:contains('Synonyms:') .stick-text")
|
37 |
+
.text()
|
38 |
+
.trim();
|
39 |
+
const genres = [];
|
40 |
+
$(".pre-qtip-line:contains('Genres:') a").each((i, elem) => {
|
41 |
+
genres.push($(elem).text().trim());
|
42 |
+
});
|
43 |
+
const watchLink = $(".pre-qtip-button a.btn.btn-play").attr("href");
|
44 |
+
|
45 |
+
const extractedData = {
|
46 |
+
title,
|
47 |
+
rating,
|
48 |
+
quality,
|
49 |
+
subCount,
|
50 |
+
dubCount,
|
51 |
+
episodeCount,
|
52 |
+
type,
|
53 |
+
description,
|
54 |
+
japaneseTitle,
|
55 |
+
Synonyms,
|
56 |
+
airedDate,
|
57 |
+
status,
|
58 |
+
genres,
|
59 |
+
watchLink,
|
60 |
+
};
|
61 |
+
return extractedData;
|
62 |
+
} catch (error) {
|
63 |
+
console.error("Error extracting data:", error);
|
64 |
+
return error;
|
65 |
+
}
|
66 |
+
}
|
src/extractors/random.extractor.js
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import baseUrl from "../utils/baseUrl.js";
|
3 |
+
import extractAnimeInfo from "./animeInfo.extractor.js";
|
4 |
+
import { DEFAULT_HEADERS } from "../configs/header.config.js";
|
5 |
+
|
6 |
+
const axiosInstance = axios.create({ headers: DEFAULT_HEADERS });
|
7 |
+
|
8 |
+
export default async function extractRandom() {
|
9 |
+
try {
|
10 |
+
const resp = await axiosInstance.get(`${baseUrl}/random`);
|
11 |
+
const redirectedUrl = resp.request.res.responseUrl;
|
12 |
+
const id = redirectedUrl.split("/").pop();
|
13 |
+
const animeInfo = await extractAnimeInfo(id);
|
14 |
+
return animeInfo;
|
15 |
+
} catch (error) {
|
16 |
+
console.error("Error extracting random anime info:", error);
|
17 |
+
}
|
18 |
+
}
|
src/extractors/randomId.extractor.js
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import baseUrl from "../utils/baseUrl.js";
|
3 |
+
import { DEFAULT_HEADERS } from "../configs/header.config.js";
|
4 |
+
|
5 |
+
const axiosInstance = axios.create({ headers: DEFAULT_HEADERS });
|
6 |
+
|
7 |
+
export default async function extractRandomId() {
|
8 |
+
try {
|
9 |
+
const resp = await axiosInstance.get(`${baseUrl}/random`);
|
10 |
+
const redirectedUrl = resp.request.res.responseUrl;
|
11 |
+
const id = redirectedUrl.split("/").pop();
|
12 |
+
return id;
|
13 |
+
} catch (error) {
|
14 |
+
console.error("Error extracting random anime info:", error);
|
15 |
+
}
|
16 |
+
}
|
src/extractors/recommend.extractor.js
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default async function extractRecommendedData($) {
|
2 |
+
const recommendedElements = $(
|
3 |
+
"#main-content .block_area_category .tab-content .block_area-content .film_list-wrap .flw-item"
|
4 |
+
);
|
5 |
+
return await Promise.all(
|
6 |
+
recommendedElements
|
7 |
+
.map(async (index, element) => {
|
8 |
+
const id = $(element)
|
9 |
+
.find(".film-detail .film-name a")
|
10 |
+
.attr("href")
|
11 |
+
.split("/")
|
12 |
+
.pop();
|
13 |
+
const data_id = $(element).find(".film-poster a").attr("data-id");
|
14 |
+
const title = $(element)
|
15 |
+
.find(".film-detail .film-name a")
|
16 |
+
.text()
|
17 |
+
.trim();
|
18 |
+
const japanese_title = $(element)
|
19 |
+
.find(".film-detail .film-name a")
|
20 |
+
.attr("data-jname")
|
21 |
+
.trim();
|
22 |
+
const poster = $(element).find(".film-poster img").attr("data-src");
|
23 |
+
const $fdiItems = $(".film-detail .fd-infor .fdi-item", element);
|
24 |
+
const showType = $fdiItems
|
25 |
+
.filter((_, item) => {
|
26 |
+
const text = $(item).text().trim().toLowerCase();
|
27 |
+
return ["tv", "ona", "movie", "ova", "special"].some((type) =>
|
28 |
+
text.includes(type)
|
29 |
+
);
|
30 |
+
})
|
31 |
+
.first();
|
32 |
+
|
33 |
+
const tvInfo = {
|
34 |
+
showType: showType ? showType.text().trim() : "Unknown",
|
35 |
+
duration: $(".film-detail .fd-infor .fdi-duration", element)
|
36 |
+
.text()
|
37 |
+
.trim(),
|
38 |
+
};
|
39 |
+
|
40 |
+
["sub", "dub", "eps"].forEach((property) => {
|
41 |
+
const value = $(`.tick .tick-${property}`, element).text().trim();
|
42 |
+
if (value) {
|
43 |
+
tvInfo[property] = value;
|
44 |
+
}
|
45 |
+
});
|
46 |
+
let adultContent = false;
|
47 |
+
const tickRateText = $(".film-poster>.tick-rate", element)
|
48 |
+
.text()
|
49 |
+
.trim();
|
50 |
+
if (tickRateText.includes("18+")) {
|
51 |
+
adultContent = true;
|
52 |
+
}
|
53 |
+
return {
|
54 |
+
data_id,
|
55 |
+
id,
|
56 |
+
title,
|
57 |
+
japanese_title,
|
58 |
+
poster,
|
59 |
+
tvInfo,
|
60 |
+
adultContent,
|
61 |
+
};
|
62 |
+
})
|
63 |
+
.get()
|
64 |
+
);
|
65 |
+
}
|
src/extractors/related.extractor.js
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default async function extractRelatedData($) {
|
2 |
+
const relatedElements = $(
|
3 |
+
"#main-sidebar .block_area_sidebar .block_area-content .cbox-list .cbox-content .anif-block-ul .ulclear li"
|
4 |
+
);
|
5 |
+
return await Promise.all(
|
6 |
+
relatedElements
|
7 |
+
.map(async (index, element) => {
|
8 |
+
const id = $(element)
|
9 |
+
.find(".film-detail .film-name a")
|
10 |
+
.attr("href")
|
11 |
+
.split("/")
|
12 |
+
.pop();
|
13 |
+
const data_id = $(element).find(".film-poster").attr("data-id");
|
14 |
+
const title = $(element)
|
15 |
+
.find(".film-detail .film-name a")
|
16 |
+
.text()
|
17 |
+
.trim();
|
18 |
+
const japanese_title = $(element)
|
19 |
+
.find(".film-detail .film-name a")
|
20 |
+
.attr("data-jname")
|
21 |
+
.trim();
|
22 |
+
const poster = $(element).find(".film-poster img").attr("data-src");
|
23 |
+
const $fdiItems = $(".film-detail>.fd-infor>.tick", element);
|
24 |
+
const showType = $fdiItems
|
25 |
+
.filter((_, item) => {
|
26 |
+
const text = $(item).text().trim().toLowerCase();
|
27 |
+
return ["tv", "ona", "movie", "ova", "special"].some((type) =>
|
28 |
+
text.includes(type)
|
29 |
+
);
|
30 |
+
})
|
31 |
+
.first()
|
32 |
+
.text()
|
33 |
+
.trim()
|
34 |
+
.split(/\s+/)
|
35 |
+
.find((word) =>
|
36 |
+
["tv", "ona", "movie", "ova", "special"].includes(
|
37 |
+
word.toLowerCase()
|
38 |
+
)
|
39 |
+
);
|
40 |
+
const tvInfo = {
|
41 |
+
showType: showType ? showType : "Unknown",
|
42 |
+
};
|
43 |
+
|
44 |
+
["sub", "dub", "eps"].forEach((property) => {
|
45 |
+
const value = $(`.tick .tick-${property}`, element).text().trim();
|
46 |
+
if (value) {
|
47 |
+
tvInfo[property] = value;
|
48 |
+
}
|
49 |
+
});
|
50 |
+
let adultContent = false;
|
51 |
+
const tickRateText = $(".film-poster>.tick-rate", element)
|
52 |
+
.text()
|
53 |
+
.trim();
|
54 |
+
if (tickRateText.includes("18+")) {
|
55 |
+
adultContent = true;
|
56 |
+
}
|
57 |
+
return {
|
58 |
+
data_id,
|
59 |
+
id,
|
60 |
+
title,
|
61 |
+
japanese_title,
|
62 |
+
poster,
|
63 |
+
tvInfo,
|
64 |
+
adultContent,
|
65 |
+
};
|
66 |
+
})
|
67 |
+
.get()
|
68 |
+
);
|
69 |
+
}
|
src/extractors/schedule.extractor.js
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
4 |
+
|
5 |
+
export default async function extractSchedule(date) {
|
6 |
+
try {
|
7 |
+
const resp = await axios.get(
|
8 |
+
`https://${v1_base_url}/ajax/schedule/list?tzOffset=-330&date=${date}`
|
9 |
+
);
|
10 |
+
const $ = cheerio.load(resp.data.html);
|
11 |
+
const results = [];
|
12 |
+
$("li").each((i, element) => {
|
13 |
+
const id = $(element)
|
14 |
+
?.find("a")
|
15 |
+
.attr("href")
|
16 |
+
.split("?")[0]
|
17 |
+
.replace("/", "");
|
18 |
+
const data_id = id?.split("-").pop();
|
19 |
+
const title = $(element).find(".film-name").text().trim();
|
20 |
+
const japanese_title = $(element)
|
21 |
+
.find(".film-name")
|
22 |
+
.attr("data-jname")
|
23 |
+
.trim();
|
24 |
+
const releaseDate = date;
|
25 |
+
const time = $(element).find(".time").text().trim();
|
26 |
+
const episode_no = $(element)
|
27 |
+
?.find(".btn-play")
|
28 |
+
.text()
|
29 |
+
.trim()
|
30 |
+
.split(" ")
|
31 |
+
.pop();
|
32 |
+
results.push({
|
33 |
+
id,
|
34 |
+
data_id,
|
35 |
+
title,
|
36 |
+
japanese_title,
|
37 |
+
releaseDate,
|
38 |
+
time,
|
39 |
+
episode_no,
|
40 |
+
});
|
41 |
+
});
|
42 |
+
return results;
|
43 |
+
} catch (error) {
|
44 |
+
console.log(error.message);
|
45 |
+
return [];
|
46 |
+
}
|
47 |
+
}
|
src/extractors/search.extractor.js
ADDED
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { DEFAULT_HEADERS } from "../configs/header.config.js";
|
4 |
+
import baseUrl from "../utils/baseUrl.js";
|
5 |
+
|
6 |
+
async function extractSearchResults(search, page) {
|
7 |
+
try {
|
8 |
+
const resp = await axios.get(
|
9 |
+
`${baseUrl}/search?keyword=${search}&page=${page}`,
|
10 |
+
{
|
11 |
+
headers: {
|
12 |
+
Accept:
|
13 |
+
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
|
14 |
+
"Accept-Encoding": "gzip, deflate, br",
|
15 |
+
"User-Agent": DEFAULT_HEADERS,
|
16 |
+
},
|
17 |
+
}
|
18 |
+
);
|
19 |
+
|
20 |
+
const $ = cheerio.load(resp.data);
|
21 |
+
const elements = "#main-content .film_list-wrap .flw-item";
|
22 |
+
|
23 |
+
const totalPage =
|
24 |
+
Number(
|
25 |
+
$('.pre-pagination nav .pagination > .page-item a[title="Last"]')
|
26 |
+
?.attr("href")
|
27 |
+
?.split("=")
|
28 |
+
.pop() ??
|
29 |
+
$('.pre-pagination nav .pagination > .page-item a[title="Next"]')
|
30 |
+
?.attr("href")
|
31 |
+
?.split("=")
|
32 |
+
.pop() ??
|
33 |
+
$(".pre-pagination nav .pagination > .page-item.active a")
|
34 |
+
?.text()
|
35 |
+
?.trim()
|
36 |
+
) || 1;
|
37 |
+
|
38 |
+
const result = [];
|
39 |
+
$(elements).each((_, el) => {
|
40 |
+
const id =
|
41 |
+
$(el)
|
42 |
+
.find(".film-detail .film-name .dynamic-name")
|
43 |
+
?.attr("href")
|
44 |
+
?.slice(1)
|
45 |
+
.split("?ref=search")[0] || null;
|
46 |
+
result.push({
|
47 |
+
id: id,
|
48 |
+
title: $(el)
|
49 |
+
.find(".film-detail .film-name .dynamic-name")
|
50 |
+
?.text()
|
51 |
+
?.trim(),
|
52 |
+
japanese_title:
|
53 |
+
$(el)
|
54 |
+
.find(".film-detail .film-name .dynamic-name")
|
55 |
+
?.attr("data-jname")
|
56 |
+
?.trim() || null,
|
57 |
+
poster:
|
58 |
+
$(el)
|
59 |
+
.find(".film-poster .film-poster-img")
|
60 |
+
?.attr("data-src")
|
61 |
+
?.trim() || null,
|
62 |
+
duration: $(el)
|
63 |
+
.find(".film-detail .fd-infor .fdi-item.fdi-duration")
|
64 |
+
?.text()
|
65 |
+
?.trim(),
|
66 |
+
tvInfo: {
|
67 |
+
showType:
|
68 |
+
$(el)
|
69 |
+
.find(".film-detail .fd-infor .fdi-item:nth-of-type(1)")
|
70 |
+
.text()
|
71 |
+
.trim() || "Unknown",
|
72 |
+
rating: $(el).find(".film-poster .tick-rate")?.text()?.trim() || null,
|
73 |
+
sub:
|
74 |
+
Number(
|
75 |
+
$(el)
|
76 |
+
.find(".film-poster .tick-sub")
|
77 |
+
?.text()
|
78 |
+
?.trim()
|
79 |
+
.split(" ")
|
80 |
+
.pop()
|
81 |
+
) || null,
|
82 |
+
dub:
|
83 |
+
Number(
|
84 |
+
$(el)
|
85 |
+
.find(".film-poster .tick-dub")
|
86 |
+
?.text()
|
87 |
+
?.trim()
|
88 |
+
.split(" ")
|
89 |
+
.pop()
|
90 |
+
) || null,
|
91 |
+
eps:
|
92 |
+
Number(
|
93 |
+
$(el)
|
94 |
+
.find(".film-poster .tick-eps")
|
95 |
+
?.text()
|
96 |
+
?.trim()
|
97 |
+
.split(" ")
|
98 |
+
.pop()
|
99 |
+
) || null,
|
100 |
+
},
|
101 |
+
});
|
102 |
+
});
|
103 |
+
|
104 |
+
return [parseInt(totalPage, 10), result.length > 0 ? result : []];
|
105 |
+
} catch (e) {
|
106 |
+
console.error(e);
|
107 |
+
return e;
|
108 |
+
}
|
109 |
+
}
|
110 |
+
|
111 |
+
export default extractSearchResults;
|
src/extractors/seasons.extractor.js
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import formatTitle from "../helper/formatTitle.helper.js";
|
4 |
+
import baseUrl from "../utils/baseUrl.js";
|
5 |
+
|
6 |
+
async function extractSeasons(id) {
|
7 |
+
try {
|
8 |
+
const resp = await axios.get(`${baseUrl}/watch/${id}`);
|
9 |
+
const $ = cheerio.load(resp.data);
|
10 |
+
const seasons = $(".anis-watch>.other-season>.inner>.os-list>a")
|
11 |
+
.map((index, element) => {
|
12 |
+
const data_number = index;
|
13 |
+
const data_id = parseInt($(element).attr("href").split("-").pop());
|
14 |
+
const season = $(element).find(".title").text().trim();
|
15 |
+
const seasonPoster=$(element).find(".season-poster").attr("style").match(/url\((.*?)\)/)[1];
|
16 |
+
const title = $(element).attr("title").trim();
|
17 |
+
const id = formatTitle(title, data_id);
|
18 |
+
const season_poster = $(element)
|
19 |
+
.find(".season-poster")
|
20 |
+
.attr("style")
|
21 |
+
.match(/url\((.*?)\)/)[1];
|
22 |
+
return { id, data_number, data_id, season, title, season_poster };
|
23 |
+
})
|
24 |
+
.get();
|
25 |
+
return seasons;
|
26 |
+
} catch (e) {
|
27 |
+
console.log(e);
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
export default extractSeasons;
|
src/extractors/spotlight.extractor.js
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
|
5 |
+
async function extractSpotlights() {
|
6 |
+
try {
|
7 |
+
const resp = await axios.get(`${baseUrl}/home`);
|
8 |
+
const $ = cheerio.load(resp.data);
|
9 |
+
|
10 |
+
const slideElements = $(
|
11 |
+
"div.deslide-wrap > div.container > div#slider > div.swiper-wrapper > div.swiper-slide"
|
12 |
+
);
|
13 |
+
|
14 |
+
const promises = slideElements
|
15 |
+
.map(async (ind, ele) => {
|
16 |
+
const poster = $(ele)
|
17 |
+
.find(
|
18 |
+
"div.deslide-item > div.deslide-cover > div.deslide-cover-img > img.film-poster-img"
|
19 |
+
)
|
20 |
+
.attr("data-src");
|
21 |
+
const title = $(ele)
|
22 |
+
.find(
|
23 |
+
"div.deslide-item > div.deslide-item-content > div.desi-head-title"
|
24 |
+
)
|
25 |
+
.text()
|
26 |
+
.trim();
|
27 |
+
const japanese_title = $(ele)
|
28 |
+
.find(
|
29 |
+
"div.deslide-item > div.deslide-item-content > div.desi-head-title"
|
30 |
+
)
|
31 |
+
.attr("data-jname")
|
32 |
+
.trim();
|
33 |
+
const description = $(ele)
|
34 |
+
.find(
|
35 |
+
"div.deslide-item > div.deslide-item-content > div.desi-description"
|
36 |
+
)
|
37 |
+
.text()
|
38 |
+
.trim();
|
39 |
+
const id = $(ele)
|
40 |
+
.find(
|
41 |
+
".deslide-item > .deslide-item-content > .desi-buttons > a:eq(0)"
|
42 |
+
)
|
43 |
+
.attr("href")
|
44 |
+
.split("/")
|
45 |
+
.pop();
|
46 |
+
const data_id = $(ele)
|
47 |
+
.find(
|
48 |
+
".deslide-item > .deslide-item-content > .desi-buttons > a:eq(0)"
|
49 |
+
)
|
50 |
+
.attr("href")
|
51 |
+
.split("/")
|
52 |
+
.pop()
|
53 |
+
.split("-")
|
54 |
+
.pop();
|
55 |
+
const tvInfoMapping = {
|
56 |
+
0: "showType",
|
57 |
+
1: "duration",
|
58 |
+
2: "releaseDate",
|
59 |
+
3: "quality",
|
60 |
+
4: "episodeInfo",
|
61 |
+
};
|
62 |
+
|
63 |
+
const tvInfo = {};
|
64 |
+
|
65 |
+
await Promise.all(
|
66 |
+
$(ele)
|
67 |
+
.find("div.sc-detail > div.scd-item")
|
68 |
+
.map(async (index, element) => {
|
69 |
+
const key = tvInfoMapping[index];
|
70 |
+
let value = $(element).text().trim().replace(/\n/g, "");
|
71 |
+
|
72 |
+
const tickContainer = $(element).find(".tick");
|
73 |
+
|
74 |
+
if (tickContainer.length > 0) {
|
75 |
+
value = {
|
76 |
+
sub: tickContainer.find(".tick-sub").text().trim(),
|
77 |
+
dub: tickContainer.find(".tick-dub").text().trim(),
|
78 |
+
};
|
79 |
+
}
|
80 |
+
tvInfo[key] = value;
|
81 |
+
})
|
82 |
+
);
|
83 |
+
return {
|
84 |
+
id,
|
85 |
+
data_id,
|
86 |
+
poster,
|
87 |
+
title,
|
88 |
+
japanese_title,
|
89 |
+
description,
|
90 |
+
tvInfo,
|
91 |
+
};
|
92 |
+
})
|
93 |
+
.get();
|
94 |
+
|
95 |
+
const serverData = await Promise.all(promises);
|
96 |
+
return JSON.parse(JSON.stringify(serverData, null, 2));
|
97 |
+
} catch (error) {
|
98 |
+
console.error("Error fetching data:", error.message);
|
99 |
+
return error;
|
100 |
+
}
|
101 |
+
}
|
102 |
+
|
103 |
+
export default extractSpotlights;
|
src/extractors/streamInfo.extractor.js
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
import decryptMegacloud from "../parsers/decryptors/megacloud.decryptor.js";
|
5 |
+
|
6 |
+
export async function extractServers(id) {
|
7 |
+
try {
|
8 |
+
const resp = await axios.get(
|
9 |
+
`${baseUrl}/ajax/v2/episode/servers?episodeId=${id}`
|
10 |
+
);
|
11 |
+
const $ = cheerio.load(resp.data.html);
|
12 |
+
const serverData = [];
|
13 |
+
$(".server-item").each((index, element) => {
|
14 |
+
const data_id = $(element).attr("data-id");
|
15 |
+
const server_id = $(element).attr("data-server-id");
|
16 |
+
const type = $(element).attr("data-type");
|
17 |
+
const serverName = $(element).find("a").text().trim();
|
18 |
+
serverData.push({
|
19 |
+
type,
|
20 |
+
data_id,
|
21 |
+
server_id,
|
22 |
+
serverName,
|
23 |
+
});
|
24 |
+
});
|
25 |
+
console.log(serverData);
|
26 |
+
return serverData;
|
27 |
+
} catch (error) {
|
28 |
+
console.log(error);
|
29 |
+
return [];
|
30 |
+
}
|
31 |
+
}
|
32 |
+
|
33 |
+
async function extractStreamingInfo(id, name, type) {
|
34 |
+
try {
|
35 |
+
const servers = await extractServers(id.split("?ep=").pop());
|
36 |
+
let requestedServer = servers.filter(
|
37 |
+
(server) =>
|
38 |
+
server.serverName.toLowerCase() === name.toLowerCase() &&
|
39 |
+
server.type.toLowerCase() === type.toLowerCase()
|
40 |
+
);
|
41 |
+
if (requestedServer.length === 0) {
|
42 |
+
requestedServer = servers.filter(
|
43 |
+
(server) =>
|
44 |
+
server.serverName.toLowerCase() === name.toLowerCase() &&
|
45 |
+
server.type.toLowerCase() === "raw"
|
46 |
+
);
|
47 |
+
}
|
48 |
+
if (requestedServer.length === 0) {
|
49 |
+
throw new Error(
|
50 |
+
`No matching server found for name: ${name}, type: ${type}`
|
51 |
+
);
|
52 |
+
}
|
53 |
+
const streamingLink = await decryptMegacloud(
|
54 |
+
requestedServer[0].data_id,
|
55 |
+
name,
|
56 |
+
type
|
57 |
+
);
|
58 |
+
return { streamingLink, servers };
|
59 |
+
} catch (error) {
|
60 |
+
console.error("An error occurred:", error);
|
61 |
+
return { streamingLink: [], servers: [] };
|
62 |
+
}
|
63 |
+
}
|
64 |
+
export { extractStreamingInfo };
|
src/extractors/subtitle.extractor.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
import { provider } from "../utils/provider.js";
|
5 |
+
|
6 |
+
export async function extractSubtitle(id) {
|
7 |
+
// console.log(id);
|
8 |
+
const resp = await axios.get(`${baseUrl}/ajax/v2/episode/sources/?id=${id}`);
|
9 |
+
// console.log(resp.data.link.split('/').pop().replace(/\?k=\d?/g, ""));
|
10 |
+
const source = await axios.get(
|
11 |
+
`${provider}/embed-2/ajax/e-1/getSources?id=${resp.data.link
|
12 |
+
.split("/")
|
13 |
+
.pop()
|
14 |
+
.replace(/\?k=\d?/g, "")}`
|
15 |
+
);
|
16 |
+
const subtitles = source.data.tracks;
|
17 |
+
const intro = source.data.intro;
|
18 |
+
const outro = source.data.outro;
|
19 |
+
return { subtitles, intro, outro };
|
20 |
+
}
|
src/extractors/suggestion.extractor.js
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { v1_base_url } from "../utils/base_v1.js";
|
4 |
+
|
5 |
+
async function getSuggestions(keyword) {
|
6 |
+
try {
|
7 |
+
const resp = await axios.get(
|
8 |
+
`https://${v1_base_url}/ajax/search/suggest?keyword=${keyword}`
|
9 |
+
);
|
10 |
+
const $ = cheerio.load(resp.data.html);
|
11 |
+
const results = [];
|
12 |
+
$(".nav-item")
|
13 |
+
.not(".nav-bottom")
|
14 |
+
.each((i, element) => {
|
15 |
+
const id = $(element).attr("href").split("?")[0].replace("/", "");
|
16 |
+
const data_id = id.split("-").pop();
|
17 |
+
const imgData = $(element).find(".film-poster-img").attr("data-src");
|
18 |
+
const title = $(element).find(".film-name").text().trim();
|
19 |
+
const japanese_title = $(element).find(".film-name").attr("data-jname").trim();
|
20 |
+
const releaseDate = $(element)
|
21 |
+
.find(".film-infor span")
|
22 |
+
.first()
|
23 |
+
.text()
|
24 |
+
.trim();
|
25 |
+
const filmInforHtml = $(element).find(".film-infor").html();
|
26 |
+
const showTypeMatch = /<i class="dot"><\/i>([^<]+)<i class="dot"><\/i>/;
|
27 |
+
const showType = showTypeMatch.exec(filmInforHtml)?.[1]?.trim() || "";
|
28 |
+
const duration = $(element)
|
29 |
+
.find(".film-infor span")
|
30 |
+
.last()
|
31 |
+
.text()
|
32 |
+
.trim();
|
33 |
+
results.push({
|
34 |
+
id,
|
35 |
+
data_id,
|
36 |
+
imgData,
|
37 |
+
title,
|
38 |
+
japanese_title,
|
39 |
+
releaseDate,
|
40 |
+
showType,
|
41 |
+
duration,
|
42 |
+
});
|
43 |
+
});
|
44 |
+
return results;
|
45 |
+
} catch (error) {
|
46 |
+
console.log(error.message);
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
export default getSuggestions;
|
src/extractors/topten.extractor.js
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
|
5 |
+
// Set Axios defaults
|
6 |
+
axios.defaults.baseURL = baseUrl;
|
7 |
+
|
8 |
+
async function extractTopTen() {
|
9 |
+
try {
|
10 |
+
const resp = await axios.get("/home");
|
11 |
+
const $ = cheerio.load(resp.data);
|
12 |
+
|
13 |
+
const labels = ["today", "week", "month"];
|
14 |
+
const result = {};
|
15 |
+
|
16 |
+
// Loop through eq(0), eq(1), eq(2) for today, week, and month respectively
|
17 |
+
labels.forEach((label, idx) => {
|
18 |
+
const data = $(
|
19 |
+
`#main-sidebar .block_area-realtime .block_area-content ul:eq(${idx})>li`
|
20 |
+
)
|
21 |
+
.map((index, element) => {
|
22 |
+
const number = $(".film-number>span", element).text().trim();
|
23 |
+
const title = $(".film-detail>.film-name>a", element).text().trim();
|
24 |
+
const poster = $(".film-poster>img", element).attr("data-src");
|
25 |
+
const japanese_title = $(".film-detail>.film-name>a", element)
|
26 |
+
.attr("data-jname")
|
27 |
+
.trim();
|
28 |
+
const data_id = $(".film-poster", element).attr("data-id");
|
29 |
+
const id = $(".film-detail>.film-name>a", element)
|
30 |
+
.attr("href")
|
31 |
+
.split("/")
|
32 |
+
.pop();
|
33 |
+
const tvInfo = ["sub", "dub", "eps"].reduce((info, property) => {
|
34 |
+
const value = $(`.tick .tick-${property}`, element).text().trim();
|
35 |
+
if (value) {
|
36 |
+
info[property] = value;
|
37 |
+
}
|
38 |
+
return info;
|
39 |
+
}, {});
|
40 |
+
|
41 |
+
return { id, data_id, number, title, japanese_title, poster, tvInfo };
|
42 |
+
})
|
43 |
+
.get();
|
44 |
+
|
45 |
+
result[label] = data;
|
46 |
+
});
|
47 |
+
|
48 |
+
return result;
|
49 |
+
} catch (error) {
|
50 |
+
console.error("Error fetching data:", error);
|
51 |
+
throw error;
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
export default extractTopTen;
|
src/extractors/trending.extractor.js
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
|
5 |
+
async function fetchAnimeDetails(element) {
|
6 |
+
const data_id = element.attr("data-id");
|
7 |
+
const number = element.find(".number > span").text();
|
8 |
+
const poster = element.find("img").attr("data-src");
|
9 |
+
const title = element.find(".film-title").text().trim();
|
10 |
+
const japanese_title = element.find(".film-title").attr("data-jname").trim();
|
11 |
+
const id = element.find("a").attr("href").split("/").pop();
|
12 |
+
return { id, data_id, number, poster, title, japanese_title };
|
13 |
+
}
|
14 |
+
|
15 |
+
async function extractTrending() {
|
16 |
+
try {
|
17 |
+
const resp = await axios.get(`${baseUrl}/home`);
|
18 |
+
const $ = cheerio.load(resp.data);
|
19 |
+
|
20 |
+
const trendingElements = $("#anime-trending #trending-home .swiper-slide");
|
21 |
+
const elementPromises = trendingElements
|
22 |
+
.map((index, element) => {
|
23 |
+
return fetchAnimeDetails($(element));
|
24 |
+
})
|
25 |
+
.get();
|
26 |
+
|
27 |
+
const trendingData = await Promise.all(elementPromises);
|
28 |
+
return JSON.parse(JSON.stringify(trendingData));
|
29 |
+
} catch (error) {
|
30 |
+
console.error("Error fetching data:", error.message);
|
31 |
+
return error;
|
32 |
+
}
|
33 |
+
}
|
34 |
+
|
35 |
+
export default extractTrending;
|
src/extractors/voiceactor.extractor.js
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
import { parse } from "dotenv";
|
5 |
+
|
6 |
+
export default async function extractVoiceActor(id, page) {
|
7 |
+
try {
|
8 |
+
const resp = await axios.get(
|
9 |
+
`${baseUrl}/ajax/character/list/${id.split("-").pop()}?page=${page}`
|
10 |
+
);
|
11 |
+
const $ = cheerio.load(resp.data.html);
|
12 |
+
let totalPages = 1;
|
13 |
+
const paginationList = $(".pre-pagination nav ul");
|
14 |
+
if (paginationList.length) {
|
15 |
+
const lastPageLink = paginationList.find("li").last().find("a");
|
16 |
+
const pageNumber =
|
17 |
+
lastPageLink.attr("data-url")?.match(/page=(\d+)/)?.[1] ||
|
18 |
+
lastPageLink.text().trim();
|
19 |
+
totalPages = parseInt(pageNumber) || totalPages;
|
20 |
+
}
|
21 |
+
const charactersVoiceActors = $(".bac-list-wrap .bac-item")
|
22 |
+
.map((index, el) => {
|
23 |
+
const character = {
|
24 |
+
id:
|
25 |
+
$(el)
|
26 |
+
.find(".per-info.ltr .pi-avatar")
|
27 |
+
.attr("href")
|
28 |
+
?.split("/")[2] || "",
|
29 |
+
poster:
|
30 |
+
$(el).find(".per-info.ltr .pi-avatar img").attr("data-src") || "",
|
31 |
+
name: $(el).find(".per-info.ltr .pi-detail a").text(),
|
32 |
+
cast: $(el).find(".per-info.ltr .pi-detail .pi-cast").text(),
|
33 |
+
};
|
34 |
+
|
35 |
+
let voiceActors = [];
|
36 |
+
const rtlVoiceActors = $(el).find(".per-info.rtl");
|
37 |
+
const xxVoiceActors = $(el).find(
|
38 |
+
".per-info.per-info-xx .pix-list .pi-avatar"
|
39 |
+
);
|
40 |
+
if (rtlVoiceActors.length > 0) {
|
41 |
+
voiceActors = rtlVoiceActors
|
42 |
+
.map((_, actorEl) => ({
|
43 |
+
id: $(actorEl).find("a").attr("href")?.split("/").pop() || "",
|
44 |
+
poster: $(actorEl).find("img").attr("data-src") || "",
|
45 |
+
name:
|
46 |
+
$(actorEl).find(".pi-detail .pi-name a").text().trim() || "",
|
47 |
+
}))
|
48 |
+
.get();
|
49 |
+
} else if (xxVoiceActors.length > 0) {
|
50 |
+
voiceActors = xxVoiceActors
|
51 |
+
.map((_, actorEl) => ({
|
52 |
+
id: $(actorEl).attr("href")?.split("/").pop() || "",
|
53 |
+
poster: $(actorEl).find("img").attr("data-src") || "",
|
54 |
+
name: $(actorEl).attr("title") || "",
|
55 |
+
}))
|
56 |
+
.get();
|
57 |
+
}
|
58 |
+
if (voiceActors.length === 0) {
|
59 |
+
voiceActors = $(el)
|
60 |
+
.find(".per-info.per-info-xx .pix-list .pi-avatar")
|
61 |
+
.map((_, actorEl) => ({
|
62 |
+
id: $(actorEl).attr("href")?.split("/")[2] || "",
|
63 |
+
poster: $(actorEl).find("img").attr("data-src") || "",
|
64 |
+
name: $(actorEl).attr("title") || "",
|
65 |
+
}))
|
66 |
+
.get();
|
67 |
+
}
|
68 |
+
|
69 |
+
return { character, voiceActors };
|
70 |
+
})
|
71 |
+
.get();
|
72 |
+
return { totalPages, charactersVoiceActors };
|
73 |
+
} catch (error) {
|
74 |
+
console.error("Error in extractVoiceActor:", error);
|
75 |
+
throw new Error("Could not extract voice actors");
|
76 |
+
}
|
77 |
+
}
|
src/helper/cache.helper.js
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import dotenv from "dotenv";
|
3 |
+
|
4 |
+
dotenv.config();
|
5 |
+
|
6 |
+
const CACHE_SERVER_URL = process.env.CACHE_URL || null;
|
7 |
+
|
8 |
+
export const getCachedData = async (key) => {
|
9 |
+
try {
|
10 |
+
if (!CACHE_SERVER_URL) {
|
11 |
+
console.log(CACHE_SERVER_URL);
|
12 |
+
return;
|
13 |
+
}
|
14 |
+
const response = await axios.get(`${CACHE_SERVER_URL}/${key}`);
|
15 |
+
return response.data;
|
16 |
+
} catch (error) {
|
17 |
+
if (error.response && error.response.status === 404) {
|
18 |
+
return null;
|
19 |
+
}
|
20 |
+
throw error;
|
21 |
+
}
|
22 |
+
};
|
23 |
+
|
24 |
+
export const setCachedData = async (key, value) => {
|
25 |
+
try {
|
26 |
+
if (!CACHE_SERVER_URL) {
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
await axios.post(CACHE_SERVER_URL, { key, value });
|
30 |
+
} catch (error) {
|
31 |
+
console.error("Error setting cache data:", error);
|
32 |
+
throw error;
|
33 |
+
}
|
34 |
+
};
|
src/helper/countPages.helper.js
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import { DEFAULT_HEADERS } from "../configs/header.config.js";
|
4 |
+
|
5 |
+
const axiosInstance = axios.create({ headers: DEFAULT_HEADERS });
|
6 |
+
|
7 |
+
async function countPages(url) {
|
8 |
+
try {
|
9 |
+
const { data } = await axiosInstance.get(url);
|
10 |
+
const $ = cheerio.load(data);
|
11 |
+
const lastPageHref = $(
|
12 |
+
".tab-content .pagination .page-item:last-child a"
|
13 |
+
).attr("href");
|
14 |
+
const lastPageNumber = lastPageHref
|
15 |
+
? parseInt(lastPageHref.split("=").pop())
|
16 |
+
: 1;
|
17 |
+
return lastPageNumber;
|
18 |
+
} catch (error) {
|
19 |
+
console.error("Error counting pages:", error.message);
|
20 |
+
throw error;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
export default countPages;
|
src/helper/extractPages.helper.js
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import baseUrl from "../utils/baseUrl.js";
|
4 |
+
import { DEFAULT_HEADERS } from "../configs/header.config.js";
|
5 |
+
|
6 |
+
const axiosInstance = axios.create({ headers: DEFAULT_HEADERS });
|
7 |
+
|
8 |
+
async function extractPage(page, params) {
|
9 |
+
try {
|
10 |
+
const resp = await axiosInstance.get(`${baseUrl}/${params}?page=${page}`);
|
11 |
+
const $ = cheerio.load(resp.data);
|
12 |
+
const totalPages =
|
13 |
+
Number(
|
14 |
+
$('.pre-pagination nav .pagination > .page-item a[title="Last"]')
|
15 |
+
?.attr("href")
|
16 |
+
?.split("=")
|
17 |
+
.pop() ??
|
18 |
+
$('.pre-pagination nav .pagination > .page-item a[title="Next"]')
|
19 |
+
?.attr("href")
|
20 |
+
?.split("=")
|
21 |
+
.pop() ??
|
22 |
+
$(".pre-pagination nav .pagination > .page-item.active a")
|
23 |
+
?.text()
|
24 |
+
?.trim()
|
25 |
+
) || 1;
|
26 |
+
|
27 |
+
const contentSelector = params.includes("az-list")
|
28 |
+
? ".tab-content"
|
29 |
+
: "#main-content";
|
30 |
+
const data = await Promise.all(
|
31 |
+
$(`${contentSelector} .film_list-wrap .flw-item`).map(
|
32 |
+
async (index, element) => {
|
33 |
+
const $fdiItems = $(".film-detail .fd-infor .fdi-item", element);
|
34 |
+
const showType = $fdiItems
|
35 |
+
.filter((_, item) => {
|
36 |
+
const text = $(item).text().trim().toLowerCase();
|
37 |
+
return ["tv", "ona", "movie", "ova", "special"].some((type) =>
|
38 |
+
text.includes(type)
|
39 |
+
);
|
40 |
+
})
|
41 |
+
.first();
|
42 |
+
const poster = $(".film-poster>img", element).attr("data-src");
|
43 |
+
const title = $(".film-detail .film-name", element).text();
|
44 |
+
const japanese_title = $(".film-detail>.film-name>a", element).attr(
|
45 |
+
"data-jname"
|
46 |
+
);
|
47 |
+
const description = $(".film-detail .description", element)
|
48 |
+
.text()
|
49 |
+
.trim();
|
50 |
+
const data_id = $(".film-poster>a", element).attr("data-id");
|
51 |
+
const id = $(".film-poster>a", element).attr("href").split("/").pop();
|
52 |
+
const tvInfo = {
|
53 |
+
showType: showType ? showType.text().trim() : "Unknown",
|
54 |
+
duration: $(".film-detail .fd-infor .fdi-duration", element)
|
55 |
+
.text()
|
56 |
+
.trim(),
|
57 |
+
};
|
58 |
+
let adultContent = false;
|
59 |
+
const tickRateText = $(".film-poster>.tick-rate", element)
|
60 |
+
.text()
|
61 |
+
.trim();
|
62 |
+
if (tickRateText.includes("18+")) {
|
63 |
+
adultContent = true;
|
64 |
+
}
|
65 |
+
|
66 |
+
["sub", "dub", "eps"].forEach((property) => {
|
67 |
+
const value = $(`.tick .tick-${property}`, element).text().trim();
|
68 |
+
if (value) {
|
69 |
+
tvInfo[property] = value;
|
70 |
+
}
|
71 |
+
});
|
72 |
+
return {
|
73 |
+
id,
|
74 |
+
data_id,
|
75 |
+
poster,
|
76 |
+
title,
|
77 |
+
japanese_title,
|
78 |
+
description,
|
79 |
+
tvInfo,
|
80 |
+
adultContent,
|
81 |
+
};
|
82 |
+
}
|
83 |
+
)
|
84 |
+
);
|
85 |
+
return [data, parseInt(totalPages, 10)];
|
86 |
+
} catch (error) {
|
87 |
+
console.error(`Error extracting data from page ${page}:`, error.message);
|
88 |
+
throw error;
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
+
export default extractPage;
|
src/helper/fetchScript.helper.js
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from "axios";
|
2 |
+
|
3 |
+
async function fetchScript(url) {
|
4 |
+
const response = await axios.get(url);
|
5 |
+
return response.data;
|
6 |
+
}
|
7 |
+
|
8 |
+
export default fetchScript;
|
src/helper/formatTitle.helper.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
function formatTitle(title, data_id) {
|
2 |
+
let formattedTitle = title.replace(/[^\w\s]/g, "");
|
3 |
+
formattedTitle = formattedTitle.toLowerCase();
|
4 |
+
formattedTitle = formattedTitle.replace(/\s+/g, "-");
|
5 |
+
formattedTitle = `${formattedTitle}-${data_id}`;
|
6 |
+
return formattedTitle;
|
7 |
+
}
|
8 |
+
|
9 |
+
export default formatTitle;
|