pertrellyclaude 0.1.7
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 +193 -0
- package/bin/import-specifier.mjs +7 -0
- package/bin/import-specifier.test.mjs +13 -0
- package/bin/openclaude +32 -0
- package/dist/cli.mjs +545562 -0
- package/package.json +144 -0
package/package.json
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pertrellyclaude",
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"pertrellyclaude": "./bin/openclaude"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/",
|
|
11
|
+
"dist/cli.mjs",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun run scripts/build.ts",
|
|
16
|
+
"dev": "bun run build && node dist/cli.mjs",
|
|
17
|
+
"dev:profile": "bun run scripts/provider-launch.ts",
|
|
18
|
+
"dev:profile:fast": "bun run scripts/provider-launch.ts auto --fast --bare",
|
|
19
|
+
"dev:codex": "bun run scripts/provider-launch.ts codex",
|
|
20
|
+
"dev:openai": "bun run scripts/provider-launch.ts openai",
|
|
21
|
+
"dev:gemini": "bun run scripts/provider-launch.ts gemini",
|
|
22
|
+
"dev:ollama": "bun run scripts/provider-launch.ts ollama",
|
|
23
|
+
"dev:ollama:fast": "bun run scripts/provider-launch.ts ollama --fast --bare",
|
|
24
|
+
"dev:atomic-chat": "bun run scripts/provider-launch.ts atomic-chat",
|
|
25
|
+
"profile:init": "bun run scripts/provider-bootstrap.ts",
|
|
26
|
+
"profile:recommend": "bun run scripts/provider-recommend.ts",
|
|
27
|
+
"profile:auto": "bun run scripts/provider-recommend.ts --apply",
|
|
28
|
+
"profile:codex": "bun run profile:init -- --provider codex --model codexplan",
|
|
29
|
+
"profile:fast": "bun run profile:init -- --provider ollama --model llama3.2:3b",
|
|
30
|
+
"profile:code": "bun run profile:init -- --provider ollama --model qwen2.5-coder:7b",
|
|
31
|
+
"dev:fast": "bun run profile:fast && bun run dev:ollama:fast",
|
|
32
|
+
"dev:code": "bun run profile:code && bun run dev:profile",
|
|
33
|
+
"start": "node dist/cli.mjs",
|
|
34
|
+
"test:provider-recommendation": "bun test src/utils/providerRecommendation.test.ts src/utils/providerProfile.test.ts",
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
37
|
+
"test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
|
|
38
|
+
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
39
|
+
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
40
|
+
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
41
|
+
"hardening:check": "bun run smoke && bun run doctor:runtime",
|
|
42
|
+
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
43
|
+
"prepack": "npm run build"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
47
|
+
"@anthropic-ai/bedrock-sdk": "0.26.4",
|
|
48
|
+
"@anthropic-ai/foundry-sdk": "0.2.3",
|
|
49
|
+
"@anthropic-ai/sandbox-runtime": "0.0.46",
|
|
50
|
+
"@anthropic-ai/sdk": "0.81.0",
|
|
51
|
+
"@anthropic-ai/vertex-sdk": "0.14.4",
|
|
52
|
+
"@commander-js/extra-typings": "12.1.0",
|
|
53
|
+
"@growthbook/growthbook": "1.6.5",
|
|
54
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
55
|
+
"@opentelemetry/api": "1.9.1",
|
|
56
|
+
"@opentelemetry/api-logs": "0.214.0",
|
|
57
|
+
"@opentelemetry/core": "2.6.1",
|
|
58
|
+
"@opentelemetry/exporter-logs-otlp-http": "0.214.0",
|
|
59
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "0.57.2",
|
|
60
|
+
"@opentelemetry/resources": "2.6.1",
|
|
61
|
+
"@opentelemetry/sdk-logs": "0.214.0",
|
|
62
|
+
"@opentelemetry/sdk-metrics": "2.6.1",
|
|
63
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
64
|
+
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
65
|
+
"@opentelemetry/semantic-conventions": "1.40.0",
|
|
66
|
+
"ajv": "8.18.0",
|
|
67
|
+
"auto-bind": "5.0.1",
|
|
68
|
+
"axios": "1.14.0",
|
|
69
|
+
"bidi-js": "1.0.3",
|
|
70
|
+
"chalk": "5.6.2",
|
|
71
|
+
"chokidar": "4.0.3",
|
|
72
|
+
"cli-boxes": "3.0.0",
|
|
73
|
+
"cli-highlight": "2.1.11",
|
|
74
|
+
"code-excerpt": "4.0.0",
|
|
75
|
+
"commander": "12.1.0",
|
|
76
|
+
"diff": "7.0.0",
|
|
77
|
+
"emoji-regex": "10.6.0",
|
|
78
|
+
"env-paths": "3.0.0",
|
|
79
|
+
"execa": "9.6.1",
|
|
80
|
+
"fflate": "0.8.2",
|
|
81
|
+
"figures": "6.1.0",
|
|
82
|
+
"fuse.js": "7.1.0",
|
|
83
|
+
"get-east-asian-width": "1.5.0",
|
|
84
|
+
"google-auth-library": "9.15.1",
|
|
85
|
+
"https-proxy-agent": "7.0.6",
|
|
86
|
+
"ignore": "7.0.5",
|
|
87
|
+
"indent-string": "5.0.0",
|
|
88
|
+
"jsonc-parser": "3.3.1",
|
|
89
|
+
"lodash-es": "4.17.23",
|
|
90
|
+
"lru-cache": "11.2.7",
|
|
91
|
+
"marked": "15.0.12",
|
|
92
|
+
"p-map": "7.0.4",
|
|
93
|
+
"picomatch": "4.0.4",
|
|
94
|
+
"proper-lockfile": "4.1.2",
|
|
95
|
+
"qrcode": "1.5.4",
|
|
96
|
+
"react": "19.2.4",
|
|
97
|
+
"react-compiler-runtime": "1.0.0",
|
|
98
|
+
"react-reconciler": "0.33.0",
|
|
99
|
+
"semver": "7.7.4",
|
|
100
|
+
"shell-quote": "1.8.3",
|
|
101
|
+
"signal-exit": "4.1.0",
|
|
102
|
+
"stack-utils": "2.0.6",
|
|
103
|
+
"strip-ansi": "7.2.0",
|
|
104
|
+
"supports-hyperlinks": "3.2.0",
|
|
105
|
+
"tree-kill": "1.2.2",
|
|
106
|
+
"turndown": "7.2.2",
|
|
107
|
+
"type-fest": "4.41.0",
|
|
108
|
+
"undici": "7.24.6",
|
|
109
|
+
"usehooks-ts": "3.1.1",
|
|
110
|
+
"vscode-languageserver-protocol": "3.17.5",
|
|
111
|
+
"wrap-ansi": "9.0.2",
|
|
112
|
+
"ws": "8.20.0",
|
|
113
|
+
"xss": "1.0.15",
|
|
114
|
+
"yaml": "2.8.3",
|
|
115
|
+
"zod": "3.25.76"
|
|
116
|
+
},
|
|
117
|
+
"devDependencies": {
|
|
118
|
+
"@types/bun": "1.3.11",
|
|
119
|
+
"@types/node": "25.5.0",
|
|
120
|
+
"@types/react": "19.2.14",
|
|
121
|
+
"typescript": "5.9.3"
|
|
122
|
+
},
|
|
123
|
+
"engines": {
|
|
124
|
+
"node": ">=20.0.0"
|
|
125
|
+
},
|
|
126
|
+
"repository": {
|
|
127
|
+
"type": "git",
|
|
128
|
+
"url": "https://github.com/Izaiaspertrelly/openclaude"
|
|
129
|
+
},
|
|
130
|
+
"keywords": [
|
|
131
|
+
"claude-code",
|
|
132
|
+
"openai",
|
|
133
|
+
"llm",
|
|
134
|
+
"cli",
|
|
135
|
+
"agent",
|
|
136
|
+
"deepseek",
|
|
137
|
+
"ollama",
|
|
138
|
+
"gemini"
|
|
139
|
+
],
|
|
140
|
+
"license": "MIT",
|
|
141
|
+
"publishConfig": {
|
|
142
|
+
"access": "public"
|
|
143
|
+
}
|
|
144
|
+
}
|