@claudinho/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.
Files changed (3) hide show
  1. package/README.md +28 -8
  2. package/dist/index.js +633 -302
  3. package/package.json +18 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudinho/cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Claudinho CLI — the 2026 football tournament in your terminal. Live scores, fixtures, group tables. Not affiliated with FIFA or Anthropic.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -23,7 +23,11 @@
23
23
  "bin": {
24
24
  "claudinho": "./dist/index.js"
25
25
  },
26
- "files": ["dist", "README.md", "LICENSE"],
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
27
31
  "keywords": [
28
32
  "football",
29
33
  "soccer",
@@ -31,25 +35,26 @@
31
35
  "2026",
32
36
  "cli",
33
37
  "live-scores",
34
- "terminal"
38
+ "terminal",
39
+ "vibinglavidaloca"
35
40
  ],
36
- "scripts": {
37
- "build": "tsup",
38
- "dev": "tsup --watch",
39
- "test": "vitest run",
40
- "typecheck": "tsc --noEmit",
41
- "start": "node dist/index.js"
42
- },
43
41
  "dependencies": {
44
42
  "cli-table3": "^0.6.5",
45
43
  "commander": "^12.1.0",
46
44
  "picocolors": "^1.1.1"
47
45
  },
48
46
  "devDependencies": {
49
- "@claudinho/core": "workspace:*",
50
47
  "@types/node": "^22.0.0",
51
48
  "tsup": "^8.0.0",
52
49
  "typescript": "^5.7.0",
53
- "vitest": "^2.1.0"
50
+ "vitest": "^4.1.0",
51
+ "@claudinho/core": "0.2.0"
52
+ },
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "test": "vitest run",
57
+ "typecheck": "tsc --noEmit",
58
+ "start": "node dist/index.js"
54
59
  }
55
- }
60
+ }