-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.15 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
{
"name": "react-map-gl-supercluster",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khmm12/react-map-gl-supercluster.git"
},
"sideEffects": false,
"type": "module",
"exports": {
"./mapbox": {
"types": "./dist/exports-mapbox.d.ts",
"import": "./dist/exports-mapbox.js"
},
"./maplibre": {
"types": "./dist/exports-maplibre.d.ts",
"import": "./dist/exports-maplibre.js"
},
"./mapbox-legacy": {
"types": "./dist/exports-mapbox-legacy.d.ts",
"import": "./dist/exports-mapbox-legacy.js"
}
},
"files": [
"dist"
],
"keywords": [
"react-map-gl",
"supercluster",
"clustering",
"react"
],
"packageManager": "pnpm@11.0.6+sha512.97f906e1da2bedac3df83cadae04b4753a130092dd49d55cd36825ad3e623e9df3f97754f8f259e699172a360fac569acf2f908e7732bdae3eddb2dcf7e121fd",
"scripts": {
"build": "rm -rf dist && tsc -b tsconfig.lib.json --force",
"example": "vite example",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"lint": "biome check",
"test": "vitest run --coverage",
"typecheck": "tsc -b --pretty --force"
},
"dependencies": {
"@types/react": "^19.2.14",
"@types/supercluster": "^7.1.3",
"dequal": "^2.0.3",
"esm-env": "^1.2.2",
"supercluster": "^8.0.1"
},
"peerDependencies": {
"mapbox-gl": "*",
"maplibre-gl": "*",
"react": ">=16.8.0",
"react-dom": "*",
"react-map-gl": "^8"
},
"peerDependenciesMeta": {
"mapbox-gl": {
"optional": true
},
"maplibre-gl": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@tsconfig/vite-react": "^7.0.2",
"@types/node": "^25.6.0",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"jsdom": "^29.1.1",
"mapbox-gl": "^3.23.0",
"maplibre-gl": "^5.24.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-map-gl": "^8.1.1",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}