authhero 4.113.0 → 4.114.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/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +133 -120
- package/dist/authhero.d.ts +319 -14
- package/dist/authhero.mjs +24261 -20325
- package/dist/stats.html +1 -1
- package/package.json +10 -5
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "4.
|
|
14
|
+
"version": "4.114.0",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@ape-egg/tailwind-rows-columns": "^1.0.2",
|
|
34
34
|
"@hono/node-server": "^1.19.14",
|
|
35
|
+
"@react-email/components": "^1.0.12",
|
|
36
|
+
"@react-email/render": "^2.0.6",
|
|
37
|
+
"tsx": "^4.21.0",
|
|
35
38
|
"@hono/zod-openapi": "^0.19.10",
|
|
36
39
|
"@storybook/react": "^10.0.4",
|
|
37
40
|
"@storybook/react-vite": "^10.0.4",
|
|
@@ -59,8 +62,8 @@
|
|
|
59
62
|
"vite": "^7.2.0",
|
|
60
63
|
"vite-plugin-dts": "^4.5.4",
|
|
61
64
|
"vitest": "^4.0.7",
|
|
62
|
-
"@authhero/kysely-adapter": "10.
|
|
63
|
-
"@authhero/widget": "0.32.
|
|
65
|
+
"@authhero/kysely-adapter": "10.133.0",
|
|
66
|
+
"@authhero/widget": "0.32.16"
|
|
64
67
|
},
|
|
65
68
|
"dependencies": {
|
|
66
69
|
"@peculiar/x509": "^1.14.0",
|
|
@@ -71,13 +74,14 @@
|
|
|
71
74
|
"cookie": "^1.1.1",
|
|
72
75
|
"country-list": "^2.4.1",
|
|
73
76
|
"i18next": "^25.6.0",
|
|
77
|
+
"liquidjs": "^10.21.0",
|
|
74
78
|
"libphonenumber-js": "^1.12.25",
|
|
75
79
|
"nanoid": "^5.1.6",
|
|
76
80
|
"oslo": "^1.2.1",
|
|
77
81
|
"qrcode": "^1.5.4",
|
|
78
82
|
"sanitize-html": "^2.17.0",
|
|
79
83
|
"xstate": "^5.25.0",
|
|
80
|
-
"@authhero/adapter-interfaces": "1.
|
|
84
|
+
"@authhero/adapter-interfaces": "1.16.0",
|
|
81
85
|
"@authhero/saml": "0.3.0"
|
|
82
86
|
},
|
|
83
87
|
"peerDependencies": {
|
|
@@ -99,8 +103,9 @@
|
|
|
99
103
|
},
|
|
100
104
|
"scripts": {
|
|
101
105
|
"dev": "bun --watch src/bun.ts",
|
|
102
|
-
"build": "pnpm build:i18n && pnpm build:tailwind && pnpm build:client && tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && pnpm build:assets",
|
|
106
|
+
"build": "pnpm build:i18n && pnpm build:emails && pnpm build:tailwind && pnpm build:client && tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && pnpm build:assets",
|
|
103
107
|
"build:i18n": "node scripts/generate-locale-types.js",
|
|
108
|
+
"build:emails": "tsx scripts/build-emails.tsx",
|
|
104
109
|
"build:tailwind": "node build-tailwind.js",
|
|
105
110
|
"build:client": "vite build --mode client && node build-client.js",
|
|
106
111
|
"build:assets": "node build-assets.js",
|