@mlw-packages/react-components 1.3.18 → 1.4.2

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 CHANGED
@@ -1,95 +1,104 @@
1
- {
2
- "name": "@mlw-packages/react-components",
3
- "version": "1.3.18",
4
- "main": "dist/index.js",
5
- "module": "dist/index.mjs",
6
- "types": "dist/index.d.ts",
7
- "style": "dist/global.css",
8
- "files": [
9
- "dist"
10
- ],
11
- "peerDependencies": {
12
- "react": "^18.0.0",
13
- "react-dom": "^18.0.0",
14
- "react-hook-form": "^7.0.0"
15
- },
16
- "scripts": {
17
- "dev": "vite",
18
- "build": "npm run build-css && tsup",
19
- "build-css": "npx tailwindcss -i ./src/style/global.css -o ./dist/index.css --config ./tailwind.config.js",
20
- "lint": "eslint .",
21
- "preview": "vite preview",
22
- "deploy:patch": "npm version patch && npm publish",
23
- "deploy:minor": "npm version minor && npm publish",
24
- "deploy:major": "npm version major && npm publish"
25
- },
26
- "dependencies": {
27
- "@hookform/resolvers": "^3.10.0",
28
- "@radix-ui/react-alert-dialog": "^1.1.5",
29
- "@radix-ui/react-avatar": "^1.1.2",
30
- "@radix-ui/react-checkbox": "^1.1.3",
31
- "@radix-ui/react-context-menu": "^2.2.15",
32
- "@radix-ui/react-dialog": "^1.1.5",
33
- "@radix-ui/react-dropdown-menu": "^2.1.5",
34
- "@radix-ui/react-hover-card": "^1.1.14",
35
- "@radix-ui/react-label": "^2.1.1",
36
- "@radix-ui/react-navigation-menu": "^1.2.13",
37
- "@radix-ui/react-popover": "^1.1.5",
38
- "@radix-ui/react-progress": "^1.1.1",
39
- "@radix-ui/react-scroll-area": "^1.2.2",
40
- "@radix-ui/react-select": "^2.1.5",
41
- "@radix-ui/react-separator": "^1.1.1",
42
- "@radix-ui/react-slider": "^1.2.2",
43
- "@radix-ui/react-slot": "^1.1.1",
44
- "@radix-ui/react-switch": "^1.1.2",
45
- "@radix-ui/react-tabs": "^1.1.2",
46
- "@radix-ui/react-toast": "^1.2.5",
47
- "@radix-ui/react-tooltip": "^1.1.7",
48
- "axios": "^1.7.9",
49
- "class-variance-authority": "^0.7.1",
50
- "clsx": "^2.1.1",
51
- "cmdk": "^1.0.4",
52
- "date-fns": "^3.6.0",
53
- "embla-carousel-react": "^8.6.0",
54
- "framer-motion": "^12.15.0",
55
- "input-otp": "^1.4.2",
56
- "next-themes": "^0.4.4",
57
- "phosphor-icons": "^1.4.2",
58
- "phosphor-react": "^1.4.1",
59
- "react": "^18.3.1",
60
- "react-day-picker": "^8.10.0",
61
- "react-dom": "^18.3.1",
62
- "react-hook-form": "^7.54.2",
63
- "react-router-dom": "6.4",
64
- "react-toastify": "^11.0.5",
65
- "recharts": "^2.15.3",
66
- "sonner": "^1.7.4",
67
- "tailwind-merge": "^3.0.1",
68
- "tailwindcss-animate": "^1.0.7",
69
- "vaul": "^1.1.2",
70
- "zod": "^3.24.1"
71
- },
72
- "devDependencies": {
73
- "@eslint/js": "^9.19.0",
74
- "@types/jest": "^29.5.14",
75
- "@types/node": "^22.13.1",
76
- "@types/react": "^19.0.8",
77
- "@types/react-dom": "^19.0.3",
78
- "@vitejs/plugin-react": "^4.4.1",
79
- "@vitejs/plugin-react-swc": "^3.5.0",
80
- "autoprefixer": "^10.4.20",
81
- "css-loader": "^7.1.2",
82
- "eslint": "^9.19.0",
83
- "eslint-plugin-react-hooks": "^5.0.0",
84
- "eslint-plugin-react-refresh": "^0.4.18",
85
- "globals": "^15.14.0",
86
- "mini-css-extract-plugin": "^2.9.2",
87
- "postcss": "^8.5.1",
88
- "style-loader": "^4.0.0",
89
- "tailwindcss": "^3.4.17",
90
- "tsup": "^8.4.0",
91
- "typescript": "~5.7.2",
92
- "typescript-eslint": "^8.22.0",
93
- "vite": "^6.1.0"
94
- }
95
- }
1
+ {
2
+ "name": "@mlw-packages/react-components",
3
+ "version": "1.4.2",
4
+ "main": "dist/index.js",
5
+ "module": "dist/index.mjs",
6
+ "types": "dist/index.d.ts",
7
+ "style": "dist/global.css",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "peerDependencies": {
12
+ "react": "^18.0.0",
13
+ "react-dom": "^18.0.0",
14
+ "react-hook-form": "^7.0.0"
15
+ },
16
+ "scripts": {
17
+ "dev": "vite",
18
+ "build": "npm run build-css && tsup",
19
+ "build-css": "npx tailwindcss -i ./src/style/global.css -o ./dist/index.css --config ./tailwind.config.js",
20
+ "lint": "eslint .",
21
+ "preview": "vite preview",
22
+ "deploy:patch": "npm version patch && npm publish",
23
+ "deploy:minor": "npm version minor && npm publish",
24
+ "deploy:major": "npm version major && npm publish",
25
+ "prepare": "if [ \"$CI\" != \"true\" ]; then husky install; fi",
26
+ "test": "echo \"No tests yet\" && exit 0"
27
+ },
28
+ "lint-staged": {
29
+ "*.{js,jsx,ts,tsx}": "eslint --max-warnings=0"
30
+ },
31
+ "dependencies": {
32
+ "@hookform/resolvers": "^3.10.0",
33
+ "@radix-ui/react-alert-dialog": "^1.1.5",
34
+ "@radix-ui/react-avatar": "^1.1.2",
35
+ "@radix-ui/react-checkbox": "^1.1.3",
36
+ "@radix-ui/react-context-menu": "^2.2.15",
37
+ "@radix-ui/react-dialog": "^1.1.5",
38
+ "@radix-ui/react-dropdown-menu": "^2.1.5",
39
+ "@radix-ui/react-hover-card": "^1.1.14",
40
+ "@radix-ui/react-label": "^2.1.1",
41
+ "@radix-ui/react-navigation-menu": "^1.2.13",
42
+ "@radix-ui/react-popover": "^1.1.5",
43
+ "@radix-ui/react-progress": "^1.1.1",
44
+ "@radix-ui/react-scroll-area": "^1.2.2",
45
+ "@radix-ui/react-select": "^2.1.5",
46
+ "@radix-ui/react-separator": "^1.1.1",
47
+ "@radix-ui/react-slider": "^1.2.2",
48
+ "@radix-ui/react-slot": "^1.1.1",
49
+ "@radix-ui/react-switch": "^1.1.2",
50
+ "@radix-ui/react-tabs": "^1.1.2",
51
+ "@radix-ui/react-toast": "^1.2.5",
52
+ "@radix-ui/react-tooltip": "^1.1.7",
53
+ "axios": "^1.7.9",
54
+ "class-variance-authority": "^0.7.1",
55
+ "clsx": "^2.1.1",
56
+ "cmdk": "^1.0.4",
57
+ "date-fns": "^3.6.0",
58
+ "embla-carousel-react": "^8.6.0",
59
+ "framer-motion": "^12.15.0",
60
+ "input-otp": "^1.4.2",
61
+ "next-themes": "^0.4.4",
62
+ "phosphor-icons": "^1.4.2",
63
+ "phosphor-react": "^1.4.1",
64
+ "playwright": "^1.53.1",
65
+ "react": "^18.3.1",
66
+ "react-day-picker": "^8.10.0",
67
+ "react-dom": "^18.3.1",
68
+ "react-hook-form": "^7.54.2",
69
+ "react-router-dom": "6.4",
70
+ "react-toastify": "^11.0.5",
71
+ "recharts": "^2.15.3",
72
+ "sonner": "^1.7.4",
73
+ "tailwind-merge": "^3.0.1",
74
+ "tailwindcss-animate": "^1.0.7",
75
+ "vaul": "^1.1.2",
76
+ "zod": "^3.24.1"
77
+ },
78
+ "devDependencies": {
79
+ "@eslint/js": "^9.19.0",
80
+ "@playwright/test": "^1.53.1",
81
+ "@types/jest": "^29.5.14",
82
+ "@types/node": "^22.13.1",
83
+ "@types/react": "^19.0.8",
84
+ "@types/react-dom": "^19.0.3",
85
+ "@vitejs/plugin-react": "^4.4.1",
86
+ "@vitejs/plugin-react-swc": "^3.5.0",
87
+ "autoprefixer": "^10.4.20",
88
+ "css-loader": "^7.1.2",
89
+ "eslint": "^9.19.0",
90
+ "eslint-plugin-react-hooks": "^5.0.0",
91
+ "eslint-plugin-react-refresh": "^0.4.18",
92
+ "globals": "^15.14.0",
93
+ "husky": "^8.0.0",
94
+ "lint-staged": "^16.1.2",
95
+ "mini-css-extract-plugin": "^2.9.2",
96
+ "postcss": "^8.5.1",
97
+ "style-loader": "^4.0.0",
98
+ "tailwindcss": "^3.4.17",
99
+ "tsup": "^8.4.0",
100
+ "typescript": "~5.7.2",
101
+ "typescript-eslint": "^8.22.0",
102
+ "vite": "^6.1.0"
103
+ }
104
+ }