-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "leaflet-highlightable-layers",
"version": "3.0.1",
"description": "Highlight Leaflet lines and polygons by adding a border and raise them above others. Add a transparent border to increase the tolerance for mouse/touch interactions.",
"type": "module",
"main": "./dist/L.HighlightableLayers.js",
"types": "./dist/L.HighlightableLayers.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/FacilMap/Leaflet.HighlightableLayers.git"
},
"license": "BSD-2-Clause",
"files": [
"example.html",
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"clean": "rimraf dist",
"dev-server": "vite",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@types/leaflet": "^1.9.11",
"@types/node": "^22.10.1",
"leaflet": "^1.9.4",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-css-injected-by-js": "^3.5.0",
"vite-plugin-dts": "^3.8.3"
},
"peerDependencies": {
"leaflet": "x"
},
"packageManager": "[email protected]"
}