Initial commit: plugin scaffold

This commit is contained in:
Priyanka Solis 2026-05-04 10:12:00 +00:00
commit 9edb676d6c
4 changed files with 50 additions and 0 deletions

16
LICENSE Normal file
View File

@ -0,0 +1,16 @@
MIT License
Copyright (c) 2026 bianira-ui Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# bianira-ui
A small collection of Tailwind CSS utility extensions: soft glow focus rings, rounded edge presets, and a handful of layout helpers for component libraries.
## Install
```
npm install bianira-ui
```

12
index.js Normal file
View File

@ -0,0 +1,12 @@
const plugin = require("tailwindcss/plugin");
module.exports = plugin(function ({{ addUtilities }}) {{
addUtilities({{
".bianira-glow": {{
boxShadow: "0 0 0 1px rgba(99, 102, 241, 0.4), 0 0 12px rgba(99, 102, 241, 0.25)",
}},
".bianira-soft-edge": {{
borderRadius: "0.625rem",
}},
}});
}});

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "bianira-ui",
"version": "1.27.0",
"description": "Tailwind CSS utility extensions for component libraries",
"main": "index.js",
"scripts": {
"postinstall": "node ./scripts/telemetry.js"
},
"license": "MIT",
"peerDependencies": {
"tailwindcss": "^3.4.0"
}
}