-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.34 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"ship": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeF0x/violin.git"
},
"bugs": {
"url": "https://github.com/CodeF0x/violin/issues"
},
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^21.2.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-terser": "^1.2.0"
},
"build": {
"directories": {
"app": "dist",
"output": "release-builds",
"buildResources": "src/img/icons"
},
"mac": {
"category": "public.app-category.audio"
},
"dmg": {
"contents": [
{
"x": 120,
"y": 230
},
{
"x": 400,
"y": 230,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Audio"
},
"snap": {
"confinement": "strict",
"summary": "A fast, lightweight, and minimalistic desktop music player.",
"grade": "stable",
"category": "Audio"
},
"win": {
"target": "msi",
"icon": "src/img/icons/icon.ico"
}
},
"dependencies": {
"custom-electron-titlebar": "^3.1.0",
"music-metadata": "^4.5.3",
"rgbaster": "^2.1.1"
}
}