cc-viewer 1.6.224 → 1.6.225
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 +10 -0
- package/dist/assets/{App-D8YonUrH.js → App-CFfOnyq3.js} +1 -1
- package/dist/assets/{AppHeader.module-B9UApiLL.js → AppHeader.module-BNIaVAq_.js} +2 -2
- package/dist/assets/{MdxEditorPanel-D5NLEmly.js → MdxEditorPanel-BwqSXicb.js} +1 -1
- package/dist/assets/{Mobile-Bp2HGHMJ.js → Mobile-B1g4yu5k.js} +1 -1
- package/dist/assets/{index-B6uyzW3R.js → index-LQN09CEf.js} +2 -2
- package/dist/index.html +1 -1
- package/i18n.js +20 -0
- package/lib/updater.js +55 -2
- package/package.json +1 -1
- package/server.js +6 -3
package/README.md
CHANGED
|
@@ -23,10 +23,20 @@ English | [简体中文](./docs/README.zh.md) | [繁體中文](./docs/README.zh-
|
|
|
23
23
|
|
|
24
24
|
### Install ccv
|
|
25
25
|
|
|
26
|
+
#### Install via npm
|
|
27
|
+
|
|
26
28
|
```bash
|
|
27
29
|
npm install -g cc-viewer --registry=https://registry.npmjs.org
|
|
28
30
|
```
|
|
29
31
|
|
|
32
|
+
#### Install via Homebrew (recommended for macOS / Linux)
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
brew tap weiesky/cc-viewer
|
|
36
|
+
brew install cc-viewer
|
|
37
|
+
brew upgrade cc-viewer # for updates — do NOT use npm install -g for brew installs
|
|
38
|
+
```
|
|
39
|
+
|
|
30
40
|
### Launch
|
|
31
41
|
|
|
32
42
|
ccv is a drop-in replacement for claude — all arguments are passed through to claude while launching the Web Viewer.
|