-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.32 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
{
"name": "arkgacha",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"dist-win32": "electron-builder --win --ia32",
"dist-win64": "electron-builder --win --x64",
"dist-mac": "electron-builder --mac"
},
"build": {
"productName": "arkgacha",
"appId": "org.arkgacha.arkgacha",
"directories": {
"output": "build"
},
"files": [
"main.js",
"index.html"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/icon.icns",
"artifactName": "${productName}_setup_${version}.${ext}"
},
"win": {
"icon": "build/icons/icon.ico",
"artifactName": "${productName}_setup_${version}.${ext}"
},
"linux": {
"icon": "build/icons",
"artifactName": "${productName}_setup_${version}.${ext}"
}
},
"author": "cibimo <https://github.com/cibimo>",
"license": "MIT",
"devDependencies": {
"electron": "^12.0.6"
},
"dependencies": {
"fs-extra": "^8.1.0",
"universalify": "^0.1.2",
"electron-fetch": "^1.7.3",
"echarts": "^5.1.1"
},
"description": ""
}