@claudinho/cli 0.1.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +103 -0
  3. package/dist/index.js +3459 -0
  4. package/package.json +55 -0
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@claudinho/cli",
3
+ "version": "0.1.0",
4
+ "description": "Claudinho CLI — the 2026 football tournament in your terminal. Live scores, fixtures, group tables. Not affiliated with FIFA or Anthropic.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Arturo Garrido",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "homepage": "https://github.com/arturogarrido/claudinho#readme",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/arturogarrido/claudinho.git",
15
+ "directory": "packages/cli"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/arturogarrido/claudinho/issues"
19
+ },
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
+ "bin": {
24
+ "claudinho": "./dist/index.js"
25
+ },
26
+ "files": ["dist", "README.md", "LICENSE"],
27
+ "keywords": [
28
+ "football",
29
+ "soccer",
30
+ "world-cup",
31
+ "2026",
32
+ "cli",
33
+ "live-scores",
34
+ "terminal"
35
+ ],
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
+ "dependencies": {
44
+ "cli-table3": "^0.6.5",
45
+ "commander": "^12.1.0",
46
+ "picocolors": "^1.1.1"
47
+ },
48
+ "devDependencies": {
49
+ "@claudinho/core": "workspace:*",
50
+ "@types/node": "^22.0.0",
51
+ "tsup": "^8.0.0",
52
+ "typescript": "^5.7.0",
53
+ "vitest": "^2.1.0"
54
+ }
55
+ }