claude-code-reader 1.0.1-rc.2 → 1.2.1-beta.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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +11 -6
package/README.md CHANGED
@@ -26,6 +26,21 @@ ccr
26
26
 
27
27
  This will launch the Claude Code Reader desktop application.
28
28
 
29
+ ### Command Aliases
30
+
31
+ Since the abbreviation `CCR` may conflict with other projects (e.g. ClaudeCodeRouter), the following aliases are also available:
32
+
33
+ | Command | Description |
34
+ |---------|-------------|
35
+ | `ccr` | Default command |
36
+ | `cr` | Short alias |
37
+ | `ccrr` | ClaudeCodeReader abbreviated |
38
+ | `ClaudeCR` | Claude Code Reader |
39
+ | `ClaudeCodeR` | Claude Code Reader (full prefix) |
40
+ | `CCReader` | CC + Reader |
41
+
42
+ All aliases are equivalent and launch the same application.
43
+
29
44
  ## Features
30
45
 
31
46
  - View Claude Code session history
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-reader",
3
- "version": "1.0.1-rc.2",
3
+ "version": "1.2.1-beta.1",
4
4
  "type": "module",
5
5
  "description": "A desktop application for viewing and managing Claude Code session records and settings",
6
6
  "author": "墨叶染千枝",
@@ -23,7 +23,12 @@
23
23
  "desktop"
24
24
  ],
25
25
  "bin": {
26
- "ccr": "bin/ccr.js"
26
+ "ccr": "bin/ccr.js",
27
+ "cr": "bin/ccr.js",
28
+ "ccrr": "bin/ccr.js",
29
+ "ClaudeCR": "bin/ccr.js",
30
+ "ClaudeCodeR": "bin/ccr.js",
31
+ "CCReader": "bin/ccr.js"
27
32
  },
28
33
  "files": [
29
34
  "bin"
@@ -37,9 +42,9 @@
37
42
  "linux"
38
43
  ],
39
44
  "optionalDependencies": {
40
- "claude-code-reader-win32-x64": "1.0.1-rc.2",
41
- "claude-code-reader-darwin-arm64": "1.0.1-rc.2",
42
- "claude-code-reader-darwin-x64": "1.0.1-rc.2",
43
- "claude-code-reader-linux-x64": "1.0.1-rc.2"
45
+ "claude-code-reader-win32-x64": "1.2.1-beta.1",
46
+ "claude-code-reader-darwin-arm64": "1.2.1-beta.1",
47
+ "claude-code-reader-darwin-x64": "1.2.1-beta.1",
48
+ "claude-code-reader-linux-x64": "1.2.1-beta.1"
44
49
  }
45
50
  }