UNPKG

rollup-plugin-css-lit

Version:

Rollup plugin for importing CSS sources as constructable stylesheets to projects using lit (lit-html and lit-element) or fast-element.

78 lines 1.94 kB
{ "name": "rollup-plugin-css-lit", "version": "2.1.0", "description": "Rollup plugin for importing CSS sources as constructable stylesheets to projects using lit (lit-html and lit-element) or fast-element.", "author": "Ferdinand Prantl <prantlf@gmail.com> (http://prantl.tk)", "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/prantlf/rollup-plugin-css-lit/blob/master/LICENSE" } ], "homepage": "http://github.com/prantlf/rollup-plugin-css-lit/", "repository": { "type": "git", "url": "https://github.com/prantlf/rollup-plugin-css-lit.git" }, "bugs": { "url": "http://github.com/prantlf/rollup-plugin-css-lit/issues" }, "type": "module", "module": "lib/index.js", "main": "lib/index.cjs", "files": [ "lib" ], "engines": { "node": ">=18" }, "scripts": { "prepare": "rollup -c", "lint": "biome lint *.js lib test", "check": "teru test/index.cjs && teru-esm test/index.js", "cover": "c8 teru-esm test/index.js", "test": "biome lint *.js lib test && teru test/index.cjs && c8 teru-esm test/index.js" }, "c8": { "check-coverage": true, "reporter": [ "text", "lcov" ], "branches": 100, "lines": 100, "functions": 100, "statements": 100 }, "dependencies": { "@rollup/pluginutils": "^5.1.3", "postcss": "^8.4.49", "rollup-copy-transform-css": "^2.1.0" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "builtin-modules": "^4.0.0", "c8": "^10.1.3", "rollup": "^4.28.1", "rollup-plugin-css-lit": "link:", "tehanu": "^1.0.1", "tehanu-repo-coco": "^1.0.1", "tehanu-teru": "^1.0.1" }, "peerDependencies": { "lit": "^2 || ^3", "rollup": "^2 || ^3 || ^4" }, "keywords": [ "rollup", "plugin", "rollup-plugin", "lit", "lit-css", "lit-html", "lit-element", "fast-element", "css" ] }