-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
51 lines (51 loc) · 1.28 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
47
48
49
50
51
{
"name": "osm-static-maps",
"version": "4.0.2",
"description": "Create a static image of a map with the features you want",
"author": "Julian Perelli",
"contributors": [
{
"name": "Julian Perelli",
"email": "[email protected]"
}
],
"license": "GPLv2",
"repository": {
"type": "git",
"url": "http://github.com/jperelli/osm-static-maps.git"
},
"dependencies": {
"chrome-aws-lambda": "^10.1.0",
"commander": "^12.1.0",
"express": "^4.19.2",
"handlebars": "^4.7.8",
"imagemin": "^9.0.0",
"imagemin-jpegtran": "7.0.0",
"imagemin-optipng": "8.0.0",
"leaflet": "^1.9.4",
"leaflet-polylinedecorator": "1.6.0",
"mapbox-gl": "^1.13.0",
"mapbox-gl-leaflet": "0.0.14",
"puppeteer-core": "^23.2.0"
},
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node src/cli.js serve",
"dev": "nodemon -e js,html src/cli.js serve",
"installandstartdev": "npm install --loglevel=verbose --foreground-scripts && (cd node_modules/optipng-bin && npm run postinstall) && npm run dev"
},
"main": "./src/lib.js",
"type": "module",
"bin": {
"osmsm": "./src/cli.js"
},
"devDependencies": {
"nodemon": "^3.1.4",
"puppeteer": "^23.2.0"
},
"overrides": {
"puppeteer-core": "^23.2.0"
}
}