-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.57 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "serie-a",
"title": "Lega Serie A",
"description": "Stay up-to-date with the latest scores, and standings from the Italian Serie A football league.",
"icon": "icon.png",
"author": "anhthang",
"license": "MIT",
"categories": [
"Other",
"Data",
"Fun"
],
"commands": [
{
"name": "table",
"title": "Tables",
"description": "View the current Serie A standings, team statistics, and insights.",
"mode": "view"
},
{
"name": "result",
"title": "Fixtures & Results",
"description": "Check match results, fixtures, and live commentary for Serie A games.",
"mode": "view"
},
{
"name": "club",
"title": "Clubs",
"description": "Explore profiles of all Serie A clubs.",
"mode": "view"
},
{
"name": "coppa",
"title": "Coppa Italia",
"icon": "coppa_icon.png",
"description": "Follow the latest Coppa Italia fixtures and results.",
"mode": "view"
},
{
"name": "international",
"title": "International Matches",
"description": "Track Italian teams in international competitions.",
"mode": "view"
}
],
"preferences": [
{
"name": "language",
"title": "Language",
"description": "Select your preferred language for the app interface.",
"required": false,
"type": "dropdown",
"default": "en",
"data": [
{
"title": "English",
"value": "en"
},
{
"title": "Italian",
"value": "it"
}
]
},
{
"name": "apikey",
"title": "API Key",
"description": "Enter API key to access detailed statistics and data.",
"required": false,
"type": "textfield",
"default": "8IxcoKe4g5D2S4pnW5DYI"
}
],
"dependencies": {
"@raycast/api": "^1.83.2",
"@raycast/utils": "^1.17.0",
"@types/lodash.groupby": "^4.6.9",
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"json2md": "^2.0.1",
"lodash.groupby": "^4.6.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@raycast/eslint-config": "^1.0.11",
"@types/json2md": "^1.5.4",
"@types/node": "~22.7.4",
"@types/react": "^18.3.10",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"prettier": "^3.3.3",
"react-devtools": "5.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop"
}
}