-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.05 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "gfb",
"title": "Get Football Fixtures",
"description": "Returns football results from FotMob's API for specific leagues and teams for 7 days in the past and 30 days in the future.",
"icon": "extension_icon.png",
"categories": [
"News",
"Communication"
],
"author": "jamtur01",
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Show Football Fixtures",
"description": "Returns football fixtures from the FotMob API",
"mode": "view"
}
],
"preferences": [
{
"type": "textfield",
"title": "Start Date Offset (in days)",
"description": "Number of days in the past to start searching for matches",
"name": "startDateOffset",
"placeholder": "Enter number of days in the past",
"default": "7",
"required": false
},
{
"type": "textfield",
"title": "End Date Offset (in days)",
"description": "Number of days in the future to end searching for matches",
"name": "endDateOffset",
"placeholder": "Enter number of days in the future",
"default": "30",
"required": false
},
{
"type": "textfield",
"title": "Team 1 ID",
"description": "Team 1 ID",
"placeholder": "FotMob Team ID",
"name": "team1",
"required": true
},
{
"type": "textfield",
"title": "Team 2 ID",
"description": "Team 2 ID",
"placeholder": "FotMob Team ID",
"name": "team2",
"required": false
},
{
"type": "textfield",
"title": "Team 3 ID",
"description": "Team 2 ID",
"placeholder": "FotMob Team ID",
"name": "team3",
"required": false
},
{
"type": "textfield",
"title": "Team 4 ID",
"description": "Team 4 ID",
"placeholder": "FotMob Team ID",
"name": "team4",
"required": false
},
{
"type": "textfield",
"title": "Team 5 ID",
"description": "Team 5 ID",
"placeholder": "FotMob Team ID",
"name": "team5",
"required": false
},
{ "type": "textfield",
"title": "Ntfy Topic",
"description": "Ntfy Topic",
"placeholder": "Ntfy Topic",
"name": "ntfyTopic",
"required": false
},
{
"type": "password",
"title": "Ntfy Token",
"description": "Ntfy Token",
"placeholder": "Ntfy Token",
"name": "ntfyToken",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.64.5",
"@raycast/utils": "^1.10.1",
"node-fetch": "^3.3.2",
"run-applescript": "^7.0.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/node-fetch": "^2.6.11",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}