Files
PMTiles/js/package.json
Brandon Liu a5f8a89256 Sfomuseum/main (#624)
* Update js/src/adapters.ts to dispatch empty image if source.getZxy returns an empty array (no raster data); run npm audit fix

* js: simplify leaflet missing tile case [#620]

---------

Co-authored-by: thisisaaronland <thisisaaronland@localhost>
2025-12-24 16:30:38 +08:00

51 lines
1.2 KiB
JSON

{
"name": "pmtiles",
"version": "4.3.0",
"description": "PMTiles archive decoder for browsers",
"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"
}
}
},
"source": "index.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"test": "tsx test/index.test.ts",
"tsc": "tsc --noEmit --watch",
"biome": "biome check src test --apply",
"biome-check": "biome check src test"
},
"homepage": "https://github.com/protomaps/pmtiles",
"author": "Brandon Liu",
"license": "BSD-3-Clause",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/leaflet": "^1.9.8",
"@types/node": "^20.19.26",
"msw": "^2.5.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typedoc": "^0.25.7",
"typescript": "^5.0.0"
},
"dependencies": {
"fflate": "^0.8.2"
}
}