-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
36 lines (36 loc) · 1002 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": "whatsapp_music_bot",
"description": "Turn your number into a DJ!",
"version": "3.1.0",
"main": "main.ts",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Victor Eyer",
"url": "https://github.com/mlg404"
},
"scripts": {
"start": "ts-node-dev --transpile-only --ignore-watch node_modules src/main.ts"
},
"devDependencies": {
"@types/ffmpeg": "^1.0.4",
"@types/yt-search": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"ffmpeg": "^0.0.4",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.16.7",
"yt-search": "^2.10.3",
"ytdl-core": "^4.11.0"
}
}