-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "tidalwave",
"version": "0.12.0",
"description": "A TIDAL downloader for tracks, albums, artist discographies and playlists",
"main": "./src/index.js",
"scripts": {
"build": "npm run build:all",
"build:linux": "npm run build:linux-x64",
"build:windows": "npm run build:windows-x64",
"build:macos": "npm run build:macos-arm64",
"build:linux-x64": "cd scripts && bash ./build-linux-x64.sh",
"build:linux-arm64": "cd scripts && bash ./build-linux-arm64.sh",
"build:windows-x64": "cd scripts && bash ./build-windows-x64.sh",
"build:macos-x64": "cd scripts && bash ./build-macos-x64.sh",
"build:macos-arm64": "cd scripts && bash ./build-macos-arm64.sh",
"build:all": "cd scripts && bash ./build-all.sh",
"download-binaries": "cd scripts && bash ./download-binaries.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lyall-A/tidalwave.git"
},
"keywords": [
"music",
"downloader",
"streaming",
"media",
"flac",
"lossless",
"tidal"
],
"author": "Lyall-A",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Lyall-A/tidalwave/issues"
},
"homepage": "https://github.com/Lyall-A/tidalwave#readme"
}