-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 749 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 749 Bytes
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
{
"name": "just-clock",
"version": "1.0.0",
"description": "widget clock",
"main": "app.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": "SergeyMsky:msky.sergey@gmail.com",
"license": "ISC",
"dependencies": {
"auto-launch": "^5.0.5",
"electron-disable-minimize": "^2.1.0",
"electron-window-state": "^5.0.3",
"path": "^0.12.7"
},
"devDependencies": {
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"electron-rebuild": "^3.2.7"
},
"build": {
"appId": "just-clock",
"productName": "Just Clock",
"mac": {
"category": "your.app.category.type"
},
"win": {
"target": "nsis",
"icon": "src/img/icon.ico"
}
}
}