-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "Zeta",
"productName": "Zeta",
"version": "0.1.0",
"description": "Unofficial ZenHub app built with Electron",
"license": "MIT",
"repository": "horimislime/Zeta",
"author": {
"name": "horimislime",
"email": "[email protected]",
"url": "https://horimisli.me/about"
},
"scripts": {
"test": "xo",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder -mwl",
"dist-mac": "electron-builder -m",
"dist-linux": "electron-builder -l",
"dist-win": "electron-builder -w"
},
"keywords": [
"electron",
"zenhub"
],
"dependencies": {
"electron-debug": "^1.0.0",
"electron-config": "^1.0.0"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^1.7.5",
"electron-builder": "^19.22.1",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
},
"electronVersion": "1.7.5",
"build": {
"appId": "me.horimisli.zeta",
"asar": true,
"files": [
"**/*",
"!asset/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "static/app.icns",
"target": [
"zip"
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"ia32",
"x64"
]
},
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
}
]
},
"win": {
"icon": "static/app.ico",
"target": [
"zip"
]
}
}
}