-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
48 lines (48 loc) · 1.08 KB
/
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
47
48
{
"name": "flatbush",
"version": "4.4.0",
"description": "Fast static spatial index for rectangles",
"author": "Vladimir Agafonkin",
"license": "ISC",
"type": "module",
"main": "flatbush.js",
"module": "index.js",
"exports": "./index.js",
"sideEffects": false,
"types": "index.d.ts",
"scripts": {
"pretest": "eslint index.js test.js bench.js",
"test": "tsc && node --test",
"build": "rollup index.js -o flatbush.js -n Flatbush -f umd -p node-resolve",
"prepublishOnly": "tsc && npm run build"
},
"files": [
"index.js",
"index.d.ts",
"flatbush.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mourner/flatbush.git"
},
"keywords": [
"geometry",
"spatial",
"tree",
"index",
"rectangle",
"search"
],
"dependencies": {
"flatqueue": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"eslint": "^9.11.1",
"eslint-config-mourner": "^4.0.2",
"rbush": "^4.0.1",
"rbush-knn": "^4.0.0",
"rollup": "^4.24.0",
"typescript": "^5.6.2"
}
}