Reaperxxxx commited on
Commit
5625981
·
verified ·
1 Parent(s): 2f8dcb4

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +19 -0
package.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }