-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 880 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
{
"name": "yt2dl",
"version": "1.0.9",
"description": "YouTube Audio & Video Downloader using NodeJS",
"main": "index.js",
"repository": "https://github.com/ipincamp/yt2dl.git",
"author": "ipincamp <support@nur-arifin.my.id>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"dev": "nodemon src/",
"start": "node src/",
"lint": "eslint --fix src/"
},
"engines": {
"node": ">=18.x",
"npm": ">=10.x",
"yarn": ">=1.22.x"
},
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.3",
"express": "^4.19.2",
"joi": "^17.12.1",
"sanitize-filename": "^1.6.3",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^3.0.3"
}
}