@mvn-ui/react 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/package.json ADDED
@@ -0,0 +1,115 @@
1
+ {
2
+ "name": "@mvn-ui/react",
3
+ "version": "0.1.1",
4
+ "description": "A React UI component library based on shadcn/ui",
5
+ "author": "Marusys Vietnam",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/Humax-Viet-Nam/marusys-webkit-starter.git",
13
+ "directory": "mvn-ui/packages/react"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/Humax-Viet-Nam/marusys-webkit-starter/issues"
17
+ },
18
+ "homepage": "https://github.com/Humax-Viet-Nam/marusys-webkit-starter/tree/main/mvn-ui/packages/react#readme",
19
+ "keywords": [
20
+ "react",
21
+ "ui",
22
+ "component-library",
23
+ "shadcn",
24
+ "shadcn-ui",
25
+ "tailwindcss",
26
+ "typescript",
27
+ "marusys"
28
+ ],
29
+ "main": "./dist/index.js",
30
+ "module": "./dist/index.mjs",
31
+ "types": "./dist/index.d.ts",
32
+ "exports": {
33
+ ".": {
34
+ "types": "./dist/index.d.ts",
35
+ "require": "./dist/index.js",
36
+ "import": "./dist/index.mjs"
37
+ },
38
+ "./styles.css": "./dist/index.css",
39
+ "./tokens.css": "./dist/tokens.css"
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "sideEffects": [
47
+ "**/*.css"
48
+ ],
49
+ "style": "./dist/index.css",
50
+ "scripts": {
51
+ "dev": "tsup --watch",
52
+ "build": "tsup",
53
+ "type-check": "tsc --noEmit",
54
+ "clean": "node -e \"fs.rmSync('dist', {recursive: true, force: true})\""
55
+ },
56
+ "peerDependencies": {
57
+ "react": "^18.2.0 || ^19.0.0",
58
+ "react-dom": "^18.2.0 || ^19.0.0"
59
+ },
60
+ "dependencies": {
61
+ "@radix-ui/react-accordion": "^1.2.12",
62
+ "@radix-ui/react-alert-dialog": "^1.1.15",
63
+ "@radix-ui/react-aspect-ratio": "^1.1.8",
64
+ "@radix-ui/react-avatar": "^1.1.10",
65
+ "@radix-ui/react-checkbox": "^1.1.0",
66
+ "@radix-ui/react-context-menu": "^2.2.16",
67
+ "@radix-ui/react-dialog": "^1.1.15",
68
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
69
+ "@radix-ui/react-hover-card": "^1.1.15",
70
+ "@radix-ui/react-icons": "^1.3.2",
71
+ "@radix-ui/react-label": "^2.1.8",
72
+ "@radix-ui/react-menubar": "^1.1.16",
73
+ "@radix-ui/react-navigation-menu": "^1.2.14",
74
+ "@radix-ui/react-popover": "^1.1.15",
75
+ "@radix-ui/react-progress": "^1.1.8",
76
+ "@radix-ui/react-radio-group": "^1.3.8",
77
+ "@radix-ui/react-scroll-area": "^1.2.10",
78
+ "@radix-ui/react-select": "^2.1.2",
79
+ "@radix-ui/react-separator": "^1.1.8",
80
+ "@radix-ui/react-slider": "^1.3.6",
81
+ "@radix-ui/react-slot": "^1.1.0",
82
+ "@radix-ui/react-switch": "^1.1.0",
83
+ "@radix-ui/react-tabs": "^1.1.1",
84
+ "@radix-ui/react-toggle": "^1.1.0",
85
+ "@radix-ui/react-toggle-group": "^1.1.11",
86
+ "@radix-ui/react-tooltip": "^1.2.8",
87
+ "@tanstack/react-table": "^8.21.3",
88
+ "class-variance-authority": "^0.7.0",
89
+ "clsx": "^2.1.1",
90
+ "cmdk": "^1.1.1",
91
+ "embla-carousel-react": "^8.6.0",
92
+ "input-otp": "^1.4.2",
93
+ "lucide-react": "^0.546.0",
94
+ "next-themes": "^0.4.6",
95
+ "react-day-picker": "^9.2.3",
96
+ "react-fast-compare": "^3.2.2",
97
+ "react-hook-form": "^7.66.0",
98
+ "react-resizable-panels": "^3.0.6",
99
+ "sonner": "^2.0.7",
100
+ "tailwind-merge": "^2.5.2",
101
+ "vaul": "^1.1.2"
102
+ },
103
+ "devDependencies": {
104
+ "@mvn-ui/styles": "*",
105
+ "@types/node": "^22.5.4",
106
+ "@types/react": "^18.3.5",
107
+ "@types/react-dom": "^18.3.0",
108
+ "autoprefixer": "^10.4.20",
109
+ "postcss": "^8.4.45",
110
+ "tailwindcss": "^3.4.11",
111
+ "tailwindcss-animate": "^1.0.7",
112
+ "tsup": "^8.2.4",
113
+ "typescript": "^5.5.4"
114
+ }
115
+ }