centoui 0.0.0 → 0.1.0
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 +16 -18
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,29 +1,27 @@
|
|
|
1
|
-
#
|
|
1
|
+
# centoui
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/centoui)
|
|
4
|
+
[](https://www.npmjs.com/package/centoui)
|
|
5
|
+
[](https://github.com/favorodera/centoui/blob/main/LICENSE)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
**Sharp components. Flawless interfaces.**
|
|
6
8
|
|
|
7
|
-
-
|
|
9
|
+
`centoui` is the core Vue component library that powers the CentoUI ecosystem. It provides a set of highly customizable, accessible, and design-driven components built with Vue 3, Tailwind CSS v4, and Reka UI.
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
npm install
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
- Run the playground:
|
|
11
|
+
## Installation
|
|
14
12
|
|
|
15
13
|
```bash
|
|
16
|
-
|
|
14
|
+
# Using pnpm
|
|
15
|
+
pnpm add centoui
|
|
16
|
+
|
|
17
|
+
# Using npm
|
|
18
|
+
npm install centoui
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
## Usage
|
|
20
22
|
|
|
21
|
-
|
|
22
|
-
npm run test
|
|
23
|
-
```
|
|
23
|
+
While `centoui` can be used as a standalone library, it is best experienced through the [CentoUI CLI](https://github.com/favorodera/centoui/tree/main/packages/cli) which handles component installation and configuration.
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
## License
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
npm run build
|
|
29
|
-
```
|
|
27
|
+
[MIT](../../LICENSE) © [Favour Emeka](https://github.com/favorodera)
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "centoui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"description": "Precise vue components",
|
|
5
|
+
"private": false,
|
|
6
|
+
"version": "0.1.0",
|
|
6
7
|
"author": "Favour Emeka <favorodera@gmail.com>",
|
|
7
8
|
"license": "MIT",
|
|
8
9
|
"homepage": "https://centoui.vercel.app",
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"centoui": "./bin/centoui.js"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"centoui-cli": "0.0.
|
|
31
|
+
"centoui-cli": "0.0.2"
|
|
31
32
|
},
|
|
32
33
|
"peerDependencies": {
|
|
33
34
|
"vue": "^3.0.0"
|