-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.27 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.27 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hermesx",
"productName": "HermesX",
"version": "0.5.0",
"description": "HermesX - A companion app for the ZeusX time tracking system",
"main": ".vite/build/main.js",
"private": "true",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"build:icons": "electron-icon-builder --input=./assets/icon.png --output=./assets --flatten"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-dmg": "^7.6.1",
"@electron-forge/maker-rpm": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.1",
"@electron-forge/plugin-fuses": "^7.6.1",
"@electron-forge/plugin-vite": "^7.6.1",
"@electron/fuses": "^1.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.0",
"@semantic-release/npm": "^12.0.1",
"@types/electron-squirrel-startup": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"electron": "34.1.1",
"electron-builder": "^25.1.8",
"electron-icon-builder": "^2.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"semantic-release": "^24.2.5",
"ts-node": "^10.0.0",
"typescript": "~5.7.3",
"vite": "^6.1.0"
},
"keywords": [
"electron",
"time-tracking",
"productivity",
"reminder"
],
"author": {
"name": "Florian Beisel",
"email": "florian.beisel@intersport.de",
"url": "https://github.com/florianbeisel"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/florianbeisel/hermesx"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"dependencies": {
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.3.9",
"keytar": "^7.9.0",
"vite-plugin-electron": "^0.29.0"
},
"build": {
"appId": "com.florianbeisel.hermesx",
"productName": "HermesX",
"publish": {
"provider": "github",
"owner": "florianbeisel",
"repo": "hermesx",
"private": false,
"releaseType": "release"
},
"files": [
"**/*",
"assets/*"
],
"directories": {
"buildResources": "assets"
},
"extraResources": [
{
"from": "assets",
"to": "assets",
"filter": [
"**/*"
]
}
],
"electronVersion": "latest",
"mac": {
"entitlements": {
"com.apple.security.device.camera": true,
"com.apple.security.device.microphone": true
},
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity",
"darkModeSupport": true,
"hardenedRuntime": true
}
}
}