-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "react-leaflet-heat-layer",
"version": "1.1.1",
"description": "React-leaflet-heat-layer is a plugin for react-leaflet. A wrapper component of Leaflet.heat.",
"keywords": [
"React",
"Leaflet",
"heatmap",
"heat",
"react-leaflet-v4"
],
"homepage": "https://github.com/LockBlock-dev/react-leaflet-heat-layer#readme",
"bugs": {
"url": "https://github.com/LockBlock-dev/react-leaflet-heat-layer/issues"
},
"license": "MIT",
"author": "LockBlock-dev",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/lockblock"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/LockBlock-dev/react-leaflet-heat-layer.git"
},
"scripts": {
"build": "tsc && npm run minify",
"minify": "uglifyjs --compress --mangle --output dist/index.min.js -- dist/index.js"
},
"dependencies": {
"leaflet.heat": "github:Leaflet/Leaflet.heat"
},
"peerDependencies": {
"leaflet": ">=1.8.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-leaflet": ">=4.0.0"
},
"devDependencies": {
"@react-leaflet/core": "^2.1.0",
"@types/leaflet": "^1.9.12",
"@types/leaflet.heat": "^0.2.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"uglify-js": "^3.19.1"
}
}