Adds some basic CSS utilities for layouts. Uses any css defined by `src/css/styles.css`, and utilizes the `postcss-import` plugin to resolve imports into their contents. The combined final output contains the base style as defined by the configuration options, as well as some basic utilities.
24 lines
532 B
JSON
24 lines
532 B
JSON
{
|
|
"name": "lilypad",
|
|
"version": "1.0.0",
|
|
"description": "Generate some useful CSS helpers from a set of configuration variables.",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "ssh://git@git.cloud.haska.me:2222/wonderfulfrog/lilypad.git"
|
|
},
|
|
"keywords": [
|
|
"css"
|
|
],
|
|
"author": "Devin Haska",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"cssnano": "^7.0.7",
|
|
"postcss": "^8.5.3",
|
|
"postcss-import": "^16.1.0"
|
|
}
|
|
}
|