-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 952 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
{
"name": "Moodify",
"description": "Listen to your favorite music according to your mood. Open-Source Project",
"version": "1.1.2",
"main": "main.js",
"build": {
"win": {
"target": "nsis",
"icon": "build/logo.png"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder",
"release": "electron-builder --publish always",
"postinstall": "electron-builder install-app-deps"
},
"author": "Nishant Shah",
"license": "ISC",
"devDependencies": {
"electron": "^30.0.8",
"electron-builder": "^24.13.3"
},
"repository": "https://github.com/nishantshah977/moodify",
"dependencies": {
"electron-simple-updater": "^2.0.11",
"ytdl-core": "^4.11.5",
"ytubes": "^1.3.1"
},
"updater": {
"url": "https://raw.githubusercontent.com/nishantshah977/moodify/main/updates/{platform}-{arch}-{channel}.json"
}
}