{
  "name": "gensequence",
  "version": "7.0.0",
  "description": "Small library to simplify working with Generators and Iterators in Javascript / Typescript",
  "type": "module",
  "module": "dist/index.js",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.js"
    },
    "./operators": {
      "import": "./dist/operators/index.js"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@tsconfig/node18": "^18.2.2",
    "@types/node": "^18.19.18",
    "@vitest/coverage-istanbul": "^1.3.1",
    "prettier": "^3.2.5",
    "rimraf": "^5.0.5",
    "ts2mjs": "^2.1.1",
    "typescript": "^5.3.3",
    "vitest": "^1.3.1"
  },
  "scripts": {
    "prepublishOnly": "npm run clean-build",
    "clean-build": "npm run clean && npm run build",
    "clean": "rimraf dist coverage",
    "test": "vitest run",
    "build": "tsc -p .",
    "lint": "npm run lint:prettier",
    "lint:prettier": "prettier . -w",
    "watch": "tsc -w -p .",
    "coverage": "npm test -- --coverage",
    "update-packages": "npx npm-check-updates -t semver -u && rimraf node_modules package-lock.json && npm i"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/streetsidesoftware/GenSequence.git"
  },
  "keywords": [
    "generators",
    "generator",
    "iterator",
    "iterators",
    "iterable",
    "functional",
    "map",
    "reduce"
  ],
  "files": [
    "dist/",
    "!**/*.tsbuildInfo",
    "!**/samples",
    "!**/*.map",
    "!**/*.test.*",
    "!**/*.perf.*"
  ],
  "author": "Jason Dent",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/streetsidesoftware/GenSequence/issues"
  },
  "homepage": "https://github.com/streetsidesoftware/GenSequence#readme"
}
