-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 929 Bytes
/
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
{
"name": "macos-activity-monitor",
"version": "1.0.0",
"author": "Joel Mora <[email protected]>",
"scripts": {
"install-all": "yarn && yarn electron && yarn react",
"electron": "cd electron && yarn",
"electron:start": "yarn electron start",
"react": "cd react && yarn",
"react:start": "yarn react start",
"react:build": "yarn react build",
"copy-react": "mkdir -p electron/react && cp -R react/build/ electron/react/build/",
"build-all": "yarn react:build && yarn copy-react",
"package": "electron-builder"
},
"build": {
"productName": "MacOS Activity Monitor",
"appId": "com.joelmora.macos-activity-monitor",
"mac": {
"category": "public.app-category.utilities"
},
"directories": {
"app": "./electron"
},
"target": "dmg",
"icon": "electron/assets/icons/icon.icns"
},
"devDependencies": {
"electron-builder": "^22.9.1"
}
}