-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1007 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1007 Bytes
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
{
"name": "soundsync",
"version": "2.0.7",
"description": "SoundSync by Botify - Automatically sync and download SoundCloud likes and playlists.",
"main": "src/main.js",
"bin": {
"soundsync": "./cli.js"
},
"scripts": {
"start": "electron .",
"bump": "node scripts/bump-version.js",
"bump:minor": "node scripts/bump-version.js minor",
"bump:major": "node scripts/bump-version.js major",
"prebuild": "node scripts/bump-version.js",
"build": "electron-builder",
"prebuild:win": "node scripts/bump-version.js",
"build:win": "electron-builder --win",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Botify",
"license": "MIT",
"dependencies": {
"axios": "^1.16.1",
"electron-store": "11.0.2",
"electron-updater": "^6.8.3"
},
"devDependencies": {
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"eslint": "^8.57.0",
"vitest": "^1.6.0"
}
}