{
  "name": "openapi-ts-json-schema",
  "type": "module",
  "version": "3.0.0",
  "description": "Generate TypeScript-first JSON schemas from OpenAPI definitions",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "openapi-ts-json-schema": "./dist/cli/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rimraf ./dist && tsc -p tsconfig.build.json",
    "test": "npm run test:build && vitest --config ./vitest.config.mts",
    "test:build": "npm --prefix ./examples/fastify-integration-plugin run generate-schemas",
    "test:heavy": "RUN_HEAVY_TESTS=1 npm test",
    "prepare": "npx simple-git-hooks && npm run test -- --run && npm run source:check && npm run build",
    "release": "npm run prepare && npx changeset publish",
    "prettier:check": "prettier . --check",
    "prettier:fix": "npm run prettier:check -- --write",
    "type:check": "tsc --noEmit",
    "source:check": "npm run prettier:check && npm run type:check",
    "source:fix": "npm run prettier:fix"
  },
  "keywords": [
    "openapi",
    "json",
    "schema",
    "typescript",
    "openapi to json schema"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/toomuchdesign/openapi-ts-json-schema.git"
  },
  "author": "Andrea Carraro <me@andreacarraro.it>",
  "license": "ISC",
  "devDependencies": {
    "@changesets/changelog-github": "^0.7.0",
    "@changesets/cli": "^2.26.2",
    "@fastify/swagger": "^9.1.0",
    "@fastify/swagger-ui": "^5.0.1",
    "@fastify/type-provider-json-schema-to-ts": "^5.0.0",
    "@trivago/prettier-plugin-sort-imports": "^6.0.0",
    "@tsconfig/node20": "^20.1.8",
    "@types/lodash.get": "^4.4.7",
    "@vitest/coverage-v8": "^4.0.9",
    "desm": "^1.3.1",
    "expect-type": "^1.1.0",
    "fastify": "^5.0.0",
    "json-schema-to-ts": "^3.1.1",
    "rimraf": "^6.0.0",
    "simple-git-hooks": "^2.9.0",
    "tsx": "^4.21.0",
    "typescript": "^5.1.6",
    "vitest": "^4.0.9"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "simple-git-hooks": {
    "pre-commit": "npm run source:check && npm test -- --run"
  },
  "dependencies": {
    "@apidevtools/json-schema-ref-parser": "^15.1.3",
    "@openapi-contrib/openapi-schema-to-json-schema": "^5.1.0",
    "citty": "^0.2.2",
    "filenamify": "^7.0.1",
    "jiti": "^2.7.0",
    "json-schema-traverse": "^1.0.0",
    "lodash.get": "^4.4.2",
    "namify": "^0.1.3",
    "openapi-jsonschema-parameters": "^12.1.3",
    "openapi3-ts": "^4.3.1",
    "prettier": "^3.0.1",
    "type-fest": "^5.3.1"
  }
}
