-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.04 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "netcluster-js",
"version": "0.3.0",
"description": "Fully dynamic hierarchical geospatial clustering. Move a point in ~2us instead of rebuilding the index.",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./redis": {
"types": "./server/redis-netcluster.d.ts",
"default": "./server/redis-netcluster.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"server",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"keywords": [
"clustering",
"marker-clustering",
"geospatial",
"supercluster",
"map",
"maps",
"markers",
"gis",
"realtime",
"incremental",
"dynamic",
"streaming",
"moving-points",
"fleet-tracking",
"spatial-index",
"cover-tree",
"net-tree",
"quadtree",
"kdtree",
"geojson",
"mapbox",
"mapbox-gl",
"leaflet",
"maplibre",
"web-mercator",
"redis",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/renatex314/NetCluster.git"
},
"bugs": {
"url": "https://github.com/renatex314/NetCluster/issues"
},
"homepage": "https://github.com/renatex314/NetCluster#readme",
"license": "MIT",
"scripts": {
"test": "node --stack-size=8000 test/invariants.js && node test/api.js && node test/geojson.js && node --stack-size=8000 test/filter.js && node test/demo-headless.js && node examples/basic.js > /dev/null && node test/demo-leaflet-headless.js && npm run -s test:types",
"test:redis": "node test/redis-integration.js",
"bench": "node --max-old-space-size=8192 bench/throughput.js && node --expose-gc --max-old-space-size=8192 bench/ops.js && node --max-old-space-size=8192 bench/quality.js && node --max-old-space-size=8192 bench/stability.js && node --max-old-space-size=8192 bench/convergence.js && node --max-old-space-size=8192 bench/hysteresis.js && node --max-old-space-size=8192 bench/density.js && node --expose-gc --max-old-space-size=8192 bench/filter.js && node --expose-gc --max-old-space-size=8192 bench/geojson.js",
"bench:redis": "node --max-old-space-size=8192 bench/redis-throughput.js && node --max-old-space-size=8192 bench/redis-blocking.js && node --max-old-space-size=8192 bench/redis-batchsize.js",
"build": "node scripts/bundle.js && node scripts/gen-figure.js && node scripts/build-report.js",
"serve": "node server/server.js",
"example": "node examples/basic.js",
"example:redis": "node examples/redis.js",
"test:types": "tsc -p test/types/tsconfig.json",
"demo": "python3 -m http.server 8944"
},
"dependencies": {},
"peerDependencies": {
"fastify": ">=4",
"ioredis": ">=5"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"fastify": {
"optional": true
}
},
"devDependencies": {
"fastify": "^5.12.1",
"ioredis": "^6.0.0",
"supercluster": "^8.0.1",
"typescript": "^5.9.3"
}
}