@better-auth/cli 1.4.4-beta.1 → 1.4.4
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/index.mjs +1 -7
- package/package.json +8 -7
package/dist/index.mjs
CHANGED
|
@@ -748,13 +748,7 @@ let possiblePaths = [
|
|
|
748
748
|
"auth.js",
|
|
749
749
|
"auth.jsx",
|
|
750
750
|
"auth.server.js",
|
|
751
|
-
"auth.server.ts"
|
|
752
|
-
"auth/index.ts",
|
|
753
|
-
"auth/index.tsx",
|
|
754
|
-
"auth/index.js",
|
|
755
|
-
"auth/index.jsx",
|
|
756
|
-
"auth/index.server.js",
|
|
757
|
-
"auth/index.server.ts"
|
|
751
|
+
"auth.server.ts"
|
|
758
752
|
];
|
|
759
753
|
possiblePaths = [
|
|
760
754
|
...possiblePaths,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/cli",
|
|
3
|
-
"version": "1.4.4
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The CLI for Better Auth",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -25,16 +25,18 @@
|
|
|
25
25
|
"better-auth"
|
|
26
26
|
],
|
|
27
27
|
"exports": "./dist/index.mjs",
|
|
28
|
-
"bin":
|
|
28
|
+
"bin": {
|
|
29
|
+
"better-auth": "./dist/index.mjs"
|
|
30
|
+
},
|
|
29
31
|
"devDependencies": {
|
|
30
32
|
"@types/better-sqlite3": "^7.6.13",
|
|
31
33
|
"@types/prompts": "^2.4.9",
|
|
32
34
|
"@types/semver": "^7.7.1",
|
|
33
|
-
"tsdown": "^0.16.
|
|
35
|
+
"tsdown": "^0.16.0",
|
|
34
36
|
"tsx": "^4.20.6",
|
|
35
37
|
"type-fest": "^5.2.0",
|
|
36
38
|
"typescript": "^5.9.3",
|
|
37
|
-
"@better-auth/passkey": "1.4.4
|
|
39
|
+
"@better-auth/passkey": "1.4.4"
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"@babel/core": "^7.28.4",
|
|
@@ -62,8 +64,8 @@
|
|
|
62
64
|
"tinyexec": "^0.3.2",
|
|
63
65
|
"yocto-spinner": "^0.2.3",
|
|
64
66
|
"zod": "^4.1.12",
|
|
65
|
-
"better-auth": "1.4.4
|
|
66
|
-
"@better-auth/core": "1.4.4
|
|
67
|
+
"better-auth": "1.4.4",
|
|
68
|
+
"@better-auth/core": "1.4.4"
|
|
67
69
|
},
|
|
68
70
|
"files": [
|
|
69
71
|
"dist"
|
|
@@ -71,7 +73,6 @@
|
|
|
71
73
|
"scripts": {
|
|
72
74
|
"build": "tsdown",
|
|
73
75
|
"start": "node ./dist/index.mjs",
|
|
74
|
-
"lint:package": "publint run --strict",
|
|
75
76
|
"dev": "tsx ./src/index.ts",
|
|
76
77
|
"test": "vitest",
|
|
77
78
|
"typecheck": "tsc --project tsconfig.json"
|