@gitlawb/openclaude 0.1.7 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlawb/openclaude",
3
- "version": "0.1.7",
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,10 +30,18 @@
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",
36
+ "test": "bun test",
37
+ "test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
38
+ "test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
39
+ "security:pr-scan": "bun run scripts/pr-intent-scan.ts",
34
40
  "test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
35
41
  "typecheck": "tsc --noEmit",
36
42
  "smoke": "bun run build && node dist/cli.mjs --version",
43
+ "verify:privacy": "bun run scripts/verify-no-phone-home.ts",
44
+ "build:verified": "bun run build && bun run verify:privacy",
37
45
  "test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
38
46
  "doctor:runtime": "bun run scripts/system-check.ts",
39
47
  "doctor:runtime:json": "bun run scripts/system-check.ts --json",
@@ -51,6 +59,9 @@
51
59
  "@anthropic-ai/vertex-sdk": "0.14.4",
52
60
  "@commander-js/extra-typings": "12.1.0",
53
61
  "@growthbook/growthbook": "1.6.5",
62
+ "@grpc/grpc-js": "^1.14.3",
63
+ "@grpc/proto-loader": "^0.8.0",
64
+ "@mendable/firecrawl-js": "4.18.1",
54
65
  "@modelcontextprotocol/sdk": "1.29.0",
55
66
  "@opentelemetry/api": "1.9.1",
56
67
  "@opentelemetry/api-logs": "0.214.0",
@@ -73,7 +84,9 @@
73
84
  "cli-highlight": "2.1.11",
74
85
  "code-excerpt": "4.0.0",
75
86
  "commander": "12.1.0",
76
- "diff": "7.0.0",
87
+ "cross-spawn": "7.0.6",
88
+ "diff": "8.0.3",
89
+ "duck-duck-scrape": "^2.2.7",
77
90
  "emoji-regex": "10.6.0",
78
91
  "env-paths": "3.0.0",
79
92
  "execa": "9.6.1",
@@ -86,7 +99,7 @@
86
99
  "ignore": "7.0.5",
87
100
  "indent-string": "5.0.0",
88
101
  "jsonc-parser": "3.3.1",
89
- "lodash-es": "4.17.23",
102
+ "lodash-es": "4.18.1",
90
103
  "lru-cache": "11.2.7",
91
104
  "marked": "15.0.12",
92
105
  "p-map": "7.0.4",
@@ -97,6 +110,7 @@
97
110
  "react-compiler-runtime": "1.0.0",
98
111
  "react-reconciler": "0.33.0",
99
112
  "semver": "7.7.4",
113
+ "sharp": "^0.34.5",
100
114
  "shell-quote": "1.8.3",
101
115
  "signal-exit": "4.1.0",
102
116
  "stack-utils": "2.0.6",
@@ -118,6 +132,7 @@
118
132
  "@types/bun": "1.3.11",
119
133
  "@types/node": "25.5.0",
120
134
  "@types/react": "19.2.14",
135
+ "tsx": "^4.21.0",
121
136
  "typescript": "5.9.3"
122
137
  },
123
138
  "engines": {
@@ -125,7 +140,7 @@
125
140
  },
126
141
  "repository": {
127
142
  "type": "git",
128
- "url": "https://gitlawb.com/z6MkqDnb7Siv3Cwj7pGJq4T5EsUisECqR8KpnDLwcaZq5TPr/openclaude"
143
+ "url": "https://github.com/Gitlawb/openclaude.git"
129
144
  },
130
145
  "keywords": [
131
146
  "claude-code",
@@ -137,8 +152,11 @@
137
152
  "ollama",
138
153
  "gemini"
139
154
  ],
140
- "license": "MIT",
155
+ "license": "SEE LICENSE FILE",
141
156
  "publishConfig": {
142
157
  "access": "public"
158
+ },
159
+ "overrides": {
160
+ "lodash-es": "4.18.1"
143
161
  }
144
162
  }