-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.84 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "altaqwaa",
"version": "0.1.0",
"homepage": "https://www.altaqwaa.org",
"description": "Altaqwaa - Islamic Desktop Application",
"main": "./src/index.js",
"type": "commonjs",
"author": {
"name": "Ryan Almalki",
"email": "[email protected]",
"url": "https://www.altaqwaa.org"
},
"license": "GPL-3.0",
"scripts": {
"packwin": "electron-builder --windows",
"packlinux": "electron-builder --linux",
"packmac": "electron-builder --mac",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dev": "nodemon --exec electron ."
},
"dependencies": {
"adhan": "^4.4.3",
"fs-extra": "^11.1.0",
"menubar": "^9.3.0",
"moment-duration-format": "^2.3.2",
"moment-hijri": "^2.1.2",
"moment-timezone": "^0.5.41",
"node-fetch": "^2.6.7",
"tajweed": "^1.1.1",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"electron": "^22.3.2",
"electron-builder": "^23.6.0",
"nodemon": "^2.0.21"
},
"build": {
"directories": {
"buildResources": "resources"
},
"productName": "Altaqwaa",
"publish": {
"provider": "github",
"owner": "rn0x",
"repo": "Altaqwaa-Islamic-Desktop-Application",
"protocol": "https"
},
"appId": "org.altaqwaa.rn0x",
"copyright": "Copyleft 🄯 2023 Altaqwaa",
"win": {
"icon": "./src/build/icons/icon.ico",
"signingHashAlgorithms": [
"sha256",
"sha1"
],
"signAndEditExecutable": true,
"publisherName": "Ryan Almalki",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable"
},
{
"target": "msi"
}
]
},
"nsis": {
"oneClick": "false",
"perMachine": true,
"allowToChangeInstallationDirectory": "true",
"installerIcon": "./src/build/icons/icon.ico",
"uninstallerIcon": "./src/build/icons/icon.ico",
"license": "./src/build/LICENSE.txt",
"shortcutName": "Altaqwaa",
"uninstallDisplayName": "Altaqwaa",
"installerSidebar": "./src/build/installerSidebar.bmp",
"uninstallerSidebar": "./src/build/installerSidebar.bmp",
"installerHeader": "./src/build/installerHeader.bmp"
},
"linux": {
"category": "Education",
"icon": "./src/build/icons/icon.icns",
"vendor": "Ryan Almalki",
"description": "Altaqwaa - Islamic Desktop Application",
"synopsis": "Islamic Desktop Application",
"target": [
"AppImage",
"deb",
"rpm",
"snap",
"tar.gz"
]
},
"mac": {
"category": "public.app-category.education",
"icon": "./src/build/icons/iconMac.icns"
},
"dmg": {
"icon": "./src/build/icons/icon.icns"
}
}
}