picocss/package.json
Yohn 6bc6d79caf Fixes header and footer in modal when form is direct child of the article, and if the form would be between the header and footer tags.
Modals with the size classes on the dialog were not sizing correctly when form was a child of the modal, and this has been corrected.
2025-01-18 19:31:23 -05:00

83 lines
2.8 KiB
JSON

{
"name": "@yohns/picocss",
"version": "2.2.7",
"description": "Minimal CSS Framework for semantic HTML, updated with enhanced capabilities.",
"authors": [
{
"name": "Lucas Larroche",
"website": "https://github.com/picocss/pico"
},
{
"name": "John Brittain III",
"website": "https://github.com/Yohn/PicoCSS"
}
],
"main": "css/pico.min.css",
"homepage": "https://picocss.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yohn/PicoCSS.git"
},
"keywords": [
"css",
"css-framework",
"dark-mode",
"dark-theme",
"lightweight",
"minimal",
"minimalist",
"minimalistic",
"native-html",
"scss-framework",
"semantic"
],
"bugs": {
"url": "https://github.com/Yohn/PicoCSS/issues"
},
"scripts": {
"✨": "run-s build",
"build": "run-s start lint \"build:*\" done",
"build-dev": "run-s start lint \"build-dev:*\" done",
"dev": "nodemon -q --watch scss/ --ext scss --exec \"run-s build-dev\"",
"lint": "run-s \"lint:*\"",
"lint:prettier": "prettier --write --log-level error \"scss/**/*.scss\"",
"lint:sort-scss": "postcss --config scss ./scss/**/*.scss --replace",
"build-dev:css": "sass --no-source-map --style expanded --no-error-css scss/:css/",
"build:css": "sass --no-source-map --style expanded --no-error-css scss/:css/",
"build-dev:themes": "node scripts/build-dev",
"build:themes": "node scripts/build-themes",
"build-dev:autoprefix": "postcss --config css --replace css/*.css !css/*.min.css",
"build:autoprefix": "postcss --config css --replace css/*.css !css/*.min.css",
"build-dev:minify": "cleancss -O1 --with-rebase --batch --batch-suffix .min css/*.css !css/*.min.css",
"build:minify": "cleancss -O1 --with-rebase --batch --batch-suffix .min css/*.css !css/*.min.css",
"build-dev:postbuild": "node scripts/copy-docs-css-files",
"build:postbuild": "node scripts/copy-docs-css-files",
"prelint": "echo '[@Yohns/PicoCSS] ✨ Lint'",
"prebuild:css": "echo '[@Yohns/PicoCSS] ✨ Compile'",
"prebuild:themes": "echo '[@Yohns/PicoCSS] ✨ Compile themes'",
"prebuild:autoprefix": "echo '[@Yohns/PicoCSS] ✨ Autoprefix'",
"prebuild:minify": "echo '[@Yohns/PicoCSS] ✨ Minify'",
"start": "echo '\\033[96m[@Yohns/PicoCSS] ✨ Start\\033[0m'",
"done": "echo '\\033[32m[@Yohns/PicoCSS] ✨ Done\\033[0m'"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"caniuse-lite": "^1.0.30001687",
"clean-css-cli": "^5.6.3",
"css-declaration-sorter": "^7.2.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"sass": "^1.82.0"
},
"engines": {
"node": ">=20"
},
"browserslist": [
"defaults"
]
}