{
  "name": "serwist",
  "version": "9.5.11",
  "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.mjs",
  "types": "./dist/index.d.mts",
  "typesVersions": {
    "*": {
      "legacy": [
        "./dist/index.legacy.d.mts"
      ],
      "internal": [
        "./dist/index.internal.d.mts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./legacy": {
      "types": "./dist/index.legacy.d.mts",
      "default": "./dist/index.legacy.mjs"
    },
    "./internal": {
      "types": "./dist/index.internal.d.mts",
      "default": "./dist/index.internal.mjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "idb": "8.0.3",
    "@serwist/utils": "9.5.11"
  },
  "devDependencies": {
    "tsdown": "0.21.10",
    "typescript": "6.0.3"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rimraf dist && NODE_ENV=production tsdown",
    "dev": "tsdown --watch",
    "lint": "biome lint ./src",
    "typecheck": "tsc"
  }
}