telecop 0.1.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.
- package/README.md +25 -12
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 🚀 Telecop
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> Modern React UI Components Library
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ Coming Soon
|
|
6
|
+
|
|
7
|
+
**Telecop** is a modern, lightweight React UI components library built with TypeScript and Tailwind CSS.
|
|
8
|
+
|
|
9
|
+
### 🎯 What's Coming
|
|
10
|
+
|
|
11
|
+
- ✨ Beautiful, customizable components
|
|
12
|
+
- 🎨 Glass morphism effects
|
|
13
|
+
- ⚡ Lightweight and fast
|
|
14
|
+
- 📦 TypeScript support
|
|
15
|
+
- 🎭 Tailwind CSS styling
|
|
16
|
+
- 🔥 Modern design patterns
|
|
17
|
+
|
|
18
|
+
### 📦 Installation
|
|
6
19
|
```bash
|
|
7
|
-
npm install
|
|
20
|
+
npm install telecop
|
|
8
21
|
```
|
|
9
22
|
|
|
10
|
-
|
|
11
|
-
```jsx
|
|
12
|
-
import { Button } from '@laithalawad745/ui-library';
|
|
13
|
-
import '@laithalawad745/ui-library/styles.css';
|
|
23
|
+
### 🔜 Official Release
|
|
14
24
|
|
|
15
|
-
|
|
16
|
-
|
|
25
|
+
The first stable version will be available soon. Stay tuned!
|
|
26
|
+
|
|
27
|
+
---
|
|
17
28
|
|
|
18
|
-
|
|
29
|
+
**Follow updates:** [npm package](https://www.npmjs.com/package/telecop)
|
|
19
30
|
|
|
20
|
-
|
|
31
|
+
**Version:** 0.1.0
|
|
32
|
+
**License:** MIT
|
|
33
|
+
**Author:** Laith Alawad
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "telecop",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Modern React UI Components Library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,12 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"./style.css": "./dist/style.css"
|
|
16
16
|
},
|
|
17
|
-
"files": [
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
18
20
|
"scripts": {
|
|
19
21
|
"build": "vite build",
|
|
20
22
|
"dev": "vite build --watch"
|
|
21
23
|
},
|
|
22
|
-
"keywords": [
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react",
|
|
26
|
+
"ui",
|
|
27
|
+
"components",
|
|
28
|
+
"tailwind",
|
|
29
|
+
"telecop"
|
|
30
|
+
],
|
|
23
31
|
"author": "Laith Alawad",
|
|
24
32
|
"license": "MIT",
|
|
25
33
|
"peerDependencies": {
|
|
@@ -39,4 +47,4 @@
|
|
|
39
47
|
"vite": "^5.4.11",
|
|
40
48
|
"vite-plugin-dts": "^4.3.0"
|
|
41
49
|
}
|
|
42
|
-
}
|
|
50
|
+
}
|