worldcup26-cli 0.1.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +11 -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.1.0",
3
+ "version": "0.2.1",
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"
@@ -23,6 +24,14 @@
23
24
  "terminal"
24
25
  ],
25
26
  "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/ntourne/worldcup26-cli.git"
30
+ },
31
+ "homepage": "https://github.com/ntourne/worldcup26-cli#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/ntourne/worldcup26-cli/issues"
34
+ },
26
35
  "scripts": {
27
36
  "build": "tsc",
28
37
  "dev": "tsx src/index.ts",