tileserver-gl/package.json
dependabot[bot] b02c2ae534
fix(deps): bump pbf from 3.2.1 to 3.3.0 (#1301)
Bumps [pbf](https://github.com/mapbox/pbf) from 3.2.1 to 3.3.0.
- [Release notes](https://github.com/mapbox/pbf/releases)
- [Commits](https://github.com/mapbox/pbf/compare/v3.2.1...v3.3.0)

---
updated-dependencies:
- dependency-name: pbf
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-04 22:38:27 +00:00

87 lines
3.0 KiB
JSON

{
"name": "tileserver-gl",
"version": "4.12.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",
"scripts": {
"test": "mocha test/**.js --timeout 10000 --exit",
"lint:yml": "yamllint --schema=CORE_SCHEMA *.{yml,yaml}",
"lint:js": "npm run lint:eslint && npm run lint:prettier",
"lint:js:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint \"{,!(node_modules|dist|static|public)/**/}*.{js,ts,cjs,mjs}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist|static|public)/**/}*.{js,ts,cjs,mjs}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist|static|public)/**/}*.{js,ts,cjs,mjs,json}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist|static|public)/**/}*.{js,ts,cjs,mjs,json}\" --ignore-path .gitignore",
"docker": "docker build . && docker run --rm -i -p 8080:8080 $(docker build -q .)",
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){ process.exit(1) } \" || husky"
},
"dependencies": {
"@jsse/pbfont": "^0.1.2",
"@mapbox/mbtiles": "0.12.1",
"@mapbox/polyline": "^1.2.1",
"@mapbox/sphericalmercator": "1.2.0",
"@mapbox/vector-tile": "1.3.1",
"@maplibre/maplibre-gl-native": "5.4.0",
"@maplibre/maplibre-gl-style-spec": "20.3.0",
"@sindresorhus/fnv1a": "3.1.0",
"advanced-pool": "0.3.3",
"axios": "^1.7.2",
"canvas": "2.11.2",
"chokidar": "3.6.0",
"clone": "2.1.2",
"color": "4.2.3",
"commander": "12.1.0",
"cors": "2.8.5",
"express": "4.19.2",
"handlebars": "4.7.8",
"http-shutdown": "1.2.2",
"morgan": "1.10.0",
"pbf": "3.3.0",
"pmtiles": "3.0.6",
"proj4": "2.11.0",
"sanitize-filename": "1.6.3",
"sharp": "0.33.4",
"tileserver-gl-styles": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"chai": "5.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^1.7.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mocha": "^10.6.0",
"node-addon-api": "^8",
"prettier": "^3.3.2",
"should": "^13.2.3",
"supertest": "^7.0.0",
"yaml-lint": "^1.7.0"
},
"keywords": [
"maptiler",
"tileserver-gl",
"maplibre-gl",
"tileserver"
],
"license": "BSD-2-Clause",
"engines": {
"node": ">=18.17.0 <21"
},
"repository": {
"url": "git+https://github.com/maptiler/tileserver-gl.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/maptiler/tileserver-gl/issues"
},
"homepage": "https://github.com/maptiler/tileserver-gl#readme"
}