forked from DBChoco/Muezzin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "muezzin",
"version": "2.5.9",
"description": "Prayer Time Caller",
"main": "src/main/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"dist": "electron-builder",
"build": "electron-builder build --linux --win --publish never",
"deploy": "electron-builder build --linux --win --publish always"
},
"icon": "ressources/images/icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/DBChoco/Muezzin.git"
},
"keywords": [],
"author": "DBChoco <dbchoco.muezzin@gmail.com>",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"electron": "^17.0.0",
"electron-builder": "^22.5.1"
},
"dependencies": {
"adhan": "^4.3.1",
"auto-launch": "^5.0.5",
"bootstrap": "^5.1.3",
"bootstrap-dark-5": "^1.1.3",
"electron-store": "^8.0.1",
"ip-geolocation-api-javascript-sdk": "^1.0.7",
"v8-compile-cache": "^2.3.0"
},
"build": {
"appId": "io.github.dbchoco.muezzin",
"publish": [
{
"provider": "github",
"owner": "DBChoco",
"repo": "Muezzin"
}
],
"win": {
"icon": "ressources/images/icon-256x256.ico",
"target": ["nsis",
"portable",
"msi"
]
},
"linux": {
"icon": "ressources/images/icon.png",
"category": "Utility",
"target": [
"AppImage",
"snap",
"tar.gz",
"pacman",
"deb"
]
},
"mac": {
"icon": "ressources/images/icon.png",
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"snap": {
"confinement": "strict",
"summary": "Islamic prayer times application",
"grade": "stable"
},
"files": [
"**/*",
"!screenshots",
"!flatpak",
"!dist",
"!package-lock.json"
]
},
"bugs": {
"url": "https://github.com/DBChoco/Muezzin/issues"
},
"homepage": "https://github.com/DBChoco/Muezzin"
}