better-auth-studio 1.0.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 +1 -0
- package/dist/auth-adapter.d.ts +24 -0
- package/dist/auth-adapter.d.ts.map +1 -0
- package/dist/auth-adapter.js +481 -0
- package/dist/auth-adapter.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +49 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +25 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +308 -0
- package/dist/config.js.map +1 -0
- package/dist/data.d.ts +38 -0
- package/dist/data.d.ts.map +1 -0
- package/dist/data.js +275 -0
- package/dist/data.js.map +1 -0
- package/dist/routes.d.ts +3 -0
- package/dist/routes.d.ts.map +1 -0
- package/dist/routes.js +1490 -0
- package/dist/routes.js.map +1 -0
- package/dist/studio.d.ts +10 -0
- package/dist/studio.d.ts.map +1 -0
- package/dist/studio.js +70 -0
- package/dist/studio.js.map +1 -0
- package/frontend/index.html +13 -0
- package/frontend/package-lock.json +4675 -0
- package/frontend/package.json +52 -0
- package/frontend/pnpm-lock.yaml +4020 -0
- package/frontend/postcss.config.js +6 -0
- package/frontend/src/App.tsx +36 -0
- package/frontend/src/components/CommandPalette.tsx +219 -0
- package/frontend/src/components/Layout.tsx +159 -0
- package/frontend/src/components/ui/badge.tsx +40 -0
- package/frontend/src/components/ui/button.tsx +53 -0
- package/frontend/src/components/ui/card.tsx +78 -0
- package/frontend/src/components/ui/input.tsx +20 -0
- package/frontend/src/components/ui/label.tsx +19 -0
- package/frontend/src/components/ui/select.tsx +71 -0
- package/frontend/src/index.css +130 -0
- package/frontend/src/lib/utils.ts +6 -0
- package/frontend/src/main.tsx +10 -0
- package/frontend/src/pages/Dashboard.tsx +231 -0
- package/frontend/src/pages/OrganizationDetails.tsx +1281 -0
- package/frontend/src/pages/Organizations.tsx +874 -0
- package/frontend/src/pages/Sessions.tsx +623 -0
- package/frontend/src/pages/Settings.tsx +1019 -0
- package/frontend/src/pages/TeamDetails.tsx +666 -0
- package/frontend/src/pages/Users.tsx +728 -0
- package/frontend/tailwind.config.js +75 -0
- package/frontend/tsconfig.json +31 -0
- package/frontend/tsconfig.node.json +10 -0
- package/frontend/vite.config.ts +31 -0
- package/package.json +59 -0
- package/public/assets/main-C-TXCXVW.css +1 -0
- package/public/assets/main-CCzTTP3P.js +296 -0
- package/public/index.html +14 -0
- package/src/auth-adapter.ts +471 -0
- package/src/cli.ts +51 -0
- package/src/config.ts +318 -0
- package/src/data.ts +351 -0
- package/src/routes.ts +1585 -0
- package/src/studio.ts +86 -0
- package/test-project/README.md +0 -0
- package/test-project/better-auth.db +0 -0
- package/test-project/better-auth_migrations/2025-08-27T15-55-04.099Z.sql +7 -0
- package/test-project/better-auth_migrations/2025-09-04T02-33-19.422Z.sql +7 -0
- package/test-project/package.json +29 -0
- package/test-project/pnpm-lock.yaml +1728 -0
- package/test-project/src/auth.ts +47 -0
- package/test-project/src/index.ts +40 -0
- package/tsconfig.json +21 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "better-auth-studio-frontend",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc && vite build",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@radix-ui/react-avatar": "^1.0.4",
|
|
14
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
15
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
16
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
17
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
18
|
+
"@radix-ui/react-separator": "^1.0.3",
|
|
19
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
20
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
21
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
22
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
23
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
24
|
+
"@tanstack/react-query": "^5.85.5",
|
|
25
|
+
"class-variance-authority": "^0.7.1",
|
|
26
|
+
"clsx": "^2.0.0",
|
|
27
|
+
"cmdk": "^1.1.1",
|
|
28
|
+
"date-fns": "^2.30.0",
|
|
29
|
+
"lucide-react": "^0.294.0",
|
|
30
|
+
"react": "^18.2.0",
|
|
31
|
+
"react-dom": "^18.2.0",
|
|
32
|
+
"react-router-dom": "^6.20.1",
|
|
33
|
+
"recharts": "^2.8.0",
|
|
34
|
+
"sonner": "^2.0.7",
|
|
35
|
+
"tailwind-merge": "^2.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/react": "^18.2.37",
|
|
39
|
+
"@types/react-dom": "^18.2.15",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
41
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
42
|
+
"@vitejs/plugin-react": "^4.1.1",
|
|
43
|
+
"autoprefixer": "^10.4.16",
|
|
44
|
+
"eslint": "^8.53.0",
|
|
45
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
46
|
+
"eslint-plugin-react-refresh": "^0.4.4",
|
|
47
|
+
"postcss": "^8.4.31",
|
|
48
|
+
"tailwindcss": "^3.3.5",
|
|
49
|
+
"typescript": "^5.2.2",
|
|
50
|
+
"vite": "^5.0.0"
|
|
51
|
+
}
|
|
52
|
+
}
|