{
  "name": "czdb",
  "version": "1.0.0",
  "description": "A javascript library for searching IP address-related data in a CZDB database",
  "main": "dist/index.cjs",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/es/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "types": "dist/index.d.ts",
  "keywords": [
    "node",
    "ip",
    "ip2region",
    "czip",
    "czdb",
    "cz"
  ],
  "author": "LIMKIM",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/limkim0530/czdb-search-node"
  },
  "homepage": "https://github.com/limkim0530/czdb-search-node#readme",
  "license": "MIT",
  "dependencies": {
    "@msgpack/msgpack": "^3.1.2"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.1",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/node": "^22.19.1",
    "eslint": "^9.39.1",
    "rollup": "^4.53.3",
    "rollup-plugin-dts": "^6.2.3",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.47.0"
  },
  "scripts": {
    "build": "rollup -c",
    "build-tsc": "tsc",
    "lint": "eslint src",
    "test": "tsx example/index.ts"
  }
}