{
  "name": "@workos/oagen",
  "version": "0.23.0",
  "description": "Framework for building OpenAPI SDK emitters",
  "author": "WorkOS",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "engines": {
    "node": ">=24.10.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/workos/oagen.git"
  },
  "bugs": {
    "url": "https://github.com/workos/oagen/issues"
  },
  "homepage": "https://github.com/workos/oagen#readme",
  "keywords": [
    "openapi",
    "sdk",
    "generator",
    "codegen",
    "api"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./compat": {
      "types": "./dist/compat/index.d.mts",
      "import": "./dist/compat/index.mjs"
    },
    "./verify": {
      "types": "./dist/verify/index.d.mts",
      "import": "./dist/verify/index.mjs"
    },
    "./smoke": {
      "types": "./dist/smoke.d.mts",
      "import": "./dist/smoke.mjs"
    }
  },
  "bin": {
    "oagen": "dist/cli/index.mjs"
  },
  "files": [
    "dist",
    "skills",
    ".claude-plugin",
    "docs",
    "examples"
  ],
  "scripts": {
    "build": "tsdown",
    "dev": "tsx src/cli/index.ts",
    "lint": "oxlint --deny-warnings",
    "lint:fix": "oxlint --fix",
    "format": "oxfmt --check .",
    "format:fix": "oxfmt --write .",
    "format:md": "prettier --write '**/*.md'",
    "lint:all": "oxlint --fix && oxfmt --write . && prettier --write '**/*.md'",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "smoke:raw": "tsx scripts/smoke/raw.ts",
    "smoke:diff": "tsx scripts/smoke/diff.ts",
    "smoke": "tsx scripts/smoke/sdk-test.ts",
    "smoke:baseline": "tsx scripts/smoke/baseline.ts",
    "smoke:validate": "tsx scripts/smoke/validate.ts",
    "smoke:loop": "echo 'Use: oagen generate && oagen verify'",
    "prepare": "husky"
  },
  "dependencies": {
    "@redocly/openapi-core": "^2.25.1",
    "commander": "^13.1.0",
    "dotenv": "^17.3.1",
    "tree-sitter": "^0.21.1",
    "tree-sitter-c-sharp": "0.23.1",
    "tree-sitter-elixir": "^0.3.5",
    "tree-sitter-go": "^0.23.4",
    "tree-sitter-kotlin": "github:fwcd/tree-sitter-kotlin#f66d2908542e93c0204c6c241f794afe4e9cd5d1",
    "tree-sitter-php": "^0.23.12",
    "tree-sitter-python": "^0.21.0",
    "tree-sitter-ruby": "^0.21.0",
    "tree-sitter-rust": "^0.21.0",
    "tree-sitter-typescript": "^0.23.2",
    "tsx": "^4.19.0",
    "typescript": "^6.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@types/node": "^25.3.3",
    "@vitest/coverage-v8": "^4.1.2",
    "husky": "^9.1.7",
    "oxfmt": "^0.36.0",
    "oxlint": "^1.51.0",
    "prettier": "^3.8.1",
    "tsdown": "^0.21.5",
    "vitest": "^4.1.2"
  }
}
