{
  "name": "@macrostrat/cesium-martini",
  "version": "1.6.0",
  "description": "On-the-fly meshing of raster elevation tiles for the CesiumJS virtual globe",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "source": "./src/index.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "rollup -c",
    "watch": "rollup -c -w",
    "example": "yarn workspace example-vite run dev",
    "example:mapzen": "yarn workspace example-vite-mapzen-worker run dev",
    "example:webpack-react": "yarn workspace example-webpack-react run dev",
    "example:webpack": "yarn workspace example-webpack run dev",
    "example:webpack-mapzen": "yarn workspace example-webpack-mapzen-worker run dev",
    "dev": "yarn run watch & yarn run example",
    "test": "echo \"Error: no test specified\" && exit 1",
    "prepublishOnly": "npm run build",
    "format": "prettier --write src/**/*.ts examples/**/*.ts",
    "check": "tsc --noEmit"
  },
  "files": [
    "dist",
    "src"
  ],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@mapbox/martini": "git+https://github.com/davenquinn/martini.git",
    "@types/ndarray": "^1.0.11",
    "cesium": "^1.137.0",
    "get-pixels": "^3.3.3",
    "ndarray": "^1.0.19"
  },
  "workspaces": [
    "examples/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/davenquinn/cesium-martini.git"
  },
  "devDependencies": {
    "@babel/core": "^7.16.7",
    "@babel/preset-env": "^7.16.7",
    "@babel/preset-typescript": "^7.16.7",
    "@macrostrat/hyper": "^3.0.6",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-node-resolve": "^7.1.3",
    "prettier": "^3.5.0",
    "rollup": "^2.39.0",
    "rollup-plugin-web-worker-loader": "^1.5.0",
    "typescript": "^5.9.3"
  },
  "packageManager": "yarn@4.12.0"
}