forked from ablakey/Leaflet.SimpleGraticule
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "leaflet-auto-graticule",
"version": "2.0.0",
"description": "Leaflet graticule with automatic adaption to zoom level.",
"type": "module",
"main": "./dist/L.AutoGraticule.js",
"types": "./dist/L.AutoGraticule.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/FacilMap/Leaflet.AutoGraticule.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"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/node": "^22.10.1",
"jsdom": "^23.0.1",
"leaflet": "^1.9.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.0"
},
"peerDependencies": {
"leaflet": "x"
},
"packageManager": "[email protected]"
}