-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
124 lines (124 loc) · 2.71 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "freyr",
"version": "0.10.3",
"description": "A versatile, service-agnostic music downloader and manager",
"exports": "./src/freyr.js",
"type": "module",
"bin": {
"freyr": "./cli.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "$NODE test/index.js"
},
"files": [
"src",
"conf.json",
"banner.js"
],
"directories": {
"lib": "src"
},
"keywords": [
"spotify",
"music-streaming",
"music",
"manager",
"download",
"track",
"album",
"artist",
"playlist",
"iTunes",
"mpeg-4",
"m4a",
"audio",
"320kbps"
],
"author": {
"name": "Miraculous Owonubi",
"email": "[email protected]",
"url": "https://about.me/miraclx"
},
"repository": {
"type": "git",
"url": "[email protected]:miraclx/freyr-js.git"
},
"bugs": {
"url": "https://github.com/miraclx/freyr-js/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.0",
"@miraclx/spotify-web-api-node": "^5.1.0",
"@yujinakayama/apple-music": "^0.4.1",
"async": "^3.2.4",
"bluebird": "^3.7.2",
"cachedir": "^2.3.0",
"commander": "^11.0.0",
"conf": "^12.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"country-data": "0.0.31",
"es-main": "^1.0.2",
"express": "^4.18.1",
"file-type": "^19.0.0",
"filenamify": "^6.0.0",
"got": "^13.0.0",
"hh-mm-ss": "^1.2.0",
"html-entities": "^2.3.3",
"isbinaryfile": "^5.0.0",
"libxget": "^0.11.0",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"lodash.sortby": "^4.7.0",
"merge2": "^1.4.1",
"minimatch": "^9.0.0",
"mkdirp": "^3.0.0",
"node-cache": "^5.1.2",
"open": "^10.0.0",
"pretty-ms": "^9.0.0",
"public-ip": "^6.0.1",
"spotify-uri": "^4.0.0",
"stringd": "^2.2.0",
"stringd-colors": "^1.10.0",
"xbytes": "^1.8.0",
"xprogress": "^0.20.0",
"youtube-dl-exec": "^3.0.7",
"yt-search": "^2.10.3"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3"
},
"overrides": {
"public-ip": {
"got": "13.0.0"
},
"yt-search": {
"node-fzf": {
".": "0.11.0",
"cli-color": "2.0.4",
"string-width": "7.2.0"
}
},
"@yujinakayama/apple-music": {
"axios": "1.7.2"
},
"@ffmpeg/ffmpeg": {
"node-fetch": "2.7.0"
}
},
"resolutions": {
"@yujinakayama/apple-music/axios": "1.7.2",
"@ffmpeg/ffmpeg/node-fetch": "2.7.0",
"public-ip/got": "13.0.0",
"yt-search/node-fzf": "0.11.0",
"yt-search/node-fzf/cli-color": "2.0.4",
"yt-search/node-fzf/string-width": "7.2.0"
}
}