{
  "name": "quickv",
  "version": "0.1.1",
  "description": "A fast, SQLite-backed key-value cache for Bun. No Redis required.",
  "keywords": [
    "bun",
    "cache",
    "caching",
    "database",
    "key-value",
    "kv",
    "redis-alternative",
    "sqlite",
    "store"
  ],
  "homepage": "https://github.com/brielov/quickv#readme",
  "bugs": {
    "url": "https://github.com/brielov/quickv/issues"
  },
  "license": "MIT",
  "author": "brielov",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/brielov/quickv.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "bunup",
    "dev": "bunup --watch",
    "test": "bun test",
    "format": "oxfmt --write .",
    "format:check": "oxfmt --check .",
    "lint": "oxlint --type-aware --type-check"
  },
  "devDependencies": {
    "@types/bun": "^1.3.6",
    "bunup": "^0.16.20",
    "oxfmt": "^0.26.0",
    "oxlint": "^1.41.0",
    "oxlint-tsgolint": "^0.11.1",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "typescript": ">=4.5.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "engines": {
    "bun": ">=1.0.0"
  }
}
