{
  "name": "@szilanor/stream",
  "version": "3.1.0",
  "description": "Typesafe API for processing iterable data in TypeScript and JavaScript",
  "type": "module",
  "types": "./dist/index.d.cts",
  "main": "./dist/index.cjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "module": "./dist/index.js",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "docs": "npx typedoc src/index.ts",
    "format": "prettier --write src/",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint --report-unused-disable-directives src/",
    "lint:prettier": "prettier --list-different src/",
    "test": "jest --silent"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.4.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "typedoc": "^0.28.5",
    "typescript": "^5.8.3"
  },
  "license": "MIT",
  "keywords": [
    "stream",
    "iterable",
    "typesafe",
    "typescript",
    "array",
    "map",
    "set",
    "functional",
    "processing",
    "linq",
    "sequence",
    "itertools"
  ],
  "author": "Norbert Szilagyi <norbi.szilagyi95@gmail.com>",
  "bugs": {
    "url": "https://github.com/szilanor/stream/issues"
  },
  "homepage": "https://github.com/szilanor/stream",
  "repository": {
    "type": "git",
    "url": "https://github.com/szilanor/stream.git"
  }
}
