-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "hakuna-menubar",
"version": "1.1.0",
"productName": "Hakuna Menubar",
"description": "Hakuna Menubar app for macOS",
"main": "main.js",
"scripts": {
"test": "standard",
"start": "electron .",
"package-macos": "electron-builder -m"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cyon/hakuna-menubar.git"
},
"keywords": [
"hakuna",
"time",
"tracking"
],
"author": "Max Gfeller <mg@cyon.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyon/hakuna-menubar/issues"
},
"homepage": "https://github.com/cyon/hakuna-menubar#readme",
"devDependencies": {
"electron": "^13.1.4",
"electron-builder": "^22.11.7",
"electron-notarize": "^1.1.1",
"electron-packager": "^15.2.0",
"standard": "^13.1.0"
},
"dependencies": {
"auto-launch": "^5.0.5",
"bootstrap": "^4.3.1",
"dotenv": "^9.0.2",
"electron-config": "^2.0.0",
"electron-updater": "^4.3.9",
"hakuna-client": "^2.0.1",
"left-pad": "^1.1.3",
"moment": "^2.24.0"
},
"build": {
"publish": {
"provider": "generic",
"url": "https://hakuna-menubar.maxgfeller.com/downloads"
},
"files": [
"main.js",
"index.html",
"preferences.html",
"hakuna-logo.png",
"tray-icon-*.png"
],
"productName": "Hakuna Menubar",
"appId": "com.cyon.hakuna-menubar",
"afterSign": "build/notarize.js",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
}
}
}