@techlabi/kycrazy-ui-kit 0.10.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/README.md +55 -0
- package/dist/assets/index-B9Nnpd6w.css +1 -0
- package/dist/assets/index-CxkFjrTL.js +101 -0
- package/dist/index.html +16 -0
- package/package.json +102 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>KYCrazy - the KYC React library</title>
|
|
7
|
+
<meta name="description" content="A modern React component library for KYC" />
|
|
8
|
+
<meta name="author" content="TechLabi" />
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-CxkFjrTL.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B9Nnpd6w.css">
|
|
11
|
+
</head>
|
|
12
|
+
|
|
13
|
+
<body>
|
|
14
|
+
<div id="root"></div>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@techlabi/kycrazy-ui-kit",
|
|
3
|
+
"private": false,
|
|
4
|
+
"description": "A modern React component library for KYC",
|
|
5
|
+
"author": "TechLabi",
|
|
6
|
+
"version": "0.10.0",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"types": "dist/types/index.d.ts",
|
|
9
|
+
"main": "dist/index.umd.js",
|
|
10
|
+
"module": "dist/index.es.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/types/index.d.ts",
|
|
14
|
+
"require": "./dist/index.umd.js",
|
|
15
|
+
"import": "./dist/index.es.js",
|
|
16
|
+
"default": "./dist/index.es.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "vite build",
|
|
22
|
+
"build:dev": "vite build --mode development",
|
|
23
|
+
"build:lib": "vite build --config vite.lib.config.ts",
|
|
24
|
+
"lint": "eslint .",
|
|
25
|
+
"preview": "vite preview"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"CHANGELOG.md"
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@hookform/resolvers": "^3.10.0",
|
|
33
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
34
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
35
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
36
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
37
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
38
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
39
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
40
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
41
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
42
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
43
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
44
|
+
"@radix-ui/react-menubar": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
46
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
47
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
48
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
49
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
50
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
51
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
52
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
53
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
54
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
55
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
56
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
57
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
58
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
59
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
60
|
+
"@tanstack/react-query": "^5.85.5",
|
|
61
|
+
"class-variance-authority": "^0.7.1",
|
|
62
|
+
"clsx": "^2.1.1",
|
|
63
|
+
"cmdk": "^1.1.1",
|
|
64
|
+
"date-fns": "^3.6.0",
|
|
65
|
+
"embla-carousel-react": "^8.6.0",
|
|
66
|
+
"input-otp": "^1.4.2",
|
|
67
|
+
"lucide-react": "^0.462.0",
|
|
68
|
+
"next-themes": "^0.3.0",
|
|
69
|
+
"react": "^18.3.1",
|
|
70
|
+
"react-day-picker": "^8.10.1",
|
|
71
|
+
"react-dom": "^18.3.1",
|
|
72
|
+
"react-hook-form": "^7.61.1",
|
|
73
|
+
"react-resizable-panels": "^2.1.9",
|
|
74
|
+
"react-router-dom": "^6.30.1",
|
|
75
|
+
"recharts": "^2.15.4",
|
|
76
|
+
"sonner": "^1.7.4",
|
|
77
|
+
"tailwind-merge": "^2.6.0",
|
|
78
|
+
"tailwindcss-animate": "^1.0.7",
|
|
79
|
+
"vaul": "^0.9.9",
|
|
80
|
+
"vite-plugin-dts": "^4.5.4",
|
|
81
|
+
"zod": "^3.25.76"
|
|
82
|
+
},
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"@eslint/js": "^9.32.0",
|
|
85
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
86
|
+
"@types/node": "^22.16.5",
|
|
87
|
+
"@types/react": "^18.3.23",
|
|
88
|
+
"@types/react-dom": "^18.3.7",
|
|
89
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
90
|
+
"autoprefixer": "^10.4.21",
|
|
91
|
+
"eslint": "^9.32.0",
|
|
92
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
93
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
94
|
+
"globals": "^15.15.0",
|
|
95
|
+
"lovable-tagger": "^1.1.9",
|
|
96
|
+
"postcss": "^8.5.6",
|
|
97
|
+
"tailwindcss": "^3.4.17",
|
|
98
|
+
"typescript": "^5.8.3",
|
|
99
|
+
"typescript-eslint": "^8.38.0",
|
|
100
|
+
"vite": "^5.4.19"
|
|
101
|
+
}
|
|
102
|
+
}
|