{
  "name": "@yobta/generator",
  "version": "0.0.7",
  "description": "Library that generates Typescript clients based on the OpenAPI specification.",
  "author": "Ferdi Koomen, Pavel Brylev",
  "homepage": "https://github.com/yobta/generator",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "generate-yobta": "bin/index.mjs"
  },
  "files": [
    "bin/index.mjs",
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "dist/**/*.hbs",
    "types/**/*.d.ts"
  ],
  "exports": {
    ".": "./dist/index.js"
  },
  "license": "MIT",
  "keywords": [
    "openapi",
    "swagger",
    "generator",
    "typescript",
    "nextjs",
    "fetch",
    "node"
  ],
  "engines": {
    "node": ">=18.18.0"
  },
  "dependencies": {
    "@apidevtools/json-schema-ref-parser": "^11.1.0",
    "camelcase": "^6.3.0",
    "commander": "^11.0.0",
    "fs-extra": "^11.1.1",
    "handlebars": "^4.7.7",
    "query-string": "^8.1.0"
  },
  "devDependencies": {
    "@babel/cli": "7.22.6",
    "@babel/core": "7.22.8",
    "@babel/preset-env": "7.22.7",
    "@babel/preset-typescript": "7.22.5",
    "@logux/eslint-config": "49.0.0",
    "@types/cross-spawn": "6.0.2",
    "@types/express": "4.17.17",
    "@types/fs-extra": "^11.0.1",
    "@types/glob": "8.1.0",
    "@types/jest": "29.5.3",
    "@types/node": "20.4.1",
    "@types/node-fetch": "2.6.4",
    "@types/qs": "6.9.7",
    "@typescript-eslint/eslint-plugin": "5.61.0",
    "@typescript-eslint/parser": "5.62.0",
    "abort-controller": "3.0.0",
    "axios": "1.4.0",
    "babel-plugin-transform-import-meta": "2.2.1",
    "cross-spawn": "7.0.3",
    "eslint": "8.44.0",
    "eslint-config-prettier": "8.8.0",
    "eslint-config-standard": "17.1.0",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-n": "15.6.1",
    "eslint-plugin-perfectionist": "1.1.0",
    "eslint-plugin-prefer-let": "3.0.1",
    "eslint-plugin-prettier": "4.2.1",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-security": "^1.7.1",
    "eslint-plugin-simple-import-sort": "10.0.0",
    "eslint-plugin-unicorn": "^47.0.0",
    "express": "4.18.2",
    "glob": "10.3.3",
    "jest": "29.6.1",
    "jest-cli": "29.6.1",
    "prettier": "2.8.8",
    "react": "^18",
    "rimraf": "5.0.1",
    "ts-jest": "29.1.1",
    "ts-node": "10.9.1",
    "typescript": "5.1.6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yobta/generator.git"
  },
  "bugs": {
    "url": "https://github.com/yobta/generator/issues"
  },
  "maintainers": [
    {
      "name": "Pavel Brylev",
      "email": "pavel.brylev@supremedesign.ru"
    }
  ],
  "overrides": {
    "typescript": "5.1.6"
  },
  "scripts": {
    "clean": "rimraf ./dist ./test/generated ./templates ./samples/generated ./coverage ./node_modules/.cache",
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "run": "node ./test/index.mjs",
    "test:unit": "jest --coverage --selectProjects UNIT",
    "test:snapshots": "jest --selectProjects UNIT --updateSnapshot",
    "eslint": "eslint .",
    "eslint:fix": "eslint . --fix"
  }
}