centoui 0.0.0 → 0.1.1

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 (3) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +16 -18
  3. package/package.json +4 -3
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Favour Emeka
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Favour Emeka
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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.1",
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.1.1"
31
32
  },
32
33
  "peerDependencies": {
33
34
  "vue": "^3.0.0"