tileserver-gl/package.json
Andrew Calcutt b2bd5eaa96
Convert to esm module syntax (#606)
* switch to esm module

* Update package.json

* change to maplibre package

* fix tests

* eslint

* remove extra package updates

* Delete package-lock.json

* change 'fs' to 'node:fs'

* put back node 10.

without the package updates this still works

* remove trailing commas

* remove unassociated fix / formatting

* remove unassociated fix

* remove eslint from this PR

* remove unassociated fix

* lint

* Merge remote-tracking branch 'upstream/master' into esm_update

* fix mlgl

* update maplibre-native to new version with arm64

* update minor version
2022-09-28 14:41:55 -04:00

49 lines
1.3 KiB
JSON

{
"name": "tileserver-gl",
"version": "4.1.0",
"description": "Map tile server for JSON GL styles - vector and server side generated raster tiles",
"main": "src/main.js",
"bin": "src/main.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/maptiler/tileserver-gl.git"
},
"license": "BSD-2-Clause",
"engines": {
"node": ">=14.15.0 <17"
},
"scripts": {
"test": "mocha test/**.js --timeout 10000",
"docker": "docker build -f Dockerfile . && docker run --rm -i -p 8080:80 $(docker build -q .)"
},
"dependencies": {
"@mapbox/glyph-pbf-composite": "0.0.3",
"@mapbox/mbtiles": "0.12.1",
"@mapbox/sphericalmercator": "1.2.0",
"@mapbox/vector-tile": "1.3.1",
"@maplibre/maplibre-gl-native": "5.0.1-pre.6",
"@maplibre/maplibre-gl-style-spec": "17.0.1",
"advanced-pool": "0.3.3",
"canvas": "2.10.1",
"chokidar": "3.5.3",
"clone": "2.1.2",
"color": "4.2.3",
"commander": "9.4.0",
"cors": "2.8.5",
"express": "4.18.1",
"handlebars": "4.7.7",
"http-shutdown": "1.2.2",
"morgan": "1.10.0",
"pbf": "3.2.1",
"proj4": "2.8.0",
"request": "2.88.2",
"sharp": "0.31.0",
"tileserver-gl-styles": "2.0.0"
},
"devDependencies": {
"chai": "4.3.6",
"mocha": "^10.0.0",
"supertest": "^6.2.4"
}
}