{
  "name": "ex-flow",
  "version": "1.1.0",
  "description": "Dependency-graph execution planner using Kahn's Algorithm with priority-aware batching",
  "keywords": [
    "batch-scheduler",
    "critical-path",
    "cycle-detection",
    "dag",
    "dependency-graph",
    "dependency-resolver",
    "execution-plan",
    "fairness",
    "job-scheduler",
    "kahn-algorithm",
    "observability",
    "orchestrator",
    "priority-scheduling",
    "react",
    "react-hooks",
    "resource-aware",
    "scheduler",
    "task-scheduler",
    "throughput-scheduler",
    "topological-sort",
    "typescript",
    "workflow"
  ],
  "homepage": "https://github.com/Ink01101011/ex-flow#readme",
  "bugs": {
    "url": "https://github.com/Ink01101011/ex-flow/issues"
  },
  "license": "MIT",
  "author": "Ink01101011",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ink01101011/ex-flow.git"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "sideEffects": false,
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.mjs"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "import": "./dist/react/index.mjs",
      "require": "./dist/react/index.cjs",
      "default": "./dist/react/index.mjs"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/types/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "tsx --test src/**/*.test.ts",
    "dev": "tsx src/playground.ts",
    "build": "tsup --config tsup.config.ts",
    "minify": "tsup --config tsup.config.ts --minify",
    "bench": "tsx scripts/benchmark.ts",
    "clean": "rm -rf dist",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "format": "oxfmt --write .",
    "format:check": "oxfmt --check .",
    "prepare": "husky",
    "ci": "pnpm run format:check && pnpm run lint && pnpm run test && pnpm run build",
    "prepublish:check": "pnpm run clean && pnpm run ci && npm pack --dry-run",
    "prepublishOnly": "pnpm run prepublish:check && pnpm run minify",
    "start": "node dist/index.cjs"
  },
  "dependencies": {
    "exsorted": "^1.1.0"
  },
  "devDependencies": {
    "@types/node": "^24.9.1",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "husky": "^9.1.7",
    "oxfmt": "^0.45.0",
    "oxlint": "^1.19.0",
    "tsup": "^8.5.1",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "exsorted": "^1.1.0",
    "react": "^18.2.0 || ^19.0.0"
  },
  "peerDependenciesMeta": {
    "exsorted": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18"
  },
  "packageManager": "pnpm@10.24.0"
}
