better-auth-studio 1.0.65-beta.4 → 1.0.65-beta.6
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/dist/cli.js
CHANGED
|
File without changes
|
|
@@ -0,0 +1,64 @@
|
|
|
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 50",
|
|
11
|
+
"lint:fix": "eslint . --ext ts,tsx --fix"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@number-flow/react": "^0.5.10",
|
|
15
|
+
"@radix-ui/react-avatar": "^1.0.4",
|
|
16
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
17
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
18
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
19
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
20
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
21
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
22
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
23
|
+
"@radix-ui/react-separator": "^1.0.3",
|
|
24
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
25
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
26
|
+
"@radix-ui/react-tabs": "^1.0.4",
|
|
27
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
28
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
29
|
+
"@tanstack/react-query": "^5.85.5",
|
|
30
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
31
|
+
"@xyflow/react": "^12.8.5",
|
|
32
|
+
"class-variance-authority": "^0.7.1",
|
|
33
|
+
"clsx": "^2.1.1",
|
|
34
|
+
"cmdk": "^1.1.1",
|
|
35
|
+
"date-fns": "^2.30.0",
|
|
36
|
+
"lucide-react": "^0.294.0",
|
|
37
|
+
"react": "^19.0.0",
|
|
38
|
+
"react-day-picker": "^9.11.1",
|
|
39
|
+
"react-dom": "^19.0.0",
|
|
40
|
+
"react-router-dom": "^6.20.1",
|
|
41
|
+
"react-syntax-highlighter": "^15.6.6",
|
|
42
|
+
"recharts": "^2.8.0",
|
|
43
|
+
"sonner": "^2.0.7",
|
|
44
|
+
"tailwind-merge": "^2.6.0",
|
|
45
|
+
"tailwindcss-animate": "^1.0.7"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^20.12.7",
|
|
49
|
+
"@types/react": "^19.0.0",
|
|
50
|
+
"@types/react-dom": "^19.0.0",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
52
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
53
|
+
"@vitejs/plugin-react": "^4.1.1",
|
|
54
|
+
"autoprefixer": "^10.4.16",
|
|
55
|
+
"eslint": "^8.53.0",
|
|
56
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
57
|
+
"eslint-plugin-react-refresh": "^0.4.4",
|
|
58
|
+
"postcss": "^8.4.31",
|
|
59
|
+
"sucrase": "^3.35.0",
|
|
60
|
+
"tailwindcss": "^3.3.5",
|
|
61
|
+
"typescript": "^5.9.2",
|
|
62
|
+
"vite": "^5.0.0"
|
|
63
|
+
}
|
|
64
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-auth-studio",
|
|
3
|
-
"version": "1.0.65-beta.
|
|
3
|
+
"version": "1.0.65-beta.6",
|
|
4
4
|
"description": "Studio for Better Auth",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"better-auth-studio": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc && pnpm run frontend:build",
|
|
11
|
+
"dev": "tsx src/cli.ts",
|
|
12
|
+
"start": "node dist/cli.js",
|
|
13
|
+
"studio": "tsx src/cli.ts",
|
|
14
|
+
"clean": "rm -rf dist",
|
|
15
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
16
|
+
"frontend:dev": "cd frontend && pnpm run dev",
|
|
17
|
+
"frontend:build": "cd frontend && pnpm run build",
|
|
18
|
+
"frontend:preview": "cd frontend && pnpm run preview",
|
|
19
|
+
"lint": "biome check . --max-diagnostics=1000",
|
|
20
|
+
"lint:fix": "biome check --write .",
|
|
21
|
+
"format": "biome format --write .",
|
|
22
|
+
"type-check": "tsc --noEmit",
|
|
23
|
+
"test": "vitest",
|
|
24
|
+
"test:watch": "vitest --watch",
|
|
25
|
+
"test:coverage": "vitest --coverage",
|
|
26
|
+
"test:ci": "pnpm test --run",
|
|
27
|
+
"release": "pnpm build && bumpp && pnpm publish --access public --no-git-checks",
|
|
28
|
+
"release:beta": "pnpm build && bumpp --preid beta && pnpm publish --access public --tag beta --no-git-checks",
|
|
29
|
+
"release:no-build": "bumpp && pnpm publish --access public --no-git-checks --tag next",
|
|
30
|
+
"release:canary": "pnpm build && bumpp --preid canary --no-commit --no-tag --no-push && pnpm publish --access public --tag canary --no-git-checks",
|
|
31
|
+
"bump": "bumpp"
|
|
32
|
+
},
|
|
9
33
|
"keywords": [
|
|
10
34
|
"better-auth",
|
|
11
35
|
"studio",
|
|
@@ -63,28 +87,5 @@
|
|
|
63
87
|
"data/",
|
|
64
88
|
"README.md",
|
|
65
89
|
"package.json"
|
|
66
|
-
]
|
|
67
|
-
|
|
68
|
-
"build": "tsc && pnpm run frontend:build",
|
|
69
|
-
"dev": "tsx src/cli.ts",
|
|
70
|
-
"start": "node dist/cli.js",
|
|
71
|
-
"studio": "tsx src/cli.ts",
|
|
72
|
-
"clean": "rm -rf dist",
|
|
73
|
-
"frontend:dev": "cd frontend && pnpm run dev",
|
|
74
|
-
"frontend:build": "cd frontend && pnpm run build",
|
|
75
|
-
"frontend:preview": "cd frontend && pnpm run preview",
|
|
76
|
-
"lint": "biome check . --max-diagnostics=1000",
|
|
77
|
-
"lint:fix": "biome check --write .",
|
|
78
|
-
"format": "biome format --write .",
|
|
79
|
-
"type-check": "tsc --noEmit",
|
|
80
|
-
"test": "vitest",
|
|
81
|
-
"test:watch": "vitest --watch",
|
|
82
|
-
"test:coverage": "vitest --coverage",
|
|
83
|
-
"test:ci": "pnpm test --run",
|
|
84
|
-
"release": "pnpm build && bumpp && pnpm publish --access public --no-git-checks",
|
|
85
|
-
"release:beta": "pnpm build && bumpp --preid beta && pnpm publish --access public --tag beta --no-git-checks",
|
|
86
|
-
"release:no-build": "bumpp && pnpm publish --access public --no-git-checks --tag next",
|
|
87
|
-
"release:canary": "pnpm build && bumpp --preid canary --no-commit --no-tag --no-push && pnpm publish --access public --tag canary --no-git-checks",
|
|
88
|
-
"bump": "bumpp"
|
|
89
|
-
}
|
|
90
|
-
}
|
|
90
|
+
]
|
|
91
|
+
}
|