{
  "name": "@isaacs/ttlcache",
  "version": "2.1.5",
  "files": [
    "dist"
  ],
  "main": "./dist/commonjs/index.js",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    }
  },
  "description": "The time-based use-recency-unaware cousin of [`lru-cache`](http://npm.im/lru-cache)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/isaacs/ttlcache"
  },
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  "license": "BlueOak-1.0.0",
  "scripts": {
    "prepare": "tshy",
    "pretest": "npm run prepare",
    "presnap": "npm run prepare",
    "test": "tap",
    "snap": "tap",
    "preversion": "npm test",
    "postversion": "npm publish",
    "prepublishOnly": "git push origin --follow-tags",
    "format": "prettier --write .",
    "typedoc": "typedoc --tsconfig ./.tshy/esm.json ./src/*.ts",
    "lint": "oxlint --fix src test",
    "postsnap": "npm run lint",
    "postlint": "npm run format"
  },
  "tshy": {
    "exports": {
      "./package.json": "./package.json",
      ".": "./src/index.ts"
    },
    "selfLink": false
  },
  "devDependencies": {
    "@types/node": "^25.9.1",
    "oxlint": "^1.66.0",
    "oxlint-tsgolint": "^0.23.0",
    "prettier": "^3.8.3",
    "tap": "^21.7.4",
    "tshy": "^4.1.2",
    "typedoc": "^0.28.19"
  },
  "engines": {
    "node": ">=12"
  },
  "type": "module",
  "types": "./dist/commonjs/index.d.ts",
  "module": "./dist/esm/index.js"
}
