{ "name": "kdbush", "version": "4.1.0", "description": "A very fast static 2D index for points based on kd-tree.", "type": "module", "main": "kdbush.js", "module": "index.js", "exports": "./index.js", "types": "index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "git://github.com/mourner/kdbush.git" }, "devDependencies": { "@rollup/plugin-terser": "^1.0.0", "eslint": "^10.4.0", "eslint-config-mourner": "^4.1.0", "rollup": "^4.60.4", "typescript": "^6.0.3" }, "scripts": { "pretest": "eslint", "test": "tsc && node test.js", "bench": "node bench.js", "build": "rollup -c", "prepublishOnly": "npm run test && npm run build" }, "keywords": [ "index", "points", "kd-tree", "data structures", "algorithms", "spatial", "geometry" ], "files": [ "kdbush.js", "kdbush.min.js", "index.js", "index.d.ts" ], "author": "Vladimir Agafonkin", "license": "ISC" }