UNPKG

unimported-analyzer-webpack-plugin

Version:
62 lines 1.55 kB
{ "name": "unimported-analyzer-webpack-plugin", "version": "0.0.1", "description": "A webpack plugin to analyze unimported files", "author": "Lumirelle", "license": "MIT", "homepage": "https://github.com/Lumirelle/unimported-analyzer-webpack-plugin#readme", "repository": { "type": "git", "url": "git+https://github.com/Lumirelle/unimported-analyzer-webpack-plugin.git" }, "bugs": { "url": "https://github.com/Lumirelle/unimported-analyzer-webpack-plugin/issues" }, "keywords": [ "webpack", "plugin", "unimported", "analyzer" ], "main": "dist/index.js", "files": [ "dist" ], "engines": { "node": ">=18" }, "peerDependencies": { "webpack": ">=4.0.0" }, "dependencies": { "glob": "^10.4.5", "minimatch": "^9.0.5" }, "devDependencies": { "@antfu/eslint-config": "^4.12.0", "@antfu/ni": "^24.3.0", "bumpp": "^10.1.0", "eslint": "^9.25.1", "eslint-plugin-format": "^1.0.1", "lint-staged": "^15.5.1", "npm-run-all2": "^8.0.4", "simple-git-hooks": "^2.12.1", "webpack": "^5.89.0", "webpack-cli": "^5.1.4" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "build": "webpack --mode=production", "test": "run-s test:*", "test:vue3": "cd test/vue3 && nr build", "test:v4": "cd test/webpack4 && nr build", "test:v5": "cd test/webpack5 && nr build", "release": "bumpp && na publish", "lint": "eslint --cache ." } }