@bleedingdev/modern-js-plugin-i18n 3.8.3-ultramodern.6 → 3.9.0-ultramodern.2

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.
Files changed (37) hide show
  1. package/dist/types/cli/index.d.ts +2 -2
  2. package/dist/types/cli/locales.d.ts +1 -1
  3. package/dist/types/runtime/Link.d.ts +2 -2
  4. package/dist/types/runtime/context.d.ts +2 -2
  5. package/dist/types/runtime/contextHelpers.d.ts +1 -1
  6. package/dist/types/runtime/core.d.ts +13 -13
  7. package/dist/types/runtime/hooks.d.ts +1 -1
  8. package/dist/types/runtime/i18n/backend/config.d.ts +1 -1
  9. package/dist/types/runtime/i18n/backend/index.d.ts +2 -2
  10. package/dist/types/runtime/i18n/backend/middleware.common.d.ts +2 -2
  11. package/dist/types/runtime/i18n/backend/middleware.d.ts +2 -2
  12. package/dist/types/runtime/i18n/backend/middleware.node.d.ts +2 -2
  13. package/dist/types/runtime/i18n/backend/sdk-backend.d.ts +1 -1
  14. package/dist/types/runtime/i18n/detection/cache.d.ts +1 -1
  15. package/dist/types/runtime/i18n/detection/config.d.ts +1 -1
  16. package/dist/types/runtime/i18n/detection/detector.d.ts +2 -2
  17. package/dist/types/runtime/i18n/detection/index.d.ts +4 -4
  18. package/dist/types/runtime/i18n/detection/initOptions.d.ts +1 -1
  19. package/dist/types/runtime/i18n/detection/middleware.d.ts +1 -1
  20. package/dist/types/runtime/i18n/detection/middleware.node.d.ts +1 -1
  21. package/dist/types/runtime/i18n/detection/priority.d.ts +2 -2
  22. package/dist/types/runtime/i18n/detection/types.d.ts +1 -1
  23. package/dist/types/runtime/i18n/index.d.ts +3 -3
  24. package/dist/types/runtime/i18n/instance.d.ts +1 -1
  25. package/dist/types/runtime/i18n/react-i18next.d.ts +1 -1
  26. package/dist/types/runtime/i18n/utils.d.ts +2 -2
  27. package/dist/types/runtime/index.d.ts +2 -2
  28. package/dist/types/runtime/no-react-i18next.d.ts +2 -2
  29. package/dist/types/runtime/pluginSetup.d.ts +3 -3
  30. package/dist/types/runtime/providerComposition.d.ts +2 -2
  31. package/dist/types/runtime/types.d.ts +1 -1
  32. package/dist/types/server/detectorOptions.d.ts +1 -1
  33. package/dist/types/server/index.d.ts +1 -1
  34. package/dist/types/server/redirectPolicy.d.ts +1 -1
  35. package/dist/types/shared/type.d.ts +1 -1
  36. package/dist/types/shared/utils.d.ts +1 -1
  37. package/package.json +18 -18
@@ -1,7 +1,7 @@
1
1
  import type { AppTools, CliPlugin } from '@modern-js/app-tools';
2
2
  import type { Entrypoint } from '@modern-js/types';
3
- import type { BackendOptions, LocaleDetectionOptions } from '../shared/type';
4
- import '../runtime/types';
3
+ import type { BackendOptions, LocaleDetectionOptions } from '../shared/type.js';
4
+ import '../runtime/types.js';
5
5
  export type TransformRuntimeConfigFn = (extendedConfig: Record<string, any>, entrypoint: Entrypoint) => Record<string, any>;
