@gitlawb/openclaude 0.1.8 → 0.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.
- package/README.md +35 -0
- package/dist/cli.mjs +39770 -35337
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlawb/openclaude",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
|
|
31
31
|
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
32
32
|
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
33
|
+
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
34
|
+
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
33
35
|
"start": "node dist/cli.mjs",
|
|
34
36
|
"test": "bun test",
|
|
35
37
|
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
@@ -57,6 +59,8 @@
|
|
|
57
59
|
"@anthropic-ai/vertex-sdk": "0.14.4",
|
|
58
60
|
"@commander-js/extra-typings": "12.1.0",
|
|
59
61
|
"@growthbook/growthbook": "1.6.5",
|
|
62
|
+
"@grpc/grpc-js": "^1.14.3",
|
|
63
|
+
"@grpc/proto-loader": "^0.8.0",
|
|
60
64
|
"@mendable/firecrawl-js": "4.18.1",
|
|
61
65
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
62
66
|
"@opentelemetry/api": "1.9.1",
|
|
@@ -128,6 +132,7 @@
|
|
|
128
132
|
"@types/bun": "1.3.11",
|
|
129
133
|
"@types/node": "25.5.0",
|
|
130
134
|
"@types/react": "19.2.14",
|
|
135
|
+
"tsx": "^4.21.0",
|
|
131
136
|
"typescript": "5.9.3"
|
|
132
137
|
},
|
|
133
138
|
"engines": {
|
|
@@ -135,7 +140,7 @@
|
|
|
135
140
|
},
|
|
136
141
|
"repository": {
|
|
137
142
|
"type": "git",
|
|
138
|
-
"url": "https://
|
|
143
|
+
"url": "https://github.com/Gitlawb/openclaude.git"
|
|
139
144
|
},
|
|
140
145
|
"keywords": [
|
|
141
146
|
"claude-code",
|