@brenoxp/cc-statusline 1.0.1 → 1.0.3

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 +4 -13
  2. package/dist/index.js +26 -26
  3. package/package.json +4 -6
package/README.md CHANGED
@@ -33,7 +33,7 @@
33
33
  ## Requirements
34
34
 
35
35
  - macOS (uses `security` for keychain access)
36
- - [Bun](https://bun.sh/) runtime
36
+ - Node.js 18+
37
37
  - Terminal with truecolor (24-bit) support
38
38
 
39
39
  ## Install
@@ -53,20 +53,11 @@ Add to `~/.claude/settings.json`:
53
53
  }
54
54
  ```
55
55
 
56
- Or run without installing:
57
-
58
- ```bash
59
- {
60
- "statusLine": {
61
- "type": "command",
62
- "command": "npx @brenoxp/cc-statusline"
63
- }
64
- }
65
- ```
66
-
67
56
  <details>
68
57
  <summary>Install from source</summary>
69
58
 
59
+ Requires [Bun](https://bun.sh/).
60
+
70
61
  ```bash
71
62
  git clone https://github.com/brenoxp/claude-code-statusline.git
72
63
  cd claude-code-statusline
@@ -78,7 +69,7 @@ bun run build
78
69
  {
79
70
  "statusLine": {
80
71
  "type": "command",
81
- "command": "bun /path/to/claude-code-statusline/dist/index.js"
72
+ "command": "node /path/to/claude-code-statusline/dist/index.js"
82
73
  }
83
74
  }
84
75
  ```