1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-10-16 13:47:28 +00:00
bluelib/package.json

58 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@steffo/bluelib",
2022-10-15 11:17:37 +00:00
"version": "6.0.0",
"description": "A stylesheet that supports fast dynamic recoloring via CSS variables",
v5.0.0 (#47) * Create full implementation of font groups * Fix typo mixin → mixins * Add all possible values of the `font` CSS property to font groups. * Create full implementation of color groups * Improve documentation of font groups mixins * Add overloads for color group mixins * Bump version to 5.0.0 * Add `bhsl` prefix to color hsl groups * Add `bfont` prefix to font groups * Port `royalblue` theme to color groups * Rename `utils` → `groups` * Begin skeleton rewrite * Add missing </editor-fold> * Reimplement "Page" rules * Use `rem` instead of `em` as footer margin * Add bottom page-footer margin * Re-add chapters * Delete the apache2 example * Remove compiled css for now * Re-add separators * Re-add images * Improve docs and remove figures (for now?) * Implement tables and other things * Start working on lists * Update VSCode launch config * Add initial experimental support for `list-unordered` and `list-ordered` * WIP: some work on glossaries and tables * WIP: modifiers * Make a lot of progress which I'm to lazy to commit properly * FANCY CLASSIC STYLES * Start configuring a codespaces environment * Fix table caption background color * mess around a bit with backdrops * Apply some tweaks to tables * Comment out classic stylesheets * Add skeleton for inputs and forms * Mark missing things * Huge progress but im lost * Create yarn.lock so intellij stops annoying me about npm * Complete inputs and misc things * Complete collapsible details * Complete text elements * Complete forms
2022-10-11 09:27:55 +00:00
"scripts": {
2022-10-11 14:46:55 +00:00
"dev": "web-dev-server --watch",
"build": "cd dist && ./_build.sh && cd .."
v5.0.0 (#47) * Create full implementation of font groups * Fix typo mixin → mixins * Add all possible values of the `font` CSS property to font groups. * Create full implementation of color groups * Improve documentation of font groups mixins * Add overloads for color group mixins * Bump version to 5.0.0 * Add `bhsl` prefix to color hsl groups * Add `bfont` prefix to font groups * Port `royalblue` theme to color groups * Rename `utils` → `groups` * Begin skeleton rewrite * Add missing </editor-fold> * Reimplement "Page" rules * Use `rem` instead of `em` as footer margin * Add bottom page-footer margin * Re-add chapters * Delete the apache2 example * Remove compiled css for now * Re-add separators * Re-add images * Improve docs and remove figures (for now?) * Implement tables and other things * Start working on lists * Update VSCode launch config * Add initial experimental support for `list-unordered` and `list-ordered` * WIP: some work on glossaries and tables * WIP: modifiers * Make a lot of progress which I'm to lazy to commit properly * FANCY CLASSIC STYLES * Start configuring a codespaces environment * Fix table caption background color * mess around a bit with backdrops * Apply some tweaks to tables * Comment out classic stylesheets * Add skeleton for inputs and forms * Mark missing things * Huge progress but im lost * Create yarn.lock so intellij stops annoying me about npm * Complete inputs and misc things * Complete collapsible details * Complete text elements * Complete forms
2022-10-11 09:27:55 +00:00
},
"keywords": [
"bluelib",
"css",
"less"
],
"homepage": "https://gh.steffo.eu/bluelib/",
"bugs": {
"url": "https://github.com/Steffo99/bluelib/issues",
"email": "me@steffo.eu"
},
"author": {
"name": "Stefano Pigozzi",
"email": "me@steffo.eu",
"url": "https://www.steffo.eu"
},
"contributors": [
{
"name": "Stefano Pigozzi",
"email": "me@steffo.eu",
"url": "https://www.steffo.eu"
},
{
"name": "Lorenzo Balugani",
"email": "lorenzo.balugani@fermitech.info",
"url": "https://www.fermitech.info"
}
],
"funding": [
{
"type": "individual",
"url": "https://ko-fi.com/steffo"
}
],
"files": [
"dist/**/*.less",
"dist/**/*.css",
"dist/**/*.css.map"
],
"repository": {
"type": "git",
"url": "https://github.com/Steffo99/bluelib.git"
},
"license": "AGPL-3.0-or-later",
v5.0.0 (#47) * Create full implementation of font groups * Fix typo mixin → mixins * Add all possible values of the `font` CSS property to font groups. * Create full implementation of color groups * Improve documentation of font groups mixins * Add overloads for color group mixins * Bump version to 5.0.0 * Add `bhsl` prefix to color hsl groups * Add `bfont` prefix to font groups * Port `royalblue` theme to color groups * Rename `utils` → `groups` * Begin skeleton rewrite * Add missing </editor-fold> * Reimplement "Page" rules * Use `rem` instead of `em` as footer margin * Add bottom page-footer margin * Re-add chapters * Delete the apache2 example * Remove compiled css for now * Re-add separators * Re-add images * Improve docs and remove figures (for now?) * Implement tables and other things * Start working on lists * Update VSCode launch config * Add initial experimental support for `list-unordered` and `list-ordered` * WIP: some work on glossaries and tables * WIP: modifiers * Make a lot of progress which I'm to lazy to commit properly * FANCY CLASSIC STYLES * Start configuring a codespaces environment * Fix table caption background color * mess around a bit with backdrops * Apply some tweaks to tables * Comment out classic stylesheets * Add skeleton for inputs and forms * Mark missing things * Huge progress but im lost * Create yarn.lock so intellij stops annoying me about npm * Complete inputs and misc things * Complete collapsible details * Complete text elements * Complete forms
2022-10-11 09:27:55 +00:00
"private": false,
"devDependencies": {
2022-10-11 14:46:55 +00:00
"@web/dev-server": "^0.1.34",
"less": "^4.1.3"
v5.0.0 (#47) * Create full implementation of font groups * Fix typo mixin → mixins * Add all possible values of the `font` CSS property to font groups. * Create full implementation of color groups * Improve documentation of font groups mixins * Add overloads for color group mixins * Bump version to 5.0.0 * Add `bhsl` prefix to color hsl groups * Add `bfont` prefix to font groups * Port `royalblue` theme to color groups * Rename `utils` → `groups` * Begin skeleton rewrite * Add missing </editor-fold> * Reimplement "Page" rules * Use `rem` instead of `em` as footer margin * Add bottom page-footer margin * Re-add chapters * Delete the apache2 example * Remove compiled css for now * Re-add separators * Re-add images * Improve docs and remove figures (for now?) * Implement tables and other things * Start working on lists * Update VSCode launch config * Add initial experimental support for `list-unordered` and `list-ordered` * WIP: some work on glossaries and tables * WIP: modifiers * Make a lot of progress which I'm to lazy to commit properly * FANCY CLASSIC STYLES * Start configuring a codespaces environment * Fix table caption background color * mess around a bit with backdrops * Apply some tweaks to tables * Comment out classic stylesheets * Add skeleton for inputs and forms * Mark missing things * Huge progress but im lost * Create yarn.lock so intellij stops annoying me about npm * Complete inputs and misc things * Complete collapsible details * Complete text elements * Complete forms
2022-10-11 09:27:55 +00:00
}
}