智慧水务管理系统 - 精河县供水工程综合管理平台

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "kdbush",
  3. "version": "4.1.0",
  4. "description": "A very fast static 2D index for points based on kd-tree.",
  5. "type": "module",
  6. "main": "kdbush.js",
  7. "module": "index.js",
  8. "exports": "./index.js",
  9. "types": "index.d.ts",
  10. "sideEffects": false,
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/mourner/kdbush.git"
  14. },
  15. "devDependencies": {
  16. "@rollup/plugin-terser": "^1.0.0",
  17. "eslint": "^10.4.0",
  18. "eslint-config-mourner": "^4.1.0",
  19. "rollup": "^4.60.4",
  20. "typescript": "^6.0.3"
  21. },
  22. "scripts": {
  23. "pretest": "eslint",
  24. "test": "tsc && node test.js",
  25. "bench": "node bench.js",
  26. "build": "rollup -c",
  27. "prepublishOnly": "npm run test && npm run build"
  28. },
  29. "keywords": [
  30. "index",
  31. "points",
  32. "kd-tree",
  33. "data structures",
  34. "algorithms",
  35. "spatial",
  36. "geometry"
  37. ],
  38. "files": [
  39. "kdbush.js",
  40. "kdbush.min.js",
  41. "index.js",
  42. "index.d.ts"
  43. ],
  44. "author": "Vladimir Agafonkin",
  45. "license": "ISC"
  46. }