{
  "name": "seq-prom",
  "version": "3.0.2",
  "description": "A small library to allow for sequential operations on an array using Promises",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "type": "module",
  "scripts": {
    "test": "node --test test/*.ts",
    "test:basic": "node --test test/index.ts",
    "test:advanced": "node --test test/advanced-tests.ts",
    "test:coverage": "node --test --experimental-test-coverage test/*.ts",
    "build": "zshy",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adrianbrowning/SeqProm.git"
  },
  "keywords": [
    "Promises",
    "Concurrent"
  ],
  "author": "Adrian Browning",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/adrianbrowning/SeqProm/issues"
  },
  "homepage": "https://github.com/adrianbrowning/SeqProm#readme",
  "dependencies": {
  },
  "devDependencies": {
    "@types/node": "^22.18.4",
    "typescript": "5.9.2",
    "zshy": "^0.4.2"
  },
  "zshy": "./src/index.ts",
  "files": [
    "dist"
  ],
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.cts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  }
}
