claudish 5.7.1 → 5.8.0
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 +10 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -30498,7 +30498,15 @@ __export(exports_cli, {
|
|
|
30498
30498
|
getMissingKeyResolutions: () => getMissingKeyResolutions,
|
|
30499
30499
|
getMissingKeyError: () => getMissingKeyError
|
|
30500
30500
|
});
|
|
30501
|
-
import {
|
|
30501
|
+
import {
|
|
30502
|
+
readFileSync as readFileSync10,
|
|
30503
|
+
writeFileSync as writeFileSync5,
|
|
30504
|
+
existsSync as existsSync12,
|
|
30505
|
+
mkdirSync as mkdirSync5,
|
|
30506
|
+
copyFileSync,
|
|
30507
|
+
readdirSync,
|
|
30508
|
+
unlinkSync as unlinkSync3
|
|
30509
|
+
} from "node:fs";
|
|
30502
30510
|
import { fileURLToPath as fileURLToPath3 } from "node:url";
|
|
30503
30511
|
import { dirname as dirname3, join as join12 } from "node:path";
|
|
30504
30512
|
import { homedir as homedir11 } from "node:os";
|
|
@@ -31836,7 +31844,7 @@ async function fetchGLMCodingModels() {
|
|
|
31836
31844
|
return [];
|
|
31837
31845
|
}
|
|
31838
31846
|
}
|
|
31839
|
-
var __filename4, __dirname4, VERSION = "5.
|
|
31847
|
+
var __filename4, __dirname4, VERSION = "5.8.0", CACHE_MAX_AGE_DAYS2 = 2, MODELS_JSON_PATH, CLAUDISH_CACHE_DIR2, ALL_MODELS_JSON_PATH;
|
|
31840
31848
|
var init_cli = __esm(() => {
|
|
31841
31849
|
init_config();
|
|
31842
31850
|
init_model_loader();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudish",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.0",
|
|
4
4
|
"description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
19
|
"lint": "biome check .",
|
|
20
20
|
"format": "biome format --write .",
|
|
21
|
-
"test": "bun test"
|
|
21
|
+
"test": "bun test",
|
|
22
|
+
"smoke": "bun run scripts/smoke-test.ts"
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"@inquirer/prompts": "^8.0.1",
|