-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.78 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
{
"name": "simple-email-client-x",
"version": "1.1.0",
"description": "A lightweight cross-platform email client built with Electron",
"main": "src/main/main.js",
"author": "ASimpUsr",
"license": "GPL-3.0",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:portable": "electron-builder --win portable",
"build:setup": "electron-builder --win nsis"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^3.0.7",
"electron-store": "^11.0.2",
"i18next": "^26.3.6",
"imapflow": "^1.0.187",
"mailparser": "^3.9.14",
"nodemailer": "^9.0.3"
},
"devDependencies": {
"electron": "^43.3.0",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "com.asimpusr.simpleemailclientx",
"productName": "Simple Email Client X",
"directories": {
"output": "dist"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Simple Email Client X"
},
"portable": {
"artifactName": "${productName}-${version}-portable.exe"
},
"protocols": [
{
"name": "MailTo",
"schemes": [
"mailto"
],
"role": "Editor"
}
],
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"asar": {
"smartUnpack": true
},
"extraResources": []
}
}