cc-cast 1.3.5 → 1.3.6
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 +3 -3
- package/README.zh-CN.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Switch Claude Code custom model configurations from the terminal in seconds.
|
|
8
8
|
|
|
9
|
-
[](https://www.npmjs.com/package/cc-cast)
|
|
10
10
|
[](https://github.com/daylenjeez/cc-cast/blob/main/LICENSE)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
12
|
|
|
@@ -31,7 +31,7 @@ Switch Claude Code custom model configurations from the terminal in seconds.
|
|
|
31
31
|
## 📦 Install
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install -g
|
|
34
|
+
npm install -g cc-cast
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
## 🚀 Quick Start
|
|
@@ -194,7 +194,7 @@ Use `cc-cast clear` to delete them automatically, or clean them up manually:
|
|
|
194
194
|
Then remove the CLI:
|
|
195
195
|
|
|
196
196
|
```bash
|
|
197
|
-
npm uninstall -g
|
|
197
|
+
npm uninstall -g cc-cast
|
|
198
198
|
```
|
|
199
199
|
|
|
200
200
|
## 📄 License
|
package/README.zh-CN.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
在终端几秒内完成 Claude Code 自定义模型配置的管理和切换。
|
|
8
8
|
|
|
9
|
-
[](https://www.npmjs.com/package/cc-cast)
|
|
10
10
|
[](https://github.com/daylenjeez/cc-cast/blob/main/LICENSE)
|
|
11
11
|
[](https://nodejs.org)
|
|
12
12
|
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
## 📦 安装
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install -g
|
|
34
|
+
npm install -g cc-cast
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
## 🚀 快速开始
|
|
@@ -194,7 +194,7 @@ Claude Code 启动时读取 `~/.claude/settings.json`,`env` 字段控制 API
|
|
|
194
194
|
然后移除 CLI:
|
|
195
195
|
|
|
196
196
|
```bash
|
|
197
|
-
npm uninstall -g
|
|
197
|
+
npm uninstall -g cc-cast
|
|
198
198
|
```
|
|
199
199
|
|
|
200
200
|
## 📄 License
|
package/dist/index.js
CHANGED
|
@@ -44,7 +44,7 @@ const packageJsonPath = join(__dirname, "..", "package.json");
|
|
|
44
44
|
const packageJson = JSON.parse(readFileSync(packageJsonPath, "utf-8"));
|
|
45
45
|
const program = new Command();
|
|
46
46
|
program
|
|
47
|
-
.name("
|
|
47
|
+
.name("ccc")
|
|
48
48
|
.description(t("program.description"))
|
|
49
49
|
.version(packageJson.version);
|
|
50
50
|
// Helper: prompt user for input, optionally pre-filling the input field
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-cast",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "Claude Code Model Switcher - 快速切换 Claude Code 自定义模型配置",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"ccm": "dist/index.js",
|
|
9
|
+
"ccc": "dist/index.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|
package/src/index.ts
CHANGED