{
  "name": "zinfer",
  "version": "0.4.7",
  "description": "Extract input/output types from Zod schemas",
  "keywords": [
    "schema",
    "type-extraction",
    "typescript",
    "zod",
    "zod-to-ts"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/toiroakr/zinfer.git",
    "directory": "packages/zinfer"
  },
  "bin": {
    "zinfer": "./bin/zinfer"
  },
  "files": [
    "bin",
    "dist"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "commander": "^15.0.0",
    "glob": "^13.0.6",
    "jiti": "^2.7.0",
    "pathe": "^2.0.3",
    "ts-morph": "^28.0.0"
  },
  "devDependencies": {
    "@types/node": "25.9.5",
    "@typescript/native-preview": "7.0.0-dev.20260707.2",
    "@zinfer-monorepo/core": "0.0.0",
    "knip": "6.34.0",
    "oxfmt": "0.67.0",
    "oxlint": "1.82.0",
    "tsdown": "0.23.0",
    "typescript": "7.0.2",
    "vitest": "5.0.0",
    "zod": "4.6.5"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0",
    "zod": ">=3.25.76"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsgo --noEmit",
    "typecheck:tsc": "tsc --noEmit",
    "lint": "oxlint",
    "format": "oxfmt --write .",
    "format:check": "oxfmt --check .",
    "knip": "knip",
    "generate:type-tests": "node ./dist/cli.js 'tests/fixtures/*.ts' --outDir tests/__file_snapshots__ --outPattern '[name].ts' --generate-tests --suffix Schema"
  }
}