{
  "name": "webpack-assets-manifest",
  "version": "6.5.2",
  "description": "This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/webdeveric/webpack-assets-manifest.git"
  },
  "bugs": {
    "url": "https://github.com/webdeveric/webpack-assets-manifest/issues"
  },
  "author": {
    "email": "eric@webdeveric.com",
    "name": "Eric King",
    "url": "http://webdeveric.com/"
  },
  "homepage": "https://github.com/webdeveric/webpack-assets-manifest",
  "keywords": [
    "webpack-assets-manifest",
    "webpack-plugin",
    "webpack",
    "plugin",
    "assets",
    "manifest",
    "json",
    "subresource",
    "integrity",
    "sri"
  ],
  "engines": {
    "node": ">=20.10.0"
  },
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.js",
      "import": "./dist/mjs/index.js"
    },
    "./*": {
      "types": "./dist/types/*.d.ts",
      "require": "./dist/cjs/*.js",
      "import": "./dist/mjs/*.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      "helpers": [
        "./dist/types/helpers.d.ts"
      ],
      "options-schema": [
        "./dist/types/options-schema.d.ts"
      ],
      "type-predicate": [
        "./dist/types/type-predicate.d.ts"
      ],
      "types": [
        "./dist/types/types.d.ts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "packageManager": "pnpm@11.2.2+sha512.36e6621fad506178936455e70247b8808ef4ec25797a9f437a93281a020484e2607f6a469a22e982987c3dbb8866e3071514ab10a4a1749e06edcd1ec118436f",
  "scripts": {
    "clean": "rimraf ./coverage/ ./dist/ ./cache/",
    "prebuild": "pnpm clean",
    "validate": "validate-package-exports --check --info",
    "build": "tsc --build tsconfig.cjs.json tsconfig.mjs.json --force",
    "postbuild": "node postbuild.mjs && pnpm validate",
    "lint": "eslint \"./*.{js,cjs,mjs,ts,cts,mts}\" ./src ./test ./examples",
    "typecheck": "tsc --build --verbose",
    "spellcheck": "cspell --no-progress './{.github,src,examples,test}/**/*.{ts,js,json,yml}' './*.{md,js,mjs,mts}' './package.json'",
    "format": "prettier --write ./*.{mts,mjs,json,md} ./src/ ./test/ --no-error-on-unmatched-pattern",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "prepare": "husky",
    "prepack": "pnpm build",
    "prepublishOnly": "pnpm spellcheck && pnpm lint && pnpm coverage"
  },
  "prettier": "@webdeveric/prettier-config",
  "dependencies": {
    "deepmerge": "^4.3.1",
    "proper-lockfile": "^4.1.2",
    "schema-utils": "^4.3.3",
    "tapable": "^2.3.3"
  },
  "peerDependencies": {
    "webpack": "^5.61.0"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^21.0.1",
    "@commitlint/types": "^21.0.1",
    "@types/node": "^20.19.41",
    "@types/proper-lockfile": "^4.1.4",
    "@types/tapable": "^2.3.0",
    "@types/webpack-sources": "^3.2.3",
    "@vitest/coverage-v8": "^4.1.7",
    "@webdeveric/eslint-config-ts": "^0.12.0",
    "@webdeveric/prettier-config": "^0.4.0",
    "commitlint": "^21.0.1",
    "commitlint-plugin-cspell": "^0.9.1",
    "compression-webpack-plugin": "^12.0.0",
    "conventional-changelog-conventionalcommits": "^9.3.1",
    "copy-webpack-plugin": "^14.0.0",
    "cspell": "^10.0.0",
    "css-loader": "^7.1.4",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.32.0",
    "file-loader": "^6.2.0",
    "fs-extra": "^11.3.5",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.5",
    "memfs": "^4.57.2",
    "mini-css-extract-plugin": "^2.10.2",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "sass-loader": "^17.0.0",
    "semantic-release": "^25.0.3",
    "typescript": "^6.0.3",
    "validate-package-exports": "^0.26.0",
    "vitest": "^4.1.7",
    "webpack": "^5.107.0",
    "webpack-dev-server": "^5.2.4",
    "webpack-subresource-integrity": "^5.1.0"
  }
}
