mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
31 lines
985 B
JSON
31 lines
985 B
JSON
{
|
|
"name": "pmtiles",
|
|
"version": "1.0.2",
|
|
"description": "PMTiles archive decoder for browsers",
|
|
"main": "dist/pmtiles.js",
|
|
"module": "dist/pmtiles.mjs",
|
|
"source": "index.ts",
|
|
"files": [
|
|
"dist",
|
|
"index.ts"
|
|
],
|
|
"scripts": {
|
|
"build-iife": "esbuild index.ts --outfile=dist/index.js --target=es6 --global-name=pmtiles --format=iife",
|
|
"build-esm": "esbuild index.ts --outfile=dist/index.mjs --target=es6 --global-name=pmtiles --format=esm",
|
|
"build-tsc": "tsc --declaration --outdir dist",
|
|
"build": "npm run build-iife && npm run build-esm && npm run build-tsc",
|
|
"test": "node -r esbuild-runner/register index.test.ts",
|
|
"tsc": "tsc --noEmit --watch",
|
|
"prettier": "prettier --write *.ts"
|
|
},
|
|
"homepage": "https://github.com/protomaps/pmtiles",
|
|
"author": "Brandon Liu",
|
|
"license": "BSD-3-Clause",
|
|
"devDependencies": {
|
|
"esbuild": "^0.11.14",
|
|
"esbuild-runner": "^2.2.1",
|
|
"typescript": "^4.5.5",
|
|
"zora": "^5.0.2"
|
|
}
|
|
}
|