{
  "name": "@gmod/abortable-promise-cache",
  "version": "3.0.4",
  "description": "add AbortController support to a cache of async requests",
  "license": "MIT",
  "repository": "GMOD/abortable-promise-cache",
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "import": "./esm/index.js"
    },
    "require": {
      "require": "./dist/index.js"
    }
  },
  "author": {
    "name": "Robert Buels",
    "email": "rbuels@gmail.com",
    "url": "https://github.com/rbuels"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0",
    "docs": "documentation readme --shallow src/AbortablePromiseCache.js --section=API",
    "clean": "rimraf dist esm",
    "format": "prettier --write .",
    "prebuild": "npm run clean",
    "build:esm": "tsc --target es2020 --outDir esm",
    "build:es5": "tsc --target es2020 --module commonjs --outDir dist",
    "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
    "build": "npm run build:esm && npm run build:es5",
    "prepublishOnly": "npm run lint && npm test run && npm run build",
    "postversion": "git push --follow-tags"
  },
  "devDependencies": {
    "@types/node": "^22.15.3",
    "documentation": "^14.0.1",
    "eslint": "^9.9.0",
    "eslint-plugin-unicorn": "^59.0.0",
    "prettier": "^3.3.3",
    "quick-lru": "^4.0.0",
    "rimraf": "^6.0.1",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.4.0",
    "vitest": "^3.0.4"
  },
  "publishConfig": {
    "access": "public"
  }
}
