{
  "name": "redis-collection",
  "version": "0.0.1",
  "description": "Async utility data structure using redis",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "browser": "dist/index.global.js",
  "unpkg": "dist/index.global.js",
  "types": "dist/index.d.ts",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "sideEffects": false,
  "license": "MIT",
  "scripts": {
    "docs": "typedoc",
    "lint": "eslint src tests --fix --cache",
    "format": "prettier --write . --cache",
    "test": "vitest run",
    "test:watch": "vitest",
    "update": "yarn upgrade-interactive",
    "build": "tsup",
    "typecheck": "tsc -p tsconfig.eslint.json",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run",
    "prepack": "yarn build && pinst --disable",
    "_postinstall": "husky install .github/husky",
    "postpack": "pinst --enable"
  },
  "keywords": [
    "map",
    "collection",
    "utility",
    "redis",
    "async",
    "async-store"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.4.4",
    "@commitlint/config-conventional": "^17.4.4",
    "@favware/cliff-jumper": "^2.0.0",
    "@favware/npm-deprecate": "^1.0.7",
    "@types/node": "^18.15.3",
    "@vitest/coverage-c8": "^0.29.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.36.0",
    "eslint-config-mahir": "^0.0.23",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.0",
    "pinst": "^3.0.0",
    "prettier": "^2.8.4",
    "tsup": "^6.6.3",
    "typedoc": "^0.23.27",
    "typescript": "^4.9.5",
    "vitest": "^0.29.3"
  },
  "files": [
    "dist/**/*.js*",
    "dist/**/*.mjs*",
    "dist/**/*.d*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Sofi-Tech/Redis-Collection.git"
  },
  "bugs": {
    "url": "https://github.com/Sofi-Tech/Redis-Collection/issues"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "resolutions": {
    "ansi-regex": "^5.0.1",
    "minimist": "^1.2.8"
  },
  "packageManager": "yarn@3.4.1"
}