authhero 5.7.0 → 5.8.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/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +137 -137
- package/dist/authhero.d.ts +83 -15
- package/dist/authhero.mjs +17133 -16168
- package/dist/stats.html +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "5.
|
|
14
|
+
"version": "5.8.1",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"vite": "^7.2.0",
|
|
63
63
|
"vite-plugin-dts": "^4.5.4",
|
|
64
64
|
"vitest": "^4.0.7",
|
|
65
|
-
"@authhero/kysely-adapter": "11.2.
|
|
66
|
-
"@authhero/widget": "0.32.
|
|
65
|
+
"@authhero/kysely-adapter": "11.2.2",
|
|
66
|
+
"@authhero/widget": "0.32.26"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@peculiar/x509": "^1.14.0",
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"qrcode": "^1.5.4",
|
|
82
82
|
"sanitize-html": "^2.17.0",
|
|
83
83
|
"xstate": "^5.25.0",
|
|
84
|
-
"@authhero/
|
|
85
|
-
"@authhero/
|
|
84
|
+
"@authhero/saml": "0.3.0",
|
|
85
|
+
"@authhero/adapter-interfaces": "2.5.0"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"@authhero/widget": "^0.1.0",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
},
|
|
104
104
|
"scripts": {
|
|
105
105
|
"dev": "bun --watch src/bun.ts",
|
|
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",
|
|
106
|
+
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && 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",
|
|
107
107
|
"build:i18n": "node scripts/generate-locale-types.js",
|
|
108
108
|
"build:emails": "tsx scripts/build-emails.tsx",
|
|
109
109
|
"build:tailwind": "node build-tailwind.js",
|