{
  "name": "@cachehub/cloudflare-cache",
  "type": "module",
  "version": "1.0.3",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "devDependencies": {
    "@cloudflare/workers-types": "^3.0.0",
    "@dmitryrechkin/eslint-standard": "^1.0.7",
    "dotenv": "^16.4.5",
    "eslint": "^8.0.0",
    "eslint-plugin-unused-imports": "^3.0.0",
    "fix-esm-import-path": "^1.0.1",
    "shx": "^0.3.4",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.5.3",
    "vitest": "^3.2.4",
    "wrangler": "^4.23.0"
  },
  "dependencies": {
    "@cachehub/core": "1.0.2"
  },
  "scripts": {
    "lint": "eslint .",
    "format": "eslint --fix .",
    "test:unit": "vitest run tests/Cache/ tests/Factory/",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test": "pnpm run test:unit && pnpm run test:integration",
    "test:dev": "npx wrangler dev test-server/index.ts --port 8788 --remote",
    "check": "tsc --noEmit",
    "build": "shx rm -rf dist && tsc && fix-esm-import-path dist",
    "package:publish": "pnpm publish --access public"
  }
}