forked from panogram/panogram
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "Panogram",
"version": "1.0.1",
"description": "Panogram is offline standalon multiplatform Pedigree drawing tool based on Phenotips platform.",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": "https://code.aliyun.com/smileyan/another-panogram",
"keywords": [
"Electron",
"Panogram",
"Health"
],
"author": "Andrej Griniuk; Smileyan",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^9.2.0"
},
"build": {
"appId": "cn.smileyan.Panogram",
"productName": "Panogram",
"artifactName": "${productName}_setup_${version}.${ext}",
"copyright": "Copyright © 2020 smileyan.cn",
"asar": true,
"directories": {
"output": "build-apps",
"buildResources": "./"
},
"electronVersion": "9.2.0",
"files": [
"!static/js/*.map",
"!static/css/*.map"
],
"win": {
"icon": "resources/icons/app.ico",
"target": [
"nsis"
]
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"menuCategory": true,
"allowElevation": false
},
"linux": {
"icon": "icons/",
"category": "Utility",
"target": [
"AppImage"
]
},
"mac": {
"icon": "resources/icons/app.icns",
"type": "development",
"category": "public.app-category.developer-tools",
"target": [
"dmg"
]
}
}
}