-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
70 lines (70 loc) · 1.4 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
65
66
67
68
69
70
{
"name": "InstaPyGUI",
"productName": "InstaPy GUI",
"version": "0.5.0",
"description": "A minimal InstaPy GUI",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "build",
"dist-x": "build -ml"
},
"repository": "https://github.com/ahmadudin/electron-InstaPy-GUI",
"keywords": [
"Electron",
"InstaPy",
"GUI"
],
"author": {
"name": "ahmadudin",
"email": "ahmed.shalahuddin@gmail.com",
"url": "https://github.com/ahmadudin"
},
"license": "MIT",
"devDependencies": {
"electron": "~10.1.3",
"electron-builder": "^19.34.2"
},
"dependencies": {
"dedent-js": "^1.0.1",
"electron-settings": "^3.1.2",
"electron-store": "^1.3.0",
"file-exists": "^5.0.0",
"fs-jetpack": "^1.2.0",
"jquery": "^3.2.1",
"python-shell": "^0.4.0",
"terminate": "^2.1.0",
"jsesc": "^0.3.0"
},
"build": {
"appId": "com.ahmadudin.instapygui",
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
},
"mac": {
"category": "public.app-category.utility"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utilty",
"target": [
"deb"
],
"icon": "build/"
}
}
}