{
  "name": "@serwist/build",
  "version": "9.5.11",
  "type": "module",
  "description": "A module that integrates into your build process, helping you generate a manifest of local files that should be precached.",
  "files": [
    "src",
    "dist"
  ],
  "keywords": [
    "serwist",
    "serwistjs",
    "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.mjs",
  "types": "./dist/index.d.mts",
  "typesVersions": {
    "*": {
      "schema": [
        "./dist/index.schema.d.mts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./schema": {
      "types": "./dist/index.schema.d.mts",
      "default": "./dist/index.schema.mjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "common-tags": "1.8.2",
    "glob": "13.0.6",
    "pretty-bytes": "6.1.1",
    "source-map": "0.8.0-beta.0",
    "type-fest": "5.6.0",
    "zod": "4.4.1",
    "@serwist/utils": "9.5.11"
  },
  "devDependencies": {
    "@types/common-tags": "1.8.4",
    "@types/node": "25.6.0",
    "tsdown": "0.21.10",
    "typescript": "6.0.3"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rimraf dist && NODE_OPTIONS='--max-old-space-size=4096' NODE_ENV=production tsdown",
    "dev": "tsdown --watch",
    "lint": "biome lint ./src",
    "typecheck": "tsc"
  }
}