{
  "name": "stream-join",
  "version": "2.0.0",
  "description": "Join values from multiple object-mode Readable streams into a single Readable, with proper backpressure handling.",
  "type": "module",
  "main": "./src/index.js",
  "types": "./src/index.d.ts",
  "exports": {
    ".": "./src/index.js",
    "./web": "./src/web/index.js",
    "./*": "./src/*"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "test": "tape6 --flags FO",
    "test:bun": "tape6-bun --flags FO",
    "test:deno": "tape6-deno --flags FO",
    "ts-check": "tsc --noEmit",
    "js-check": "tsc --project tsconfig.check.json",
    "test:browser": "tape6-playwright --server-url http://localhost:55555 --start-server --flags FO",
    "ts-test": "tape6 --flags FO 'tests/**/test-*.ts'",
    "ts-test:bun": "tape6-bun --flags FO 'tests/**/test-*.ts'",
    "ts-test:deno": "tape6-deno --flags FO 'tests/**/test-*.ts'",
    "lint": "prettier --check .",
    "lint:fix": "prettier --write ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uhop/stream-join.git"
  },
  "keywords": [
    "stream",
    "streaming",
    "join",
    "zip",
    "merge",
    "backpressure",
    "object-mode"
  ],
  "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
  "funding": "https://github.com/sponsors/uhop",
  "llms": "https://raw.githubusercontent.com/uhop/stream-join/master/llms.txt",
  "llmsFull": "https://raw.githubusercontent.com/uhop/stream-join/master/llms-full.txt",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/uhop/stream-join/issues"
  },
  "homepage": "https://github.com/uhop/stream-join#readme",
  "files": [
    "src",
    "LICENSE",
    "README.md",
    "AGENTS.md",
    "ARCHITECTURE.md",
    "llms.txt",
    "llms-full.txt"
  ],
  "tape6": {
    "tests": [
      "/tests/web/test-*.js"
    ],
    "cli": [
      "/tests/node/test-*.js"
    ],
    "importmap": {
      "imports": {
        "tape-six": "/node_modules/tape-six/index.js",
        "tape-six/": "/node_modules/tape-six/src/",
        "stream-chain": "/node_modules/stream-chain/src/node/index.js",
        "stream-chain/node": "/node_modules/stream-chain/src/node/index.js",
        "stream-chain/web": "/node_modules/stream-chain/src/web/index.js",
        "stream-chain/core": "/node_modules/stream-chain/src/core/index.js",
        "stream-chain/": "/node_modules/stream-chain/src/",
        "nano-binary-search": "/node_modules/nano-binary-search/index.js"
      }
    }
  },
  "dependencies": {
    "nano-binary-search": "^1.0.14",
    "stream-chain": "^4.0.2"
  },
  "devDependencies": {
    "@types/node": "^25.9.1",
    "prettier": "^3.8.3",
    "tape-six": "^1.9.0",
    "tape-six-playwright": "^1.0.3",
    "typescript": "^6.0.3"
  }
}
