UNPKG

rollup-plugin-visualizer

Version:

Visualize and analyze your bundle to quickly see which modules are taking up space.

107 lines (106 loc) 2.7 kB
{ "name": "rollup-plugin-visualizer", "version": "7.0.1", "author": "Denis Bardadym <bardadymchik@gmail.com>", "license": "MIT", "bin": "./dist/bin/cli.js", "main": "./dist/plugin/index.js", "type": "module", "files": [ "dist" ], "exports": { ".": { "types": "./dist/plugin/index.d.ts", "import": "./dist/plugin/index.js" } }, "repository": { "type": "git", "url": "git@github.com:btd/rollup-plugin-visualizer.git" }, "homepage": "https://github.com/btd/rollup-plugin-visualizer", "bugs": { "url": "https://github.com/btd/rollup-plugin-visualizer/issues" }, "scripts": { "lint": "oxlint -c .oxlintrc.json plugin src", "format": "prettier plugin src --write --list-different", "build": "run-p build:*", "build:plugin": "tsc", "build:frontend": "rollup -c rollup.config.js", "build-dev": "rollup -c rollup.config-dev.js", "clean": "del-cli dist", "prebuild": "npm run clean", "test": "vitest --run" }, "dependencies": { "open": "^11.0.0", "picomatch": "^4.0.2", "source-map": "^0.7.4", "yargs": "^18.0.0" }, "peerDependencies": { "rolldown": "1.x || ^1.0.0-beta || ^1.0.0-rc", "rollup": "2.x || 3.x || 4.x" }, "peerDependenciesMeta": { "rollup": { "optional": true }, "rolldown": { "optional": true } }, "devDependencies": { "@rollup/plugin-commonjs": "^29.0.0", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.0.0", "@types/bytes": "^3.1.1", "@types/d3-array": "^3.0.3", "@types/d3-color": "^3.1.0", "@types/d3-force": "^3.0.3", "@types/d3-hierarchy": "^3.1.0", "@types/d3-scale": "^4.0.2", "@types/d3-shape": "^3.1.0", "@types/node": "^22.0.0", "@types/picomatch": "^4.0.0", "@types/three": "^0.183.1", "@types/yargs": "^17.0.10", "bytes": "^3.1.2", "d3-array": "^3.1.6", "d3-color": "^3.1.0", "d3-force": "^3.0.0", "d3-hierarchy": "^3.1.2", "d3-scale": "^4.0.2", "d3-shape": "^3.1.0", "del-cli": "^7.0.0", "npm-run-all": "^4.1.5", "oxlint": "^1.0.0", "postcss": "^8.4.14", "postcss-url": "^10.1.3", "preact": "^10.7.2", "prettier": "^3.1.0", "rolldown": "^1.0.0-rc.5", "rollup": "^4.5.2", "rollup-plugin-postcss": "^4.0.2", "sass": "^1.52.1", "three": "^0.180.0", "tslib": "^2.8.1", "typescript": "~5.9.3", "vite": "^7.3.1", "vitest": "^4.0.0" }, "engines": { "node": ">=22" }, "keywords": [ "rollup-plugin", "visualizer", "network", "treemap", "sunburst", "diagram" ] }