{
  "name": "openapi-typescript-fetch",
  "description": "A typed fetch client for openapi-typescript",
  "version": "2.2.1",
  "engines": {
    "node": ">= 12.0.0",
    "npm": ">= 7.0.0"
  },
  "author": "Ajai Shankar",
  "license": "MIT",
  "module": "dist/index.js",
  "main": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ajaishankar/openapi-typescript-fetch"
  },
  "keywords": [
    "fetch",
    "client",
    "swagger",
    "typescript",
    "ts",
    "openapi",
    "openapi 3",
    "node"
  ],
  "bugs": {
    "url": "https://github.com/ajaishankar/openapi-typescript-fetch/issues"
  },
  "homepage": "https://github.com/ajaishankar/openapi-typescript-fetch#readme",
  "devDependencies": {
    "@types/jest": "^27.0.0",
    "@typescript-eslint/eslint-plugin": "^4.30.0",
    "@typescript-eslint/parser": "^4.31.0",
    "codecov": "^3.8.2",
    "esbuild": "^0.20.1",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.2.5",
    "msw": "^0.35.0",
    "npm-dts": "^1.3.12",
    "prettier": "^2.4.0",
    "rimraf": "^3.0.0",
    "ts-jest": "^27.0.0",
    "ts-node": "^10.0.0",
    "typescript": "^4.4.3",
    "whatwg-fetch": "^3.6.2"
  },
  "prettier": {
    "trailingComma": "all",
    "singleQuote": true,
    "semi": false
  },
  "scripts": {
    "clean": "rimraf './dist'",
    "prebuild": "npm run clean",
    "build": "node build.js",
    "lint": "eslint .",
    "prepack": "npm run test && npm run build",
    "test": "npm run build && jest",
    "test:codecov": "npm run build && jest --no-cache --coverage && codecov",
    "test:coverage": "npm run build && jest --no-cache --collectCoverage",
    "typecheck": "tsc --noEmit --project tsconfig.json"
  }
}
