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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Switch Claude Code custom model configurations from the terminal in seconds.
8
8
 
9
- [![npm version](https://img.shields.io/npm/v/@daylenjeez/cc-cast.svg?style=flat-square)](https://www.npmjs.com/package/@daylenjeez/cc-cast)
9
+ [![npm version](https://img.shields.io/npm/v/cc-cast.svg?style=flat-square)](https://www.npmjs.com/package/cc-cast)
10
10
  [![license](https://img.shields.io/github/license/daylenjeez/cc-cast?style=flat-square)](https://github.com/daylenjeez/cc-cast/blob/main/LICENSE)
11
11
  [![node](https://img.shields.io/badge/node-%3E%3D18-brightgreen?style=flat-square)](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 @daylenjeez/cc-cast
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 @daylenjeez/cc-cast
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
- [![npm version](https://img.shields.io/npm/v/@daylenjeez/cc-cast.svg?style=flat-square)](https://www.npmjs.com/package/@daylenjeez/cc-cast)
9
+ [![npm version](https://img.shields.io/npm/v/cc-cast.svg?style=flat-square)](https://www.npmjs.com/package/cc-cast)
10
10
  [![license](https://img.shields.io/github/license/daylenjeez/cc-cast?style=flat-square)](https://github.com/daylenjeez/cc-cast/blob/main/LICENSE)
11
11
  [![node](https://img.shields.io/badge/node-%3E%3D18-brightgreen?style=flat-square)](https://nodejs.org)
12
12
 
@@ -31,7 +31,7 @@
31
31
  ## 📦 安装
32
32
 
33
33
  ```bash
34
- npm install -g @daylenjeez/cc-cast
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 @daylenjeez/cc-cast
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("cc-cast")
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.5",
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
- "cc-cast": "dist/index.js",
9
- "ccm": "dist/index.js"
8
+ "ccm": "dist/index.js",
9
+ "ccc": "dist/index.js"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsc",
package/src/index.ts CHANGED
@@ -48,7 +48,7 @@ const packageJson = JSON.parse(readFileSync(packageJsonPath, "utf-8"));
48
48
  const program = new Command();
49
49
 
50
50
  program
51
- .name("cc-cast")
51
+ .name("ccc")
52
52
  .description(t("program.description"))
53
53
  .version(packageJson.version);
54
54