-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.19 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
{
"author": "Lorezz",
"license": "WTFPL",
"name": "StupidSoundMachine",
"version": "1.0.0",
"description": "A Stupid Sound Machine",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron .",
"pack": "build --dir",
"linux":"./node_modules/.bin/electron-packager ./ SoundMachine --platform=linux --arch=x64 --out ~/Desktop/linux --icon=build/icon.png --background=build/background.png --overwrite=true",
"package": "./node_modules/.bin/electron-packager ./ SoundMachine --platform=darwin --arch=x64 --out ~/Desktop/dist --icon=build/icon.icns --background=build/background.png --overwrite=true"
},
"build": {
"appId": "me.lorezz.soundmachine",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"devDependencies": {
"electron": "latest",
"electron-builder": "latest",
"electron-packager": "latest"
},
"dependencies": {
"nconf": "^0.10.0"
}
}