licss
Version:
A Gulp plugin for processing styles with support for .css, .scss, .sass, and .pcss files. It uses minification, autoprefixing, and removes unused CSS styles.
76 lines (75 loc) • 1.77 kB
JSON
{
"name": "licss",
"version": "0.2.3",
"description": "A Gulp plugin for processing styles with support for .css, .scss, .sass, and .pcss files. It uses minification, autoprefixing, and removes unused CSS styles.",
"keywords": [
"bootstrap",
"bundle",
"css",
"gulp",
"minify",
"optimize",
"pcss",
"purge",
"sass",
"scss",
"styles"
],
"homepage": "https://github.com/llcawc/licss",
"license": "MIT",
"author": "llcawc",
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./dist/licss.cjs",
"module": "./dist/licss.js",
"types": "./dist/licss.d.cts",
"exports": {
".": {
"import": "./dist/licss.js",
"require": "./dist/licss.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest",
"lint": "oxlint",
"fix": "oxlint --fix",
"check": "oxfmt --check",
"fmt": "oxfmt",
"validate": "oxlint && tsc --noEmit",
"typecheck": "tsc --noEmit",
"tsc": "tsc",
"dev": "tsdown --watch",
"build": "tsdown"
},
"dependencies": {
"browserslist": "^4.28.2",
"colors": "^1.4.0",
"fancy-log": "^2.0.0",
"lightningcss": "^1.32.0",
"plugin-error": "^2.0.1",
"purgecss": "^8.0.0",
"sass": "^1.99.0",
"sass-embedded": "^1.99.0",
"tinyglobby": "^0.2.16"
},
"devDependencies": {
"@types/fancy-log": "^2.0.2",
"@types/gulp": "^4.0.18",
"@types/node": "^25.6.0",
"@types/vinyl": "^2.0.12",
"@typescript/native-preview": "7.0.0-dev.20260410.1",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"source-map": "^0.7.6",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vinyl": "^3.0.1",
"vitest": "^4.1.4"
}
}