@dezkareid/components 0.0.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 +19 -0
  2. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @dezkareid/components
2
+
3
+ A package to export UI components in formats like React, Astro, Vue, etc.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @dezkareid/components
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```javascript
14
+ // Add usage examples here
15
+ ```
16
+
17
+ ## License
18
+
19
+ ISC
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@dezkareid/components",
3
+ "version": "0.0.0",
4
+ "description": "A package to export UI components in formats like React, Astro, Vue, etc.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/dezkareid/dezkareid"
8
+ },
9
+ "author": "Joel Humberto Gomez Paredes <elmaildeldezkareid@gmail.com>",
10
+ "license": "ISC",
11
+ "bugs": {
12
+ "url": "https://github.com/dezkareid/dezkareid/issues"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "keywords": [
18
+ "setup",
19
+ "package",
20
+ "npm"
21
+ ]
22
+ }