-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 KB
/
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
37
38
39
40
41
{
"name": "emwebkit",
"version": "1.0.9",
"description": "simple cli app, to render UI of your application which is based on web tech",
"main": "main.js",
"author": "ElectroMutex",
"license": "MIT",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "^30.0.9",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.electromutex.EMWebKit",
"mac": {
"icon": "icons/macos.icns",
"hardenedRuntime": true,
"entitlements": "entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "This app requires access to the microphone for audio recording.",
"NSCameraUsageDescription": "This app requires access to the camera for video recording."
}
},
"win": {
"target": [
"nsis"
],
"icon": "icons/windows.ico"
},
"linux": {
"icon": "icons/main_icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}