{
  "name": "sift-r",
  "browserGlobalName": "siftr",
  "version": "1.5.1",
  "description": "Apportion objects / arrays into multiple buckets based on predicates / patterns",
  "author": "Conan Theobald",
  "license": "MIT",
  "keywords": [
    "sift",
    "partition",
    "grouping",
    "apportion",
    "filtering"
  ],
  "types": "index.d.ts",
  "main": "./dist/cjs/sift-r.cjs.js",
  "module": "dist/esm/sift-r.esm.js",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "import": "./dist/esm/sift-r.esm.js",
      "require": "./dist/cjs/sift-r.cjs.js",
      "default": "./dist/cjs/sift-r.cjs.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/package.json",
    "CHANGELOG.md",
    "README.md",
    "LICENSE",
    "index.d.ts"
  ],
  "engines": {
    "node": ">=15"
  },
  "homepage": "https://github.com/shuckster/sift-r",
  "repository": {
    "type": "git",
    "url": "https://github.com/shuckster/sift-r"
  },
  "bugs": {
    "url": "https://github.com/shuckster/sift-r/issues",
    "email": "bugs+sift-r@conans.co.uk"
  },
  "dependencies": {
    "match-iz": "5.1.1"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "compose-paths": "^1.3.0",
    "esbuild": "^0.28.1",
    "eslint": "^10.7.0",
    "globals": "^17.7.0",
    "rimraf": "^6.1.3",
    "tstyche": "^7.2.2",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.64.0"
  },
  "type": "module",
  "scripts": {
    "test": "node --test tests/*.test.mjs",
    "test:types": "tstyche",
    "lint": "eslint src/**/*.mjs tests/**/*.test.mjs tests/types/**/*.tst.ts",
    "build": "pnpm run build:esbuild",
    "build:clean": "rimraf dist && mkdir -p dist/esm dist/cjs dist/browser",
    "build:all": "pnpm run build:clean && pnpm run build",
    "build:esbuild": "node ./build-config/esbuild.mjs"
  }
}