-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 754 Bytes
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
{
"name": "pause",
"version": "1.0.0",
"description": "macOS menubar app for healthy work habits",
"main": "main.js",
"scripts": {
"postinstall": "node scripts/create-icon.js",
"start": "electron .",
"dist": "electron-builder --mac"
},
"build": {
"appId": "com.cynthiac.pause",
"productName": "Pause",
"files": [
"main.js",
"preload.js",
"preload-picker.js",
"preload-settings.js",
"renderer/**/*",
"assets/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.png",
"notarize": {
"teamId": "C69TWR8LB7"
}
}
},
"devDependencies": {
"electron": "^29.0.0",
"electron-builder": "^26.8.1"
}
}