This repository was archived by the owner on Jan 30, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.19 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.19 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "MechaChat",
"productName": "MechaChat",
"appId": "com.mechachat.app",
"version": "0.0.229",
"description": "MechaChat Messaging Application",
"copyright": "Copyright © 2022 • MechaChat Solutions",
"main": "./src/main.js",
"homepage": "https://mecha.chat/",
"private": true,
"keywords": [
"Messaging",
"Calls",
"Stream",
"Fun",
"Online"
],
"author": "Mecha Solutions",
"license": "MIT",
"scripts": {
"start": "electron-forge start",
"package": "npx electron-packager ./ MechaChat --platform=win32 --arch=all --icon './src/UI/assets/MechaChat.ico' --out 'packaged/' --overwrite",
"make": "electron-forge make --platform win32 --arch all",
"build": "electron-builder build",
"deploy": "npx electron-builder build --win --x64 --ia32 --publish always",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0",
"@electron-forge/maker-deb": "^6.0.0",
"@electron-forge/maker-rpm": "^6.0.0-beta.64",
"@electron-forge/maker-squirrel": "^6.0.0",
"@electron-forge/maker-zip": "^6.0.0",
"electron": "^20.0.0-beta.2",
"electron-builder": "^23.1.0",
"electron-packager": "^15.5.1",
"electron-updater": "^5.2.1",
"electron-winstaller": "^5.1.0",
"fs": "^0.0.1-security",
"grunt-electron-installer": "^2.1.0",
"path": "^0.12.7"
},
"dependencies": {
"@electron-delta/updater": "^0.1.17",
"electron-builder-notarize": "^1.5.0",
"electron-log": "^4.4.8",
"node-gyp": "^9.0.0",
"node-notifier": "^10.0.1",
"update-electron-app": "^2.0.1"
},
"build": {
"appId": "com.mechachat.app",
"productName": "MechaChat",
"icon": "resources/MechaChat_260.ico",
"directories": {
"buildResources": "resources/",
"output": "out/"
},
"extraFiles": [
{
"from": "./assets/",
"to": "./assets/"
}
],
"npmRebuild": true,
"win": {
"icon": "resources/MechaChat_260.ico",
"publish": [
{
"provider": "generic",
"url": "https://dl.mecha.chat/app/win32/"
}
],
"files": [
"src/**/*",
"node_modules/**/*",
"package.json",
"resources/**/*"
],
"target": [
"nsis",
"nsis-web"
],
"asarUnpack": [
"**/*.node"
]
},
"nsis": {
"perMachine": false,
"oneClick": true,
"installerIcon": "resources/MechaChat_260.ico",
"uninstallerIcon": "resources/MechaChat_260.ico",
"installerHeaderIcon": "resources/MechaChat_260.ico",
"uninstallDisplayName": "MechaChat",
"deleteAppDataOnUninstall": true,
"artifactName": "MechaChat_${version}.exe",
"include": "build-scripts/installer.nsh"
},
"nsisWeb": {
"perMachine": false,
"oneClick": true,
"installerIcon": "resources/MechaChat_260.ico",
"uninstallerIcon": "resources/MechaChat_260.ico",
"installerHeaderIcon": "resources/MechaChat_260.ico",
"uninstallDisplayName": "MechaChat",
"deleteAppDataOnUninstall": true,
"artifactName": "MechaChat_${version}.exe",
"include": "build-scripts/installer.nsh"
}
}
}