{
  "name": "react-openapi-client",
  "description": "Consume OpenAPI-enabled APIs with React Hooks",
  "version": "0.2.2",
  "author": "Viljami Kuosmanen <viljami@viljami.io>",
  "license": "MIT",
  "keywords": [
    "react",
    "useOperation",
    "openapi",
    "swagger",
    "client",
    "axios",
    "frontend",
    "browser",
    "typescript"
  ],
  "homepage": "https://github.com/anttiviljami/react-openapi-client",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anttiviljami/react-openapi-client.git"
  },
  "bugs": {
    "url": "https://github.com/anttiviljami/react-openapi-client/issues"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "*.js",
    "*.d.ts",
    "**/*.js",
    "**/*.d.ts",
    "!*.test.*",
    "!**/*.test.*",
    "!node_modules",
    "!src",
    "!*.config.js"
  ],
  "peerDependencies": {
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "axios": "^0.24.0"
  },
  "dependencies": {
    "openapi-client-axios": "^4.4.9"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/react-hooks": "^7.0.2",
    "@types/jest": "^25.1.4",
    "@types/node": "^13.9.8",
    "@types/react": "^16.9.30",
    "@types/react-dom": "^16.9.5",
    "axios": "^0.24.0",
    "isomorphic-fetch": "^2.2.1",
    "jest": "^27.4.4",
    "js-yaml": "^4.1.0",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-test-renderer": "^17.0.2",
    "ts-jest": "^27.1.1",
    "typescript": "^4.5.3"
  },
  "scripts": {
    "build": "tsc",
    "watch-build": "tsc -w",
    "prettier": "prettier --write src/** __tests__/**",
    "prepare": "npm run build",
    "test": "NODE_ENV=test jest"
  }
}