66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"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/dom": "^0.5.0",
|
|
"date-fns": "^2.23.0",
|
|
"marked": "^2.1.3",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^10.0.0",
|
|
"electron": "^13.1.7",
|
|
"electron-builder": "^22.11.7",
|
|
"electron-notarize": "^1.0.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|