ccstatusline 2.2.12 → 2.2.14

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 +18 -1
  2. package/dist/ccstatusline.js +3429 -529
  3. package/package.json +10 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccstatusline",
3
- "version": "2.2.12",
3
+ "version": "2.2.14",
4
4
  "description": "A customizable status line formatter for Claude Code CLI",
5
5
  "module": "src/ccstatusline.ts",
6
6
  "type": "module",
@@ -15,6 +15,10 @@
15
15
  "build": "rm -rf dist/* ; bun build src/ccstatusline.ts --target=node --outfile=dist/ccstatusline.js --target-version=14",
16
16
  "postbuild": "bun run scripts/replace-version.ts",
17
17
  "example": "cat scripts/payload.example.json | bun start",
18
+ "video:studio": "remotion studio remotion/index.ts",
19
+ "video:still": "remotion still remotion/index.ts ccstatusline-tui-demo out/ccstatusline-tui-demo.png --frame=700 --scale=0.5",
20
+ "video:render": "remotion render remotion/index.ts ccstatusline-tui-demo out/ccstatusline-tui-demo.mp4",
21
+ "video:gif": "bun run video:render && ffmpeg -y -i out/ccstatusline-tui-demo.mp4 -filter_complex \"fps=12,scale=1322:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=256[p];[s1][p]paletteuse=dither=none:diff_mode=rectangle\" out/ccstatusline-tui-demo-unoptimized.gif && gifsicle -O3 --lossy=30 out/ccstatusline-tui-demo-unoptimized.gif -o out/ccstatusline-tui-demo.gif",
18
22
  "prepublishOnly": "bun run build",
19
23
  "lint": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0",
20
24
  "lint:fix": "bun tsc --noEmit && eslint . --config eslint.config.js --max-warnings=0 --fix",
@@ -23,10 +27,12 @@
23
27
  },
24
28
  "devDependencies": {
25
29
  "@eslint/js": "^10.0.1",
30
+ "@remotion/cli": "^4.0.459",
26
31
  "@stylistic/eslint-plugin": "^5.2.3",
27
32
  "@types/bun": "latest",
28
33
  "@types/pluralize": "^0.0.33",
29
34
  "@types/react": "^19.1.10",
35
+ "@types/react-dom": "^19.2.3",
30
36
  "chalk": "^5.5.0",
31
37
  "eslint": "^10.0.0",
32
38
  "eslint-import-resolver-typescript": "^4.4.4",
@@ -40,8 +46,10 @@
40
46
  "ink-gradient": "^4.0.0",
41
47
  "ink-select-input": "^6.2.0",
42
48
  "pluralize": "^8.0.0",
43
- "react": "^19.1.1",
49
+ "react": "19.2.6",
44
50
  "react-devtools-core": "^7.0.1",
51
+ "react-dom": "19.2.6",
52
+ "remotion": "^4.0.459",
45
53
  "strip-ansi": "^7.1.0",
46
54
  "tinyglobby": "^0.2.14",
47
55
  "typedoc": "^0.28.12",