-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "musicbee-navidrome-sync",
"version": "1.2.2",
"description": "sync ratings and playcount from musicbee db to navidrome db",
"main": "index.js",
"scripts": {
"fullSync": "node index.js fullSync",
"albumsSync": "node index.js albumsSync",
"artistsSync": "node index.js artistsSync",
"build": "sh ./build.sh",
"test": "mocha test/*.js"
},
"author": "rombat",
"license": "GNU GPL V3.0",
"dependencies": {
"camelcase": "^6.3.0",
"cli-progress": "^3.11.2",
"commander": "^9.4.0",
"csvtojson": "^2.0.10",
"dayjs": "^1.11.5",
"p-limit": "^3.1.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "9.2.6",
"chai": "^4.5.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"semantic-release": "^22.0.12"
},
"engines": {
"node": ">=18.0.0"
},
"private": true,
"bin": "index.js",
"pkg": {
"assets": [
"node_modules/**/*"
],
"targets": [
"node18-win-x64"
]
}
}