-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 970 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
37
38
39
40
41
42
43
44
{
"name": "heartify-cli",
"version": "1.0.0",
"description": "A CLI tool to export and filter out your Spotify liked songs into playlists. With support for filters like ranges of date added, release date, genre, audio features, and more.",
"main": "index.js",
"bin": {
"heartify": "./index.js"
},
"files": [
"/commands",
"/config",
"/libs",
"/utils",
"!/**/__tests__"
],
"scripts": {
"test": "jest",
"test-cov": "jest --coverage"
},
"keywords": [
"spotify",
"spotify api",
"spotify export",
"spotify liked",
"playlist",
"playlist manager",
"spotify manager",
"cli",
"music"
],
"author": "Ak5cel",
"license": "MPL-2.0",
"repository": "github:Ak5cel/heartify-cli",
"devDependencies": {
"jest": "^29.7.0"
},
"dependencies": {
"axios": "^1.6.2",
"better-sqlite3": "^9.2.2",
"commander": "^11.1.0",
"luxon": "^3.4.4",
"picocolors": "^1.0.0"
}
}