-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "astro-leaflet",
"version": "1.12.0",
"description": "Leaflet astro component, to display maps: Google Maps, Openstreetmap, maps from Michelin, googlemaps, Open Street Map...",
"type": "module",
"main": "index.js",
"scripts": {
"format": "biome format --write && prettier -w \"**/*.astro\"",
"lint": "biome lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pascal-brand38/astro-leaflet.git"
},
"author": "Pascal Brand",
"license": "MIT",
"bugs": {
"url": "https://github.com/pascal-brand38/astro-leaflet/issues"
},
"homepage": "https://pascal-brand38.github.io/astro-dev/packages/astro-leaflet/",
"exports": {
".": {
"types": "./index.ts",
"default": "./index.ts"
},
"./client": "./src/client.ts",
"./leaflet": "./leaflet.ts"
},
"files": [
"index.ts",
"leaflet.ts",
"src/**"
],
"dependencies": {
"@types/leaflet": "^1.9.20",
"leaflet": "^1.9.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/node": "^24.0.14",
"astro": "^5.12.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.8.3"
},
"keywords": [
"leaflet",
"withastro",
"astro-component",
"image",
"map",
"Google Map",
"googlemap",
"openstreetmap",
"michelin"
]
}