{
  "name": "@vercel/kv",
  "version": "1.0.0",
  "description": "Durable Redis",
  "homepage": "https://vercel.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/vercel/storage.git",
    "directory": "packages/kv"
  },
  "license": "Apache-2.0",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "node": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "require": {
        "node": "./dist/index.cjs",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "files": [
    "dist"
  ],
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node"
  },
  "dependencies": {
    "@upstash/redis": "1.24.3"
  },
  "devDependencies": {
    "@changesets/cli": "2.26.2",
    "@edge-runtime/jest-environment": "2.3.6",
    "@edge-runtime/types": "2.2.6",
    "@types/jest": "29.5.7",
    "@types/node": "20.8.10",
    "eslint": "8.52.0",
    "husky": "8.0.3",
    "jest": "29.7.0",
    "lint-staged": "15.0.2",
    "prettier": "3.0.3",
    "ts-jest": "29.1.1",
    "tsup": "7.2.0",
    "typescript": "5.2.2",
    "eslint-config-custom": "0.0.0",
    "tsconfig": "0.0.0"
  },
  "engines": {
    "node": ">=14.6"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch --clean=false",
    "lint": "eslint --max-warnings=0 .",
    "prettier-check": "prettier --check .",
    "publint": "npx publint",
    "test": "jest --env @edge-runtime/jest-environment .test.ts && jest --env node .test.ts",
    "type-check": "tsc --noEmit"
  }
}