-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "TimeTrack",
"version": "1.0.0",
"description": "Tracks time spent in applications.",
"main": "main.js",
"author": "Justin Szczurowski <justin.szczurowski@gmail.com>",
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder build --win portable && electron-builder build --mac",
"win-portable": "electron-builder build --win portable",
"mac": "electron-builder build --mac"
},
"build": {
"appId": "com.bosscube.timetrack",
"mac": {
"target": "dmg",
"artifactName": "timetrack.dmg",
"category": "public.app-category.productivity",
"icon": "timetrack.icns"
},
"win": {
"target": "nsis",
"artifactName": "timetrack.exe",
"icon": "timetrack.ico"
}
},
"dependencies": {
"active-win": "^8.1.1",
"yarn": "^1.22.21"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-rebuild": "^3.2.9"
}
}