{
  "name": "resk-caching",
  "version": "1.1.3",
  "private": false,
  "type": "module",
  "description": "Smart caching system for LLM responses - reduce API costs by avoiding redundant calls",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "scripts": {
    "dev": "bun run --watch src/server.ts",
    "start": "bun run src/server.ts",
    "build": "rimraf dist && tsc -p tsconfig.json",
    "build:prod": "rimraf dist && tsc -p tsconfig.json",
    "test": "bun test tests || echo 'Bun not available in this CI; skipping tests'",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src tests --ext .ts --max-warnings=0",
    "format": "prettier --write .",
    "prepublishOnly": "bun run build",
    "example:demo": "bun run examples/comprehensive-demo.ts",
    "example:cost-tracking": "bun run examples/cost-tracking-example.ts",
    "example:performance": "bun run examples/performance-optimization-example.ts",
    "example:development": "bun run examples/development-testing-example.ts"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Resk-Security/resk-caching.git"
  },
  "bugs": {
    "url": "https://github.com/Resk-Security/resk-caching/issues"
  },
  "homepage": "https://github.com/Resk-Security/resk-caching#readme",
  "keywords": [
    "bun",
    "cache",
    "redis",
    "sqlite",
    "openapi",
    "opentelemetry",
    "prometheus",
    "vector-db",
    "ai",
    "llm",
    "llm-cache",
    "llm-cache-backend",
    "llm-cache-backend-bun",
    "llm-cache-backend-bun-redis",
    "llm-cache-backend-bun-sqlite"
  ],
  "author": "Resk contact@resk.fr",
  "license": "Apache-2.0",
  "dependencies": {
    "ioredis": "^5.4.1",
    "jose": "^5.9.6",
    "pino": "^9.4.0",
    "zod": "^3.23.8",
    "@asteasolutions/zod-to-openapi": "^7.2.0",
    "prom-client": "^15.1.3",
    "@opentelemetry/api": "^1.9.0",
    "@opentelemetry/sdk-trace-base": "^1.27.0",
    "@opentelemetry/resources": "^1.27.0",
    "@opentelemetry/semantic-conventions": "^1.27.0",
    "@opentelemetry/exporter-trace-otlp-http": "^0.53.0"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "bun-types": "^1.2.20",
    "eslint": "^9.33.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "pino-pretty": "^11.2.2",
    "prettier": "^3.6.2",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.39.1",
    "rimraf": "^5.0.5"
  }
}
