@fonderie/vue-auth 0.11.0 → 0.11.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/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Vue 3 composables for Fonderie auth — `useLogin`, `useRegister`,
|
|
4
4
|
`useSession`, `useLogout`, `useForgotPassword`, `useResetPassword`, and
|
|
5
5
|
`useVerifyEmail`. Thin bindings over
|
|
6
|
-
[`@fonderie/client`](https://github.com/fonderiejs/
|
|
6
|
+
[`@fonderie/client`](https://github.com/fonderiejs/fonderie/tree/main/packages/client):
|
|
7
7
|
reactive `ref`s for loading/error/data state and the request itself, nothing
|
|
8
8
|
else. Bring your own UI.
|
|
9
9
|
|
|
@@ -57,14 +57,14 @@ or a prop). The access token is persisted to `localStorage` and restored
|
|
|
57
57
|
automatically by `useSession` on setup; don't re-implement that in app code.
|
|
58
58
|
|
|
59
59
|
Want pre-built screens instead of wiring your own form?
|
|
60
|
-
See [`@fonderie/vue-auth-screens`](https://github.com/fonderiejs/
|
|
60
|
+
See [`@fonderie/vue-auth-screens`](https://github.com/fonderiejs/fonderie/tree/main/packages/vue-auth-screens).
|
|
61
61
|
|
|
62
62
|
## Why this exists
|
|
63
63
|
|
|
64
64
|
You've shipped this plumbing before — auth, teams, billing, messaging —
|
|
65
65
|
and the next project will ask for it again. Fonderie packages it once:
|
|
66
66
|
plain TypeScript modules for
|
|
67
|
-
[`@fonderie/core`](https://github.com/fonderiejs/
|
|
67
|
+
[`@fonderie/core`](https://github.com/fonderiejs/fonderie/tree/main/packages/core),
|
|
68
68
|
PostgreSQL-backed, self-hosted, MIT. No external control plane, no
|
|
69
69
|
per-seat anything. Register the modules you need; skip the ones you don't.
|
|
70
70
|
|
|
@@ -73,7 +73,7 @@ around `@fonderie/client`, nothing more. No business logic lives here; it
|
|
|
73
73
|
lives in `@fonderie/auth` on the server.
|
|
74
74
|
|
|
75
75
|
Browse the whole set at
|
|
76
|
-
[fonderiejs/
|
|
76
|
+
[fonderiejs/fonderie](https://github.com/fonderiejs/fonderie) · follow
|
|
77
77
|
[@fonderiejs](https://x.com/fonderiejs)
|
|
78
78
|
|
|
79
79
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonderie/vue-auth",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Vue composables for Fonderie auth \u2014 thin bindings over @fonderie/client.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fonderiejs",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"vue": ">=3.3.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@types/node": "^26.
|
|
44
|
+
"@types/node": "^26.6.1",
|
|
45
45
|
"tsup": "^8.5.1",
|
|
46
46
|
"tsx": "^4.23.13",
|
|
47
47
|
"typescript": "^6.0.3",
|
|
48
|
-
"vue": "^3.5.
|
|
48
|
+
"vue": "^3.5.43"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|