mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "ol-pmtiles",
|
|
"version": "1.0.2",
|
|
"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": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.2.3",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"ol": ">=9.0.0"
|
|
}
|
|
}
|