6
6
  export interface I18nPluginOptions {
7
7
  localeDetection?: LocaleDetectionOptions;
@@ -1,4 +1,4 @@
1
- import type { BackendOptions } from '../shared/type';
1
+ import type { BackendOptions } from '../shared/type.js';
2
2
  interface NormalizedConfigForLocales {
3
3
  server?: {
4
4
  publicDir?: string | string[];
@@ -1,6 +1,6 @@
1
1
  import type React from 'react';
2
- import type { LinkParamsProp, LinkTargetPathname, ValidateLinkTo } from './canonicalRoutes';
3
- import { interpolateRouteParams, type LinkParams } from './linkHelpers';
2
+ import type { LinkParamsProp, LinkTargetPathname, ValidateLinkTo } from './canonicalRoutes.js';
3
+ import { interpolateRouteParams, type LinkParams } from './linkHelpers.js';
4
4
  export type { LinkParams };
5
5
  export { interpolateRouteParams };
6
6
  export interface LinkActiveOptions {
@@ -1,7 +1,7 @@
1
1
  import type { LocalisedUrlsOption } from '@modern-js/i18n-runtime-extensions';
2
2
  import type { ComponentType, FC, ReactNode } from 'react';
3
- import type { I18nInstance } from './i18n';
4
- import type { Resources } from './i18n/instance';
3
+ import type { I18nInstance } from './i18n/index.js';
4
+ import type { Resources } from './i18n/instance.js';
5
5
  interface ModernI18nContextValue {
6
6
  language: string;
7
7
  i18nInstance: I18nInstance;
@@ -1,5 +1,5 @@
1
1
  import type { LocalisedUrlsOption } from '@modern-js/i18n-runtime-extensions';
2
- import type { I18nInstance } from './i18n';
2
+ import type { I18nInstance } from './i18n/index.js';
3
3
  type Navigate = (url: string, options?: {
4
4
  replace?: boolean;
5
5
  }) => Promise<void> | void;
@@ -1,11 +1,11 @@
1
1
  import type { RuntimePlugin } from '@modern-js/runtime';
2
- import type { BaseBackendOptions, BaseLocaleDetectionOptions } from '../shared/type';
3
- import type { I18nInitOptions, I18nInstance } from './i18n';
4
- import { type LoadReactI18nextIntegration } from './reactI18next';
5
- import './types';
6
- export type { I18nSdkLoader, I18nSdkLoadOptions } from '../shared/type';
7
- export type { I18nInitOptions, I18nInstance, Resources, TranslateFn, } from './i18n/instance';
8
- export type { LoadReactI18nextIntegration, ReactI18nextIntegration, } from './reactI18next';
2
+ import type { BaseBackendOptions, BaseLocaleDetectionOptions } from '../shared/type.js';
3
+ import type { I18nInitOptions, I18nInstance } from './i18n/index.js';
4
+ import { type LoadReactI18nextIntegration } from './reactI18next.js';
5
+ import './types.js';
6
+ export type { I18nSdkLoader, I18nSdkLoadOptions } from '../shared/type.js';
7
+ export type { I18nInitOptions, I18nInstance, Resources, TranslateFn, } from './i18n/instance.js';
8
+ export type { LoadReactI18nextIntegration, ReactI18nextIntegration, } from './reactI18next.js';
9
9
  export interface I18nPluginOptions {
10
10
  entryName?: string;
11
11
  localeDetection?: BaseLocaleDetectionOptions;
@@ -18,9 +18,9 @@ export interface I18nPluginOptions {
18
18
  [key: string]: any;
19
19
  }
20
20
  export declare const createI18nPlugin: (loadReactI18nextIntegration?: LoadReactI18nextIntegration) => ((options: I18nPluginOptions) => RuntimePlugin);
21
- export type { AllowedLinkTarget, CanonicalRoutePath, UltramodernCanonicalRoutes, } from './canonicalRoutes';
22
- export { FederatedI18nBoundary, type FederatedI18nBoundaryProps, type UseModernI18nReturn, useModernI18n, } from './context';
23
- export { I18nLink, type I18nLinkProps } from './I18nLink';
24
- export { Link, type LinkActiveOptions, type LinkBaseProps, type LinkParams, type LinkProps, } from './Link';
25
- export { canonicalPath, type LocalizedPathsConfig, localizePath, type UseLocalizedLocationReturn, type UseLocalizedPathsReturn, useLocalizedLocation, useLocalizedPaths, } from './localizedPaths';
26
- export { buildLocalizedUrl, splitUrlTarget } from './utils';
21
+ export type { AllowedLinkTarget, CanonicalRoutePath, UltramodernCanonicalRoutes, } from './canonicalRoutes.js';
22
+ export { FederatedI18nBoundary, type FederatedI18nBoundaryProps, type UseModernI18nReturn, useModernI18n, } from './context.js';
23
+ export { I18nLink, type I18nLinkProps } from './I18nLink.js';
24
+ export { Link, type LinkActiveOptions, type LinkBaseProps, type LinkParams, type LinkProps, } from './Link.js';
25
+ export { canonicalPath, type LocalizedPathsConfig, localizePath, type UseLocalizedLocationReturn, type UseLocalizedPathsReturn, useLocalizedLocation, useLocalizedPaths, } from './localizedPaths.js';
26
+ export { buildLocalizedUrl, splitUrlTarget } from './utils.js';
@@ -1,6 +1,6 @@
1
1
  import type { LocalisedUrlsOption } from '@modern-js/i18n-runtime-extensions';
2
2
  import type React from 'react';
3
- import type { I18nInstance } from './i18n';
3
+ import type { I18nInstance } from './i18n/index.js';
4
4
  export declare function createContextValue(lang: string, i18nInstance: I18nInstance | undefined, entryName: string | undefined, languages: string[], localePathRedirect: boolean, ignoreRedirectRoutes: string[] | ((pathname: string) => boolean) | undefined, localisedUrls: LocalisedUrlsOption | undefined, setLang: (lang: string) => void, synchronizeLanguage: (lang: string) => void): {
5
5
  language: string;
6
6
  i18nInstance: I18nInstance;
@@ -1,2 +1,2 @@
1
- import type { BackendOptions } from '../instance';
1
+ import type { BackendOptions } from '../instance.js';
2
2
  export declare function mergeBackendOptions(defaultOptions: BackendOptions, cliOptions?: BackendOptions, userOptions?: BackendOptions): BackendOptions;
@@ -1,3 +1,3 @@
1
- import type { BaseBackendOptions } from '../../../shared/type';
2
- import type { BackendOptions, I18nInitOptions } from '../instance';
1
+ import type { BaseBackendOptions } from '../../../shared/type.js';
2
+ import type { BackendOptions, I18nInitOptions } from '../instance.js';
3
3
  export declare const mergeBackendOptions: (backend?: BaseBackendOptions, userInitOptions?: I18nInitOptions) => BackendOptions | undefined;
@@ -1,5 +1,5 @@
1
- import type { BaseBackendOptions, ChainedBackendConfig } from '../../../shared/type';
2
- import type { I18nInstance } from '../instance';
1
+ import type { BaseBackendOptions, ChainedBackendConfig } from '../../../shared/type.js';
2
+ import type { I18nInstance } from '../instance.js';
3
3
  type BackendConfigWithChained = BaseBackendOptions & Partial<ChainedBackendConfig>;
4
4
  type BackendConstructor = new (...args: never[]) => unknown;
5
5
  /**
@@ -1,6 +1,6 @@
1
1
  import Backend from 'i18next-http-backend';
2
- import type { ExtendedBackendOptions } from '../../../shared/type';
3
- import type { I18nInstance } from '../instance';
2
+ import type { ExtendedBackendOptions } from '../../../shared/type.js';
3
+ import type { I18nInstance } from '../instance.js';
4
4
  /**
5
5
  * Wrapper for HTTP backend to add a no-op save method
6
6
  * This is required for i18next-chained-backend to trigger refresh logic
@@ -1,5 +1,5 @@
1
- import type { ExtendedBackendOptions } from '../../../shared/type';
2
- import type { I18nInstance } from '../instance';
1
+ import type { ExtendedBackendOptions } from '../../../shared/type.js';
2
+ import type { I18nInstance } from '../instance.js';
3
3
  type BackendConstructor = new (...args: any[]) => any;
4
4
  export declare const resolveFsBackendConstructor: (backendModule: unknown) => BackendConstructor;
5
5
  declare const Backend: BackendConstructor;
@@ -1,4 +1,4 @@
1
- import type { I18nSdkLoader } from '../../../shared/type';
1
+ import type { I18nSdkLoader } from '../../../shared/type.js';
2
2
  interface BackendOptions {
3
3
  sdk?: I18nSdkLoader;
4
4
  [key: string]: unknown;
@@ -1,4 +1,4 @@
1
- import type { I18nInitOptions, I18nInstance, LanguageDetectorOptions } from '../instance';
1
+ import type { I18nInitOptions, I18nInstance, LanguageDetectorOptions } from '../instance.js';
2
2
  interface DetectorCacheEntry {
3
3
  instance: I18nInstance;
4
4
  isTemporary: boolean;
@@ -1,4 +1,4 @@
1
- import type { LanguageDetectorOptions } from '../instance';
1
+ import type { LanguageDetectorOptions } from '../instance.js';
2
2
  export declare const DEFAULT_I18NEXT_DETECTION_OPTIONS: {
3
3
  caches: string[];
4
4
  order: string[];
@@ -1,5 +1,5 @@
1
- import type { I18nInstance } from '../instance';
2
- import type { BaseLanguageDetectionOptions, LanguageDetectionSsrContext } from './types';
1
+ import type { I18nInstance } from '../instance.js';
2
+ import type { BaseLanguageDetectionOptions, LanguageDetectionSsrContext } from './types.js';
3
3
  /**
4
4
  * Priority 3: Detect language using i18next detector
5
5
  */
@@ -1,4 +1,4 @@
1
- export { mergeDetectionOptions } from './initOptions';
2
- export { cacheUserLanguage } from './middleware';
3
- export { detectLanguageWithPriority } from './priority';
4
- export { exportServerLngToWindow } from './ssr';
1
+ export { mergeDetectionOptions } from './initOptions.js';
2
+ export { cacheUserLanguage } from './middleware.js';
3
+ export { detectLanguageWithPriority } from './priority.js';
4
+ export { exportServerLngToWindow } from './ssr.js';
@@ -1,4 +1,4 @@
1
- import type { I18nInitOptions, LanguageDetectorOptions } from '../instance';
1
+ import type { I18nInitOptions, LanguageDetectorOptions } from '../instance.js';
2
2
  /**
3
3
  * Merge detection and backend options
4
4
  */
@@ -1,4 +1,4 @@
1
- import type { I18nInstance, LanguageDetectorOptions } from '../instance';
1
+ import type { I18nInstance, LanguageDetectorOptions } from '../instance.js';
2
2
  /**
3
3
  * Register LanguageDetector plugin to i18n instance
4
4
  * Must be called before init() to properly register the detector
@@ -1,4 +1,4 @@
1
- import type { I18nInstance, LanguageDetectorOptions } from '../instance';
1
+ import type { I18nInstance, LanguageDetectorOptions } from '../instance.js';
2
2
  export declare const cacheUserLanguage: (_i18nInstance: I18nInstance, _language: string, _detectionOptions?: unknown) => void;
3
3
  /**
4
4
  * Read language directly from storage (localStorage/cookie)
@@ -1,5 +1,5 @@
1
- import { type I18nInstance } from '../instance';
2
- import type { LanguageDetectionOptions, LanguageDetectionResult } from './types';
1
+ import { type I18nInstance } from '../instance.js';
2
+ import type { LanguageDetectionOptions, LanguageDetectionResult } from './types.js';
3
3
  /**
4
4
  * Detect language with priority:
5
5
  * Priority 1: Path detection
@@ -1,4 +1,4 @@
1
- import type { I18nInitOptions, LanguageDetectorOptions } from '../instance';
1
+ import type { I18nInitOptions, LanguageDetectorOptions } from '../instance.js';
2
2
  export interface LanguageDetectionSsrContext {
3
3
  request?: unknown;
4
4
  }
@@ -1,3 +1,3 @@
1
- export type { I18nInitOptions, I18nInstance, } from './instance';
2
- export { getI18nInstance, isI18nInstance } from './instance';
3
- export { assertI18nInstance } from './utils';
1
+ export type { I18nInitOptions, I18nInstance, } from './instance.js';
2
+ export { getI18nInstance, isI18nInstance } from './instance.js';
3
+ export { assertI18nInstance } from './utils.js';
@@ -1,4 +1,4 @@
1
- import type { BaseBackendOptions } from '../../shared/type';
1
+ import type { BaseBackendOptions } from '../../shared/type.js';
2
2
  interface I18nResourceStore {
3
3
  data?: {
4
4
  [language: string]: {
@@ -1,2 +1,2 @@
1
- import type { ReactI18nextIntegration } from '../reactI18next';
1
+ import type { ReactI18nextIntegration } from '../reactI18next.js';
2
2
  export declare function getReactI18nextIntegration(): Promise<ReactI18nextIntegration>;
@@ -1,5 +1,5 @@
1
- import type { BaseBackendOptions } from '../../shared/type';
2
- import type { I18nInitOptions, I18nInstance } from './instance';
1
+ import type { BaseBackendOptions } from '../../shared/type.js';
2
+ import type { I18nInitOptions, I18nInstance } from './instance.js';
3
3
  type MergedBackendOptions = NonNullable<I18nInitOptions['backend']> & {
4
4
  _useChainedBackend?: boolean;
5
5
  _chainedBackendConfig?: {
@@ -1,3 +1,3 @@
1
- export * from './core';
2
- export declare const i18nPlugin: (options: import("./core").I18nPluginOptions) => import("@modern-js/runtime").RuntimePlugin;
1
+ export * from './core.js';
2
+ export declare const i18nPlugin: (options: import("./core.js").I18nPluginOptions) => import("@modern-js/runtime").RuntimePlugin;
3
3
  export default i18nPlugin;
@@ -1,3 +1,3 @@
1
- export * from './core';
2
- export declare const i18nPlugin: (options: import("./core").I18nPluginOptions) => import("@modern-js/runtime").RuntimePlugin;
1
+ export * from './core.js';
2
+ export declare const i18nPlugin: (options: import("./core.js").I18nPluginOptions) => import("@modern-js/runtime").RuntimePlugin;
3
3
  export default i18nPlugin;
@@ -1,7 +1,7 @@
1
1
  import type { TInternalRuntimeContext } from '@modern-js/runtime/internal';
2
- import type { BaseBackendOptions, BaseLocaleDetectionOptions } from '../shared/type';
3
- import type { I18nInitOptions, I18nInstance } from './i18n';
4
- import type { ReactI18nextIntegration } from './reactI18next';
2
+ import type { BaseBackendOptions, BaseLocaleDetectionOptions } from '../shared/type.js';
3
+ import type { I18nInitOptions, I18nInstance } from './i18n/index.js';
4
+ import type { ReactI18nextIntegration } from './reactI18next.js';
5
5
  interface RuntimeConfigWithI18n {
6
6
  i18n?: {
7
7
  initOptions?: I18nInitOptions;
@@ -1,6 +1,6 @@
1
1
  import type React from 'react';
2
- import type { BaseLocaleDetectionOptions } from '../shared/type';
3
- import type { I18nInstance } from './i18n';
2
+ import type { BaseLocaleDetectionOptions } from '../shared/type.js';
3
+ import type { I18nInstance } from './i18n/index.js';
4
4
  interface I18nRootWrapperOptions {
5
5
  entryName?: string;
6
6
  htmlLangAttr: boolean;
@@ -1,4 +1,4 @@
1
- import type { I18nInitOptions, I18nInstance } from './i18n';
1
+ import type { I18nInitOptions, I18nInstance } from './i18n/index.js';
2
2
  declare module '@modern-js/runtime' {
3
3
  interface RuntimeConfig {
4
4
  i18n?: {
@@ -1,4 +1,4 @@
1
- import type { LanguageDetectorOptions } from '../runtime/i18n/instance';
1
+ import type { LanguageDetectorOptions } from '../runtime/i18n/instance.js';
2
2
  /**
3
3
  * Convert i18next detection options to hono languageDetector options
4
4
  */
@@ -1,5 +1,5 @@
1
1
  import type { ServerPlugin } from '@modern-js/server-runtime';
2
- import type { LocaleDetectionOptions } from '../shared/type';
2
+ import type { LocaleDetectionOptions } from '../shared/type.js';
3
3
  export { collectApiPrefixes, matchesApiPrefix } from './apiPrefix.js';
4
4
  export interface I18nPluginOptions {
5
5
  localeDetection: LocaleDetectionOptions;
@@ -1,4 +1,4 @@
1
- import type { LocaleDetectionOptions } from '../shared/type';
1
+ import type { LocaleDetectionOptions } from '../shared/type.js';
2
2
  interface LocaleRedirectRequest {
3
3
  url: string;
4
4
  header: () => {
@@ -1,5 +1,5 @@
1
1
  import type { LocalisedUrlsOption } from '@modern-js/i18n-runtime-extensions';
2
- import type { LanguageDetectorOptions, Resources } from '../runtime/i18n/instance';
2
+ import type { LanguageDetectorOptions, Resources } from '../runtime/i18n/instance.js';
3
3
  export interface BaseLocaleDetectionOptions {
4
4
  localePathRedirect?: boolean;
5
5
  i18nextDetector?: boolean;
@@ -1,3 +1,3 @@
1
- import type { BaseBackendOptions, BaseLocaleDetectionOptions } from './type';
1
+ import type { BaseBackendOptions, BaseLocaleDetectionOptions } from './type.js';
2
2
  export declare function getLocaleDetectionOptions(entryName: string, localeDetection: BaseLocaleDetectionOptions): BaseLocaleDetectionOptions;
3
3
  export declare function getBackendOptions(entryName: string, backend: BaseBackendOptions): BaseBackendOptions;
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "modern",
18
18
  "modern.js"
19
19
  ],
20
- "version": "3.8.3-ultramodern.6",
20
+ "version": "3.9.0-ultramodern.2",
21
21
  "engines": {
22
22
  "node": ">=20"
23
23
  },
@@ -111,22 +111,22 @@
111
111
  }
112
112
  },
113
113
  "dependencies": {
114
- "@modern-js/i18n-runtime-extensions": "npm:@bleedingdev/modern-js-i18n-runtime-extensions@3.8.3-ultramodern.6",
115
- "@modern-js/plugin": "npm:@bleedingdev/modern-js-plugin@3.8.3-ultramodern.6",
116
- "@modern-js/runtime-utils": "npm:@bleedingdev/modern-js-runtime-utils@3.8.3-ultramodern.6",
117
- "@modern-js/server-core": "npm:@bleedingdev/modern-js-server-core@3.8.3-ultramodern.6",
118
- "@modern-js/server-runtime": "npm:@bleedingdev/modern-js-server-runtime@3.8.3-ultramodern.6",
119
- "@modern-js/types": "npm:@bleedingdev/modern-js-types@3.8.3-ultramodern.6",
120
- "@modern-js/utils": "npm:@bleedingdev/modern-js-utils@3.8.3-ultramodern.6",
114
+ "@modern-js/i18n-runtime-extensions": "npm:@bleedingdev/modern-js-i18n-runtime-extensions@3.9.0-ultramodern.2",
115
+ "@modern-js/plugin": "npm:@bleedingdev/modern-js-plugin@3.9.0-ultramodern.2",
116
+ "@modern-js/runtime-utils": "npm:@bleedingdev/modern-js-runtime-utils@3.9.0-ultramodern.2",
117
+ "@modern-js/server-core": "npm:@bleedingdev/modern-js-server-core@3.9.0-ultramodern.2",
118
+ "@modern-js/server-runtime": "npm:@bleedingdev/modern-js-server-runtime@3.9.0-ultramodern.2",
119
+ "@modern-js/types": "npm:@bleedingdev/modern-js-types@3.9.0-ultramodern.2",
120
+ "@modern-js/utils": "npm:@bleedingdev/modern-js-utils@3.9.0-ultramodern.2",
121
121
  "@swc/helpers": "^0.5.23",
122
122
  "i18next-browser-languagedetector": "^8.2.1",
123
- "i18next-chained-backend": "^5.0.5",
123
+ "i18next-chained-backend": "^5.0.6",
124
124
  "i18next-fs-backend": "^2.6.7",
125
- "i18next-http-backend": "^4.0.0",
125
+ "i18next-http-backend": "^4.0.2",
126
126
  "i18next-http-middleware": "^3.9.8"
127
127
  },
128
128
  "peerDependencies": {
129
- "@modern-js/runtime": "3.8.3-ultramodern.6",
129
+ "@modern-js/runtime": "3.9.0-ultramodern.2",
130
130
  "i18next": ">=25.7.4",
131
131
  "react": "^19.2.8",
132
132
  "react-dom": "^19.2.8",
@@ -141,16 +141,16 @@
141
141
  }
142
142
  },
143
143
  "devDependencies": {
144
- "@modern-js/app-tools": "npm:@bleedingdev/modern-js-app-tools@3.8.3-ultramodern.6",
145
- "@modern-js/runtime": "npm:@bleedingdev/modern-js-runtime@3.8.3-ultramodern.6",
146
- "@rslib/core": "0.23.2",
147
- "@types/node": "^26.2.0",
144
+ "@modern-js/app-tools": "npm:@bleedingdev/modern-js-app-tools@3.9.0-ultramodern.2",
145
+ "@modern-js/runtime": "npm:@bleedingdev/modern-js-runtime@3.9.0-ultramodern.2",
146
+ "@rslib/core": "1.0.0",
147
+ "@types/node": "^26.4.1",
148
148
  "@typescript/native-preview": "7.0.0-dev.20260707.2",
149
- "esbuild": "^0.28.1",
150
- "i18next": "26.3.6",
149
+ "esbuild": "^0.28.2",
150
+ "i18next": "26.4.2",
151
151
  "react": "^19.2.8",
152
152
  "react-dom": "^19.2.8",
153
- "react-i18next": "17.0.9",
153
+ "react-i18next": "17.0.13",
154
154
  "ts-node": "^10.9.2",
155
155
  "typescript": "^7.0.2"
156
156
  },