{
  "name": "serwist",
  "version": "9.5.7",
  "type": "module",
  "description": "A Swiss Army knife for service workers.",
  "files": [
    "src",
    "dist"
  ],
  "keywords": [
    "serwist",
    "serwistjs",
    "service worker",
    "sw"
  ],
  "author": "Google's Web DevRel Team",
  "contributors": [
    "Serwist <ducanh2912.rusty@gmail.com> (https://serwist.pages.dev/)"
  ],
  "license": "MIT",
  "repository": "https://github.com/serwist/serwist",
  "bugs": "https://github.com/serwist/serwist/issues",
  "homepage": "https://serwist.pages.dev",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "legacy": [
        "./dist/index.legacy.d.ts"
      ],
      "internal": [
        "./dist/index.internal.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./legacy": {
      "types": "./dist/index.legacy.d.ts",
      "default": "./dist/index.legacy.js"
    },
    "./internal": {
      "types": "./dist/index.internal.d.ts",
      "default": "./dist/index.internal.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "idb": "8.0.3",
    "@serwist/utils": "9.5.7"
  },
  "devDependencies": {
    "rollup": "4.59.0",
    "typescript": "5.9.3",
    "@serwist/configs": "9.5.7"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rimraf dist && NODE_ENV=production rollup --config rollup.config.js",
    "dev": "rollup --config rollup.config.js --watch",
    "lint": "biome lint ./src",
    "typecheck": "tsc"
  }
}