Files
PMTiles/js/package.json
Brandon Liu 199e90429b js 0.3.0
2021-06-18 13:13:36 +08:00

26 lines
768 B
JSON

{
"name": "pmtiles",
"version": "0.3.0",
"description": "PMTiles archive decoder for browsers",
"main": "index",
"module": "index.mjs",
"unpkg": "index.js",
"jsdelivr": "index.js",
"files": [
"index.mjs",
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-iife": "esbuild index.src.mjs --outfile=index.js --target=es2015 --global-name=pmtiles --format=iife",
"build-esm": "esbuild index.src.mjs --outfile=index.mjs --target=es6 --global-name=pmtiles --format=esm",
"build": "npm run build-iife && npm run build-esm"
},
"homepage": "https://github.com/protomaps/pmtiles",
"author": "Brandon Liu",
"license": "BSD-3-Clause",
"devDependencies": {
"esbuild": "^0.11.14"
}
}