shadcn-ui-react 0.5.3 → 0.6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadcn-ui-react",
3
- "version": "0.5.3",
3
+ "version": "0.6.1",
4
4
  "private": false,
5
5
  "author": "Bleker Cordova <bleker@gliyen.com>",
6
6
  "description": "A collection of components for building beautiful and accessible user interfaces with React and Tailwind CSS.",
@@ -14,8 +14,13 @@
14
14
  "style": "dist/style.css",
15
15
  "files": [
16
16
  "dist",
17
- "dist/style.css"
17
+ "dist/style.css",
18
+ "bin",
19
+ "templates"
18
20
  ],
21
+ "bin": {
22
+ "shadcn-ui-react": "./bin/shadcn-ui-react.mjs"
23
+ },
19
24
  "sideEffects": [
20
25
  "dist/*.css"
21
26
  ],
@@ -60,7 +65,7 @@
60
65
  "@testing-library/react": "^16.3.2",
61
66
  "@testing-library/user-event": "^14.6.1",
62
67
  "@types/jest": "^30.0.0",
63
- "@types/node": "^25.0.9",
68
+ "@types/node": "^25.0.10",
64
69
  "@types/react": "^19.2.9",
65
70
  "@types/react-dom": "^19.2.3",
66
71
  "@typescript-eslint/eslint-plugin": "^8.53.1",
@@ -87,7 +92,7 @@
87
92
  "vite": "^7.3.1",
88
93
  "vite-plugin-dts": "^4.5.4",
89
94
  "vite-plugin-ts-alias": "^0.1.1",
90
- "zod": "^4.3.5"
95
+ "zod": "^4.3.6"
91
96
  },
92
97
  "peerDependencies": {
93
98
  "react": "^17.0.0 || ^18.3.1 || ^19.2.3 || ^20.0.0",
@@ -132,7 +137,7 @@
132
137
  "clsx": "^2.1.1",
133
138
  "cmdk": "^1.1.1",
134
139
  "embla-carousel-react": "^8.6.0",
135
- "framer-motion": "^12.27.5",
140
+ "framer-motion": "^12.29.0",
136
141
  "input-otp": "^1.4.2",
137
142
  "lucide-react": "^0.562.0",
138
143
  "next-themes": "^0.4.6",
@@ -0,0 +1,11 @@
1
+ {
2
+ "tailwindCSS.experimental.classRegex": [
3
+ ["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*?)[\"'`]"],
4
+ ["classNames\\s*=\\s*\\{\\{([\\s\\S]*?)\\}\\}", "[\"'`]([^\"'`]*?)[\"'`]"]
5
+ ],
6
+ "tailwindCSS.includeLanguages": {
7
+ "typescript": "javascript",
8
+ "typescriptreact": "javascript",
9
+ "javascriptreact": "javascript"
10
+ }
11
+ }