{
  "name": "codex2claudecode",
  "version": "0.2.5",
  "description": "Bun-powered Claude-compatible local API for Codex and Kiro credentials.",
  "author": "alvin0 <chaulamdinhai@gmail.com>",
  "license": "MIT",
  "engines": {
    "bun": ">=1.3.0"
  },
  "packageManager": "bun@1.3.13",
  "homepage": "https://github.com/alvin0/codex2claudecode#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alvin0/codex2claudecode.git"
  },
  "bugs": {
    "url": "https://github.com/alvin0/codex2claudecode/issues"
  },
  "keywords": [
    "bun",
    "codex",
    "claude",
    "claude-code",
    "openai",
    "kiro"
  ],
  "type": "module",
  "bin": {
    "codex2claudecode": "./bin/codex2claudecode"
  },
  "files": [
    "bin",
    "dist/index.js",
    "images",
    "src",
    "kiro-models.json",
    "models.json",
    "index.ts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "bun build index.ts --target=bun --outfile=dist/index.js",
    "build:compile": "bun run scripts/build-standalone.ts",
    "build:compile:all": "bun run scripts/build-standalone.ts --all",
    "start": "bun index.ts",
    "dev": "bun --watch index.ts",
    "example": "CODEX_RUN_EXAMPLE=1 bun index.ts",
    "typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit",
    "check": "bun run typecheck && bun run build",
    "prepublishOnly": "bun run build",
    "test": "bun test test/ --test-name-pattern='^(?!.*live Codex smoke test)'",
    "coverage": "bunx --bun vitest run --config vitest.config.ts --coverage --coverage.provider=istanbul --testNamePattern='^(?!.*live Codex smoke test)'",
    "test:live": "CODEX_AUTH_FILE=auth-codex.json bun test test/live.test.ts",
    "test:kiro:api": "bun scripts/kiro-api-smoke.ts"
  },
  "dependencies": {
    "gpt-tokenizer": "^3.4.0",
    "ink": "^7.0.1",
    "react": "^19.2.5",
    "react-devtools-core": "^7.0.1"
  },
  "devDependencies": {
    "@types/bun": "^1.3.13",
    "@types/react": "^19.2.14",
    "@vitest/coverage-istanbul": "4.1.5",
    "fast-check": "^4.7.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  }
}
