{
  "name": "@thi.ng/grid-iterators",
  "version": "4.0.120",
  "description": "2D grid and shape iterators w/ multiple orderings",
  "type": "module",
  "module": "./index.js",
  "typings": "./index.d.ts",
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/thi-ng/umbrella.git"
  },
  "homepage": "https://thi.ng/grid-iterators",
  "funding": [
    {
      "type": "github",
      "url": "https://github.com/sponsors/postspectacular"
    },
    {
      "type": "patreon",
      "url": "https://patreon.com/thing_umbrella"
    },
    {
      "type": "liberapay",
      "url": "https://liberapay.com/thi.ng"
    }
  ],
  "author": "Karsten Schmidt (https://thi.ng)",
  "license": "Apache-2.0",
  "scripts": {
    "build": "yarn build:esbuild && yarn build:decl",
    "build:assets": "node tools/build-assets",
    "build:decl": "tsc --declaration --emitDeclarationOnly",
    "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
    "clean": "bun ../../tools/src/clean-package.ts",
    "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
    "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
    "pub": "yarn npm publish --access public",
    "test": "bun test",
    "tool:assets": "bun tools/build-assets.ts",
    "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
  },
  "dependencies": {
    "@thi.ng/api": "^8.11.29",
    "@thi.ng/arrays": "^2.13.0",
    "@thi.ng/binary": "^3.4.52",
    "@thi.ng/bitfield": "^2.4.5",
    "@thi.ng/errors": "^2.5.35",
    "@thi.ng/morton": "^3.1.116",
    "@thi.ng/random": "^4.1.20",
    "@thi.ng/transducers": "^9.4.2"
  },
  "devDependencies": {
    "esbuild": "^0.25.5",
    "typedoc": "^0.28.5",
    "typescript": "^5.8.3"
  },
  "keywords": [
    "2d",
    "binary",
    "circle",
    "clipping",
    "diagonal",
    "floodfill",
    "grid",
    "hilbert",
    "iterator",
    "line",
    "morton",
    "random",
    "spiral",
    "typescript",
    "z-curve",
    "zigzag"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18"
  },
  "files": [
    "./*.js",
    "./*.d.ts"
  ],
  "exports": {
    ".": {
      "default": "./index.js"
    },
    "./api": {
      "default": "./api.js"
    },
    "./circle": {
      "default": "./circle.js"
    },
    "./clipping": {
      "default": "./clipping.js"
    },
    "./column-ends": {
      "default": "./column-ends.js"
    },
    "./columns": {
      "default": "./columns.js"
    },
    "./diagonal-ends": {
      "default": "./diagonal-ends.js"
    },
    "./diagonal-slope": {
      "default": "./diagonal-slope.js"
    },
    "./diagonal": {
      "default": "./diagonal.js"
    },
    "./diamond-square": {
      "default": "./diamond-square.js"
    },
    "./filters": {
      "default": "./filters.js"
    },
    "./flood-fill": {
      "default": "./flood-fill.js"
    },
    "./hilbert": {
      "default": "./hilbert.js"
    },
    "./hvline": {
      "default": "./hvline.js"
    },
    "./interleave": {
      "default": "./interleave.js"
    },
    "./line": {
      "default": "./line.js"
    },
    "./random": {
      "default": "./random.js"
    },
    "./row-ends": {
      "default": "./row-ends.js"
    },
    "./rows": {
      "default": "./rows.js"
    },
    "./spiral": {
      "default": "./spiral.js"
    },
    "./transforms": {
      "default": "./transforms.js"
    },
    "./zcurve": {
      "default": "./zcurve.js"
    },
    "./zigzag-columns": {
      "default": "./zigzag-columns.js"
    },
    "./zigzag-diagonal": {
      "default": "./zigzag-diagonal.js"
    },
    "./zigzag-rows": {
      "default": "./zigzag-rows.js"
    }
  },
  "thi.ng": {
    "related": [
      "morton",
      "rasterize",
      "transducers"
    ],
    "year": 2019
  },
  "gitHead": "b076434a497b291ad33e81b1a15f6a71e2c82cc2\n"
}