{
  "name": "@sha1n/pipelines",
  "version": "0.2.0",
  "type": "commonjs",
  "description": "A mini-framework for multi-stage pipeline execution",
  "repository": "https://github.com/sha1n/pipelines",
  "author": "Shai Nagar",
  "license": "MIT",
  "main": "./dist",
  "types": "./dist/types/index.d.ts",
  "exports": [
    "./dist/index.js",
    "./dist/types/index.d.ts"
  ],
  "keywords": [
    "pipeline",
    "process",
    "state",
    "state-machine",
    "chain",
    "modular",
    "architecture",
    "design",
    "typescript"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "scripts": {
    "clean": "rm -rf ./dist",
    "build": "pnpm run clean && tsc",
    "jest": "jest --coverage",
    "lint": "eslint --fix .",
    "test": "pnpm run jest && pnpm run lint",
    "prepare": "pnpm run build",
    "demo": "DEBUG='*pipelines:*' ts-node ./examples/build-pipeline/index.ts"
  },
  "dependencies": {
    "@sha1n/about-time": "^0.3.0",
    "debug": "^4.4.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.21.0",
    "@types/chance": "^1.1.6",
    "@types/debug": "^4.1.12",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.13.5",
    "@types/uuid": "^10.0.0",
    "chance": "^1.1.12",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-jest": "^28.14.0",
    "eslint-plugin-no-floating-promise": "^2.0.0",
    "eslint-plugin-prettier": "^5.5.5",
    "eslint-plugin-unused-imports": "^4.4.1",
    "globals": "^16.0.0",
    "jest": "^29.7.0",
    "jest-environment-node": "^29.7.0",
    "jest-extended": "^6.0.0",
    "jest-html-reporters": "^3.1.7",
    "jest-mock-extended": "^4.0.0",
    "jest-summary-reporter": "^0.0.2",
    "prettier": "^3.5.2",
    "ts-jest": "^29.2.6",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.24.1",
    "uuid": "^11.1.0"
  },
  "packageManager": "pnpm@9.15.4",
  "pnpm": {
    "overrides": {
      "minimatch": "^3.1.5",
      "picomatch": "^2.3.2",
      "flatted": "^3.4.2",
      "brace-expansion": "^1.1.13",
      "diff": "^4.0.4"
    }
  }
}
