{
  "name": "@lyleunderwood/streaming-zipper",
  "version": "1.0.2",
  "type": "module",
  "description": "Memory-efficient streaming ZIP creation with automatic backpressure control. Supports parallel reading + sequential writing for both Web Streams and Node.js streams with ZIP64 support.",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/*.js",
    "dist/*.cjs",
    "dist/*.d.ts",
    "dist/*.map",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "node build.js",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "dev": "vitest --watch",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build && npm run test:run",
    "lint": "echo 'No linter configured'",
    "format": "echo 'No formatter configured'"
  },
  "keywords": [
    "zip",
    "streaming",
    "parallel",
    "typescript",
    "web-streams",
    "nodejs-streams",
    "backpressure",
    "zip64",
    "memory-efficient",
    "compression",
    "deflate"
  ],
  "author": "Lyle Underwood",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lyleunderwood/streaming-zipper.git"
  },
  "homepage": "https://github.com/lyleunderwood/streaming-zipper#readme",
  "bugs": {
    "url": "https://github.com/lyleunderwood/streaming-zipper/issues"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/readable-stream": "^4.0.21",
    "@vitest/coverage-v8": "^1.0.0",
    "esbuild": "^0.19.0",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "@lyleunderwood/isomorphic-logger": "^1.0.3",
    "readable-stream": "^4.7.0"
  }
}
