-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "react-leaflet-cluster",
"version": "4.1.3",
"description": "React-leaflet-cluster is a plugin for react-leaflet. A wrapper component of Leaflet.markercluster.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.tsx --format esm --dts --clean --external @react-leaflet/core && npm run copy:assets",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"copy:assets": "cpx 'src/assets/**' 'dist/assets'"
},
"dependencies": {
"leaflet.markercluster": "^1.5.3"
},
"peerDependencies": {
"@react-leaflet/core": "^3.0.0",
"leaflet": "^1.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-leaflet": "^5.0.0"
},
"devDependencies": {
"@types/leaflet": "^1.9.0",
"@types/leaflet.markercluster": "^1.5.4",
"@types/node": "^14.18.21",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cpx": "^1.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"react-leaflet": "^5.0.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3"
},
"author": "akursat",
"homepage": "https://akursat.gitbook.io/marker-cluster/",
"license": "SEE LICENSE IN LICENSE",
"repository": "https://github.com/akursat/react-leaflet-cluster",
"keywords": [
"react",
"leaflet",
"marker-cluster",
"cluster",
"map",
"react-leaflet-v4"
]
}