@akanjs/cli 0.0.93 → 0.0.94

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/index.js CHANGED
@@ -493,20 +493,20 @@ var composePlugins = (...plugins) => {
493
493
  };
494
494
  };
495
495
  };
496
- var commandType = process.env.AKAN_COMMAND_TYPE?.includes("serve") ? "serve" : process.env.AKAN_COMMAND_TYPE?.includes("build") ? "build" : "deploy";
496
+ var commandType = process.env.AKAN_COMMAND_TYPE?.includes("start") ? "start" : process.env.AKAN_COMMAND_TYPE?.includes("build") ? "build" : "deploy";
497
497
  var withPWA = (0, import_next_pwa.default)({
498
498
  dest: "public",
499
499
  register: true,
500
500
  skipWaiting: true,
501
501
  // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
502
502
  runtimeCaching: import_cache.default,
503
- disable: commandType === "serve"
503
+ disable: commandType === "start"
504
504
  });
505
505
  var devDomain = process.env.NEXT_PUBLIC_SERVE_DOMAIN ?? "akanjs.com";
506
506
  var withBase = (appName, config, libs, routes = []) => {
507
507
  return composePlugins(
508
508
  (0, import_bundle_analyzer.default)({ enabled: process.env.ANALYZE === "true" }),
509
- ...commandType !== "serve" || process.env.USE_PWA === "true" ? [withPWA] : []
509
+ ...commandType !== "start" || process.env.USE_PWA === "true" ? [withPWA] : []
510
510
  )({
511
511
  ...config,
512
512
  eslint: { ...config.eslint, ignoreDuringBuilds: true },
@@ -515,7 +515,7 @@ var withBase = (appName, config, libs, routes = []) => {
515
515
  basePaths: routes.map(({ basePath: basePath2 }) => basePath2).join(",")
516
516
  },
517
517
  transpilePackages: ["swiper", "ssr-window", "dom7"],
518
- reactStrictMode: commandType === "serve" ? false : true,
518
+ reactStrictMode: commandType === "start" ? false : true,
519
519
  experimental: {
520
520
  ...config.experimental ?? {},
521
521
  optimizePackageImports: [
@@ -932,8 +932,11 @@ var Executor = class {
932
932
  }
933
933
  spawn(command, args = [], options = {}) {
934
934
  const proc = (0, import_child_process.spawn)(command, args, { cwd: this.cwdPath, stdio: "inherit", ...options });
935
+ proc.stdout?.on("data", (data) => {
936
+ Logger.raw(import_chalk.default.dim(data.toString()));
937
+ });
935
938
  proc.stderr?.on("data", (data) => {
936
- Logger.raw(import_chalk.default.red(data.toString()));
939
+ Logger.raw(import_chalk.default.dim(data.toString()));
937
940
  });
938
941
  return new Promise((resolve, reject) => {
939
942
  proc.on("exit", (code, signal) => {
@@ -3949,6 +3952,7 @@ var ApplicationRunner = class {
3949
3952
  ...rootEnv,
3950
3953
  NEXT_PUBLIC_APP_NAME: app.name,
3951
3954
  AKAN_WORKSPACE_ROOT: app.workspace.workspaceRoot,
3955
+ NODE_NO_WARNINGS: "1",
3952
3956
  ...env
3953
3957
  };
3954
3958
  }
@@ -4047,7 +4051,7 @@ var ApplicationRunner = class {
4047
4051
  async #getViteConfig(app) {
4048
4052
  const { env } = await this.#prepareCommand(app, "build", "csr");
4049
4053
  const processEnv = env;
4050
- const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? "../../../../pkgs/" : "";
4054
+ const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? `${app.workspace.workspaceRoot}/pkgs/` : "";
4051
4055
  const config = vite.defineConfig({
4052
4056
  root: `${app.cwdPath}/app`,
4053
4057
  base: "/",
@@ -4089,10 +4093,10 @@ var ApplicationRunner = class {
4089
4093
  },
4090
4094
  define: {
4091
4095
  "process.env": {
4092
- // ...env,
4096
+ ...env,
4093
4097
  AKAN_COMMAND_TYPE: "start",
4094
4098
  NEXT_PUBLIC_REPO_NAME: app.workspace.repoName,
4095
- NEXT_PUBLIC_START_DOMAIN: processEnv.NEXT_PUBLIC_START_DOMAIN ?? "localhost",
4099
+ NEXT_PUBLIC_SERVE_DOMAIN: processEnv.NEXT_PUBLIC_SERVE_DOMAIN ?? "localhost",
4096
4100
  NEXT_PUBLIC_ENV: processEnv.NEXT_PUBLIC_ENV ?? "debug",
4097
4101
  NEXT_PUBLIC_OPERATION_MODE: processEnv.NEXT_PUBLIC_OPERATION_MODE ?? "local",
4098
4102
  NEXT_PUBLIC_LOG_LEVEL: processEnv.NEXT_PUBLIC_LOG_LEVEL ?? "log",
@@ -4804,136 +4808,14 @@ var PackageRunner = class {
4804
4808
  const rootPackageJson = pkg.workspace.readJson("package.json");
4805
4809
  const pkgJson = pkg.readJson("package.json");
4806
4810
  const builder = new Builder({ executor: pkg, distExecutor: pkg.dist, pkgJson, rootPackageJson });
4807
- if (pkg.name === "@akanjs/cli") {
4811
+ if (pkg.name === "@akanjs/cli")
4808
4812
  await builder.build({
4809
4813
  bundle: true,
4810
4814
  additionalEntryPoints: [`${pkg.cwdPath}/src/templates/**/*.ts`, `${pkg.cwdPath}/src/templates/**/*.tsx`]
4811
4815
  });
4812
- } else {
4816
+ else
4813
4817
  await builder.build();
4814
- }
4815
4818
  }
4816
- // async buildPackage(pkg: Pkg) {
4817
- // const rootPackageJson = pkg.workspace.readJson("package.json") as PackageJson;
4818
- // const pkgJson = pkg.readJson("package.json") as PackageJson;
4819
- // // 1. remove dist directory
4820
- // if (fs.existsSync(pkg.dist.cwdPath)) await pkg.workspace.exec(`rm -rf ${pkg.dist.cwdPath}`);
4821
- // // 2. esbuild
4822
- // let buildResult: esbuild.BuildResult;
4823
- // if (pkg.name === "@akanjs/config") {
4824
- // buildResult = await esbuild.build({
4825
- // write: false,
4826
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`],
4827
- // bundle: false,
4828
- // packages: "external",
4829
- // format: "cjs",
4830
- // outdir: pkg.dist.cwdPath,
4831
- // logLevel: "error",
4832
- // outExtension: { ".js": pkgJson.type === "module" ? ".cjs" : ".js" },
4833
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
4834
- // });
4835
- // await esbuild.build({
4836
- // write: true,
4837
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.css`, `${pkg.cwdPath}/**/*.js`],
4838
- // bundle: false,
4839
- // packages: "external",
4840
- // format: "esm",
4841
- // outdir: pkg.dist.cwdPath,
4842
- // logLevel: "error",
4843
- // outExtension: { ".js": pkgJson.type === "module" ? ".js" : ".mjs" },
4844
- // loader: { ".css": "copy", ".js": "copy" },
4845
- // });
4846
- // } else if (pkg.name === "@akanjs/cli") {
4847
- // buildResult = await esbuild.build({
4848
- // write: false,
4849
- // entryPoints: [`${pkg.cwdPath}/index.ts`, `${pkg.cwdPath}/README.md`],
4850
- // bundle: true,
4851
- // format: "cjs",
4852
- // packages: "external",
4853
- // outdir: pkg.dist.cwdPath,
4854
- // logLevel: "error",
4855
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
4856
- // loader: { ".md": "copy" },
4857
- // });
4858
- // await esbuild.build({
4859
- // write: true,
4860
- // entryPoints: [`${pkg.cwdPath}/src/templates/**/*.ts`, `${pkg.cwdPath}/src/templates/**/*.tsx`],
4861
- // packages: "external",
4862
- // outdir: `${pkg.dist.cwdPath}/src/templates`,
4863
- // outbase: `${pkg.cwdPath}/src/templates`,
4864
- // format: "cjs",
4865
- // platform: "node",
4866
- // footer: { js: "module.exports = module.exports.default;" },
4867
- // });
4868
- // await pkg.workspace.exec(
4869
- // `rsync -aq --exclude="*.ts" --exclude="*.tsx" ${pkg.cwdPath}/src/templates/ ${pkg.dist.cwdPath}/src/templates/`
4870
- // );
4871
- // } else {
4872
- // const platform: "node" | "browser" | "neutral" = [
4873
- // "@akanjs/devkit",
4874
- // "@akanjs/document",
4875
- // "@akanjs/lint",
4876
- // "@akanjs/nest",
4877
- // "@akanjs/server",
4878
- // "@akanjs/service",
4879
- // ].includes(pkg.name)
4880
- // ? "node"
4881
- // : ["@akanjs/client", "@akanjs/next", "@akanjs/store", "@akanjs/ui"].includes(pkg.name)
4882
- // ? "browser"
4883
- // : "neutral";
4884
- // buildResult = await esbuild.build({
4885
- // write: false,
4886
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.tsx`],
4887
- // bundle: false,
4888
- // packages: "external",
4889
- // splitting: false,
4890
- // platform,
4891
- // format: "cjs",
4892
- // outdir: pkg.dist.cwdPath,
4893
- // outExtension: { ".js": pkgJson.type === "module" ? ".cjs" : ".js" },
4894
- // logLevel: "error",
4895
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
4896
- // });
4897
- // await esbuild.build({
4898
- // write: true,
4899
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.tsx`],
4900
- // bundle: false,
4901
- // packages: "external",
4902
- // splitting: false,
4903
- // platform,
4904
- // format: "esm",
4905
- // outdir: pkg.dist.cwdPath,
4906
- // outExtension: { ".js": pkgJson.type === "module" ? ".js" : ".mjs" },
4907
- // logLevel: "error",
4908
- // plugins: [],
4909
- // });
4910
- // }
4911
- // // 3. generate package.json
4912
- // const dependencies = buildResult.outputFiles
4913
- // ? extractDependencies(buildResult.outputFiles, rootPackageJson, Object.keys(pkgJson.dependencies ?? {}))
4914
- // : {};
4915
- // const pkgPackageJson: PackageJson = {
4916
- // ...pkgJson,
4917
- // main: "./index.js",
4918
- // engines: { node: ">=22" },
4919
- // dependencies,
4920
- // ...(["@akanjs/cli"].includes(pkg.name)
4921
- // ? {}
4922
- // : {
4923
- // exports: {
4924
- // ".": {
4925
- // require: pkgJson.type === "module" ? "./index.cjs" : "./index.js",
4926
- // import: pkgJson.type === "module" ? "./index.js" : "./index.mjs",
4927
- // },
4928
- // ...(pkgJson.exports ?? {}),
4929
- // },
4930
- // }),
4931
- // };
4932
- // //! Temporary fix for barrel library
4933
- // if (buildResult.outputFiles) buildResult.outputFiles.map((file) => pkg.dist.writeFile(file.path, file.text));
4934
- // pkg.dist.writeJson("package.json", pkgPackageJson);
4935
- // pkg.writeJson("package.json", pkgPackageJson);
4936
- // }
4937
4819
  };
4938
4820
 
4939
4821
  // pkgs/@akanjs/cli/src/package/package.script.ts
package/index.mjs CHANGED
@@ -636,20 +636,20 @@ var init_nextConfig = __esm({
636
636
  };
637
637
  };
638
638
  };
639
- commandType = process.env.AKAN_COMMAND_TYPE?.includes("serve") ? "serve" : process.env.AKAN_COMMAND_TYPE?.includes("build") ? "build" : "deploy";
639
+ commandType = process.env.AKAN_COMMAND_TYPE?.includes("start") ? "start" : process.env.AKAN_COMMAND_TYPE?.includes("build") ? "build" : "deploy";
640
640
  withPWA = pwa({
641
641
  dest: "public",
642
642
  register: true,
643
643
  skipWaiting: true,
644
644
  // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
645
645
  runtimeCaching,
646
- disable: commandType === "serve"
646
+ disable: commandType === "start"
647
647
  });
648
648
  devDomain = process.env.NEXT_PUBLIC_SERVE_DOMAIN ?? "akanjs.com";
649
649
  withBase = (appName, config, libs, routes = []) => {
650
650
  return composePlugins(
651
651
  withAnalyze({ enabled: process.env.ANALYZE === "true" }),
652
- ...commandType !== "serve" || process.env.USE_PWA === "true" ? [withPWA] : []
652
+ ...commandType !== "start" || process.env.USE_PWA === "true" ? [withPWA] : []
653
653
  )({
654
654
  ...config,
655
655
  eslint: { ...config.eslint, ignoreDuringBuilds: true },
@@ -658,7 +658,7 @@ var init_nextConfig = __esm({
658
658
  basePaths: routes.map(({ basePath: basePath2 }) => basePath2).join(",")
659
659
  },
660
660
  transpilePackages: ["swiper", "ssr-window", "dom7"],
661
- reactStrictMode: commandType === "serve" ? false : true,
661
+ reactStrictMode: commandType === "start" ? false : true,
662
662
  experimental: {
663
663
  ...config.experimental ?? {},
664
664
  optimizePackageImports: [
@@ -1108,8 +1108,11 @@ var init_executors = __esm({
1108
1108
  }
1109
1109
  spawn(command, args = [], options = {}) {
1110
1110
  const proc = spawn(command, args, { cwd: this.cwdPath, stdio: "inherit", ...options });
1111
+ proc.stdout?.on("data", (data) => {
1112
+ Logger.raw(chalk.dim(data.toString()));
1113
+ });
1111
1114
  proc.stderr?.on("data", (data) => {
1112
- Logger.raw(chalk.red(data.toString()));
1115
+ Logger.raw(chalk.dim(data.toString()));
1113
1116
  });
1114
1117
  return new Promise((resolve, reject) => {
1115
1118
  proc.on("exit", (code, signal) => {
@@ -4268,6 +4271,7 @@ var init_application_runner = __esm({
4268
4271
  ...rootEnv,
4269
4272
  NEXT_PUBLIC_APP_NAME: app.name,
4270
4273
  AKAN_WORKSPACE_ROOT: app.workspace.workspaceRoot,
4274
+ NODE_NO_WARNINGS: "1",
4271
4275
  ...env
4272
4276
  };
4273
4277
  }
@@ -4366,7 +4370,7 @@ var init_application_runner = __esm({
4366
4370
  async #getViteConfig(app) {
4367
4371
  const { env } = await this.#prepareCommand(app, "build", "csr");
4368
4372
  const processEnv = env;
4369
- const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? "../../../../pkgs/" : "";
4373
+ const akanjsPrefix = process.env.USE_AKANJS_PKGS === "true" ? `${app.workspace.workspaceRoot}/pkgs/` : "";
4370
4374
  const config = vite.defineConfig({
4371
4375
  root: `${app.cwdPath}/app`,
4372
4376
  base: "/",
@@ -4408,10 +4412,10 @@ var init_application_runner = __esm({
4408
4412
  },
4409
4413
  define: {
4410
4414
  "process.env": {
4411
- // ...env,
4415
+ ...env,
4412
4416
  AKAN_COMMAND_TYPE: "start",
4413
4417
  NEXT_PUBLIC_REPO_NAME: app.workspace.repoName,
4414
- NEXT_PUBLIC_START_DOMAIN: processEnv.NEXT_PUBLIC_START_DOMAIN ?? "localhost",
4418
+ NEXT_PUBLIC_SERVE_DOMAIN: processEnv.NEXT_PUBLIC_SERVE_DOMAIN ?? "localhost",
4415
4419
  NEXT_PUBLIC_ENV: processEnv.NEXT_PUBLIC_ENV ?? "debug",
4416
4420
  NEXT_PUBLIC_OPERATION_MODE: processEnv.NEXT_PUBLIC_OPERATION_MODE ?? "local",
4417
4421
  NEXT_PUBLIC_LOG_LEVEL: processEnv.NEXT_PUBLIC_LOG_LEVEL ?? "log",
@@ -5145,136 +5149,14 @@ var init_package_runner = __esm({
5145
5149
  const rootPackageJson = pkg.workspace.readJson("package.json");
5146
5150
  const pkgJson = pkg.readJson("package.json");
5147
5151
  const builder = new Builder({ executor: pkg, distExecutor: pkg.dist, pkgJson, rootPackageJson });
5148
- if (pkg.name === "@akanjs/cli") {
5152
+ if (pkg.name === "@akanjs/cli")
5149
5153
  await builder.build({
5150
5154
  bundle: true,
5151
5155
  additionalEntryPoints: [`${pkg.cwdPath}/src/templates/**/*.ts`, `${pkg.cwdPath}/src/templates/**/*.tsx`]
5152
5156
  });
5153
- } else {
5157
+ else
5154
5158
  await builder.build();
5155
- }
5156
5159
  }
5157
- // async buildPackage(pkg: Pkg) {
5158
- // const rootPackageJson = pkg.workspace.readJson("package.json") as PackageJson;
5159
- // const pkgJson = pkg.readJson("package.json") as PackageJson;
5160
- // // 1. remove dist directory
5161
- // if (fs.existsSync(pkg.dist.cwdPath)) await pkg.workspace.exec(`rm -rf ${pkg.dist.cwdPath}`);
5162
- // // 2. esbuild
5163
- // let buildResult: esbuild.BuildResult;
5164
- // if (pkg.name === "@akanjs/config") {
5165
- // buildResult = await esbuild.build({
5166
- // write: false,
5167
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`],
5168
- // bundle: false,
5169
- // packages: "external",
5170
- // format: "cjs",
5171
- // outdir: pkg.dist.cwdPath,
5172
- // logLevel: "error",
5173
- // outExtension: { ".js": pkgJson.type === "module" ? ".cjs" : ".js" },
5174
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
5175
- // });
5176
- // await esbuild.build({
5177
- // write: true,
5178
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.css`, `${pkg.cwdPath}/**/*.js`],
5179
- // bundle: false,
5180
- // packages: "external",
5181
- // format: "esm",
5182
- // outdir: pkg.dist.cwdPath,
5183
- // logLevel: "error",
5184
- // outExtension: { ".js": pkgJson.type === "module" ? ".js" : ".mjs" },
5185
- // loader: { ".css": "copy", ".js": "copy" },
5186
- // });
5187
- // } else if (pkg.name === "@akanjs/cli") {
5188
- // buildResult = await esbuild.build({
5189
- // write: false,
5190
- // entryPoints: [`${pkg.cwdPath}/index.ts`, `${pkg.cwdPath}/README.md`],
5191
- // bundle: true,
5192
- // format: "cjs",
5193
- // packages: "external",
5194
- // outdir: pkg.dist.cwdPath,
5195
- // logLevel: "error",
5196
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
5197
- // loader: { ".md": "copy" },
5198
- // });
5199
- // await esbuild.build({
5200
- // write: true,
5201
- // entryPoints: [`${pkg.cwdPath}/src/templates/**/*.ts`, `${pkg.cwdPath}/src/templates/**/*.tsx`],
5202
- // packages: "external",
5203
- // outdir: `${pkg.dist.cwdPath}/src/templates`,
5204
- // outbase: `${pkg.cwdPath}/src/templates`,
5205
- // format: "cjs",
5206
- // platform: "node",
5207
- // footer: { js: "module.exports = module.exports.default;" },
5208
- // });
5209
- // await pkg.workspace.exec(
5210
- // `rsync -aq --exclude="*.ts" --exclude="*.tsx" ${pkg.cwdPath}/src/templates/ ${pkg.dist.cwdPath}/src/templates/`
5211
- // );
5212
- // } else {
5213
- // const platform: "node" | "browser" | "neutral" = [
5214
- // "@akanjs/devkit",
5215
- // "@akanjs/document",
5216
- // "@akanjs/lint",
5217
- // "@akanjs/nest",
5218
- // "@akanjs/server",
5219
- // "@akanjs/service",
5220
- // ].includes(pkg.name)
5221
- // ? "node"
5222
- // : ["@akanjs/client", "@akanjs/next", "@akanjs/store", "@akanjs/ui"].includes(pkg.name)
5223
- // ? "browser"
5224
- // : "neutral";
5225
- // buildResult = await esbuild.build({
5226
- // write: false,
5227
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.tsx`],
5228
- // bundle: false,
5229
- // packages: "external",
5230
- // splitting: false,
5231
- // platform,
5232
- // format: "cjs",
5233
- // outdir: pkg.dist.cwdPath,
5234
- // outExtension: { ".js": pkgJson.type === "module" ? ".cjs" : ".js" },
5235
- // logLevel: "error",
5236
- // plugins: [dtsPlugin({ tsconfig: `${pkg.cwdPath}/tsconfig.json` })],
5237
- // });
5238
- // await esbuild.build({
5239
- // write: true,
5240
- // entryPoints: [`${pkg.cwdPath}/**/*.ts`, `${pkg.cwdPath}/**/*.tsx`],
5241
- // bundle: false,
5242
- // packages: "external",
5243
- // splitting: false,
5244
- // platform,
5245
- // format: "esm",
5246
- // outdir: pkg.dist.cwdPath,
5247
- // outExtension: { ".js": pkgJson.type === "module" ? ".js" : ".mjs" },
5248
- // logLevel: "error",
5249
- // plugins: [],
5250
- // });
5251
- // }
5252
- // // 3. generate package.json
5253
- // const dependencies = buildResult.outputFiles
5254
- // ? extractDependencies(buildResult.outputFiles, rootPackageJson, Object.keys(pkgJson.dependencies ?? {}))
5255
- // : {};
5256
- // const pkgPackageJson: PackageJson = {
5257
- // ...pkgJson,
5258
- // main: "./index.js",
5259
- // engines: { node: ">=22" },
5260
- // dependencies,
5261
- // ...(["@akanjs/cli"].includes(pkg.name)
5262
- // ? {}
5263
- // : {
5264
- // exports: {
5265
- // ".": {
5266
- // require: pkgJson.type === "module" ? "./index.cjs" : "./index.js",
5267
- // import: pkgJson.type === "module" ? "./index.js" : "./index.mjs",
5268
- // },
5269
- // ...(pkgJson.exports ?? {}),
5270
- // },
5271
- // }),
5272
- // };
5273
- // //! Temporary fix for barrel library
5274
- // if (buildResult.outputFiles) buildResult.outputFiles.map((file) => pkg.dist.writeFile(file.path, file.text));
5275
- // pkg.dist.writeJson("package.json", pkgPackageJson);
5276
- // pkg.writeJson("package.json", pkgPackageJson);
5277
- // }
5278
5160
  };
5279
5161
  }
5280
5162
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.93",
4
+ "version": "0.0.94",
5
5
  "bin": {
6
6
  "akan": "index.js"
7
7
  },
@@ -16,7 +16,10 @@
16
16
  "jest": "^29.7.0",
17
17
  "jiti": "^2.4.2",
18
18
  "prettier": "^3.5.3",
19
- "ts-jest": "^29.3.4"
19
+ "ts-jest": "^29.3.4",
20
+ "vite": "^6.3.5",
21
+ "vite-plugin-node-polyfills": "^0.23.0",
22
+ "vite-tsconfig-paths": "^5.1.4",
20
23
  },
21
24
  "packageManager": "pnpm@10.11.0",
22
25
  "engines": {