-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.11 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "mifkit",
"version": "1.1.1",
"description": "MapInfo data toolkit — convert MIF/MID to Excel, KML/KMZ to MapInfo, and other geo formats. Desktop GUI and CLI.",
"main": "src/main/main.js",
"bin": {
"mifkit": "bin/mifkit.js"
},
"author": {
"name": "Alexey Fedyunin",
"email": "alexey@craftedstays.co"
},
"license": "MIT",
"scripts": {
"dev": "electron .",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win portable nsis --publish never",
"dist:mac": "electron-builder --mac dmg zip --publish never",
"dist:linux": "electron-builder --linux AppImage deb --publish never",
"test": "node --test"
},
"dependencies": {
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.8.0",
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"electron": "^37.0.0",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.fedyunin.mifkit",
"productName": "MifKit",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"bin/**/*",
"package.json"
],
"win": {
"target": [
"portable",
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"artifactName": "${productName}-${os}-${arch}-setup.${ext}"
},
"portable": {
"artifactName": "${productName}-${os}-${arch}-portable.${ext}"
},
"mac": {
"category": "public.app-category.utilities",
"identity": null,
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"linux": {
"category": "Office",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
]
}
}
}