chore: publish @gitlawb/openclaude package

This commit is contained in:
Kevin
2026-04-01 10:52:59 +08:00
parent 770e16dadb
commit 958f8c1869
2 changed files with 15 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ All of Claude Code's tools work — bash, file read/write/edit, grep, glob, agen
### Option A: npm (recommended) ### Option A: npm (recommended)
```bash ```bash
npm install -g openclaude npm install -g @gitlawb/openclaude
``` ```
### Option B: From source (requires Bun) ### Option B: From source (requires Bun)
@@ -68,6 +68,8 @@ node dist/cli.mjs
That's it. The tool system, streaming, file editing, multi-step reasoning — everything works through the model you picked. That's it. The tool system, streaming, file editing, multi-step reasoning — everything works through the model you picked.
The npm package name is `@gitlawb/openclaude`, but the installed CLI command is still `openclaude`.
--- ---
## Provider Examples ## Provider Examples

View File

@@ -1,11 +1,16 @@
{ {
"name": "openclaude", "name": "@gitlawb/openclaude",
"version": "0.1.0", "version": "0.1.0",
"description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models", "description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
"type": "module", "type": "module",
"bin": { "bin": {
"openclaude": "./bin/openclaude" "openclaude": "./bin/openclaude"
}, },
"files": [
"bin/",
"dist/cli.mjs",
"README.md"
],
"scripts": { "scripts": {
"build": "bun run scripts/build.ts", "build": "bun run scripts/build.ts",
"dev": "bun run build && node dist/cli.mjs", "dev": "bun run build && node dist/cli.mjs",
@@ -26,7 +31,8 @@
"doctor:runtime:json": "bun run scripts/system-check.ts --json", "doctor:runtime:json": "bun run scripts/system-check.ts --json",
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json", "doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
"hardening:check": "bun run smoke && bun run doctor:runtime", "hardening:check": "bun run smoke && bun run doctor:runtime",
"hardening:strict": "bun run typecheck && bun run hardening:check" "hardening:strict": "bun run typecheck && bun run hardening:check",
"prepack": "npm run build"
}, },
"dependencies": { "dependencies": {
"@alcalzone/ansi-tokenize": "^0.3.0", "@alcalzone/ansi-tokenize": "^0.3.0",
@@ -123,5 +129,8 @@
"ollama", "ollama",
"gemini" "gemini"
], ],
"license": "MIT" "license": "MIT",
"publishConfig": {
"access": "public"
}
} }