Update package.json
Browse files- package.json +16 -10
package.json
CHANGED
@@ -1,19 +1,25 @@
|
|
1 |
{
|
2 |
-
"name": "anime-
|
3 |
"version": "1.0.0",
|
4 |
-
"description": "
|
5 |
-
"main": "
|
6 |
"scripts": {
|
7 |
-
"start": "node
|
8 |
},
|
9 |
"dependencies": {
|
10 |
-
"
|
11 |
-
"axios": "^1.6.
|
12 |
"cheerio": "^1.0.0-rc.12",
|
|
|
|
|
13 |
"fs-extra": "^11.2.0",
|
14 |
"path": "^0.12.7",
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
19 |
}
|
|
|
1 |
{
|
2 |
+
"name": "anime-download-api",
|
3 |
"version": "1.0.0",
|
4 |
+
"description": "Anime download API using Puppeteer, Playwright, Express, Axios, and Cheerio",
|
5 |
+
"main": "index.js",
|
6 |
"scripts": {
|
7 |
+
"start": "node index.js"
|
8 |
},
|
9 |
"dependencies": {
|
10 |
+
"@ffmpeg-installer/ffmpeg": "^1.1.0",
|
11 |
+
"axios": "^1.6.5",
|
12 |
"cheerio": "^1.0.0-rc.12",
|
13 |
+
"express": "^4.18.2",
|
14 |
+
"fluent-ffmpeg": "^2.1.2",
|
15 |
"fs-extra": "^11.2.0",
|
16 |
"path": "^0.12.7",
|
17 |
+
"playwright": "^1.42.1",
|
18 |
+
"puppeteer": "^22.3.1"
|
19 |
+
},
|
20 |
+
"engines": {
|
21 |
+
"node": ">=18.0.0"
|
22 |
+
},
|
23 |
+
"author": "Your Name",
|
24 |
+
"license": "MIT"
|
25 |
}
|