UNPKG

webpack-dep-finder

Version:

A Webpack plugin and CLI tool for efficiently pinpointing and analyzing dependencies in your Webpack bundles using regex. Ideal for optimizing and streamlining the build process during iterative development, helping to detangle complex dependency trees qu

64 lines 1.64 kB
{ "name": "webpack-dep-finder", "version": "1.2.1", "description": "A Webpack plugin and CLI tool for efficiently pinpointing and analyzing dependencies in your Webpack bundles using regex. Ideal for optimizing and streamlining the build process during iterative development, helping to detangle complex dependency trees quickly.", "repository": { "type": "git", "url": "https://github.com/puj/webpack-dep-finder" }, "main": "lib/plugin.js", "bin": { "webpack-dep-finder": "./bin/webpack-dep-finder.js" }, "engines": { "node": ">=14.0.0" }, "scripts": { "test": "jest", "build": "npm i && webpack --config webpack.config.js", "publish:dry-run": "npm publish --dry-run", "publish": "npm publish" }, "keywords": [ "webpack", "webpack plugin", "dependency analysis", "bundle analysis", "build optimization", "build performance", "dependency detection", "module analysis", "build tools", "JavaScript", "code splitting", "tree shaking", "performance optimization", "development tools", "frontend performance", "iterative optimization", "build efficiency", "codebase optimization", "webpack CLI" ], "author": "puj", "license": "MIT", "dependencies": { "babel-loader": "^9.0.0", "commander": "^11.0.0", "html-webpack-plugin": "^5.5.0", "path": "^0.12.7", "webpack": "^4.0.0 || ^5.0.0", "ts-node": "^10.9.2", "typescript": "^5.5.4" }, "peerDependencies": { "webpack": "^4.0.0 || ^5.0.0" }, "devDependencies": { "@babel/preset-env": "^7.25.4", "jest": "^29.7.0", "rimraf": "^3.0.0", "webpack-cli": "^5.1.4", "webpack-node-externals": "^3.0.0" } }