-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 885 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "discord-video-downloader",
"version": "1.0.0",
"description": "Discord bot for downloading and processing videos",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"keywords": [
"discord",
"bot",
"video",
"downloader"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"m3u8-parser": "^7.1.0",
"puppeteer": "^21.5.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rimraf": "^5.0.5"
},
"devDependencies": {
"eslint": "^8.54.0",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0"
}
}