Initial commit

This commit is contained in:
Devin Haska 2025-05-28 16:02:16 -07:00
commit bd6876490b
Signed by: wonderfulfrog
SSH key fingerprint: SHA256:ejOGyH9064rJiikox4ykOHLeuUg1f9l8wmJxs+MzNw0
13 changed files with 1444 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"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"
}
}