forked from Aveek-Saha/DuskPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.53 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "DuskPlayer",
"version": "4.0.0",
"homepage": "https://aveek-saha.github.io",
"description": "A music player for your desktop",
"repository": {
"type": "git",
"url": "https://github.com/Aveek-Saha/MusicPlayer.git"
},
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "aveek-saha",
"repo": "MusicPlayer"
}
],
"dmg": {
"contents": [
{
"x": 120,
"y": 220
},
{
"x": 400,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "Aveek <aveek.s98@gmail.com>",
"icon": "build"
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"author": "Aveek Saha",
"license": "MIT",
"devDependencies": {
"electron": "13.6.6",
"electron-builder": "20.38.3",
"electron-packager": "^11.1.0"
},
"dependencies": {
"about-window": "1.12.1",
"angular": "^1.8.0",
"angular-route": "^1.6.9",
"bootstrap": "4.3.1",
"electron-json-storage": "^4.1.8",
"electron-updater": "^4.0.6",
"howler": "^2.0.9",
"jquery": "^3.5.0",
"jsmediatags": "^3.8.1",
"path": "^0.12.7",
"popper.js": "^1.14.1",
"rabin-bindings": "^1.7.4"
}
}