UNPKG

ipquery

Version:
65 lines 1.74 kB
{ "name": "ipquery", "description": "ipquery sdk for javascript", "version": "0.0.2", "keywords": [ "ip", "ipapi", "ipquery", "ip-address", "ip-lookup", "ip-geolocation" ], "license": "MIT", "author": "Fernando Coelho", "repository": { "type": "git", "url": "git+https://github.com/fgcoelho/ipquery-js.git" }, "homepage": "https://github.com/fgcoelho/ipquery-js.git", "files": [ "dist" ], "type": "module", "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { ".": "./dist/index.cjs" }, "typesVersions": { "*": { ".": [ "./dist/index.d.cts" ] } }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/node": "^22.14.0", "terser": "^5.39.0", "tsup": "8.4.0", "typescript": "^5.8.3", "vitest": "^3.1.1", "vitest-fetch-mock": "^0.4.5" }, "publishConfig": { "access": "public" }, "scripts": { "------------- toolchain -------------": "-------------", "format": "biome format --write", "lint": "biome lint --error-on-warnings", "typecheck": "tsc --noEmit", "run-test": "vitest run", "check": "pnpm run-test && pnpm typecheck && pnpm lint", "------------- dev -------------": "-------------", "dev": "pnpm tsup --env.mode dev", "test": "vitest", "------------- build -------------": "-------------", "build": "rm -rf dist && pnpm tsup --env.mode release", "bundlesize": "pnpm build --metafile && npm pack --dry-run", "bundlesize:dev": "pnpm tsup --metafile && npm pack --dry-run", "------------- release -------------": "-------------", "release": "pnpm check && pnpm build && pnpm publish --no-git-checks" } }