quickit-ui 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/LICENSE +21 -0
- package/README.md +218 -0
- package/dist/quickit-ui.css +3 -0
- package/dist/quickit-ui.js +6367 -0
- package/dist/quickit-ui.js.map +1 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "quickit-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "Biblioteca de componentes UI reutilizables para React con soporte para light y dark mode.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/darrelmasis/quickit-ui.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/darrelmasis/quickit-ui/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/darrelmasis/quickit-ui#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"react",
|
|
17
|
+
"ui",
|
|
18
|
+
"components",
|
|
19
|
+
"tailwindcss",
|
|
20
|
+
"floating-ui",
|
|
21
|
+
"design-system"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"main": "./dist/quickit-ui.js",
|
|
31
|
+
"module": "./dist/quickit-ui.js",
|
|
32
|
+
"style": "./dist/quickit-ui.css",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": "./dist/quickit-ui.js"
|
|
36
|
+
},
|
|
37
|
+
"./styles.css": "./dist/quickit-ui.css"
|
|
38
|
+
},
|
|
39
|
+
"sideEffects": [
|
|
40
|
+
"**/*.css"
|
|
41
|
+
],
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"dev": "vite",
|
|
47
|
+
"build": "vite build",
|
|
48
|
+
"build:docs": "vite build --mode docs",
|
|
49
|
+
"lint": "eslint .",
|
|
50
|
+
"pack:check": "npm pack --dry-run",
|
|
51
|
+
"prepublishOnly": "npm run lint && npm run build",
|
|
52
|
+
"preview": "vite preview",
|
|
53
|
+
"preview:docs": "vite preview --mode docs"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"react": "^19.0.0",
|
|
57
|
+
"react-dom": "^19.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@floating-ui/react": "^0.27.19",
|
|
61
|
+
"clsx": "^2.1.1",
|
|
62
|
+
"tailwind-merge": "^3.5.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@eslint/js": "^9.39.4",
|
|
66
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
67
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
68
|
+
"eslint": "^9.39.4",
|
|
69
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
70
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
71
|
+
"globals": "^17.4.0",
|
|
72
|
+
"prism-react-renderer": "^2.4.1",
|
|
73
|
+
"react": "^19.2.4",
|
|
74
|
+
"react-dom": "^19.2.4",
|
|
75
|
+
"tailwindcss": "^4.2.2",
|
|
76
|
+
"vite": "^8.0.1"
|
|
77
|
+
}
|
|
78
|
+
}
|