{
  "name": "adev-lru",
  "version": "1.3.0",
  "description": "A lightweight and efficient LRU (Least Recently Used) cache implementation for JavaScript and TypeScript.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    "require": "./dist/cjs/index.js",
    "import": "./dist/esm/index.js"
  },
  "type": "module",
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "build:esm": "tsc --project tsconfig.esm.json",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build:types": "tsc --project tsconfig.types.json",
    "build": "npm run build:types && npm run build:esm && npm run build:cjs",
    "test": "jest",
    "lint": "ts-standard --fix",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint && npm test",
    "clean": "rm -rf dist"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Armando284/adev-lru.git"
  },
  "keywords": [
    "lru",
    "cache",
    "javascript",
    "typescript",
    "adev",
    "memory-management",
    "data-structure",
    "performance"
  ],
  "author": "Armando Peña Tamayo (adev) arman2p284@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Armando284/adev-lru/issues"
  },
  "homepage": "https://github.com/Armando284/adev-lru#readme",
  "files": [
    "dist"
  ],
  "private": false,
  "devDependencies": {
    "@types/jest": "29.5.14",
    "@types/node": "22.10.1",
    "jest": "29.7.0",
    "jest-environment-jsdom": "29.7.0",
    "ts-jest": "29.2.5",
    "ts-standard": "12.0.2",
    "typescript": "5.7.2"
  },
  "ts-standard": {
    "project": "tsconfig.eslint.json",
    "ignore": [
      "dist",
      "src/**/*.js"
    ]
  },
  "dependencies": {
    "adev-monads": "^2.2.0"
  }
}
