-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (36 loc) · 864 Bytes
/
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
{
"name": "macos-prevent-sleep",
"description": "macOS prevent sleep",
"version": "1.0.0",
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/FARUK-YILDIRIM/macos-prevent-sleep"
},
"bugs": {
"url": "https://github.com/FARUK-YILDIRIM/macos-prevent-sleep/issues"
},
"keywords": ["macos","prevent sleep"],
"author": "Faruk YILDIRIM",
"license": "ISC",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"devDependencies": {
"electron": "^30.0.9",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.softalika.macos-prevent-sleep",
"productName": "MacOS Prevent Sleep",
"mac": {
"icon": "./assets/app-icon.png",
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
]
}
}
}