{
  "name": "@poomcha/retrier",
  "version": "1.0.7",
  "description": "Retry synchronous or asynchronous functions.",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "type": "module",
  "files": [
    "lib"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": "./lib/index.js",
      "default": "./lib/index.cjs"
    }
  },
  "scripts": {
    "test": "jest",
    "build": "tsup",
    "lint": "tsc",
    "check-exports": "attw --pack",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Poomcha/retrier.git"
  },
  "keywords": [
    "retry",
    "retrier",
    "error",
    "success",
    "sync",
    "async",
    "promise",
    "await",
    "typescript"
  ],
  "author": "Poomcha",
  "license": "ISC",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.3",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.12.0",
    "jest": "^29.7.0",
    "prettier": "^3.4.2",
    "ts-jest": "^29.2.5",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3"
  }
}
