vite-plugin-bundlesize
Version:
Monitor bundle sizes and analyze bundle contents
59 lines • 1.44 kB
JSON
{
"name": "vite-plugin-bundlesize",
"version": "0.2.0",
"description": "Monitor bundle sizes and analyze bundle contents",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/drwpow/vite-plugin-bundlesize.git"
},
"keywords": [
"vite",
"bundle",
"esbuild",
"bundlesize",
"webpack-bundle-analyzer"
],
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/drwpow/vite-plugin-bundlesize/issues"
},
"homepage": "https://github.com/drwpow/vite-plugin-bundlesize#readme",
"bin": {
"bundlesize": "./bin/cli.js"
},
"main": "dist/plugin/index.js",
"peerDependencies": {
"vite": ">= 5.0.0"
},
"dependencies": {
"picomatch": "^4.0.2",
"strip-ansi": "^7.1.0",
"vlq": "^2.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.14",
"@types/picomatch": "^2.3.4",
"del-cli": "^6.0.0",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vitest": "^3.0.9"
},
"scripts": {
"build": "npm run clean && npm run build:ts",
"build:ts": "tsc",
"dev": "npm run build:core -- --watch",
"clean": "del-cli dist",
"lint": "biome check src",
"format": "biome format --write src",
"test": "vitest run",
"test:js": "vitest run",
"test:ts": "tsc --noEmit",
"version": "npm run build"
}
}