-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.62 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
59
60
61
62
63
64
65
66
{
"name": "osm-static-maps",
"version": "5.0.0",
"description": "Create a static image of a map with the features you want",
"author": "Julian Perelli",
"contributors": [
{
"name": "Julian Perelli",
"email": "jperelli@gmail.com"
}
],
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "http://github.com/jperelli/osm-static-maps.git"
},
"dependencies": {
"@maplibre/maplibre-gl-leaflet": "^0.1.0",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.21",
"chrome-aws-lambda": "^10.1.0",
"commander": "^15.0.0",
"express": "^5.2.1",
"handlebars": "^4.7.8",
"leaflet": "^1.9.4",
"leaflet-polylinedecorator": "1.6.0",
"maplibre-gl": "^5.0.0",
"puppeteer-core": "^25.2.1"
},
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"start": "node src/cli.js serve",
"dev": "nodemon -e js,html src/cli.js serve",
"test": "vitest run",
"test:watch": "vitest",
"installandstartdev": "npm install --loglevel=verbose --foreground-scripts && (cd node_modules/optipng-bin && npm run postinstall) && npm run dev"
},
"main": "./src/lib.js",
"types": "./src/lib.d.ts",
"files": [
"src/cli.js",
"src/lib.js",
"src/lib.d.ts",
"src/server.js",
"src/template.html"
],
"type": "module",
"bin": {
"osmsm": "./src/cli.js"
},
"devDependencies": {
"nodemon": "^3.1.4",
"vitest": "^4.1.9"
},
"optionalDependencies": {
"imagemin": "^9.0.0",
"imagemin-jpegtran": "8.0.0",
"imagemin-optipng": "8.0.0",
"puppeteer": "^25.2.1"
},
"overrides": {
"puppeteer-core": "^25.2.1"
}
}