{
  "name": "@ts-utilkit/async",
  "version": "0.2.0",
  "description": "Asynchronous operation utilities for retry logic, timeouts, parallel execution, and promise management",
  "homepage": "https://github.com/mykfor1/ts-utilkit/tree/main/packages/async#readme",
  "bugs": {
    "url": "https://github.com/mykfor1/ts-utilkit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MForofontov/ts-utilkit.git",
    "directory": "packages/async"
  },
  "license": "MIT",
  "author": "Mykyta Forofontov",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "jest --config jest.config.ts",
    "test:coverage": "jest --config jest.config.ts --coverage",
    "test:watch": "jest --config jest.config.ts --watch",
    "lint": "eslint src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "publish:dry": "npm publish --dry-run",
    "publish": "npm publish",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "keywords": [
    "async",
    "promises",
    "retry",
    "timeout",
    "parallel"
  ],
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "@ts-utilkit/utility": "^0.2.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
