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.
Files changed (2) hide show
  1. package/README.md +16 -18
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,29 +1,27 @@
1
- # vue-components-starter
1
+ # centoui
2
2
 
3
- A starter for creating a Vue component library.
3
+ [![npm version](https://img.shields.io/npm/v/centoui.svg?style=flat-square)](https://www.npmjs.com/package/centoui)
4
+ [![npm downloads](https://img.shields.io/npm/dm/centoui.svg?style=flat-square)](https://www.npmjs.com/package/centoui)
5
+ [![license](https://img.shields.io/github/license/favorodera/centoui.svg?style=flat-square)](https://github.com/favorodera/centoui/blob/main/LICENSE)
4
6
 
5
- ## Development
7
+ **Sharp components. Flawless interfaces.**
6
8
 
7
- - Install dependencies:
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
- ```bash
10
- npm install
11
- ```
12
-
13
- - Run the playground:
11
+ ## Installation
14
12
 
15
13
  ```bash
16
- npm run playground
14
+ # Using pnpm
15
+ pnpm add centoui
16
+
17
+ # Using npm
18
+ npm install centoui
17
19
  ```
18
20
 
19
- - Run the unit tests:
21
+ ## Usage
20
22
 
21
- ```bash
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
- - Build the library:
25
+ ## License
26
26
 
27
- ```bash
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
- "version": "0.0.0",
5
- "description": "Sharp components. Flawless interfaces.",
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.0"
31
+ "centoui-cli": "0.0.2"
31
32
  },
32
33
  "peerDependencies": {
33
34
  "vue": "^3.0.0"