authhero 4.67.0 → 4.68.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/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "4.67.0",
14
+ "version": "4.68.0",
15
15
  "files": [
16
16
  "dist"
17
17
  ],
@@ -32,7 +32,6 @@
32
32
  "devDependencies": {
33
33
  "@ape-egg/tailwind-rows-columns": "^1.0.2",
34
34
  "@hono/zod-openapi": "^0.19.10",
35
- "@inlang/paraglide-js": "^2.10.0",
36
35
  "@storybook/react": "^10.0.4",
37
36
  "@storybook/react-vite": "^10.0.4",
38
37
  "@types/node": "^24.10.0",
@@ -57,8 +56,8 @@
57
56
  "vite": "^7.2.0",
58
57
  "vite-plugin-dts": "^4.5.4",
59
58
  "vitest": "^4.0.7",
60
- "@authhero/kysely-adapter": "10.107.0",
61
- "@authhero/widget": "0.21.0"
59
+ "@authhero/kysely-adapter": "10.107.1",
60
+ "@authhero/widget": "0.22.0"
62
61
  },
63
62
  "dependencies": {
64
63
  "@peculiar/x509": "^1.14.0",
@@ -66,6 +65,7 @@
66
65
  "bcryptjs": "^3.0.3",
67
66
  "classnames": "^2.5.1",
68
67
  "cookie": "^1.1.1",
68
+ "country-list": "^2.4.1",
69
69
  "i18next": "^25.6.0",
70
70
  "libphonenumber-js": "^1.12.25",
71
71
  "nanoid": "^5.1.6",
@@ -73,7 +73,7 @@
73
73
  "sanitize-html": "^2.17.0",
74
74
  "ulid": "^2.3.0",
75
75
  "xstate": "^5.25.0",
76
- "@authhero/adapter-interfaces": "0.147.0",
76
+ "@authhero/adapter-interfaces": "0.148.0",
77
77
  "@authhero/saml": "0.3.0"
78
78
  },
79
79
  "peerDependencies": {
@@ -93,15 +93,13 @@
93
93
  "scripts": {
94
94
  "dev": "bun --watch src/bun.ts",
95
95
  "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",
96
- "build:i18n": "npx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
96
+ "build:i18n": "node scripts/generate-locale-types.js",
97
97
  "build:tailwind": "node build-tailwind.js",
98
98
  "build:client": "vite build --mode client && node build-client.js",
99
99
  "build:assets": "node build-assets.js",
100
100
  "build:vite": "vite build",
101
101
  "start": "pnpm build && node dist/index.js",
102
102
  "test": "vitest run",
103
- "i18n:compile": "npx @inlang/paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
104
- "i18n:convert": "node scripts/convert-locales-to-paraglide.js",
105
103
  "pull-translations": "i18nexus pull --path ./src/locales",
106
104
  "watch-translations": "i18nexus listen --path ./src/locales",
107
105
  "storybook": "pnpm build:tailwind && storybook dev -p 6006",