UNPKG

rollup-plugin-html-literals

Version:
63 lines (62 loc) 1.49 kB
{ "name": "rollup-plugin-html-literals", "type": "module", "version": "2.0.0", "description": "A Rollup plugin to minify html template literals", "main": "dist/plugin.cjs", "module": "dist/plugin.js", "types": "types/plugin.d.ts", "engines": { "node": ">=16" }, "scripts": { "build": "rollup -c", "lint": "eslint src", "prepublishOnly": "npm run lint && npm run build" }, "keywords": [ "rollup", "rollup-plugin", "minify", "html", "template-literals", "tagged", "lit-html" ], "files": [ "dist", "types" ], "exports": { ".": { "types": "./types/plugin.d.ts", "import": "./dist/plugin.js", "require": "./dist/plugin.cjs" } }, "repository": { "type": "git", "url": "git+https://github.com/jleeson/rollup-plugin-html-literals.git" }, "bugs": { "url": "https://github.com/jleeson/rollup-plugin-html-literals/issues" }, "homepage": "https://github.com/jleeson/rollup-plugin-html-literals#readme", "author": "Jacob Leeson <jleeson2000@gmail.com> (https://twitter.com/jleesons)", "license": "MIT", "devDependencies": { "@eslint/js": "^9.28.0", "esbuild": "^0.25.5", "eslint": "^9.28.0", "globals": "^16.2.0", "rollup": "^4.41.1", "rollup-plugin-esbuild": "^6.2.1" }, "dependencies": { "@rollup/pluginutils": "^5.1.4", "minify-literals": "^1.0.10" }, "peerDependencies": { "rollup": "^2.x.x || ^3.x.x || ^4.x.x" } }