-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-map-gl-supercluster",
"version": "2.0.2",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "./dist/exports-mapbox.js",
"module": "./dist/exports-mapbox.js",
"types": "./dist/exports-mapbox.d.ts",
"exports": {
".": {
"types": "./dist/exports-mapbox.d.ts",
"import": "./dist/exports-mapbox.js"
},
"./mapbox": {
"types": "./dist/exports-mapbox.d.ts",
"import": "./dist/exports-mapbox.js"
},
"./maplibre": {
"types": "./dist/exports-maplibre.d.ts",
"import": "./dist/exports-maplibre.js"
}
},
"files": [
"dist",
"mapbox",
"maplibre"
],
"keywords": [
"react-map-gl",
"supercluster",
"clustering",
"react"
],
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf dist && tsc",
"typecheck": "tsc --noEmit --pretty"
},
"dependencies": {
"@types/react": ">=16.8.0",
"@types/supercluster": "^7.1.0",
"dequal": "^2.0.3",
"supercluster": "^8.0.1"
},
"peerDependencies": {
"mapbox-gl": "*",
"maplibre-gl": "*",
"react": ">=16.8.0",
"react-dom": "*",
"react-map-gl": "^7"
},
"peerDependenciesMeta": {
"mapbox-gl": {
"optional": true
},
"maplibre-gl": {
"optional": true
}
},
"devDependencies": {
"maplibre-gl": "^3.3.0",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-map-gl": "^7.1.5",
"typescript": "^5.2.2"
}
}