UNPKG

rollup-plugin-gzip

Version:

Compress your Rollup / Vite bundle with Gzip or Brotli

68 lines (67 loc) 1.87 kB
{ "name": "rollup-plugin-gzip", "version": "4.1.1", "engines": { "node": ">=10.0.0" }, "description": "Compress your Rollup / Vite bundle with Gzip or Brotli", "keywords": [ "rollup", "rollup-plugin", "gzip", "compress", "compression", "brotli", "vite", "vite-plugin" ], "type": "module", "main": "./dist/cjs/index.cjs", "module": "./dist/index.mjs", "exports": { "require": "./dist/cjs/index.cjs", "import": "./dist/index.js", "default": "./dist/index.js" }, "typings": "./dist/index.d.ts", "scripts": { "build": "tsc && tsc --project tsconfig-cjs.json && node rename-dist-cjs.js", "clean": "rimraf dist", "format": "prettier --write --config .prettierrc '*.js', './src/**' './test/**' './examples/**'", "lint": "eslint", "test": "vitest run", "prepack": "yarn run clean && yarn run build", "prepublish": "yarn run lint && yarn run test" }, "repository": { "type": "git", "url": "https://github.com/kryops/rollup-plugin-gzip.git" }, "author": "Michael Manzinger <michael@kryops.de>", "license": "MIT", "bugs": { "url": "https://github.com/kryops/rollup-plugin-gzip/issues" }, "homepage": "https://github.com/kryops/rollup-plugin-gzip#readme", "devDependencies": { "@types/node": "^24.0.1", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^4.4.3", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest": "^28.13.5", "eslint-plugin-n": "^17.20.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "rolldown-vite": "^6.3.19", "rollup": "^4.43.0", "typescript": "^5.8.3", "typescript-eslint": "^8.34.0", "vite": "^6.3.5", "vitest": "^3.2.3" }, "peerDependencies": { "rollup": ">=2.0.0" }, "packageManager": "yarn@4.9.2" }