{
  "name": "@sec-ant/readable-stream",
  "description": "A tiny, zero-dependency yet spec-compliant asynchronous iterator polyfill/ponyfill for ReadableStreams.",
  "private": false,
  "version": "0.7.0",
  "type": "module",
  "files": [
    "./dist"
  ],
  "main": "./dist/index/index.js",
  "module": "./dist/index/index.js",
  "types": "./dist/index/index.d.ts",
  "exports": {
    ".": "./dist/index/index.js",
    "./asyncIterator": "./dist/index/asyncIterator.js",
    "./fromAnyIterable": "./dist/index/fromAnyIterable.js",
    "./ponyfill": "./dist/ponyfill/index.js",
    "./ponyfill/asyncIterator": "./dist/ponyfill/asyncIterator.js",
    "./ponyfill/fromAnyIterable": "./dist/ponyfill/fromAnyIterable.js",
    "./polyfill": "./dist/polyfill/index.js",
    "./polyfill/asyncIterator": "./dist/polyfill/asyncIterator.js",
    "./polyfill/fromAnyIterable": "./dist/polyfill/fromAnyIterable.js",
    "./async-iterator": {
      "types": "./dist/types/async-iterator.d.ts"
    }
  },
  "typesVersions": {
    "*": {
      "asyncIterator": [
        "./dist/index/asyncIterator.d.ts"
      ],
      "fromAnyIterable": [
        "./dist/index/fromAnyIterable.d.ts"
      ],
      "ponyfill": [
        "./dist/ponyfill/index.d.ts"
      ],
      "ponyfill/asyncIterator": [
        "./dist/ponyfill/asyncIterator.d.ts"
      ],
      "ponyfill/fromAnyIterable": [
        "./dist/ponyfill/fromAnyIterable.d.ts"
      ],
      "polyfill": [
        "./dist/polyfill/index.d.ts"
      ],
      "polyfill/asyncIterator": [
        "./dist/polyfill/asyncIterator.d.ts"
      ],
      "polyfill/fromAnyIterable": [
        "./dist/polyfill/fromAnyIterable.d.ts"
      ],
      "async-iterator": [
        "./dist/types/async-iterator.d.ts"
      ]
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Sec-ant/readable-stream.git"
  },
  "homepage": "https://github.com/Sec-ant/readable-stream",
  "bugs": {
    "url": "https://github.com/Sec-ant/readable-stream/issues",
    "email": "zezhengwu@proton.me"
  },
  "keywords": [
    "stream",
    "web-streams",
    "readablestream",
    "async",
    "asynchronous",
    "iterator",
    "iteration",
    "async-iterator",
    "polyfill",
    "esm",
    "from-iterable"
  ],
  "author": {
    "name": "Ze-Zheng Wu"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.13",
    "@changesets/cli": "^2.31.0",
    "@commitlint/cli": "^20.5.2",
    "@commitlint/config-conventional": "^20.5.0",
    "@vitest/browser": "^4.1.5",
    "@vitest/browser-playwright": "4.1.5",
    "@vitest/coverage-istanbul": "^4.1.5",
    "@vitest/ui": "^4.1.5",
    "concurrently": "^9.2.1",
    "copy-files-from-to": "^4.0.0",
    "lint-staged": "^16.4.0",
    "playwright": "^1.59.1",
    "prettier": "^3.8.3",
    "simple-git-hooks": "^2.13.1",
    "typescript": "^6.0.3",
    "vite": "^8.0.10",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "update-hooks": "simple-git-hooks",
    "type-check": "tsc --noEmit --emitDeclarationOnly false",
    "format:prettier": "prettier . --write",
    "format:biome": "biome format . --write",
    "format": "conc \"npm:format:prettier\" \"npm:format:biome\"",
    "check:biome": "biome check --write .",
    "check": "conc \"npm:format:prettier\" \"npm:check:biome\"",
    "prebuild": "pnpm -s check && pnpm -s type-check",
    "build": "vite build",
    "copy": "copy-files-from-to",
    "postbuild": "tsc && pnpm -s copy",
    "test:chromium": "vitest run --browser=chromium",
    "test:firefox": "vitest run --browser=firefox",
    "test": "vitest run",
    "test:ci": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui --coverage",
    "bump-biome:latest": "pnpm add -DE @biomejs/biome@latest",
    "bump-biome:nightly": "pnpm add -DE @biomejs/biome@nightly"
  }
}