@gitlawb/openclaude 0.1.7 → 0.1.8
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/LICENSE +29 -0
- package/README.md +206 -115
- package/bin/import-specifier.mjs +8 -2
- package/dist/cli.mjs +134558 -120971
- package/package.json +17 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlawb/openclaude",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,9 +31,15 @@
|
|
|
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
33
|
"start": "node dist/cli.mjs",
|
|
34
|
+
"test": "bun test",
|
|
35
|
+
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
36
|
+
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
37
|
+
"security:pr-scan": "bun run scripts/pr-intent-scan.ts",
|
|
34
38
|
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
35
39
|
"typecheck": "tsc --noEmit",
|
|
36
40
|
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
41
|
+
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
42
|
+
"build:verified": "bun run build && bun run verify:privacy",
|
|
37
43
|
"test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
|
|
38
44
|
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
39
45
|
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
@@ -51,6 +57,7 @@
|
|
|
51
57
|
"@anthropic-ai/vertex-sdk": "0.14.4",
|
|
52
58
|
"@commander-js/extra-typings": "12.1.0",
|
|
53
59
|
"@growthbook/growthbook": "1.6.5",
|
|
60
|
+
"@mendable/firecrawl-js": "4.18.1",
|
|
54
61
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
55
62
|
"@opentelemetry/api": "1.9.1",
|
|
56
63
|
"@opentelemetry/api-logs": "0.214.0",
|
|
@@ -73,7 +80,9 @@
|
|
|
73
80
|
"cli-highlight": "2.1.11",
|
|
74
81
|
"code-excerpt": "4.0.0",
|
|
75
82
|
"commander": "12.1.0",
|
|
76
|
-
"
|
|
83
|
+
"cross-spawn": "7.0.6",
|
|
84
|
+
"diff": "8.0.3",
|
|
85
|
+
"duck-duck-scrape": "^2.2.7",
|
|
77
86
|
"emoji-regex": "10.6.0",
|
|
78
87
|
"env-paths": "3.0.0",
|
|
79
88
|
"execa": "9.6.1",
|
|
@@ -86,7 +95,7 @@
|
|
|
86
95
|
"ignore": "7.0.5",
|
|
87
96
|
"indent-string": "5.0.0",
|
|
88
97
|
"jsonc-parser": "3.3.1",
|
|
89
|
-
"lodash-es": "4.
|
|
98
|
+
"lodash-es": "4.18.1",
|
|
90
99
|
"lru-cache": "11.2.7",
|
|
91
100
|
"marked": "15.0.12",
|
|
92
101
|
"p-map": "7.0.4",
|
|
@@ -97,6 +106,7 @@
|
|
|
97
106
|
"react-compiler-runtime": "1.0.0",
|
|
98
107
|
"react-reconciler": "0.33.0",
|
|
99
108
|
"semver": "7.7.4",
|
|
109
|
+
"sharp": "^0.34.5",
|
|
100
110
|
"shell-quote": "1.8.3",
|
|
101
111
|
"signal-exit": "4.1.0",
|
|
102
112
|
"stack-utils": "2.0.6",
|
|
@@ -137,8 +147,11 @@
|
|
|
137
147
|
"ollama",
|
|
138
148
|
"gemini"
|
|
139
149
|
],
|
|
140
|
-
"license": "
|
|
150
|
+
"license": "SEE LICENSE FILE",
|
|
141
151
|
"publishConfig": {
|
|
142
152
|
"access": "public"
|
|
153
|
+
},
|
|
154
|
+
"overrides": {
|
|
155
|
+
"lodash-es": "4.18.1"
|
|
143
156
|
}
|
|
144
157
|
}
|