{
  "name": "aipi",
  "version": "1.2.0",
  "description": "Get info for an IP from any echoip instance",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs"
  },
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "author": "Alberto Rico",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alrico88/aipi"
  },
  "sideEffects": false,
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.33.0",
    "c8": "^7.11.2",
    "coveralls": "^3.1.1",
    "eslint": "^7.32.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-airbnb-typescript": "^14.0.2",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "husky": "^7.0.4",
    "tslib": "^2.4.0",
    "tsup": "^5.12.7",
    "typedoc": "^0.22.15",
    "typedoc-plugin-markdown": "^3.12.1",
    "typescript": "^4.6.4",
    "vitest": "^0.10.5"
  },
  "keywords": [
    "echoip",
    "geography",
    "IP"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "pnpm run lint"
    }
  },
  "dependencies": {
    "axios": "^1.1.3"
  },
  "scripts": {
    "dev": "pnpm run build -- --watch src",
    "build": "tsup src/index.ts --format cjs,esm --dts --clean",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "lint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.js src",
    "docs": "typedoc src/index.ts --readme README.md --gitRevision master",
    "prepublish": "pnpm run build",
    "coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  }
}