rareui
v0.1.6
Published
CLI for adding RareUI components to your project
Maintainers
Readme
RareUI CLI
The official CLI for adding RareUI components to your project.
Installation
npx rareui initUsage
Initialize
npx rareui initAdd Components
Add components using either PascalCase or kebab-case:
# Single component
npx rareui add liquid-button
npx rareui add LiquidButton
# Multiple components
npx rareui add particle-card soft-button
# Install all components
npx rareui add .List Available Components
npx rareui addCheck for Updates
Check if your installed components have updates available:
# Check all components
npx rareui diff
# Check specific component
npx rareui diff liquid-button
# Update without confirmation
npx rareui diff -yFeatures
- ✅ Flexible naming: Use either
liquid-buttonorLiquidButton - ✅ Batch install: Add multiple components at once
- ✅ Install all: Use
.to install all available components - ✅ Auto dependencies: Automatically installs required npm packages
- ✅ Conflict detection: Warns before overwriting existing files
- ✅ Smart paths: Installs to
components/rareui/directory - ✅ Update checking: Check for component updates with
diffcommand - ✅ Auto-update: Update all or specific components to latest versions
Publishing
To publish this package to npm:
- Update the version in
package.json - Build the package:
npm run build - Publish:
npm publish
Development
npm install
npm run dev