{
  "name": "netcup-node",
  "version": "0.0.13",
  "description": "A node wrapper for the Netcup CCP API (https://www.netcup-wiki.de/wiki/CCP_API)",
  "author": "proohit <direnc99@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/proohit/netcup-node.git"
  },
  "bugs": {
    "url": "https://github.com/proohit/netcup-node/issues"
  },
  "keywords": [
    "node",
    "netcup",
    "ccp"
  ],
  "scripts": {
    "prebuild": "rimraf lib",
    "build": "npm run build:esm && npm run build:cjs",
    "postbuild": "hybrid-package-json --target-esm lib/esm --target-cjs lib/cjs",
    "build:esm": "tsc -p tsconfig.esm.json && tsc-esm-fix --target=lib/esm",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:watch": "tsc -w -p tsconfig.release.json",
    "lint": "eslint . --ext .ts,.tsx",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "docs": "typedoc src/index.ts",
    "docs:release": "npm run docs && git add docs && git commit -m 'chore: update docs'",
    "prerelease": "npm run build && npm run docs:release",
    "release": "npm login && bump --tag && npm publish",
    "postrelease": "git push && git push --tags"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "lib/cjs/src/index.js",
  "module": "lib/esm/src/index.js",
  "types": "lib/types/src/index.d.ts",
  "files": [
    "lib"
  ],
  "exports": {
    "import": "./lib/esm/src/index.js",
    "require": "./lib/cjs/src/index.js"
  },
  "dependencies": {
    "axios": "^0.27.2",
    "public-ip": "^5.0.0",
    "tslib": "~2.1.0"
  },
  "devDependencies": {
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.29",
    "@typescript-eslint/eslint-plugin": "^5.21.0",
    "@typescript-eslint/parser": "^5.21.0",
    "eslint": "^8.14.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jest": "^26.1.5",
    "hybrid-package-json": "^0.0.1",
    "jest": "^27.5.1",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.1.4",
    "tsc-esm-fix": "^2.13.0",
    "tsutils": "^3.21.0",
    "typedoc": "^0.23.21",
    "typescript": "^4.6.3",
    "version-bump-prompt": "^6.1.0"
  },
  "engines": {
    "node": ">= 12.20"
  }
}
