-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
42
43
44
45
46
47
48
49
50
{
"name": "20-20-20-refresh",
"version": "1.0.0",
"description": "An application that helps with eye care and reminders.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder build --windows"
},
"keywords": [],
"author": "Rahul Jain",
"license": "ISC",
"devDependencies": {
"electron-builder": "^24.9.1",
"electron": "^28.2.2"
},
"dependencies": {
"sound-play": "^1.1.0",
"@fontsource/poppins": "^5.0.5",
"electron-log": "^4.4.8",
"electron-updater": "^5.3.0"
},
"build": {
"protocols": [
{
"name": "custom",
"schemes": [
"custom"
]
}
],
"extraResources": ["./media/bubble.wav", "./media/20-20-20-modal.jpg"],
"appId": "com.rahulsjain.eye-care",
"win": {
"target": [
"nsis"
],
"icon": "./icon/ico.ico"
},
"nsis": {
"oneClick": false,
"installerIcon": "./icon/ico.ico",
"uninstallerIcon": "./icon/ico.ico",
"uninstallDisplayName": "20-20-20-refresh",
"license": "LICENSE",
"allowToChangeInstallationDirectory": true
}
}
}