@makerbi/openclaude 0.14.8 → 0.15.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/cli.mjs +858 -406
- package/dist/sdk.mjs +288 -80
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@makerbi/openclaude",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "OpenClaude opens coding-agent workflows to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"build:native:manifest": "bun run scripts/native-release-manifest.ts native-dist",
|
|
28
28
|
"integrations:generate": "bun run scripts/generate-integrations-artifacts.ts",
|
|
29
29
|
"integrations:check": "bun run scripts/generate-integrations-artifacts.ts --check",
|
|
30
|
-
"dev": "bun run build && node
|
|
30
|
+
"dev": "bun run build && node bin/openclaude",
|
|
31
31
|
"dev:profile": "bun run scripts/provider-launch.ts",
|
|
32
32
|
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
|
|
33
33
|
"dev:codex": "bun run scripts/provider-launch.ts codex",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
47
47
|
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
48
48
|
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
49
|
-
"start": "node
|
|
49
|
+
"start": "node bin/openclaude",
|
|
50
50
|
"web:dev": "bun run --cwd web dev",
|
|
51
51
|
"web:build": "bun run --cwd web build",
|
|
52
52
|
"web:preview": "bun run --cwd web preview",
|