-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "igel-ui",
"version": "0.0.1",
"description": "GUI app for igel",
"keywords": ["igel", "machine learning", "artificial intelligence", "data science"],
"author": "Nidhal Baccouri <[email protected]>",
"license": "Apache-2.0",
"main": "main.js",
"copyright": "Copyright © 2020 ${author}",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.igel.app",
"asar": false,
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/logo.ico"
},
"mac": {
"category": "your.app.category.type"
}
},
"devDependencies": {
"electron": "^10.1.3",
"electron-builder": "^22.9.1"
},
"dependencies": {
"python-shell": "^2.0.2"
}
}