UNPKG

webpack-assets-manifest

Version:

This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.

140 lines (139 loc) 4.21 kB
{ "name": "webpack-assets-manifest", "version": "6.2.1", "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@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912", "scripts": { "clean": "rimraf ./coverage/ ./dist/ ./cache/", "prebuild": "pnpm clean", "validate": "validate-package-exports --check --verify --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", "lockfile": "^1.0.4", "schema-utils": "^4.3.2", "tapable": "^2.2.2" }, "peerDependencies": { "webpack": "^5.61.0" }, "devDependencies": { "@commitlint/config-conventional": "^19.8.1", "@commitlint/types": "^19.8.1", "@types/lockfile": "^1.0.4", "@types/node": "^20.19.0", "@types/tapable": "^2.2.7", "@types/webpack-sources": "^3.2.3", "@vitest/coverage-v8": "^3.2.2", "@webdeveric/eslint-config-ts": "^0.11.0", "@webdeveric/prettier-config": "^0.3.0", "commitlint": "^19.8.1", "commitlint-plugin-cspell": "^0.2.0", "compression-webpack-plugin": "^11.1.0", "conventional-changelog-conventionalcommits": "^9.0.0", "copy-webpack-plugin": "^13.0.0", "cspell": "^9.0.2", "css-loader": "^7.1.2", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^4.4.3", "eslint-plugin-import": "^2.31.0", "file-loader": "^6.2.0", "fs-extra": "^11.3.0", "husky": "^9.1.7", "lint-staged": "^16.1.0", "memfs": "^4.17.2", "mini-css-extract-plugin": "^2.9.2", "prettier": "^3.5.3", "rimraf": "^6.0.1", "sass-loader": "^16.0.5", "semantic-release": "^24.2.5", "typescript": "^5.8.3", "validate-package-exports": "^0.11.0", "vitest": "^3.2.2", "webpack": "^5.99.9", "webpack-dev-server": "^5.2.2", "webpack-subresource-integrity": "^5.1.0" }, "pnpm": { "onlyBuiltDependencies": [ "esbuild", "unrs-resolver" ] } }