czdb
Version:
A javascript library for searching IP address-related data in a CZDB database
51 lines • 1.21 kB
JSON
{
"name": "czdb",
"version": "0.4.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.0.0-beta2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.10",
"eslint": "^9.11.1",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0"
},
"scripts": {
"test": "tsx example/index.ts",
"build": "rollup -c",
"build-tsc": "tsc"
}
}