{
  "name": "@klodianimeri/pipejs",
  "version": "2.0.0",
  "type": "module",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=16.0.0"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "unpkg": "./dist/index.global.js",
  "types": "./dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/klodianimeri/pipejs"
  },
  "scripts": {
    "t": "tsc -w",
    "test": "jest",
    "build": "tsup",
    "prepublishOnly": "npm run test && npm run build"
  },
  "publishConfig": {
    "access": "public"
  },
  "author": "Klodian Imeri",
  "license": "Apache-2.0",
  "description": "Functional, pipeable utility functions for manipulating synchronous and asynchronous iterables and generators.",
  "keywords": [
    "iterator",
    "iterable",
    "generator",
    "async iterator",
    "async iterable",
    "async generator",
    "async",
    "functional",
    "pipeline",
    "pipe",
    "lazy",
    "stream",
    "pull",
    "typescript",
    "esm",
    "operators",
    "map",
    "filter"
  ],
  "devDependencies": {
    "@jest/globals": "^30.0.3",
    "@swc/core": "^1.15.26",
    "@types/jest": "^30.0.0",
    "@types/node": "^22.14.0",
    "jest": "^30.0.3",
    "microbundle": "^0.15.1",
    "terser": "^5.46.1",
    "ts-jest": "^29.4.0",
    "tsup": "^8.5.1",
    "typescript": "^5.8.3"
  }
}