@gaburieuru/claudio 0.25.0 → 0.26.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 +343 -346
- package/dist/cli.mjs +96 -79
- package/dist/sdk.mjs +284 -61
- package/package.json +211 -211
package/package.json
CHANGED
|
@@ -1,211 +1,211 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@gaburieuru/claudio",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Claudio — Claude Code–style coding agent CLI with any LLM",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"claudio": "./bin/claudio"
|
|
8
|
-
},
|
|
9
|
-
"exports": {
|
|
10
|
-
"./package.json": "./package.json",
|
|
11
|
-
"./dist/cli.mjs": "./dist/cli.mjs",
|
|
12
|
-
"./sdk": {
|
|
13
|
-
"types": "./src/entrypoints/sdk.d.ts",
|
|
14
|
-
"import": "./dist/sdk.mjs"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"bin/",
|
|
19
|
-
"dist/cli.mjs",
|
|
20
|
-
"dist/sdk.mjs",
|
|
21
|
-
"src/entrypoints/sdk.d.ts",
|
|
22
|
-
"src/entrypoints/sdk/coreTypes.generated.ts",
|
|
23
|
-
"scripts/windows/openclaude-aliases.ps1",
|
|
24
|
-
"vendor/node-domexception-shim/",
|
|
25
|
-
"docs/windows-aliases-and-launchers.md",
|
|
26
|
-
"README.md"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "bun run scripts/build.ts",
|
|
30
|
-
"integrations:generate": "bun run scripts/generate-integrations-artifacts.ts",
|
|
31
|
-
"integrations:check": "bun run scripts/generate-integrations-artifacts.ts --check",
|
|
32
|
-
"dev": "bun run build && node bin/claudio",
|
|
33
|
-
"dev:profile": "bun run scripts/provider-launch.ts",
|
|
34
|
-
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
|
|
35
|
-
"dev:codex": "bun run scripts/provider-launch.ts codex",
|
|
36
|
-
"dev:openai": "bun run scripts/provider-launch.ts openai",
|
|
37
|
-
"dev:gemini": "bun run scripts/provider-launch.ts gemini",
|
|
38
|
-
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
|
|
39
|
-
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
|
|
40
|
-
"dev:atomic-chat": "bun run scripts/provider-launch.ts atomic-chat",
|
|
41
|
-
"profile:init": "bun run scripts/provider-bootstrap.ts",
|
|
42
|
-
"profile:recommend": "bun run scripts/provider-recommend.ts",
|
|
43
|
-
"profile:auto": "bun run scripts/provider-recommend.ts --apply",
|
|
44
|
-
"profile:codex": "bun run profile:init -- --provider codex --model codexplan",
|
|
45
|
-
"profile:fast": "bun run profile:init -- --provider ollama --model llama3.2:3b",
|
|
46
|
-
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
|
|
47
|
-
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
48
|
-
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
49
|
-
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
50
|
-
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
51
|
-
"start": "node bin/claudio",
|
|
52
|
-
"web:dev": "bun run --cwd web dev",
|
|
53
|
-
"web:build": "bun run --cwd web build",
|
|
54
|
-
"web:preview": "bun run --cwd web preview",
|
|
55
|
-
"web:typecheck": "bun run --cwd web typecheck",
|
|
56
|
-
"test": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
57
|
-
"test:full": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
58
|
-
"test:coverage": "bun test --feature=UNATTENDED_RETRY --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
59
|
-
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
60
|
-
"security:pr-scan": "bun run scripts/pr-intent-scan.ts",
|
|
61
|
-
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
62
|
-
"typecheck": "tsc --noEmit",
|
|
63
|
-
"typecheck:type-tests": "bun run scripts/typecheck-type-tests.ts",
|
|
64
|
-
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
65
|
-
"deadcode": "knip --include files,dependencies",
|
|
66
|
-
"check": "bun run smoke && bun run deadcode && bun run test:full",
|
|
67
|
-
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
68
|
-
"build:verified": "bun run build && bun run verify:privacy",
|
|
69
|
-
"test:provider": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1 src/services/api/*.test.ts src/utils/context.test.ts",
|
|
70
|
-
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
71
|
-
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
72
|
-
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
73
|
-
"hardening:check": "bun run smoke && bun run doctor:runtime",
|
|
74
|
-
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
75
|
-
"prepack": "npm run build"
|
|
76
|
-
},
|
|
77
|
-
"dependencies": {
|
|
78
|
-
"@orama/orama": "^3.1.18",
|
|
79
|
-
"@orama/plugin-data-persistence": "^3.1.18",
|
|
80
|
-
"@vscode/ripgrep": "^1.18.0"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
84
|
-
"@anthropic-ai/bedrock-sdk": "0.29.1",
|
|
85
|
-
"@anthropic-ai/foundry-sdk": "0.2.3",
|
|
86
|
-
"@anthropic-ai/sandbox-runtime": "0.0.55",
|
|
87
|
-
"@anthropic-ai/sdk": "0.94.0",
|
|
88
|
-
"@aws-sdk/client-bedrock": "3.1047.0",
|
|
89
|
-
"@aws-sdk/client-sts": "3.1047.0",
|
|
90
|
-
"@aws-sdk/credential-provider-node": "3.972.41",
|
|
91
|
-
"@azure/identity": "^4.13.1",
|
|
92
|
-
"@commander-js/extra-typings": "12.1.0",
|
|
93
|
-
"@grpc/grpc-js": "^1.14.4",
|
|
94
|
-
"@grpc/proto-loader": "^0.8.1",
|
|
95
|
-
"@modelcontextprotocol/sdk": "1.29.0",
|
|
96
|
-
"@smithy/core": "3.24.3",
|
|
97
|
-
"@smithy/node-http-handler": "4.7.3",
|
|
98
|
-
"@types/bun": "1.3.11",
|
|
99
|
-
"@types/node": "25.5.0",
|
|
100
|
-
"@types/react": "19.2.14",
|
|
101
|
-
"ajv": "8.18.0",
|
|
102
|
-
"auto-bind": "5.0.1",
|
|
103
|
-
"axios": "1.16.0",
|
|
104
|
-
"bidi-js": "1.0.3",
|
|
105
|
-
"chalk": "5.6.2",
|
|
106
|
-
"chokidar": "4.0.3",
|
|
107
|
-
"cli-boxes": "3.0.0",
|
|
108
|
-
"cli-highlight": "2.1.11",
|
|
109
|
-
"commander": "12.1.0",
|
|
110
|
-
"cross-spawn": "7.0.6",
|
|
111
|
-
"diff": "8.0.3",
|
|
112
|
-
"duck-duck-scrape": "^2.2.7",
|
|
113
|
-
"emoji-regex": "10.6.0",
|
|
114
|
-
"env-paths": "3.0.0",
|
|
115
|
-
"execa": "9.6.1",
|
|
116
|
-
"fflate": "0.8.2",
|
|
117
|
-
"figures": "6.1.0",
|
|
118
|
-
"fuse.js": "7.1.0",
|
|
119
|
-
"graphology": "0.26.0",
|
|
120
|
-
"get-east-asian-width": "1.5.0",
|
|
121
|
-
"google-auth-library": "10.6.2",
|
|
122
|
-
"https-proxy-agent": "7.0.6",
|
|
123
|
-
"ignore": "7.0.5",
|
|
124
|
-
"graphology-metrics": "2.4.0",
|
|
125
|
-
"indent-string": "5.0.0",
|
|
126
|
-
"js-tiktoken": "1.0.21",
|
|
127
|
-
"jsonc-parser": "3.3.1",
|
|
128
|
-
"knip": "^6.27.0",
|
|
129
|
-
"lodash-es": "4.18.1",
|
|
130
|
-
"lru-cache": "11.2.7",
|
|
131
|
-
"marked": "15.0.12",
|
|
132
|
-
"p-map": "7.0.4",
|
|
133
|
-
"picomatch": "4.0.4",
|
|
134
|
-
"proper-lockfile": "4.1.2",
|
|
135
|
-
"qrcode": "1.5.4",
|
|
136
|
-
"react": "19.2.4",
|
|
137
|
-
"react-compiler-runtime": "1.0.0",
|
|
138
|
-
"react-reconciler": "0.33.0",
|
|
139
|
-
"semver": "7.7.4",
|
|
140
|
-
"sharp": "^0.34.5",
|
|
141
|
-
"shell-quote": "1.8.4",
|
|
142
|
-
"signal-exit": "4.1.0",
|
|
143
|
-
"supports-hyperlinks": "3.2.0",
|
|
144
|
-
"tree-kill": "1.2.2",
|
|
145
|
-
"tree-sitter-wasms": "0.1.13",
|
|
146
|
-
"turndown": "7.2.2",
|
|
147
|
-
"type-fest": "4.41.0",
|
|
148
|
-
"typescript": "5.9.3",
|
|
149
|
-
"undici": "7.28.0",
|
|
150
|
-
"usehooks-ts": "3.1.1",
|
|
151
|
-
"web-tree-sitter": "0.25.10",
|
|
152
|
-
"vscode-languageserver-protocol": "3.17.5",
|
|
153
|
-
"wrap-ansi": "9.0.2",
|
|
154
|
-
"ws": "8.21.0",
|
|
155
|
-
"xss": "1.0.15",
|
|
156
|
-
"yaml": "2.8.3",
|
|
157
|
-
"zod": "3.25.76"
|
|
158
|
-
},
|
|
159
|
-
"peerDependencies": {
|
|
160
|
-
"@anthropic-ai/sdk": "^0.94.0",
|
|
161
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
162
|
-
"react": "^19.0.0",
|
|
163
|
-
"react-reconciler": "^0.33.0"
|
|
164
|
-
},
|
|
165
|
-
"peerDependenciesMeta": {
|
|
166
|
-
"@anthropic-ai/sdk": {
|
|
167
|
-
"optional": true
|
|
168
|
-
},
|
|
169
|
-
"@modelcontextprotocol/sdk": {
|
|
170
|
-
"optional": true
|
|
171
|
-
},
|
|
172
|
-
"react": {
|
|
173
|
-
"optional": true
|
|
174
|
-
},
|
|
175
|
-
"react-reconciler": {
|
|
176
|
-
"optional": true
|
|
177
|
-
}
|
|
178
|
-
},
|
|
179
|
-
"engines": {
|
|
180
|
-
"node": ">=22.0.0"
|
|
181
|
-
},
|
|
182
|
-
"repository": {
|
|
183
|
-
"type": "git",
|
|
184
|
-
"url": "https://github.com/StillHue/claudio.git",
|
|
185
|
-
"directory": "openclaude-fork"
|
|
186
|
-
},
|
|
187
|
-
"keywords": [
|
|
188
|
-
"claude-code",
|
|
189
|
-
"openai",
|
|
190
|
-
"llm",
|
|
191
|
-
"cli",
|
|
192
|
-
"agent",
|
|
193
|
-
"deepseek",
|
|
194
|
-
"ollama",
|
|
195
|
-
"gemini"
|
|
196
|
-
],
|
|
197
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
198
|
-
"publishConfig": {
|
|
199
|
-
"access": "public"
|
|
200
|
-
},
|
|
201
|
-
"overrides": {
|
|
202
|
-
"ip-address": "10.2.0",
|
|
203
|
-
"google-auth-library": "10.6.2",
|
|
204
|
-
"lodash-es": "4.18.1",
|
|
205
|
-
"node-domexception": "file:vendor/node-domexception-shim"
|
|
206
|
-
},
|
|
207
|
-
"allowScripts": {
|
|
208
|
-
"protobufjs@7.6.4": true,
|
|
209
|
-
"sharp@0.34.5": true
|
|
210
|
-
}
|
|
211
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@gaburieuru/claudio",
|
|
3
|
+
"version": "0.26.0",
|
|
4
|
+
"description": "Claudio — Claude Code–style coding agent CLI with any LLM",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"claudio": "./bin/claudio"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"./package.json": "./package.json",
|
|
11
|
+
"./dist/cli.mjs": "./dist/cli.mjs",
|
|
12
|
+
"./sdk": {
|
|
13
|
+
"types": "./src/entrypoints/sdk.d.ts",
|
|
14
|
+
"import": "./dist/sdk.mjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/",
|
|
19
|
+
"dist/cli.mjs",
|
|
20
|
+
"dist/sdk.mjs",
|
|
21
|
+
"src/entrypoints/sdk.d.ts",
|
|
22
|
+
"src/entrypoints/sdk/coreTypes.generated.ts",
|
|
23
|
+
"scripts/windows/openclaude-aliases.ps1",
|
|
24
|
+
"vendor/node-domexception-shim/",
|
|
25
|
+
"docs/windows-aliases-and-launchers.md",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun run scripts/build.ts",
|
|
30
|
+
"integrations:generate": "bun run scripts/generate-integrations-artifacts.ts",
|
|
31
|
+
"integrations:check": "bun run scripts/generate-integrations-artifacts.ts --check",
|
|
32
|
+
"dev": "bun run build && node bin/claudio",
|
|
33
|
+
"dev:profile": "bun run scripts/provider-launch.ts",
|
|
34
|
+
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
|
|
35
|
+
"dev:codex": "bun run scripts/provider-launch.ts codex",
|
|
36
|
+
"dev:openai": "bun run scripts/provider-launch.ts openai",
|
|
37
|
+
"dev:gemini": "bun run scripts/provider-launch.ts gemini",
|
|
38
|
+
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
|
|
39
|
+
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
|
|
40
|
+
"dev:atomic-chat": "bun run scripts/provider-launch.ts atomic-chat",
|
|
41
|
+
"profile:init": "bun run scripts/provider-bootstrap.ts",
|
|
42
|
+
"profile:recommend": "bun run scripts/provider-recommend.ts",
|
|
43
|
+
"profile:auto": "bun run scripts/provider-recommend.ts --apply",
|
|
44
|
+
"profile:codex": "bun run profile:init -- --provider codex --model codexplan",
|
|
45
|
+
"profile:fast": "bun run profile:init -- --provider ollama --model llama3.2:3b",
|
|
46
|
+
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
|
|
47
|
+
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
48
|
+
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
49
|
+
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
50
|
+
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
51
|
+
"start": "node bin/claudio",
|
|
52
|
+
"web:dev": "bun run --cwd web dev",
|
|
53
|
+
"web:build": "bun run --cwd web build",
|
|
54
|
+
"web:preview": "bun run --cwd web preview",
|
|
55
|
+
"web:typecheck": "bun run --cwd web typecheck",
|
|
56
|
+
"test": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
57
|
+
"test:full": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1",
|
|
58
|
+
"test:coverage": "bun test --feature=UNATTENDED_RETRY --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
59
|
+
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
60
|
+
"security:pr-scan": "bun run scripts/pr-intent-scan.ts",
|
|
61
|
+
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"typecheck:type-tests": "bun run scripts/typecheck-type-tests.ts",
|
|
64
|
+
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
65
|
+
"deadcode": "knip --include files,dependencies",
|
|
66
|
+
"check": "bun run smoke && bun run deadcode && bun run test:full",
|
|
67
|
+
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
68
|
+
"build:verified": "bun run build && bun run verify:privacy",
|
|
69
|
+
"test:provider": "bun test --feature=UNATTENDED_RETRY --max-concurrency=1 src/services/api/*.test.ts src/utils/context.test.ts",
|
|
70
|
+
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
71
|
+
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
72
|
+
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
73
|
+
"hardening:check": "bun run smoke && bun run doctor:runtime",
|
|
74
|
+
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
75
|
+
"prepack": "npm run build"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@orama/orama": "^3.1.18",
|
|
79
|
+
"@orama/plugin-data-persistence": "^3.1.18",
|
|
80
|
+
"@vscode/ripgrep": "^1.18.0"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
84
|
+
"@anthropic-ai/bedrock-sdk": "0.29.1",
|
|
85
|
+
"@anthropic-ai/foundry-sdk": "0.2.3",
|
|
86
|
+
"@anthropic-ai/sandbox-runtime": "0.0.55",
|
|
87
|
+
"@anthropic-ai/sdk": "0.94.0",
|
|
88
|
+
"@aws-sdk/client-bedrock": "3.1047.0",
|
|
89
|
+
"@aws-sdk/client-sts": "3.1047.0",
|
|
90
|
+
"@aws-sdk/credential-provider-node": "3.972.41",
|
|
91
|
+
"@azure/identity": "^4.13.1",
|
|
92
|
+
"@commander-js/extra-typings": "12.1.0",
|
|
93
|
+
"@grpc/grpc-js": "^1.14.4",
|
|
94
|
+
"@grpc/proto-loader": "^0.8.1",
|
|
95
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
96
|
+
"@smithy/core": "3.24.3",
|
|
97
|
+
"@smithy/node-http-handler": "4.7.3",
|
|
98
|
+
"@types/bun": "1.3.11",
|
|
99
|
+
"@types/node": "25.5.0",
|
|
100
|
+
"@types/react": "19.2.14",
|
|
101
|
+
"ajv": "8.18.0",
|
|
102
|
+
"auto-bind": "5.0.1",
|
|
103
|
+
"axios": "1.16.0",
|
|
104
|
+
"bidi-js": "1.0.3",
|
|
105
|
+
"chalk": "5.6.2",
|
|
106
|
+
"chokidar": "4.0.3",
|
|
107
|
+
"cli-boxes": "3.0.0",
|
|
108
|
+
"cli-highlight": "2.1.11",
|
|
109
|
+
"commander": "12.1.0",
|
|
110
|
+
"cross-spawn": "7.0.6",
|
|
111
|
+
"diff": "8.0.3",
|
|
112
|
+
"duck-duck-scrape": "^2.2.7",
|
|
113
|
+
"emoji-regex": "10.6.0",
|
|
114
|
+
"env-paths": "3.0.0",
|
|
115
|
+
"execa": "9.6.1",
|
|
116
|
+
"fflate": "0.8.2",
|
|
117
|
+
"figures": "6.1.0",
|
|
118
|
+
"fuse.js": "7.1.0",
|
|
119
|
+
"graphology": "0.26.0",
|
|
120
|
+
"get-east-asian-width": "1.5.0",
|
|
121
|
+
"google-auth-library": "10.6.2",
|
|
122
|
+
"https-proxy-agent": "7.0.6",
|
|
123
|
+
"ignore": "7.0.5",
|
|
124
|
+
"graphology-metrics": "2.4.0",
|
|
125
|
+
"indent-string": "5.0.0",
|
|
126
|
+
"js-tiktoken": "1.0.21",
|
|
127
|
+
"jsonc-parser": "3.3.1",
|
|
128
|
+
"knip": "^6.27.0",
|
|
129
|
+
"lodash-es": "4.18.1",
|
|
130
|
+
"lru-cache": "11.2.7",
|
|
131
|
+
"marked": "15.0.12",
|
|
132
|
+
"p-map": "7.0.4",
|
|
133
|
+
"picomatch": "4.0.4",
|
|
134
|
+
"proper-lockfile": "4.1.2",
|
|
135
|
+
"qrcode": "1.5.4",
|
|
136
|
+
"react": "19.2.4",
|
|
137
|
+
"react-compiler-runtime": "1.0.0",
|
|
138
|
+
"react-reconciler": "0.33.0",
|
|
139
|
+
"semver": "7.7.4",
|
|
140
|
+
"sharp": "^0.34.5",
|
|
141
|
+
"shell-quote": "1.8.4",
|
|
142
|
+
"signal-exit": "4.1.0",
|
|
143
|
+
"supports-hyperlinks": "3.2.0",
|
|
144
|
+
"tree-kill": "1.2.2",
|
|
145
|
+
"tree-sitter-wasms": "0.1.13",
|
|
146
|
+
"turndown": "7.2.2",
|
|
147
|
+
"type-fest": "4.41.0",
|
|
148
|
+
"typescript": "5.9.3",
|
|
149
|
+
"undici": "7.28.0",
|
|
150
|
+
"usehooks-ts": "3.1.1",
|
|
151
|
+
"web-tree-sitter": "0.25.10",
|
|
152
|
+
"vscode-languageserver-protocol": "3.17.5",
|
|
153
|
+
"wrap-ansi": "9.0.2",
|
|
154
|
+
"ws": "8.21.0",
|
|
155
|
+
"xss": "1.0.15",
|
|
156
|
+
"yaml": "2.8.3",
|
|
157
|
+
"zod": "3.25.76"
|
|
158
|
+
},
|
|
159
|
+
"peerDependencies": {
|
|
160
|
+
"@anthropic-ai/sdk": "^0.94.0",
|
|
161
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
162
|
+
"react": "^19.0.0",
|
|
163
|
+
"react-reconciler": "^0.33.0"
|
|
164
|
+
},
|
|
165
|
+
"peerDependenciesMeta": {
|
|
166
|
+
"@anthropic-ai/sdk": {
|
|
167
|
+
"optional": true
|
|
168
|
+
},
|
|
169
|
+
"@modelcontextprotocol/sdk": {
|
|
170
|
+
"optional": true
|
|
171
|
+
},
|
|
172
|
+
"react": {
|
|
173
|
+
"optional": true
|
|
174
|
+
},
|
|
175
|
+
"react-reconciler": {
|
|
176
|
+
"optional": true
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"engines": {
|
|
180
|
+
"node": ">=22.0.0"
|
|
181
|
+
},
|
|
182
|
+
"repository": {
|
|
183
|
+
"type": "git",
|
|
184
|
+
"url": "https://github.com/StillHue/claudio.git",
|
|
185
|
+
"directory": "openclaude-fork"
|
|
186
|
+
},
|
|
187
|
+
"keywords": [
|
|
188
|
+
"claude-code",
|
|
189
|
+
"openai",
|
|
190
|
+
"llm",
|
|
191
|
+
"cli",
|
|
192
|
+
"agent",
|
|
193
|
+
"deepseek",
|
|
194
|
+
"ollama",
|
|
195
|
+
"gemini"
|
|
196
|
+
],
|
|
197
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
198
|
+
"publishConfig": {
|
|
199
|
+
"access": "public"
|
|
200
|
+
},
|
|
201
|
+
"overrides": {
|
|
202
|
+
"ip-address": "10.2.0",
|
|
203
|
+
"google-auth-library": "10.6.2",
|
|
204
|
+
"lodash-es": "4.18.1",
|
|
205
|
+
"node-domexception": "file:vendor/node-domexception-shim"
|
|
206
|
+
},
|
|
207
|
+
"allowScripts": {
|
|
208
|
+
"protobufjs@7.6.4": true,
|
|
209
|
+
"sharp@0.34.5": true
|
|
210
|
+
}
|
|
211
|
+
}
|