claudish 2.11.0 → 3.0.1
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 +20781 -255
- package/package.json +6 -2
- package/scripts/extract-models.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudish",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Run Claude Code with any
|
|
3
|
+
"version": "3.0.1",
|
|
4
|
+
"description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -36,11 +36,15 @@
|
|
|
36
36
|
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
37
37
|
"dotenv": "^17.2.3",
|
|
38
38
|
"hono": "^4.10.6",
|
|
39
|
+
"undici": "^7.16.0",
|
|
39
40
|
"zod": "^4.1.13"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@biomejs/biome": "^1.9.4",
|
|
43
44
|
"@types/bun": "latest",
|
|
45
|
+
"@types/jest": "^30.0.0",
|
|
46
|
+
"jest": "^30.2.0",
|
|
47
|
+
"jest-environment-node": "^30.2.0",
|
|
44
48
|
"typescript": "^5.9.3"
|
|
45
49
|
},
|
|
46
50
|
"files": [
|
|
@@ -135,7 +135,7 @@ export const ENV = {
|
|
|
135
135
|
// OpenRouter API Configuration
|
|
136
136
|
export const OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions";
|
|
137
137
|
export const OPENROUTER_HEADERS = {
|
|
138
|
-
"HTTP-Referer": "https://
|
|
138
|
+
"HTTP-Referer": "https://claudish.com",
|
|
139
139
|
"X-Title": "Claudish - OpenRouter Proxy",
|
|
140
140
|
} as const;
|
|
141
141
|
`;
|