-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 985 Bytes
/
package.json
File metadata and controls
54 lines (54 loc) · 985 Bytes
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
{
"name": "eba",
"productName": "Eba",
"version": "1.0.1",
"description": "Eba PC App",
"author": {
"name": "Ali Güçlü (Mirarus)",
"email": "aliguclutr@gmail.com"
},
"homepage": "https://github.com/mirarus/eba",
"repository": {
"type": "git",
"url": "https://github.com/mirarus/eba.git"
},
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --dir",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "^12.0.0",
"electron-builder": "^22.10.4"
},
"dependencies": {
"custom-electron-titlebar": "^3.2.6",
"electron-log": "^4.3.2",
"electron-updater": "^4.3.8"
},
"build": {
"appId": "com.mirarus.eba",
"productName": "Eba",
"win": {
"icon": "icons/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"publish": [
{
"provider": "github",
"owner": "mirarus",
"repo": "eba"
}
]
}
}