forked from consbio/mbgl-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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": "mbgl-renderer",
"version": "3.3.1",
"description": "Static Map Renderer using Mapbox GL",
"type": "module",
"main": "dist/index.js",
"license": "ISC",
"scripts": {
"build": "tsc",
"start": "node ./dist/server.js",
"dev": "tsx watch ./src/server.ts"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mbtiles": "^0.12.1",
"@maplibre/maplibre-gl-native": "^6.0.0",
"@types/express": "^5.0.0",
"@types/pino-http": "^5.8.4",
"commander": "^10.0.0",
"express": "^4.20.0",
"express-validator": "^7.2.0",
"node-restify-validation": "^1.3.0",
"pino": "^8.11.0",
"pino-http": "^4.3.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/mapbox__geo-viewport": "^0.5.3",
"@types/node": "^22.7.4",
"@types/sharp": "^0.32.0",
"dotenv": "^16.0.3",
"dotenv-flow": "^3.2.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"pixelmatch": "^5.2.1",
"tsx": "^4.19.1"
},
"repository": "https://github.com/consbio/mbgl-renderer",
"peerDependencies": {
"typescript": "^5.6.2"
}
}