{
  "name": "@keyv/bigmap",
  "version": "1.1.0",
  "description": "Bigmap for Keyv",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jaredwray/keyv.git"
  },
  "keywords": [
    "bigmap",
    "keyv",
    "key",
    "value",
    "store",
    "cache",
    "ttl"
  ],
  "author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jaredwray/keyv/issues"
  },
  "homepage": "https://github.com/jaredwray/keyv",
  "dependencies": {
    "hookified": "^1.12.2"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.2.6",
    "@faker-js/faker": "^10.1.0",
    "@vitest/coverage-v8": "^3.2.4",
    "rimraf": "^6.0.1",
    "tsd": "^0.33.0",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {
    "keyv": "^5.5.3"
  },
  "tsd": {
    "directory": "test"
  },
  "engines": {
    "node": ">= 18"
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "scripts": {
    "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
    "lint": "biome check --write --error-on-warnings",
    "lint:ci": "biome check --error-on-warnings",
    "test": "pnpm lint && vitest run --coverage",
    "test:ci": "pnpm lint:ci && vitest --run --sequence.setupFiles=list --coverage",
    "clean": "rimraf ./node_modules ./coverage ./dist"
  }
}