-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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": "soube",
"version": "1.4.2",
"description": "Simple music player",
"author": {
"email": "dracotm25@gmail.com",
"name": "Diego Molina Vera"
},
"homepage": "http://soube.diegomolina.cl",
"devDependencies": {
"electron": "^1.6.4",
"electron-builder": "^10.17.3",
"electron-packager": "^8.6.0"
},
"build": {
"copyright": "Copyright © 2016 - 2017. Diego Molina Vera.",
"asar": false,
"linux": {
"category": "Audio",
"packageCategory": "sound",
"target": [
"rpm",
"deb"
],
"synopsis": "Soube — Simple music player",
"desktop": {
"Type": "Application",
"Encoding": "UTF-8",
"Name": "Soube",
"Exec": "soube",
"Terminal": false,
"Version": "1.4.2",
"Categories": "Audio;Music;Player;AudioVideo"
}
},
"win": {
"target": [
"nsis",
"squirrel"
]
},
"mac": {
"category": "public.app-category.music",
"target": "dmg"
}
},
"scripts": {
"pack": "build --dir",
"dist": "build",
"build": "electron-packager ./app soube --out=dist --platform=linux --ignore='^/dist$' --arch=all --prune --icon='./app/assets/img/icon.png'"
}
}