{
  "name": "typed-openapi",
  "type": "module",
  "version": "2.2.6",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./node": "./dist/node.export.js",
    "./pretty": "./dist/pretty.export.js"
  },
  "bin": {
    "typed-openapi": "bin.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/astahmer/typed-openapi.git",
    "directory": "packages/typed-openapi"
  },
  "dependencies": {
    "@apidevtools/swagger-parser": "^12.1.0",
    "@sinclair/typebox-codegen": "^0.11.1",
    "arktype": "2.2.0",
    "cac": "7.0.0",
    "openapi3-ts": "4.5.0",
    "oxfmt": "0.45.0",
    "pastable": "^2.2.1",
    "pathe": "2.0.3",
    "ts-pattern": "^5.9.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.30.0",
    "@tanstack/react-query": "5.99.0",
    "@types/node": "^25.6.0",
    "msw": "2.13.3",
    "tstyche": "7.0.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.2",
    "vite": "7.3.2",
    "vitest": "^4.1.4",
    "zod": "4.3.6"
  },
  "files": [
    "src",
    "dist",
    "cli",
    "README.md"
  ],
  "keywords": [
    "typescript",
    "openapi",
    "generator",
    "runtime",
    "typesafe",
    "zod",
    "arktype",
    "typebox",
    "valibot",
    "yup",
    "io-ts"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "node ./dist/cli.js",
    "dev": "tsup --watch",
    "build": "tsup",
    "test": "vitest",
    "test:types": "tstyche",
    "gen:runtime": "node bin.js ./tests/samples/petstore.yaml --output ./tmp/generated-client.ts --tanstack generated-tanstack.ts --default-fetcher",
    "test:runtime:run": "vitest run tests/integration-runtime-msw.test.ts",
    "test:runtime": "pnpm run gen:runtime && pnpm run test:runtime:run",
    "fmt": "oxfmt --write src tests",
    "typecheck": "tsc -b ./tsconfig.build.json"
  }
}