This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "timestamp",
"productName": "Timestamp",
"description": "A better macOS menu bar clock with a customizable date/time display and a calendar.",
"version": "1.1.0",
"author": "Sebastian Prein <hi@sebastianprein.com>",
"copyright": "© 2021 Sebastian Prein",
"homepage": "https://github.com/mzdr/timestamp",
"license": "MIT",
"main": "app/index.js",
"keywords": [
"calendar",
"clock",
"customizable",
"date",
"electron",
"macos",
"menubar",
"time",
"timestamp"
],
"build": {
"appId": "com.mzdr.timestamp",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"darkModeSupport": true
},
"afterSign": "scripts/notarize.js"
},
"private": true,
"scripts": {
"build": "electron-builder",
"clean": "rimraf dist",
"lint": "eslint ./app",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run lint && npm run clean",
"start": "electron ./app --enable-logging",
"test": "npm run lint"
},
"dependencies": {
"@browserkids/web-components": "^0.8.0",
"date-fns": "^2.28.0",
"marked": "^4.0.8",
"semver": "^7.3.5"
},
"devDependencies": {
"dotenv": "^10.0.0",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"electron-notarize": "^1.1.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"rimraf": "^3.0.2"
}
}