webpack-split-chunks-analyzer
Version:
Debug how your application is dynamically loaded by webpack
78 lines • 2.08 kB
JSON
{
"name": "webpack-split-chunks-analyzer",
"version": "0.3.2",
"description": "Debug how your application is dynamically loaded by webpack",
"keywords": [
"webpack",
"webpackplugin",
"webpack-plugin",
"webpackanalyzer",
"splitchunks",
"bundlesize"
],
"license": "MIT",
"author": "Mac Lockard (https://github.com/maclockard)",
"repository": {
"type": "git",
"url": "https://github.com/maclockard/webpack-split-chunks-analyzer"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"package.json",
"LICENSE",
"lib",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"./**/*.{ts,js,json,md,html}": [
"prettier --write"
]
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"cheerio": "~1.0.0",
"pretty-bytes": "^5.6.0",
"transducist": "^2.2.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/cheerio": "^0.22.35",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webpack": "^5.28.5",
"@xyflow/react": "^12.4.4",
"babel-loader": "^9.2.1",
"core-js": "^3.40.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"react": "^19.0.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^19.0.0",
"style-loader": "^4.0.0",
"typescript": "^5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"scripts": {
"build": "pnpm build:plugin && pnpm build:dist",
"build:plugin": "tsc",
"watch:plugin": "pnpm build -w",
"build:dist": "NODE_ENV=production webpack-cli --progress --config webpack.config.js && rm dist/main.js",
"watch:dist": "webpack-dev-server --progress --config webpack.config.js",
"clean": "rm -rf lib dist node_modules"
}
}