@makerbi/openclaude 0.24.0 → 0.25.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/README.md +1 -0
- package/dist/cli.mjs +215 -207
- package/dist/sdk.mjs +2487 -1247
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@makerbi/openclaude",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.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": {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"web:build": "bun run --cwd web build",
|
|
56
56
|
"web:preview": "bun run --cwd web preview",
|
|
57
57
|
"web:typecheck": "bun run --cwd web typecheck",
|
|
58
|
-
"test": "bun test --feature=UNATTENDED_RETRY",
|
|
58
|
+
"test": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
59
59
|
"test:full": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
60
60
|
"test:coverage": "bun test --feature=UNATTENDED_RETRY --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
61
61
|
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
@@ -67,6 +67,8 @@
|
|
|
67
67
|
"deadcode": "knip --include files,dependencies",
|
|
68
68
|
"check": "bun run smoke && bun run deadcode && bun run test:full",
|
|
69
69
|
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
70
|
+
"install:verify": "bun run scripts/verify-clean-install.ts",
|
|
71
|
+
"install:verify:published": "bun run scripts/verify-clean-install.ts --published",
|
|
70
72
|
"build:verified": "bun run build && bun run verify:privacy",
|
|
71
73
|
"test:provider": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1 src/services/api/*.test.ts src/utils/context.test.ts",
|
|
72
74
|
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
@@ -77,9 +79,9 @@
|
|
|
77
79
|
"prepack": "npm run build"
|
|
78
80
|
},
|
|
79
81
|
"dependencies": {
|
|
80
|
-
"@orama/orama": "
|
|
81
|
-
"@orama/plugin-data-persistence": "
|
|
82
|
-
"@vscode/ripgrep": "
|
|
82
|
+
"@orama/orama": "3.1.18",
|
|
83
|
+
"@orama/plugin-data-persistence": "3.1.18",
|
|
84
|
+
"@vscode/ripgrep": "1.18.0"
|
|
83
85
|
},
|
|
84
86
|
"devDependencies": {
|
|
85
87
|
"@alcalzone/ansi-tokenize": "0.3.0",
|