{
  "name": "iterable-operator",
  "version": "6.0.0",
  "description": "Utilities for JavaScript Iterable and AsyncIterable",
  "keywords": [
    "Iterable",
    "AsyncIterable",
    "chunk",
    "concat",
    "drop",
    "filter",
    "flatten",
    "map",
    "repeat",
    "slice",
    "split",
    "take",
    "tap",
    "transform",
    "uniq",
    "zip",
    "consume",
    "each",
    "every",
    "find",
    "first",
    "includes",
    "last",
    "match",
    "reduce",
    "some"
  ],
  "files": [
    "src",
    "lib"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "type": "module",
  "sideEffects": false,
  "repository": "git@github.com:BlackGlory/iterable-operator.git",
  "author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "prepare": "ts-patch install -s",
    "lint": "eslint --quiet src __tests__",
    "test": "vitest --run",
    "prepublishOnly": "run-s prepare clean build",
    "clean": "rimraf lib",
    "build": "tsc --project tsconfig.build.json --outDir lib",
    "release": "standard-version"
  },
  "husky": {
    "hooks": {
      "pre-commit": "run-s prepare lint build test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "devDependencies": {
    "@blackglory/pass": "^1.1.1",
    "@commitlint/cli": "^20.4.1",
    "@commitlint/config-conventional": "^20.4.1",
    "@eslint/js": "^10.0.1",
    "cross-env": "^10.1.0",
    "eslint": "^10.0.0",
    "extra-sort": "^0.2.0",
    "husky": "^4.3.8",
    "npm-run-all": "^4.1.5",
    "return-style": "^3.0.1",
    "rimraf": "^6.1.3",
    "standard-version": "^9.5.0",
    "ts-patch": "^3.3.0",
    "tslib": "^2.8.1",
    "typescript": "5.9.3",
    "typescript-eslint": "^8.55.0",
    "typescript-transform-paths": "^3.5.6",
    "vite": "^7.3.1",
    "vite-tsconfig-paths": "^6.1.1",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "@blackglory/errors": "^3.0.3",
    "@blackglory/go": "^2.0.0",
    "@blackglory/structures": "^0.14.11",
    "extra-abort": "^0.4.1",
    "extra-promise": "^7.0.1",
    "extra-utils": "^5.20.0",
    "justypes": "^4.5.0"
  }
}
