@andyzheung/ccmr 1.2.0 → 1.2.2

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/dist/cli.js +1 -1
  2. package/package.json +2 -3
package/dist/cli.js CHANGED
@@ -12,7 +12,7 @@ const node_fs_1 = __importDefault(require("node:fs"));
12
12
  const node_path_1 = __importDefault(require("node:path"));
13
13
  const config_js_1 = require("./config.js");
14
14
  const server_js_1 = require("./server.js");
15
- const VERSION = '1.1.0';
15
+ const VERSION = '1.2.2';
16
16
  commander_1.program
17
17
  .name('ccmr')
18
18
  .description('Claude Code Model Router - A lightweight API gateway for multi-model switching')
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@andyzheung/ccmr",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "A lightweight API gateway for routing Claude Code requests to multiple AI models (Forked with GLM-5 and MiniMax M2.5 support)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {
8
- "ccmr-plus": "dist/cli.js",
9
- "claude-code-model-router": "dist/cli.js"
8
+ "ccmr-plus": "dist/cli.js"
10
9
  },
11
10
  "scripts": {
12
11
  "build": "tsc",