-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
152 lines (152 loc) · 3.34 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "adhan-time",
"title": "Adhan Time",
"description": "This extension helps you to search prayer time for the user location",
"icon": "command-icon.png",
"author": "mzaien",
"categories": [
"Applications",
"News"
],
"license": "MIT",
"commands": [
{
"name": "adhan-search",
"title": "Search Prayer Time",
"description": "View adhan prayer times directly from Raycast",
"mode": "view",
"interval": "24h"
},
{
"name": "adhan",
"title": "View Prayer Time on Menu Bar",
"description": "View adhan prayer times directly from your menubar",
"mode": "menu-bar",
"interval": "24h"
}
],
"preferences": [
{
"name": "country",
"title": "Country",
"description": "Enter your Country name",
"type": "textfield",
"required": true
},
{
"name": "city",
"title": "City",
"description": "Enter your city name",
"type": "textfield",
"required": true
},
{
"name": "hanfi",
"title": "Hanfi Calculation",
"description": "Use hanfi school calculation",
"label": "Use hanfi school calculation",
"type": "checkbox",
"default": false,
"required": false
},
{
"name": "twelve_hours_system",
"title": "12 hours system",
"description": "Use 12 hours system",
"label": "Activate 12 hours system",
"type": "checkbox",
"default": false,
"required": false
},
{
"name": "calculation_methods",
"title": "Calculation Methods",
"description": "Choose your calculation method",
"type": "dropdown",
"default": "4",
"data": [
{
"title": "MWL",
"value": "1"
},
{
"title": "ISNA",
"value": "2"
},
{
"title": "EGYPT",
"value": "3"
},
{
"title": "MAKKAH",
"value": "4"
},
{
"title": "KARACHI",
"value": "5"
},
{
"title": "TEHRAN",
"value": "6"
},
{
"title": "JAFARI",
"value": "7"
},
{
"title": "GULF",
"value": "8"
},
{
"title": "KUWAIT",
"value": "9"
},
{
"title": "QATAR",
"value": "10"
},
{
"title": "SINGAPORE",
"value": "11"
},
{
"title": "FRANCE",
"value": "12"
},
{
"title": "TURKEY",
"value": "13"
},
{
"title": "RUSSIA",
"value": "14"
},
{
"title": "MOONSIGHTING",
"value": "15"
}
],
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.46.0",
"@raycast/utils": "^1.4.16"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}