UNPKG

geo-ipify

Version:

> Easily get your public IP address, network details, and internet service provider info.

65 lines (64 loc) 1.23 kB
{ "version": "1.3.5", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": "*" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "repository": { "type": "git", "url": "git+https://github.com/obayomi96/geoIpify.git" }, "keywords": [ "network", "ip address", "isp", "node", "api" ], "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "geo-ipify", "author": "obayomi96", "type": "module", "module": "dist/geo-ipify.esm.js", "size-limit": [ { "path": "dist/geo-ipify.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/geo-ipify.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^11.0.1", "husky": "^8.0.3", "size-limit": "^11.0.1", "tsdx": "^0.14.1", "tslib": "^2.6.2", "typescript": "^5.3.3" }, "dependencies": { "axios": "^1.6.3" } }