{
  "name": "arehs",
  "version": "1.1.12",
  "description": "The arehs ensures the best possible large batch processing, which is oriented towards event-driven chunk processing.",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "dist/mjs/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./fixup",
    "prepare": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./fixup && husky install",
    "test": "jest",
    "lint": "eslint '{src,test}/**/*.ts' --fix",
    "lint-staged": "lint-staged",
    "deploy": "npm run build && npm version patch && npm publish"
  },
  "exports": {
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/mjs/index.d.ts"
    }
  },
  "lint-staged": {
    "**/*.ts": [
      "eslint \"{src,test}/**/*.ts\" --fix",
      "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
    ]
  },
  "keywords": [
    "arehs",
    "async",
    "asynciterator",
    "await",
    "batch",
    "bluebird",
    "chunk",
    "concurrency",
    "concurrently",
    "cron",
    "event",
    "job",
    "large",
    "parallel",
    "parallelism",
    "promise",
    "promise-pool",
    "promiseall",
    "promisepool",
    "promises",
    "p-map",
    "queue",
    "schedule",
    "scheduler",
    "task",
    "typescript",
    "wait"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/seongjin605/arehs.git"
  },
  "author": "Jin Park(https://github.com/seongjin605)",
  "license": "MIT",
  "devDependencies": {
    "@babel/plugin-transform-runtime": "^7.22.15",
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^10.0.1",
    "@pkgr/utils": "^4.0.0",
    "@types/jest": "^30.0.0",
    "@types/lodash": "^4.14.199",
    "@typescript-eslint/eslint-plugin": "^8.0.1",
    "@typescript-eslint/parser": "^8.0.1",
    "eslint": "^10.2.0",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-jest": "^29.0.1",
    "eslint-plugin-prettier": "^5.5.1",
    "husky": "^9.0.11",
    "jest": "^30.0.3",
    "lint-staged": "^16.1.2",
    "lodash": "^4.17.21",
    "ts-jest": "^29.4.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.35.1"
  }
}
