|
12 | 12 | "watch:main": "webpack --watch --config ./config/webpack.config.main.base.ts", |
13 | 13 | "watch:renderer": "webpack --watch --config ./config/webpack.config.renderer.base.ts", |
14 | 14 | "prepare:remove-source-maps": "ts-node ./scripts/delete-source-maps.ts", |
15 | | - "package:linux": "electron-builder --linux", |
16 | | - "package:macos": "electron-builder --mac", |
17 | | - "package:win": "electron-builder --win", |
| 15 | + "package:linux": "electron-builder --linux --config ./config/electron-builder.js", |
| 16 | + "package:macos": "electron-builder --mac --config ./config/electron-builder.js", |
| 17 | + "package:win": "electron-builder --win --config ./config/electron-builder.js", |
18 | 18 | "lint:check": "biome check", |
19 | 19 | "lint": "biome check --fix", |
20 | 20 | "test": "jest", |
|
66 | 66 | "url": "https://github.com/gitify-app/gitify/issues" |
67 | 67 | }, |
68 | 68 | "homepage": "https://gitify.io/", |
69 | | - "build": { |
70 | | - "productName": "Gitify", |
71 | | - "appId": "com.electron.gitify", |
72 | | - "copyright": "Copyright © 2025 Gitify Team", |
73 | | - "asar": true, |
74 | | - "files": [ |
75 | | - "assets/images/*", |
76 | | - "assets/sounds/*", |
77 | | - "build/**/*", |
78 | | - "LICENSE", |
79 | | - "node_modules/**/*", |
80 | | - "package.json" |
81 | | - ], |
82 | | - "electronLanguages": ["en"], |
83 | | - "protocols": [ |
84 | | - { |
85 | | - "name": "Gitify", |
86 | | - "schemes": ["gitify", "gitify-dev"] |
87 | | - } |
88 | | - ], |
89 | | - "mac": { |
90 | | - "category": "public.app-category.developer-tools", |
91 | | - "icon": "assets/images/app-icon.icns", |
92 | | - "identity": "Adam Setch (5KD23H9729)", |
93 | | - "type": "distribution", |
94 | | - "notarize": false, |
95 | | - "target": { |
96 | | - "target": "default", |
97 | | - "arch": ["universal"] |
98 | | - }, |
99 | | - "hardenedRuntime": true, |
100 | | - "entitlements": "assets/entitlements.mac.plist", |
101 | | - "entitlementsInherit": "assets/entitlements.mac.plist", |
102 | | - "gatekeeperAssess": false, |
103 | | - "extendInfo": { |
104 | | - "NSBluetoothAlwaysUsageDescription": null, |
105 | | - "NSBluetoothPeripheralUsageDescription": null, |
106 | | - "NSCameraUsageDescription": null, |
107 | | - "NSMicrophoneUsageDescription": null |
108 | | - } |
109 | | - }, |
110 | | - "dmg": { |
111 | | - "icon": "assets/images/app-icon.icns", |
112 | | - "sign": false |
113 | | - }, |
114 | | - "win": { |
115 | | - "target": "nsis", |
116 | | - "icon": "assets/images/app-icon.ico" |
117 | | - }, |
118 | | - "nsis": { |
119 | | - "oneClick": false |
120 | | - }, |
121 | | - "linux": { |
122 | | - "target": ["AppImage", "deb", "rpm"], |
123 | | - "category": "Development", |
124 | | - "maintainer": "Gitify Team" |
125 | | - }, |
126 | | - "publish": { |
127 | | - "provider": "github", |
128 | | - "owner": "gitify-app", |
129 | | - "repo": "gitify" |
130 | | - }, |
131 | | - "afterSign": "scripts/notarize.js", |
132 | | - "afterPack": "scripts/afterPack.js" |
133 | | - }, |
134 | 69 | "dependencies": { |
135 | 70 | "@electron/remote": "2.1.2", |
136 | 71 | "electron-log": "5.3.2", |
|
0 commit comments