viora-ui 1.0.0 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/package.json +3 -3
- /package/{index.js → cli.js} +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Viora UI
|
|
2
|
+
|
|
3
|
+
The official CLI for [Viora UI](https://viora-ui.com).
|
|
4
|
+
|
|
5
|
+
Viora UI is a collection of beautifully designed, accessible, and customizable components built with Tailwind CSS and Framer Motion.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
You do **not** need to install this package. You can use it directly with `npx`:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx viora-ui add <component>
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Example
|
|
16
|
+
|
|
17
|
+
To add the accordion component to your project, run:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npx viora-ui add accordion
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
For full documentation, visit [viora-ui.com](https://viora-ui.com).
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "viora-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "The official CLI for Viora UI components.",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "cli.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"viora-ui": "
|
|
7
|
+
"viora-ui": "cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
/package/{index.js → cli.js}
RENAMED
|
File without changes
|