worldcup26-cli 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -36,8 +36,10 @@ npx worldcup26-cli groups --group A
|
|
|
36
36
|
|
|
37
37
|
## Usage
|
|
38
38
|
|
|
39
|
+
The CLI is available as both `worldcup` and the shorter `wcup` — they're interchangeable.
|
|
40
|
+
|
|
39
41
|
```bash
|
|
40
|
-
worldcup today # today's fixtures
|
|
42
|
+
worldcup today # today's fixtures (or: wcup today)
|
|
41
43
|
worldcup --date 2026-06-11 # fixtures for a specific day
|
|
42
44
|
worldcup groups [--group A] # all groups, or just one
|
|
43
45
|
worldcup country <name> # e.g. "mexico", "kor", "brazil"
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "worldcup26-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A colorful terminal CLI to follow the FIFA World Cup 2026 — today's games, group standings, country stats, and the knockout bracket.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"worldcup": "dist/index.js"
|
|
7
|
+
"worldcup": "dist/index.js",
|
|
8
|
+
"wcup": "dist/index.js"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"dist"
|