-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "leaflet-draggable-lines",
"version": "3.2.1",
"description": "A Leaflet plugin to add/move/remove points on routes, lines and polygons by drag&drop.",
"type": "module",
"main": "./dist/L.DraggableLines.js",
"types": "./dist/L.DraggableLines.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/FacilMap/Leaflet.DraggableLines.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",
"test": "vitest run",
"test-watch": "vitest"
},
"devDependencies": {
"@types/leaflet": "^1.9.12",
"@types/node": "^20.14.10",
"happy-dom": "^14.12.3",
"leaflet": "^1.9.4",
"leaflet-highlightable-layers": "^3.0.1",
"mini-svg-data-uri": "^1.4.4",
"rimraf": "^5.0.7",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"leaflet": "x"
},
"packageManager": "[email protected]"
}