-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.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
{
"name": "leaflet-highlightable-layers",
"version": "4.0.4",
"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",
"dev-server-leaflet2": "LEAFLET=2 vite",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@types/leaflet": "^1.9.16",
"@types/node": "^22.13.9",
"leaflet": "^1.9.4",
"leaflet2": "npm:leaflet@2.0.0-alpha.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.3"
},
"peerDependencies": {
"leaflet": "x"
},
"packageManager": "yarn@4.7.0"
}