{
  "name": "@serwist/webpack-plugin",
  "version": "9.5.7",
  "type": "module",
  "description": "A plugin for your webpack build process, helping you generate a manifest of local files that should be precached.",
  "files": [
    "src",
    "dist"
  ],
  "keywords": [
    "serwist",
    "serwistjs",
    "webpack",
    "rspack",
    "rsbuild",
    "service worker",
    "caching",
    "fetch requests",
    "offline",
    "file manifest"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "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": {
    "*": {
      "internal": [
        "./dist/index.internal.d.ts"
      ],
      "schema": [
        "./dist/index.schema.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./internal": {
      "types": "./dist/index.internal.d.ts",
      "default": "./dist/index.internal.js"
    },
    "./schema": {
      "types": "./dist/index.schema.d.ts",
      "default": "./dist/index.schema.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "pretty-bytes": "6.1.1",
    "zod": "4.3.6",
    "@serwist/build": "9.5.7",
    "@serwist/utils": "9.5.7"
  },
  "devDependencies": {
    "@types/node": "25.5.0",
    "@types/webpack": "5.28.5",
    "rollup": "4.59.0",
    "typescript": "5.9.3",
    "webpack": "5.105.4",
    "@serwist/configs": "9.5.7"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0",
    "webpack": "4.4.0 || ^5.9.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    },
    "webpack": {
      "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"
  }
}