-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.06 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.06 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "spotify-music-downloader-cli",
"version": "1.1.4",
"description": "CLI tool to download Spotify playlists and songs",
"main": "src/index.js",
"bin": {
"spotify-dl": "bin/cli.js",
"spdl": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/ bin/",
"lint:fix": "eslint src/ bin/ --fix",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"spotify",
"downloader",
"music",
"cli",
"youtube",
"mp3",
"playlist",
"album",
"metadata",
"id3",
"audio",
"streaming",
"spotify-downloader",
"music-downloader",
"yt-dlp"
],
"author": {
"name": "Mustafa Azad",
"email": "mustafaazad533@gmail.com",
"url": "https://github.com/mustafaazad03"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mustafaazad03/spotify-cli.git"
},
"bugs": {
"url": "https://github.com/mustafaazad03/spotify-cli/issues"
},
"homepage": "https://github.com/mustafaazad03/spotify-cli#readme",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"preferGlobal": true,
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"EXAMPLES.md",
"CONFIG.md",
"INSTALL_YTDLP.md"
],
"dependencies": {
"@distube/ytdl-core": "^4.13.3",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"clipboardy": "^5.0.1",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"fluent-ffmpeg": "^2.1.2",
"inquirer": "^8.2.5",
"node-cache": "^5.1.2",
"node-cron": "^4.2.1",
"node-id3": "^0.2.6",
"open": "^11.0.0",
"ora": "^5.4.1",
"p-limit": "^3.1.0",
"play-dl": "^1.9.7",
"winston": "^3.18.3",
"youtube-search-api": "^2.0.1",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0"
}
}