webpack-assets-manifest
Version:
This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.
143 lines (142 loc) • 4.29 kB
JSON
{
"name": "webpack-assets-manifest",
"version": "6.5.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.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268",
"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.0"
},
"peerDependencies": {
"webpack": "^5.61.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@types/node": "^20.19.37",
"@types/proper-lockfile": "^4.1.4",
"@types/tapable": "^2.3.0",
"@types/webpack-sources": "^3.2.3",
"@vitest/coverage-v8": "^4.0.18",
"@webdeveric/eslint-config-ts": "^0.12.0",
"@webdeveric/prettier-config": "^0.3.0",
"commitlint": "^20.4.3",
"commitlint-plugin-cspell": "^0.6.0",
"compression-webpack-plugin": "^12.0.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"copy-webpack-plugin": "^14.0.0",
"cspell": "^9.7.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.4",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"memfs": "^4.56.11",
"mini-css-extract-plugin": "^2.10.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"sass-loader": "^16.0.7",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"validate-package-exports": "^0.19.1",
"vitest": "^4.0.18",
"webpack": "^5.105.4",
"webpack-dev-server": "^5.2.3",
"webpack-subresource-integrity": "^5.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
],
"overrides": {
"serialize-javascript@<=7.0.2": ">=7.0.3"
}
}
}