mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 10:51:07 +00:00
* Make aws/cloudflare depend on pmtiles from npm [#455] This is clearer to developers than relying on the local code being built. * update check_examples.py * bump openlayers to v2 with upgrade of pmtiles to v4 [#455] * update to 4.2.1
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "ol-pmtiles",
|
|
"version": "2.0.0",
|
|
"description": "PMTiles sources for OpenLayers",
|
|
"type": "module",
|
|
"main": "dist/cjs/index.cjs",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/esm/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.cts",
|
|
"default": "./dist/cjs/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/protomaps/PMTiles.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/protomaps/PMTiles/issues"
|
|
},
|
|
"keywords": [
|
|
"openlayers",
|
|
"pmtiles"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"tsc": "tsc --noEmit --skipLibCheck",
|
|
"prettier": "prettier --write *.js",
|
|
"prettier-check": "prettier --check *.js"
|
|
},
|
|
"dependencies": {
|
|
"pmtiles": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.2.3",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"ol": ">=9.0.0"
|
|
}
|
|
}
|