anygate 0.5.2 → 0.5.3
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/{chunk-6GVUN4JO.js → chunk-QPXRFBQI.js} +12 -5
- package/dist/chunk-QPXRFBQI.js.map +1 -0
- package/dist/cli.js +624 -272
- package/dist/cli.js.map +1 -1
- package/dist/{command-OQI56XYG.js → command-M5GMEJCO.js} +2 -2
- package/dist/ui/public/index.html +1 -1
- package/package.json +7 -4
- package/dist/chunk-6GVUN4JO.js.map +0 -1
- /package/dist/{command-OQI56XYG.js.map → command-M5GMEJCO.js.map} +0 -0
|
@@ -10,18 +10,21 @@ import { join } from "path";
|
|
|
10
10
|
// package.json
|
|
11
11
|
var package_default = {
|
|
12
12
|
name: "anygate",
|
|
13
|
-
version: "0.5.
|
|
13
|
+
version: "0.5.3",
|
|
14
14
|
publishConfig: {
|
|
15
15
|
access: "public"
|
|
16
16
|
},
|
|
17
17
|
description: "Route any model into any coding agent \u2014 launch Claude Code, Codex, and more with multi-provider gateways",
|
|
18
|
-
author: "
|
|
18
|
+
author: "ramananbuilds",
|
|
19
19
|
license: "MIT",
|
|
20
20
|
repository: {
|
|
21
21
|
type: "git",
|
|
22
|
-
url: "git+https://github.com/
|
|
22
|
+
url: "git+https://github.com/ramananbuilds/anygate.git"
|
|
23
|
+
},
|
|
24
|
+
homepage: "https://github.com/ramananbuilds/anygate#readme",
|
|
25
|
+
bugs: {
|
|
26
|
+
url: "https://github.com/ramananbuilds/anygate/issues"
|
|
23
27
|
},
|
|
24
|
-
homepage: "https://github.com/ramanan-techlover/anygate#readme",
|
|
25
28
|
keywords: [
|
|
26
29
|
"claude",
|
|
27
30
|
"claude-code",
|
|
@@ -136,6 +139,7 @@ var CONFLICTING_ENV_VARS = [
|
|
|
136
139
|
];
|
|
137
140
|
var OPENCODE_CACHE_PATH = join(homedir(), ".cache", "opencode", "models.json");
|
|
138
141
|
var MAX_MODEL_CATALOG = 20;
|
|
142
|
+
var GATEWAY_PORT = 17645;
|
|
139
143
|
var VERTEX_ANTHROPIC_NPM = "@ai-sdk/google-vertex/anthropic";
|
|
140
144
|
function classifyModelFormat(modelId, providerNpm) {
|
|
141
145
|
if (providerNpm === "@ai-sdk/anthropic") return "anthropic";
|
|
@@ -10347,7 +10351,9 @@ async function launchOrRestartClaudeApp(prompt = "Restart Claude Desktop to appl
|
|
|
10347
10351
|
|
|
10348
10352
|
export {
|
|
10349
10353
|
BACKENDS,
|
|
10354
|
+
CONFLICTING_ENV_VARS,
|
|
10350
10355
|
MAX_MODEL_CATALOG,
|
|
10356
|
+
GATEWAY_PORT,
|
|
10351
10357
|
VERTEX_ANTHROPIC_NPM,
|
|
10352
10358
|
VERSION,
|
|
10353
10359
|
requestOpenAiDeviceCode,
|
|
@@ -10524,6 +10530,7 @@ export {
|
|
|
10524
10530
|
loadServerModels,
|
|
10525
10531
|
resolveServerUpstreamApiKey,
|
|
10526
10532
|
runServerCommand,
|
|
10533
|
+
UPDATE_COMMAND,
|
|
10527
10534
|
checkForUpdates,
|
|
10528
10535
|
formatUpdateNotification,
|
|
10529
10536
|
favoriteProviderDisplayName,
|
|
@@ -10549,4 +10556,4 @@ export {
|
|
|
10549
10556
|
quitClaudeAppGracefully,
|
|
10550
10557
|
launchOrRestartClaudeApp
|
|
10551
10558
|
};
|
|
10552
|
-
//# sourceMappingURL=chunk-
|
|
10559
|
+
//# sourceMappingURL=chunk-QPXRFBQI.js.map
|