claude-code-openai 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.
@@ -0,0 +1,3 @@
1
+ This project is dual-licensed under the Unlicense and MIT licenses.
2
+
3
+ You may use this code under the terms of either license.
Binary file
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "claude-code-openai",
3
+ "version": "0.1.0",
4
+ "description": "Claude Code CLI with OpenAI GPT-5.4 backend support",
5
+ "type": "module",
6
+ "bin": {
7
+ "claude-openai": "./dist/claude-openai.js"
8
+ },
9
+ "keywords": ["claude", "openai", "gpt-5.4", "cli", "ai", "coding-assistant"],
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/nicepkg/claude-code-openai"
14
+ },
15
+ "engines": {
16
+ "node": ">=18.0.0"
17
+ },
18
+ "scripts": {
19
+ "build": "bun run build.ts",
20
+ "dev": "bun src/main.tsx",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "files": [
24
+ "dist/cli.js",
25
+ "dist/claude-openai.js",
26
+ "dist/vendor/**/*",
27
+ "README.md"
28
+ ],
29
+ "dependencies": {},
30
+ "devDependencies": {}
31
+ }