better-auth-ui 3.2.17 → 3.2.19

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.
Files changed (1) hide show
  1. package/package.json +157 -163
package/package.json CHANGED
@@ -1,164 +1,158 @@
1
- {
2
- "name": "better-auth-ui",
3
- "homepage": "https://stackproviders.github.io/better-auth-ui/",
4
- "version": "3.2.17",
5
- "description": "Plug & play shadcn/ui components for better-auth",
6
- "scripts": {
7
- "build": "pnpm build:registry && tsup --clean --dts && shx cp src/style.css dist/style.css",
8
- "build:registry": "pnpm sync:registry && pnpm dlx shadcn@latest build && shx mkdir -p docs/public/r && shx cp public/r/*.json docs/public/r/",
9
- "sync:registry": "node scripts/sync-registry.js",
10
- "dev": "tsc-watch",
11
- "prepublishOnly": "shx rm -rf dist && turbo build",
12
- "publish": "pnpm version patch && pnpm publish --no-git-checks --access public"
13
- },
14
- "type": "module",
15
- "main": "./dist/index.cjs",
16
- "module": "./dist/index.js",
17
- "exports": {
18
- "./css": "./dist/style.css",
19
- ".": {
20
- "import": {
21
- "types": "./dist/index.d.ts",
22
- "default": "./dist/index.js"
23
- },
24
- "require": {
25
- "types": "./dist/index.d.cts",
26
- "default": "./dist/index.cjs"
27
- }
28
- },
29
- "./server": {
30
- "import": {
31
- "types": "./dist/server.d.ts",
32
- "default": "./dist/server.js"
33
- },
34
- "require": {
35
- "types": "./dist/server.d.cts",
36
- "default": "./dist/server.cjs"
37
- }
38
- },
39
- "./tanstack": {
40
- "import": {
41
- "types": "./dist/tanstack.d.ts",
42
- "default": "./dist/tanstack.js"
43
- },
44
- "require": {
45
- "types": "./dist/tanstack.d.cts",
46
- "default": "./dist/tanstack.cjs"
47
- }
48
- },
49
- "./instantdb": {
50
- "import": {
51
- "types": "./dist/instantdb.d.ts",
52
- "default": "./dist/instantdb.js"
53
- },
54
- "require": {
55
- "types": "./dist/instantdb.d.cts",
56
- "default": "./dist/instantdb.cjs"
57
- }
58
- },
59
- "./triplit": {
60
- "import": {
61
- "types": "./dist/triplit.d.ts",
62
- "default": "./dist/triplit.js"
63
- },
64
- "require": {
65
- "types": "./dist/triplit.d.cts",
66
- "default": "./dist/triplit.cjs"
67
- }
68
- }
69
- },
70
- "files": [
71
- "src",
72
- "dist"
73
- ],
74
- "keywords": [
75
- "typescript",
76
- "react",
77
- "better-auth",
78
- "shadcn",
79
- "nextjs"
80
- ],
81
- "author": "daveycodez",
82
- "license": "MIT",
83
- "devDependencies": {
84
- "@biomejs/biome": "2.2.4",
85
- "@radix-ui/react-checkbox": "^1.3.3",
86
- "@radix-ui/react-context": "^1.1.2",
87
- "@radix-ui/react-dialog": "^1.1.15",
88
- "@radix-ui/react-label": "^2.1.7",
89
- "@radix-ui/react-primitive": "^2.1.3",
90
- "@radix-ui/react-separator": "^1.1.7",
91
- "@radix-ui/react-slot": "^1.2.3",
92
- "@radix-ui/react-tabs": "^1.1.13",
93
- "@radix-ui/react-use-callback-ref": "^1.1.1",
94
- "@radix-ui/react-use-layout-effect": "^1.1.1",
95
- "@tanstack/react-query": "^5.90.2",
96
- "@types/node": "^24.5.2",
97
- "@types/react": "^19.1.13",
98
- "@types/react-dom": "^19.1.9",
99
- "@types/react-google-recaptcha": "^2.1.9",
100
- "better-auth": "^1.3.14",
101
- "class-variance-authority": "^0.7.1",
102
- "clsx": "^2.1.1",
103
- "esbuild-plugin-preserve-directives": "^0.0.11",
104
- "lucide-react": "^0.544.0",
105
- "shx": "^0.4.0",
106
- "tailwind-merge": "^3.3.1",
107
- "tailwindcss-animate": "^1.0.7",
108
- "tsc-watch": "^7.1.1",
109
- "tsup": "^8.5.0",
110
- "tsx": "^4.20.5",
111
- "turbo": "^2.5.7",
112
- "typescript": "^5.9.2",
113
- "zod": "^4.1.11"
114
- },
115
- "peerDependencies": {
116
- "@daveyplate/better-auth-tanstack": "^1.3.6",
117
- "@hookform/resolvers": ">=5.2.0",
118
- "@instantdb/react": ">=0.18.0",
119
- "@marsidev/react-turnstile": ">=1.1.0",
120
- "@radix-ui/react-avatar": ">=1.1.0",
121
- "@radix-ui/react-checkbox": ">=1.1.0",
122
- "@radix-ui/react-context": ">=1.1.0",
123
- "@radix-ui/react-dialog": ">=1.1.0",
124
- "@radix-ui/react-dropdown-menu": ">=2.1.0",
125
- "@radix-ui/react-label": ">=2.1.0",
126
- "@radix-ui/react-primitive": ">=2.0.0",
127
- "@radix-ui/react-select": ">=2.2.0",
128
- "@radix-ui/react-separator": ">=1.1.0",
129
- "@radix-ui/react-slot": ">=1.1.0",
130
- "@radix-ui/react-tabs": ">=1.1.0",
131
- "@radix-ui/react-use-callback-ref": ">=1.1.0",
132
- "@radix-ui/react-use-layout-effect": ">=1.1.0",
133
- "@tanstack/react-query": ">=5.66.0",
134
- "@triplit/client": ">=1.0.0",
135
- "@triplit/react": ">=1.0.0",
136
- "better-auth": "^1.3.13",
137
- "class-variance-authority": ">=0.7.0",
138
- "clsx": ">=2.1.0",
139
- "input-otp": ">=1.4.0",
140
- "lucide-react": ">=0.469.0",
141
- "react": ">=18.0.0",
142
- "react-dom": ">=18.0.0",
143
- "react-hook-form": ">=7.55.0",
144
- "sonner": ">=1.7.0",
145
- "tailwind-merge": ">=2.6.0",
146
- "tailwindcss": ">=3.0.0",
147
- "zod": ">=3.0.0"
148
- },
149
- "dependencies": {
150
- "@better-fetch/fetch": "^1.1.18",
151
- "@hcaptcha/react-hcaptcha": "^1.12.1",
152
- "@noble/hashes": "^2.0.1",
153
- "@react-email/components": "^0.5.4",
154
- "@wojtekmaj/react-recaptcha-v3": "^0.1.4",
155
- "react-google-recaptcha": "^3.1.0",
156
- "react-qr-code": "^2.0.18",
157
- "ua-parser-js": "^2.0.5",
158
- "vaul": "^1.1.2"
159
- },
160
- "pnpm": {
161
- "overrides": {}
162
- },
163
- "packageManager": "pnpm@10.16.1"
1
+ {
2
+ "name": "better-auth-ui",
3
+ "homepage": "https://stackproviders.github.io/better-auth-ui/",
4
+ "version": "3.2.19",
5
+ "description": "Plug & play shadcn/ui components for better-auth",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "exports": {
10
+ "./css": "./dist/style.css",
11
+ ".": {
12
+ "import": {
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/index.d.cts",
18
+ "default": "./dist/index.cjs"
19
+ }
20
+ },
21
+ "./server": {
22
+ "import": {
23
+ "types": "./dist/server.d.ts",
24
+ "default": "./dist/server.js"
25
+ },
26
+ "require": {
27
+ "types": "./dist/server.d.cts",
28
+ "default": "./dist/server.cjs"
29
+ }
30
+ },
31
+ "./tanstack": {
32
+ "import": {
33
+ "types": "./dist/tanstack.d.ts",
34
+ "default": "./dist/tanstack.js"
35
+ },
36
+ "require": {
37
+ "types": "./dist/tanstack.d.cts",
38
+ "default": "./dist/tanstack.cjs"
39
+ }
40
+ },
41
+ "./instantdb": {
42
+ "import": {
43
+ "types": "./dist/instantdb.d.ts",
44
+ "default": "./dist/instantdb.js"
45
+ },
46
+ "require": {
47
+ "types": "./dist/instantdb.d.cts",
48
+ "default": "./dist/instantdb.cjs"
49
+ }
50
+ },
51
+ "./triplit": {
52
+ "import": {
53
+ "types": "./dist/triplit.d.ts",
54
+ "default": "./dist/triplit.js"
55
+ },
56
+ "require": {
57
+ "types": "./dist/triplit.d.cts",
58
+ "default": "./dist/triplit.cjs"
59
+ }
60
+ }
61
+ },
62
+ "files": [
63
+ "src",
64
+ "dist"
65
+ ],
66
+ "keywords": [
67
+ "typescript",
68
+ "react",
69
+ "better-auth",
70
+ "shadcn",
71
+ "nextjs"
72
+ ],
73
+ "author": "daveycodez",
74
+ "license": "MIT",
75
+ "devDependencies": {
76
+ "@biomejs/biome": "2.2.4",
77
+ "@radix-ui/react-checkbox": "^1.3.3",
78
+ "@radix-ui/react-context": "^1.1.2",
79
+ "@radix-ui/react-dialog": "^1.1.15",
80
+ "@radix-ui/react-label": "^2.1.7",
81
+ "@radix-ui/react-primitive": "^2.1.3",
82
+ "@radix-ui/react-separator": "^1.1.7",
83
+ "@radix-ui/react-slot": "^1.2.3",
84
+ "@radix-ui/react-tabs": "^1.1.13",
85
+ "@radix-ui/react-use-callback-ref": "^1.1.1",
86
+ "@radix-ui/react-use-layout-effect": "^1.1.1",
87
+ "@tanstack/react-query": "^5.90.2",
88
+ "@types/node": "^24.5.2",
89
+ "@types/react": "^19.1.13",
90
+ "@types/react-dom": "^19.1.9",
91
+ "@types/react-google-recaptcha": "^2.1.9",
92
+ "better-auth": "^1.3.14",
93
+ "class-variance-authority": "^0.7.1",
94
+ "clsx": "^2.1.1",
95
+ "esbuild-plugin-preserve-directives": "^0.0.11",
96
+ "lucide-react": "^0.544.0",
97
+ "shx": "^0.4.0",
98
+ "tailwind-merge": "^3.3.1",
99
+ "tailwindcss-animate": "^1.0.7",
100
+ "tsc-watch": "^7.1.1",
101
+ "tsup": "^8.5.0",
102
+ "tsx": "^4.20.5",
103
+ "turbo": "^2.5.7",
104
+ "typescript": "^5.9.2",
105
+ "zod": "^4.1.11"
106
+ },
107
+ "peerDependencies": {
108
+ "@daveyplate/better-auth-tanstack": "^1.3.6",
109
+ "@hookform/resolvers": ">=5.2.0",
110
+ "@instantdb/react": ">=0.18.0",
111
+ "@marsidev/react-turnstile": ">=1.1.0",
112
+ "@radix-ui/react-avatar": ">=1.1.0",
113
+ "@radix-ui/react-checkbox": ">=1.1.0",
114
+ "@radix-ui/react-context": ">=1.1.0",
115
+ "@radix-ui/react-dialog": ">=1.1.0",
116
+ "@radix-ui/react-dropdown-menu": ">=2.1.0",
117
+ "@radix-ui/react-label": ">=2.1.0",
118
+ "@radix-ui/react-primitive": ">=2.0.0",
119
+ "@radix-ui/react-select": ">=2.2.0",
120
+ "@radix-ui/react-separator": ">=1.1.0",
121
+ "@radix-ui/react-slot": ">=1.1.0",
122
+ "@radix-ui/react-tabs": ">=1.1.0",
123
+ "@radix-ui/react-use-callback-ref": ">=1.1.0",
124
+ "@radix-ui/react-use-layout-effect": ">=1.1.0",
125
+ "@tanstack/react-query": ">=5.66.0",
126
+ "@triplit/client": ">=1.0.0",
127
+ "@triplit/react": ">=1.0.0",
128
+ "better-auth": "^1.3.13",
129
+ "class-variance-authority": ">=0.7.0",
130
+ "clsx": ">=2.1.0",
131
+ "input-otp": ">=1.4.0",
132
+ "lucide-react": ">=0.469.0",
133
+ "react": ">=18.0.0",
134
+ "react-dom": ">=18.0.0",
135
+ "react-hook-form": ">=7.55.0",
136
+ "sonner": ">=1.7.0",
137
+ "tailwind-merge": ">=2.6.0",
138
+ "tailwindcss": ">=3.0.0",
139
+ "zod": ">=3.0.0"
140
+ },
141
+ "dependencies": {
142
+ "@better-fetch/fetch": "^1.1.18",
143
+ "@hcaptcha/react-hcaptcha": "^1.12.1",
144
+ "@noble/hashes": "^2.0.1",
145
+ "@react-email/components": "^0.5.4",
146
+ "@wojtekmaj/react-recaptcha-v3": "^0.1.4",
147
+ "react-google-recaptcha": "^3.1.0",
148
+ "react-qr-code": "^2.0.18",
149
+ "ua-parser-js": "^2.0.5",
150
+ "vaul": "^1.1.2"
151
+ },
152
+ "scripts": {
153
+ "build": "pnpm build:registry && tsup --clean --dts && shx cp src/style.css dist/style.css",
154
+ "build:registry": "pnpm sync:registry && pnpm dlx shadcn@latest build && shx mkdir -p docs/public/r && shx cp public/r/*.json docs/public/r/",
155
+ "sync:registry": "node scripts/sync-registry.js",
156
+ "dev": "tsc-watch"
157
+ }
164
158
  }