{
  "name": "@use-api/axios",
  "version": "0.0.1",
  "description": "Access APIs using hooks",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "test": "jest",
    "clean": "rimraf lib",
    "build": "tsc --project ./tsconfig.json",
    "prepublishOnly": "run-s clean build",
    "build:watch": "tsc --project ./tsconfig.json --watch --preserveWatchOutput --pretty"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/devzeebo/use-api.git"
  },
  "keywords": [
    "react",
    "hooks",
    "api",
    "axios",
    "fetch"
  ],
  "author": "Eric Siebeneich <eric.siebeneich@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/devzeebo/use-api/issues"
  },
  "homepage": "https://github.com/devzeebo/use-api#readme",
  "peerDependencies": {
    "axios": "^0.21.0",
    "react": "^16.8.0 || ^17.0.0"
  },
  "devDependencies": {
    "@types/axios": "^0.14.0",
    "axios": "^0.21.1",
    "npm-check-updates": "^11.8.2"
  },
  "dependencies": {
    "@use-api/core": "^0.0.1"
  },
  "publishConfig": {
    "access": "public"
  }
}