{
    "name": "@theorchard/suite-plugin-persisted-cache",
    "version": "1.1.25",
    "description": "Plugin to create an Apollo client with a persisted cache",
    "author": "The Orchard",
    "homepage": "https://github.com/theorchard/orchard-suite#readme",
    "license": "MIT",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/esm/src/index.js",
            "require": "./dist/cjs/src/index.js"
        }
    },
    "directories": {
        "lib": "dist"
    },
    "files": [
        "dist",
        "src",
        "worker"
    ],
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/react-ts-prettier"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs && ./scripts/copyWorker.sh",
        "clean": "rm -rf dist & rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test:unit": "jest",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "@theorchard/suite-apollo": "workspace:*",
        "@theorchard/suite-utils": "workspace:*",
        "idb-keyval": "^6.1.0",
        "lodash.debounce": "^4.0.8"
    },
    "peerDependencies": {
        "@apollo/client": "3.x",
        "@sentry/browser": "*"
    },
    "devDependencies": {
        "@types/lodash.debounce": "^4.0.6",
        "@apollo/client": "^3.9.11"
    }
}
