@jcanizalez7/clauxy 0.1.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/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@jcanizalez7/clauxy",
3
+ "version": "0.1.0",
4
+ "description": "Multi-provider AI proxy for Claude Code (GitHub Copilot, ChatGPT Plus, Google Gemini)",
5
+ "type": "module",
6
+ "bin": {
7
+ "claux": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build ./cli.ts --outdir ./dist --target=node",
14
+ "prepare": "bun run build",
15
+ "start": "bun run cli.ts run",
16
+ "dev": "bun --watch cli.ts run",
17
+ "connect": "bun run cli.ts run -c",
18
+ "auth": "bun run cli.ts auth list",
19
+ "model": "bun run cli.ts model",
20
+ "help": "bun run cli.ts --help",
21
+ "test": "bun test",
22
+ "test:cli": "bun test test/cli",
23
+ "test:converters": "bun test test/converter*.test.ts",
24
+ "test:models": "bun test test/models.test.ts",
25
+ "test:providers": "bun test test/providers.test.ts"
26
+ },
27
+ "keywords": [
28
+ "claude",
29
+ "copilot",
30
+ "proxy",
31
+ "github",
32
+ "chatgpt",
33
+ "gemini"
34
+ ],
35
+ "author": "",
36
+ "license": "MIT",
37
+ "dependencies": {
38
+ "@clack/prompts": "^0.9.1",
39
+ "citty": "^0.1.6",
40
+ "zod": "^3.24.1"
41
+ }
42
+ }