-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
46 lines (46 loc) · 1006 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "kdbush",
"version": "4.0.2",
"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": "^0.4.4",
"eslint": "^9.10.0",
"eslint-config-mourner": "^4.0.2",
"rollup": "^4.21.2",
"typescript": "^5.6.2"
},
"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"
}