-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 3.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "twake",
"productName": "Twake",
"version": "1.3.3",
"author": "Twake",
"description": "Twake",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/linagora/Twake-Desktop"
},
"scripts": {
"compile": "tsc",
"dev": "npm run compile && electron .",
"pack": "npm run compile && electron-builder --dir",
"build": "npm run compile && electron-builder -mwl",
"build-m": "npm run compile && electron-builder -m",
"build-w": "npm run compile && electron-builder -w",
"build-l": "npm run compile && electron-builder -l"
},
"devDependencies": {
"@types/electron-localshortcut": "^3.1.0",
"@types/electron-prompt": "^1.6.1",
"build-electron-app": "^0.2.0",
"copyfiles": "^2.4.1",
"electron": "^13.1.7",
"electron-builder": "^23.0.2",
"electron-installer-squirrel-windows": "^1.3.0",
"electron-log": "^4.3.5",
"electron-packager": "^15.3.0",
"electron-rebuild": "^2.3.5",
"fs-extra": "^10.0.0",
"live-reload": "^1.1.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"dotenv": "^10.0.0",
"electron-dl": "^3.2.1",
"electron-localshortcut": "^3.2.1",
"electron-notarize": "^1.0.0",
"electron-osx-sign": "^0.5.0",
"electron-prompt": "^1.6.2",
"electron-store": "^8.0.0",
"electron-updater": "^5.0.5",
"electronify-server": "^0.6.2",
"remote": "^0.2.6",
"v8-compile-cache": "^2.3.0"
},
"postinstall": "electron-builder install-app-deps",
"build": {
"afterSign": "./dist/notarize.js",
"asar": true,
"appId": "com.twake.twakeapp",
"artifactName": "Setup_Twake_lastest.${ext}",
"files": [
"./dist/**/*",
"./node_modules/**/*",
"./package.json",
"./static/**/*"
],
"directories": {
"output": "build",
"buildResources": "static"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "static/icons/mac/icon.icns",
"entitlements": "static/entitlements.mac.plist",
"entitlementsInherit": "static/entitlements.mac.plist",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"target": [
"pkg",
"dmg",
"zip"
]
},
"mas": {
"category": "public.app-category.productivity",
"icon": "static/icons/png/512x512.png",
"entitlements": "static/entitlements.mas.plist",
"entitlementsInherit": "static/entitlements.mas.plist",
"type": "distribution"
},
"win": {
"icon": "static/icons/win/icon.ico",
"target": [
"nsis",
"msi"
]
},
"linux": {
"category": "public.app-category.productivity",
"icon": "static/icons/png/512x512.png",
"asar": true,
"target": "AppImage"
},
"dmg": {
"sign": false
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "github",
"releaseType": "release"
}
],
"protocols": {
"name": "Twake",
"schemes": [
"twake"
]
}
}
}