-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.05 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
{
"name": "AudioEqualizer",
"description": "An audio equalizer for Voice in the Sea",
"version": "0.0.1",
"author": "Vincent Pizzo",
"main": "resources/main.js",
"scripts": {
"start": "electron .",
"package": "build -mw"
},
"build": {
"productName": "Audio Equalizer",
"appId": "com.voiceinthesea.AudioEqualizer",
"compression": "maximum",
"asar": false,
"mac": {
"target": "dmg",
"icon": "icon.icns"
},
"dmg": {
"background": "release_assets/DMGBackground.png",
"contents": [
{
"x": 110,
"y": 160
},
{
"x": 390,
"y": 160,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "icon.ico",
"target": [
"nsis"
]
},
"directories": {
"buildResources": "resources",
"output": "releases",
"app": "resources"
}
},
"devDependencies": {
"concurrently": "^3.4.0",
"electron": "^1.6.2",
"electron-builder": "^16.6.0"
}
}