Reaperxxxx commited on
Commit
e944577
·
verified ·
1 Parent(s): 64b4e54

Update package.json

Browse files
Files changed (1) hide show
  1. package.json +16 -10
package.json CHANGED
@@ -1,19 +1,25 @@
1
  {
2
- "name": "anime-downloader",
3
  "version": "1.0.0",
4
- "description": "Fast anime downloader with multi-threaded downloads, Puppeteer automation, and FFmpeg conversion.",
5
- "main": "server.js",
6
  "scripts": {
7
- "start": "node server.js"
8
  },
9
  "dependencies": {
10
- "express": "^4.18.3",
11
- "axios": "^1.6.7",
12
  "cheerio": "^1.0.0-rc.12",
 
 
13
  "fs-extra": "^11.2.0",
14
  "path": "^0.12.7",
15
- "puppeteer": "^22.3.0",
16
- "playwright": "^1.41.1",
17
- "fluent-ffmpeg": "^2.1.2"
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
  }