claudial 0.1.0 → 0.1.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.
- package/README.md +4 -0
- package/package.json +24 -6
package/README.md
CHANGED
|
@@ -103,6 +103,10 @@ alias claude-mundial="tmux new-session 'claude' \; split-window -v -l 5 'npx cla
|
|
|
103
103
|
Then `claude-mundial` starts your whole World Cup workstation. When a goal
|
|
104
104
|
goes in, the strip lights up while Claude keeps working.
|
|
105
105
|
|
|
106
|
+
Want the score *inside* Claude Code instead? There's a
|
|
107
|
+
[statusline integration](extras/statusline/) that renders live scores in
|
|
108
|
+
Claude Code's status bar — `⚽ QAT 0—1 SUI 67' · main`, refreshed every 15 s.
|
|
109
|
+
|
|
106
110
|
## Status
|
|
107
111
|
|
|
108
112
|
v1 is being built live during the group stage. Follow the commits.
|
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudial",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Live World Cup 2026 fixtures in your terminal — goal, red-card and VAR takeovers included",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"bin": {
|
|
7
|
+
"claudial": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=18.18"
|
|
14
|
+
},
|
|
9
15
|
"scripts": {
|
|
10
16
|
"build": "tsc",
|
|
11
17
|
"dev": "tsx src/index.tsx",
|
|
@@ -23,9 +29,21 @@
|
|
|
23
29
|
"typescript": "^5.5.0",
|
|
24
30
|
"vitest": "^2.1.0"
|
|
25
31
|
},
|
|
26
|
-
"keywords": [
|
|
32
|
+
"keywords": [
|
|
33
|
+
"worldcup",
|
|
34
|
+
"world-cup-2026",
|
|
35
|
+
"tui",
|
|
36
|
+
"cli",
|
|
37
|
+
"football",
|
|
38
|
+
"soccer",
|
|
39
|
+
"live-scores",
|
|
40
|
+
"ink"
|
|
41
|
+
],
|
|
27
42
|
"license": "MIT",
|
|
28
|
-
"repository": {
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/lefProg/claudial.git"
|
|
46
|
+
},
|
|
29
47
|
"homepage": "https://github.com/lefProg/claudial#readme",
|
|
30
48
|
"bugs": "https://github.com/lefProg/claudial/issues",
|
|
31
49
|
"author": "Wim Iliano"
|