{
  "name": "asyncerator",
  "version": "6.0.0",
  "description": "Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.",
  "keywords": [
    "stream",
    "pipeline",
    "stream.pipeline",
    "AsyncIterator",
    "AsyncIterable",
    "AsyncIterableIterator"
  ],
  "homepage": "https://github.com/checkdigit/asyncerator#readme",
  "bugs": {
    "url": "https://github.com/checkdigit/asyncerator/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/checkdigit/asyncerator.git"
  },
  "license": "MIT",
  "author": "Check Digit, LLC",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist-types/index.d.ts",
      "import": "./dist-mjs/index.mjs",
      "default": "./dist-mjs/index.mjs"
    }
  },
  "files": [
    "src",
    "dist-types",
    "dist-mjs",
    "!src/**/*.test.ts",
    "!src/**/*.spec.ts",
    "!dist-types/**/*.test.d.ts",
    "!dist-types/**/*.spec.d.ts",
    "!dist-mjs/**/*.test.mjs",
    "!dist-mjs/**/*.spec.mjs",
    "SECURITY.md"
  ],
  "scripts": {
    "build:dist-mjs": "node -e \"require('node:fs').rmSync('dist-mjs', { recursive: true, force: true })\" && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
    "build:dist-types": "node -e \"require('node:fs').rmSync('dist-types', { recursive: true, force: true })\" && npx builder --type=types --outDir=dist-types",
    "ci:compile": "tsc --noEmit",
    "ci:coverage": "node -e \"const fs = require('node:fs'); fs.rmSync('coverage', { recursive: true, force: true }); fs.mkdirSync('coverage')\" && node --test-timeout 600000 --experimental-test-coverage --test-coverage-exclude=\"**/*.spec.ts\" --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test \"src/**/*.spec.ts\"",
    "ci:lint": "npm run lint",
    "ci:style": "npm run prettier",
    "ci:test": "node --pending-deprecation --throw-deprecation --test-timeout 600000 --test \"src/**/*.spec.ts\"",
    "clean": "npm cache verify && node -e \"for (const path of ['coverage', 'node_modules']) require('node:fs').rmSync(path, { recursive: true, force: true })\"",
    "coverage": "node --test-timeout 600000 --experimental-test-coverage --test-coverage-exclude=\"**/*.spec.ts\" --test \"src/**/*.spec.ts\"",
    "lint": "eslint --max-warnings 0 .",
    "lint:fix": "eslint . --fix",
    "prepublishOnly": "npm run build:dist-types && npm run build:dist-mjs",
    "prettier": "prettier . --check",
    "prettier:fix": "prettier . --write",
    "test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style"
  },
  "prettier": "@checkdigit/prettier-config",
  "dependencies": {
    "debug": "^4.4.3"
  },
  "devDependencies": {
    "@checkdigit/eslint-config": "^12.1.0",
    "@checkdigit/prettier-config": "^8.1.1",
    "@checkdigit/typescript-config": "^10.2.1",
    "@types/debug": "^4.1.13"
  },
  "engines": {
    "node": ">=24.18.0"
  },
  "allowScripts": {
    "esbuild@0.28.2": false,
    "unrs-resolver@1.12.2": false
  }
}
