-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·78 lines (78 loc) · 2.34 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "youtube-exec",
"version": "1.0.3",
"description": "YouTube-Exec is a versatile tool for downloading audio files from YouTube videos. It utilizes the youtube-dl-exec library to extract audio details and the fluent-ffmpeg library to download the audio files in MP3 format. With youtube-exec, you can easily fetch audio details, choose the desired audio quality, and download the audio file to your specified location.",
"main": "./app/cjs/index.js",
"module": "./app/mjs/index.mjs",
"types": "./app/types/index.d.ts",
"bin": {
"youtube-exec": "./bin/youtube-exec.js"
},
"scripts": {
"postinstall": "chmod +x bin/permissions.sh",
"clean": "rm -rf node_modules yarn.lock package-lock.json pnpm-lock.yaml",
"test": "npx mocha test/audio.test.js && npx mocha test/vid_aud.test.js && test/web.test.js",
"local": "npx mocha client/audio.test.js && npx mocha client/vid_aud.test.js && client/web.test.js",
"prestart": "python --version 2>&1 >/dev/null || echo 'Python is not installed. Please install Python to run this code.'"
},
"keywords": [
"youtube",
"downloader",
"audio",
"video",
"download",
"exec",
"stream",
"ffmpeg"
],
"author": {
"name": "magneum",
"url": "https://bit.ly/magneum",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/magneum/youtube-exec#readme",
"repository": {
"type": "git",
"url": "https://github.com/magneum/youtube-exec.git"
},
"bugs": {
"url": "https://github.com/magneum/youtube-exec/issues"
},
"dependencies": {
"@types/ws": "^8.5.4",
"axios": "^1.3.4",
"chalk": "^4.1.2",
"cli-clear": "^1.0.4",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"moment": "^2.29.4",
"node-fetch": "^2.6.1",
"open": "^9.1.0",
"path": "^0.12.7",
"progress": "^2.0.3",
"progress-estimator": "^0.3.1",
"sinon": "^15.1.0",
"socket.io": "^4.6.2",
"url-regex": "^5.0.0",
"uuid": "^9.0.0",
"winston": "^3.9.0",
"ws": "^8.13.0",
"yargs": "^17.7.2",
"youtube-dl-exec": "^2.4.4",
"youtube-exec": "^1.0.3"
},
"devDependencies": {
"chai": "^4.3.7",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=16.0.0"
},
"private": false,
"publishConfig": {
"access": "public"
}
}