{
  "name": "quadbin",
  "version": "0.4.2",
  "description": "Utility functions for working with Quadbins",
  "license": "MIT",
  "type": "module",
  "source": "./src/index.ts",
  "main": "./dist/index.cjs",
  "module": "./dist/index.esm.js",
  "umd:main": "./dist/index.umd.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.js",
      "require": "./dist/index.cjs"
    },
    "./*": "./*"
  },
  "keywords": [
    "quadbin",
    "webgl",
    "visualization"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/CartoDB/quadbin-js.git"
  },
  "scripts": {
    "clean": "rm -rf dist/* || true",
    "build": "microbundle --name quadbin --format cjs,modern,umd --no-compress",
    "build:watch": "microbundle watch --name quadbin --format cjs,modern,umd --no-compress",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "lint": "prettier --check src",
    "postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
    "postversion:check": "yarn lint && yarn test",
    "postversion:commit": "node scripts/postversion-commit.js",
    "postversion:push": "git push && git push --tags",
    "prepublish": "yarn lint && yarn test",
    "prepack": "yarn clean && yarn build"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE.md"
  ],
  "browser": {
    "jsdom": false
  },
  "devDependencies": {
    "@mapbox/tile-cover": "3.0.1",
    "@types/geojson": "^7946.0.15",
    "@types/mapbox__tile-cover": "^3.0.4",
    "@types/semver": "^7",
    "microbundle": "^0.15.1",
    "prettier": "^3.4.2",
    "resolve-package-path": "^4.0.3",
    "semver": "^7.6.3",
    "typescript": "^5.7.3",
    "vitest": "^3.0.5"
  },
  "engines": {
    "node": ">=18"
  },
  "browserslist": [
    "defaults",
    "not IE 11",
    "node >= 18"
  ],
  "dependencies": {
    "@math.gl/web-mercator": "^4.1.0"
  },
  "packageManager": "yarn@4.3.1"
}