ccman 3.3.19 → 3.3.21
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/dist/index.js +14 -10
- package/dist/templates/codex/config.toml +0 -2
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -422,7 +422,7 @@ var init_codex = __esm({
|
|
|
422
422
|
};
|
|
423
423
|
GMN_PROVIDER_HOSTS = [
|
|
424
424
|
"gmn.chuangzuoli.com",
|
|
425
|
-
"cdn.
|
|
425
|
+
"cdn-gmn.chuangzuoli.com",
|
|
426
426
|
"gmncodex.com",
|
|
427
427
|
"gmncode.cn",
|
|
428
428
|
"cdn.gmncode.cn",
|
|
@@ -2871,7 +2871,9 @@ var init_claude_clean = __esm({
|
|
|
2871
2871
|
|
|
2872
2872
|
// ../core/dist/index.js
|
|
2873
2873
|
import { readFileSync as readFileSync10 } from "fs";
|
|
2874
|
-
|
|
2874
|
+
import { join as join5, dirname as dirname7 } from "path";
|
|
2875
|
+
import { fileURLToPath as fileURLToPath6 } from "url";
|
|
2876
|
+
var __filename6, __dirname6, pkg, VERSION;
|
|
2875
2877
|
var init_dist2 = __esm({
|
|
2876
2878
|
"../core/dist/index.js"() {
|
|
2877
2879
|
"use strict";
|
|
@@ -2893,7 +2895,9 @@ var init_dist2 = __esm({
|
|
|
2893
2895
|
init_merge_advanced();
|
|
2894
2896
|
init_export();
|
|
2895
2897
|
init_claude_clean();
|
|
2896
|
-
|
|
2898
|
+
__filename6 = fileURLToPath6(import.meta.url);
|
|
2899
|
+
__dirname6 = dirname7(__filename6);
|
|
2900
|
+
pkg = JSON.parse(readFileSync10(join5(__dirname6, "../../package.json"), "utf-8"));
|
|
2897
2901
|
VERSION = pkg.version;
|
|
2898
2902
|
}
|
|
2899
2903
|
});
|
|
@@ -7334,18 +7338,18 @@ function pickDefaultEndpoint(results) {
|
|
|
7334
7338
|
var GMN_PROFILE = {
|
|
7335
7339
|
commandName: "gmn",
|
|
7336
7340
|
title: "GMN",
|
|
7337
|
-
endpointGroupLabel: "\
|
|
7338
|
-
endpointGroupDescription: "\u4EC5\u5305\u542B
|
|
7341
|
+
endpointGroupLabel: "GMN \u57DF\u540D\u7EBF\u8DEF",
|
|
7342
|
+
endpointGroupDescription: "\u4EC5\u5305\u542B\u4E3B\u57DF\u540D\u548C CDN \u7684 2 \u6761\u5730\u5740",
|
|
7339
7343
|
baseUrls: [
|
|
7340
7344
|
{
|
|
7341
|
-
label: "\
|
|
7345
|
+
label: "GMN \u4E3B\u7AD9",
|
|
7342
7346
|
url: "https://gmn.chuangzuoli.com",
|
|
7343
|
-
description: "
|
|
7347
|
+
description: "GMN \u4E3B\u57DF\u540D\u5165\u53E3"
|
|
7344
7348
|
},
|
|
7345
7349
|
{
|
|
7346
|
-
label: "
|
|
7347
|
-
url: "https://cdn.
|
|
7348
|
-
description: "
|
|
7350
|
+
label: "GMN CDN",
|
|
7351
|
+
url: "https://cdn-gmn.chuangzuoli.com",
|
|
7352
|
+
description: "GMN CDN \u52A0\u901F\u5165\u53E3"
|
|
7349
7353
|
}
|
|
7350
7354
|
]
|
|
7351
7355
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccman",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Manage Codex, Claude Code, Gemini CLI, OpenCode, OpenClaw, and MCP API service provider configurations",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
"dist",
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup",
|
|
16
|
+
"dev": "NODE_ENV=development tsx src/index.ts",
|
|
17
|
+
"clean": "rm -rf dist"
|
|
18
|
+
},
|
|
14
19
|
"keywords": [
|
|
15
20
|
"codex",
|
|
16
21
|
"claude",
|
|
@@ -52,10 +57,5 @@
|
|
|
52
57
|
},
|
|
53
58
|
"engines": {
|
|
54
59
|
"node": ">=18.0.0"
|
|
55
|
-
},
|
|
56
|
-
"scripts": {
|
|
57
|
-
"build": "tsup",
|
|
58
|
-
"dev": "NODE_ENV=development tsx src/index.ts",
|
|
59
|
-
"clean": "rm -rf dist"
|
|
60
60
|
}
|
|
61
61
|
}
|