@better-t-stack/template-generator 3.37.0 → 3.38.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/core/template-reader.d.mts.map +1 -1
- package/dist/core/template-reader.mjs +2 -2
- package/dist/fs-writer.d.mts +2 -4
- package/dist/fs-writer.d.mts.map +1 -1
- package/dist/fs-writer.mjs +1 -1
- package/dist/fs-writer.mjs.map +1 -1
- package/dist/index.d.mts +81 -83
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +219 -215
- package/dist/index.mjs.map +1 -1
- package/dist/{is-binary-path-maAgJE_Q.mjs → is-binary-path-C-QlvTjz.mjs} +2 -2
- package/dist/{is-binary-path-maAgJE_Q.mjs.map → is-binary-path-C-QlvTjz.mjs.map} +1 -1
- package/dist/{template-reader-DVuwwW6S.mjs → template-reader-Apnxs6ej.mjs} +60 -28
- package/dist/template-reader-Apnxs6ej.mjs.map +1 -0
- package/dist/{types-CzW_c7t0.d.mts → types-u2lb8od9.d.mts} +2 -4
- package/dist/types-u2lb8od9.d.mts.map +1 -0
- package/package.json +8 -8
- package/dist/template-reader-DVuwwW6S.mjs.map +0 -1
- package/dist/types-CzW_c7t0.d.mts.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as isBinaryPath } from "./is-binary-path-
|
|
1
|
+
import { t as isBinaryPath } from "./is-binary-path-C-QlvTjz.mjs";
|
|
2
2
|
import { Result, TaggedError } from "better-result";
|
|
3
3
|
import { memfs } from "memfs";
|
|
4
4
|
import { dirname, extname, join, normalize } from "pathe";
|
|
@@ -339,7 +339,7 @@ function findDuplicateDependencies(packagesInfo, projectName) {
|
|
|
339
339
|
existing.versions.add(version);
|
|
340
340
|
existing.packages.push(pkg.path);
|
|
341
341
|
} else depCount.set(depName, {
|
|
342
|
-
versions: new Set([version]),
|
|
342
|
+
versions: /* @__PURE__ */ new Set([version]),
|
|
343
343
|
packages: [pkg.path]
|
|
344
344
|
});
|
|
345
345
|
}
|
|
@@ -409,17 +409,17 @@ function updatePackageJsonsWithCatalogs(vfs, packagesInfo, catalog) {
|
|
|
409
409
|
//#endregion
|
|
410
410
|
//#region src/utils/add-deps.ts
|
|
411
411
|
const dependencyVersionMap = {
|
|
412
|
-
typescript: "^6",
|
|
413
|
-
"better-auth": "1.6.
|
|
414
|
-
"@better-auth/expo": "1.6.
|
|
415
|
-
"@clerk/backend": "^3.
|
|
416
|
-
"@clerk/express": "^2.1.
|
|
417
|
-
"@clerk/fastify": "^3.1.
|
|
418
|
-
"@clerk/nextjs": "^7.
|
|
419
|
-
"@clerk/react": "^6.
|
|
420
|
-
"@clerk/react-router": "^3.
|
|
421
|
-
"@clerk/tanstack-react-start": "^1.4.
|
|
422
|
-
"@clerk/expo": "^
|
|
412
|
+
typescript: "^6.0.3",
|
|
413
|
+
"better-auth": "1.6.25",
|
|
414
|
+
"@better-auth/expo": "1.6.25",
|
|
415
|
+
"@clerk/backend": "^3.13.2",
|
|
416
|
+
"@clerk/express": "^2.1.47",
|
|
417
|
+
"@clerk/fastify": "^3.1.57",
|
|
418
|
+
"@clerk/nextjs": "^7.6.2",
|
|
419
|
+
"@clerk/react": "^6.12.8",
|
|
420
|
+
"@clerk/react-router": "^3.6.1",
|
|
421
|
+
"@clerk/tanstack-react-start": "^1.4.24",
|
|
422
|
+
"@clerk/expo": "^4.1.0",
|
|
423
423
|
"drizzle-orm": "^0.45.2",
|
|
424
424
|
"drizzle-kit": "^0.31.10",
|
|
425
425
|
"@planetscale/database": "^1.20.1",
|
|
@@ -429,68 +429,68 @@ const dependencyVersionMap = {
|
|
|
429
429
|
pg: "^8.22.0",
|
|
430
430
|
"@types/pg": "^8.20.0",
|
|
431
431
|
"@types/ws": "^8.18.1",
|
|
432
|
-
ws: "^8.21.
|
|
433
|
-
mysql2: "^3.
|
|
434
|
-
"@prisma/client": "^7.
|
|
435
|
-
prisma: "^7.
|
|
436
|
-
"@prisma/adapter-d1": "^7.
|
|
437
|
-
"@prisma/adapter-neon": "^7.
|
|
438
|
-
"@prisma/adapter-mariadb": "^7.
|
|
439
|
-
"@prisma/adapter-libsql": "^7.
|
|
440
|
-
"@prisma/adapter-better-sqlite3": "^7.
|
|
441
|
-
"@prisma/adapter-pg": "^7.
|
|
442
|
-
"@prisma/adapter-planetscale": "^7.
|
|
443
|
-
mongoose: "^9.
|
|
444
|
-
mongodb: "^7.
|
|
432
|
+
ws: "^8.21.1",
|
|
433
|
+
mysql2: "^3.23.2",
|
|
434
|
+
"@prisma/client": "^7.9.1",
|
|
435
|
+
prisma: "^7.9.1",
|
|
436
|
+
"@prisma/adapter-d1": "^7.9.1",
|
|
437
|
+
"@prisma/adapter-neon": "^7.9.1",
|
|
438
|
+
"@prisma/adapter-mariadb": "^7.9.1",
|
|
439
|
+
"@prisma/adapter-libsql": "^7.9.1",
|
|
440
|
+
"@prisma/adapter-better-sqlite3": "^7.9.1",
|
|
441
|
+
"@prisma/adapter-pg": "^7.9.1",
|
|
442
|
+
"@prisma/adapter-planetscale": "^7.9.1",
|
|
443
|
+
mongoose: "^9.8.1",
|
|
444
|
+
mongodb: "^7.5.0",
|
|
445
445
|
"vite-plugin-pwa": "^1.3.0",
|
|
446
446
|
"@vite-pwa/assets-generator": "^1.0.2",
|
|
447
447
|
"@tauri-apps/cli": "^2.11.4",
|
|
448
|
-
"@biomejs/biome": "^2.5.
|
|
449
|
-
oxlint: "^1.
|
|
450
|
-
oxfmt: "^0.
|
|
448
|
+
"@biomejs/biome": "^2.5.6",
|
|
449
|
+
oxlint: "^1.76.0",
|
|
450
|
+
oxfmt: "^0.61.0",
|
|
451
451
|
husky: "^9.1.7",
|
|
452
|
-
lefthook: "^2.1.
|
|
453
|
-
"lint-staged": "^17.0
|
|
454
|
-
tsx: "^4.
|
|
455
|
-
"@types/node": "^22.
|
|
452
|
+
lefthook: "^2.1.10",
|
|
453
|
+
"lint-staged": "^17.2.0",
|
|
454
|
+
tsx: "^4.23.1",
|
|
455
|
+
"@types/node": "^22.20.1",
|
|
456
456
|
"@types/bun": "^1.3.14",
|
|
457
457
|
"@elysiajs/node": "^1.4.5",
|
|
458
458
|
"@elysiajs/cors": "^1.4.2",
|
|
459
459
|
"@elysiajs/trpc": "^1.1.0",
|
|
460
460
|
elysia: "^1.4.29",
|
|
461
|
-
"@sinclair/typebox": "^0.34.
|
|
462
|
-
"@hono/node-server": "^2.0.
|
|
461
|
+
"@sinclair/typebox": "^0.34.52",
|
|
462
|
+
"@hono/node-server": "^2.0.12",
|
|
463
463
|
"@hono/trpc-server": "^0.4.2",
|
|
464
|
-
hono: "^4.12.
|
|
464
|
+
hono: "^4.12.32",
|
|
465
465
|
cors: "^2.8.6",
|
|
466
466
|
express: "^5.2.1",
|
|
467
467
|
"@types/express": "^5.0.6",
|
|
468
468
|
"@types/cors": "^2.8.19",
|
|
469
|
-
fastify: "^5.
|
|
470
|
-
"@fastify/cors": "^11.
|
|
471
|
-
turbo: "^2.10.
|
|
472
|
-
nx: "^23.0
|
|
473
|
-
"vite-plus": "0.2.
|
|
474
|
-
rolldown: "1.
|
|
475
|
-
ai: "^7.0.
|
|
476
|
-
"@ai-sdk/google": "^4.0.
|
|
477
|
-
"@ai-sdk/vue": "^4.0.
|
|
478
|
-
"@ai-sdk/svelte": "^5.0.
|
|
479
|
-
"@ai-sdk/react": "^4.0.
|
|
480
|
-
"@ai-sdk/devtools": "^1.0.
|
|
469
|
+
fastify: "^5.10.0",
|
|
470
|
+
"@fastify/cors": "^11.3.0",
|
|
471
|
+
turbo: "^2.10.7",
|
|
472
|
+
nx: "^23.1.0",
|
|
473
|
+
"vite-plus": "0.2.6",
|
|
474
|
+
rolldown: "1.2.0",
|
|
475
|
+
ai: "^7.0.41",
|
|
476
|
+
"@ai-sdk/google": "^4.0.27",
|
|
477
|
+
"@ai-sdk/vue": "^4.0.41",
|
|
478
|
+
"@ai-sdk/svelte": "^5.0.41",
|
|
479
|
+
"@ai-sdk/react": "^4.0.44",
|
|
480
|
+
"@ai-sdk/devtools": "^1.0.8",
|
|
481
481
|
streamdown: "^2.5.0",
|
|
482
|
-
shiki: "^4.3.
|
|
483
|
-
"@orpc/server": "^1.14.
|
|
484
|
-
"@orpc/client": "^1.14.
|
|
485
|
-
"@orpc/openapi": "^1.14.
|
|
486
|
-
"@orpc/zod": "^1.14.
|
|
487
|
-
"@orpc/tanstack-query": "^1.14.
|
|
482
|
+
shiki: "^4.3.1",
|
|
483
|
+
"@orpc/server": "^1.14.12",
|
|
484
|
+
"@orpc/client": "^1.14.12",
|
|
485
|
+
"@orpc/openapi": "^1.14.12",
|
|
486
|
+
"@orpc/zod": "^1.14.12",
|
|
487
|
+
"@orpc/tanstack-query": "^1.14.12",
|
|
488
488
|
"@trpc/tanstack-react-query": "^11.18.0",
|
|
489
489
|
"@trpc/server": "^11.18.0",
|
|
490
490
|
"@trpc/client": "^11.18.0",
|
|
491
|
-
next: "^16.2.
|
|
491
|
+
next: "^16.2.12",
|
|
492
492
|
nitro: "^3.0.260610-beta",
|
|
493
|
-
convex: "^1.42.
|
|
493
|
+
convex: "^1.42.3",
|
|
494
494
|
"@convex-dev/react-query": "^0.1.0",
|
|
495
495
|
"@convex-dev/agent": "^0.6.4",
|
|
496
496
|
"@convex-dev/polar": "^0.9.2",
|
|
@@ -498,44 +498,44 @@ const dependencyVersionMap = {
|
|
|
498
498
|
"convex-nuxt": "0.1.5",
|
|
499
499
|
"convex-vue": "^0.1.5",
|
|
500
500
|
"@convex-dev/better-auth": "^0.12.5",
|
|
501
|
-
"@tanstack/svelte-query": "^6.1.
|
|
502
|
-
"@tanstack/svelte-query-devtools": "^6.1.
|
|
503
|
-
"@tanstack/vue-query-devtools": "^6.1.
|
|
504
|
-
"@tanstack/vue-query": "^5.101.
|
|
505
|
-
"@tanstack/react-query-devtools": "^5.101.
|
|
506
|
-
"@tanstack/react-query": "^5.101.
|
|
507
|
-
"@tanstack/react-form": "^1.33.
|
|
501
|
+
"@tanstack/svelte-query": "^6.1.38",
|
|
502
|
+
"@tanstack/svelte-query-devtools": "^6.1.38",
|
|
503
|
+
"@tanstack/vue-query-devtools": "^6.1.38",
|
|
504
|
+
"@tanstack/vue-query": "^5.101.4",
|
|
505
|
+
"@tanstack/react-query-devtools": "^5.101.4",
|
|
506
|
+
"@tanstack/react-query": "^5.101.4",
|
|
507
|
+
"@tanstack/react-form": "^1.33.2",
|
|
508
508
|
"@tanstack/react-router-ssr-query": "^1.167.1",
|
|
509
|
-
"@tanstack/solid-form": "^1.33.
|
|
510
|
-
"@tanstack/svelte-form": "^1.33.
|
|
511
|
-
"@tanstack/solid-query": "^5.101.
|
|
512
|
-
"@tanstack/solid-query-devtools": "^5.101.
|
|
509
|
+
"@tanstack/solid-form": "^1.33.2",
|
|
510
|
+
"@tanstack/svelte-form": "^1.33.2",
|
|
511
|
+
"@tanstack/solid-query": "^5.101.4",
|
|
512
|
+
"@tanstack/solid-query-devtools": "^5.101.4",
|
|
513
513
|
"@tanstack/solid-router-devtools": "^1.167.0",
|
|
514
|
-
wrangler: "^4.
|
|
515
|
-
"@cloudflare/vite-plugin": "1.
|
|
516
|
-
"@opennextjs/cloudflare": "^1.20.
|
|
514
|
+
wrangler: "^4.115.0",
|
|
515
|
+
"@cloudflare/vite-plugin": "1.48.0",
|
|
516
|
+
"@opennextjs/cloudflare": "^1.20.2",
|
|
517
517
|
"nitro-cloudflare-dev": "^0.2.2",
|
|
518
518
|
"@sveltejs/adapter-cloudflare": "^7.2.9",
|
|
519
519
|
"@sveltejs/adapter-node": "^5.5.7",
|
|
520
520
|
"@sveltejs/adapter-vercel": "^6.3.4",
|
|
521
|
-
"@cloudflare/workers-types": "^
|
|
522
|
-
"@astrojs/cloudflare": "^14.1.
|
|
523
|
-
"@astrojs/node": "^11.0.
|
|
524
|
-
"@astrojs/vercel": "^11.0.
|
|
521
|
+
"@cloudflare/workers-types": "^5.20260728.1",
|
|
522
|
+
"@astrojs/cloudflare": "^14.1.6",
|
|
523
|
+
"@astrojs/node": "^11.0.3",
|
|
524
|
+
"@astrojs/vercel": "^11.0.4",
|
|
525
525
|
alchemy: "^0.93.12",
|
|
526
|
-
vercel: "^
|
|
526
|
+
vercel: "^58.1.0",
|
|
527
527
|
dotenv: "^17.4.2",
|
|
528
|
-
tsdown: "^0.22.
|
|
528
|
+
tsdown: "^0.22.14",
|
|
529
529
|
zod: "^4.4.3",
|
|
530
530
|
"@t3-oss/env-core": "^0.13.11",
|
|
531
531
|
"@t3-oss/env-nextjs": "^0.13.11",
|
|
532
532
|
"@t3-oss/env-nuxt": "^0.13.11",
|
|
533
533
|
"@polar-sh/better-auth": "^1.8.4",
|
|
534
534
|
"@polar-sh/checkout": "^0.4.0",
|
|
535
|
-
"@polar-sh/sdk": "^0.
|
|
536
|
-
"@stripe/react-stripe-js": "^
|
|
537
|
-
"@stripe/stripe-js": "^
|
|
538
|
-
evlog: "^2.22.
|
|
535
|
+
"@polar-sh/sdk": "^0.49.0",
|
|
536
|
+
"@stripe/react-stripe-js": "^6.8.0",
|
|
537
|
+
"@stripe/stripe-js": "^9.12.1",
|
|
538
|
+
evlog: "^2.22.4"
|
|
539
539
|
};
|
|
540
540
|
/**
|
|
541
541
|
* Add dependencies to a package.json file in the VFS
|
|
@@ -716,7 +716,7 @@ function updateRootPackageJson(vfs, config) {
|
|
|
716
716
|
pkgJson.packageManager = `${packageManager}@latest`;
|
|
717
717
|
if (config.api === "orpc" && config.frontend.includes("nuxt")) pkgJson.overrides = {
|
|
718
718
|
...pkgJson.overrides,
|
|
719
|
-
"@vue/devtools-api": "^8.
|
|
719
|
+
"@vue/devtools-api": "^8.2.1"
|
|
720
720
|
};
|
|
721
721
|
if (hasVitePlus) pkgJson.overrides = {
|
|
722
722
|
...pkgJson.overrides,
|
|
@@ -1724,7 +1724,7 @@ function addConvexDeps(vfs, frontend, frontendType) {
|
|
|
1724
1724
|
}
|
|
1725
1725
|
//#endregion
|
|
1726
1726
|
//#region src/processors/auth-deps.ts
|
|
1727
|
-
const CONVEX_BETTER_AUTH_VERSION = "1.6.
|
|
1727
|
+
const CONVEX_BETTER_AUTH_VERSION = "1.6.25";
|
|
1728
1728
|
function processAuthDeps(vfs, config) {
|
|
1729
1729
|
const { auth, backend } = config;
|
|
1730
1730
|
if (!auth || auth === "none") return;
|
|
@@ -2792,8 +2792,8 @@ function setupAIDependencies(vfs, config) {
|
|
|
2792
2792
|
packagePath: convexBackendPkgPath,
|
|
2793
2793
|
dependencies: ["@convex-dev/agent"],
|
|
2794
2794
|
customDependencies: {
|
|
2795
|
-
ai: "^6.0.
|
|
2796
|
-
"@ai-sdk/google": "^3.0.
|
|
2795
|
+
ai: "^6.0.237",
|
|
2796
|
+
"@ai-sdk/google": "^3.0.102"
|
|
2797
2797
|
}
|
|
2798
2798
|
});
|
|
2799
2799
|
else if (backend === "self" && webExists) addPackageDependency({
|
|
@@ -3135,7 +3135,7 @@ function processPwaPlugins(vfs, config) {
|
|
|
3135
3135
|
//#endregion
|
|
3136
3136
|
//#region src/processors/readme-generator.ts
|
|
3137
3137
|
function getDesktopStaticBuildNote(frontend) {
|
|
3138
|
-
const staticBuildFrontends = new Map([
|
|
3138
|
+
const staticBuildFrontends = /* @__PURE__ */ new Map([
|
|
3139
3139
|
["tanstack-start", "TanStack Start"],
|
|
3140
3140
|
["next", "Next.js"],
|
|
3141
3141
|
["nuxt", "Nuxt"],
|
|
@@ -4559,7 +4559,7 @@ async function generate(options) {
|
|
|
4559
4559
|
}
|
|
4560
4560
|
//#endregion
|
|
4561
4561
|
//#region src/templates.generated.ts
|
|
4562
|
-
const EMBEDDED_TEMPLATES = new Map([
|
|
4562
|
+
const EMBEDDED_TEMPLATES = /* @__PURE__ */ new Map([
|
|
4563
4563
|
["addons/biome/biome.json.hbs", `{
|
|
4564
4564
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
4565
4565
|
"vcs": {
|
|
@@ -4707,9 +4707,9 @@ export default {
|
|
|
4707
4707
|
},
|
|
4708
4708
|
"devDependencies": {
|
|
4709
4709
|
"@types/bun": "^1.3.14",
|
|
4710
|
-
"@types/three": "^0.
|
|
4711
|
-
"concurrently": "^10.0.
|
|
4712
|
-
"typescript": "^6"
|
|
4710
|
+
"@types/three": "^0.185.1",
|
|
4711
|
+
"concurrently": "^10.0.4",
|
|
4712
|
+
"typescript": "^6.0.3"
|
|
4713
4713
|
}
|
|
4714
4714
|
}
|
|
4715
4715
|
`],
|
|
@@ -17550,6 +17550,7 @@ export const config = {
|
|
|
17550
17550
|
"/((?!_next|[^?]*\\\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)).*)",
|
|
17551
17551
|
// Always run for API routes
|
|
17552
17552
|
"/(api|trpc)(.*)",
|
|
17553
|
+
"/__clerk/(.*)",
|
|
17553
17554
|
],
|
|
17554
17555
|
};
|
|
17555
17556
|
`],
|
|
@@ -18290,6 +18291,7 @@ export const config = {
|
|
|
18290
18291
|
"/((?!_next|[^?]*\\\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)).*)",
|
|
18291
18292
|
// Always run for API routes
|
|
18292
18293
|
"/(api|trpc)(.*)",
|
|
18294
|
+
"/__clerk/(.*)",
|
|
18293
18295
|
],
|
|
18294
18296
|
};
|
|
18295
18297
|
`],
|
|
@@ -18760,7 +18762,7 @@ export default defineSchema({
|
|
|
18760
18762
|
"license": "ISC",
|
|
18761
18763
|
"description": "",
|
|
18762
18764
|
"devDependencies": {
|
|
18763
|
-
"@types/node": "^24.3
|
|
18765
|
+
"@types/node": "^24.13.3"
|
|
18764
18766
|
},
|
|
18765
18767
|
"dependencies": {}
|
|
18766
18768
|
}
|
|
@@ -19662,6 +19664,7 @@ apps/web/src/routeTree.gen.ts
|
|
|
19662
19664
|
|
|
19663
19665
|
# Logs
|
|
19664
19666
|
logs
|
|
19667
|
+
.evlog/
|
|
19665
19668
|
*.log
|
|
19666
19669
|
npm-debug.log*
|
|
19667
19670
|
yarn-debug.log*
|
|
@@ -30167,11 +30170,11 @@ export default defineConfig({
|
|
|
30167
30170
|
"astro": "astro"
|
|
30168
30171
|
},
|
|
30169
30172
|
"dependencies": {
|
|
30170
|
-
"astro": "^7.
|
|
30173
|
+
"astro": "^7.1.5"
|
|
30171
30174
|
},
|
|
30172
30175
|
"devDependencies": {
|
|
30173
|
-
"@tailwindcss/vite": "^4.3.
|
|
30174
|
-
"tailwindcss": "^4.3.
|
|
30176
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
30177
|
+
"tailwindcss": "^4.3.3"
|
|
30175
30178
|
}
|
|
30176
30179
|
}
|
|
30177
30180
|
`],
|
|
@@ -31522,32 +31525,32 @@ module.exports = config;
|
|
|
31522
31525
|
"web": "expo start --web"
|
|
31523
31526
|
},
|
|
31524
31527
|
"dependencies": {
|
|
31525
|
-
"@expo/ui": "~57.0.
|
|
31528
|
+
"@expo/ui": "~57.0.7",
|
|
31526
31529
|
"@expo/vector-icons": "^15.1.1",
|
|
31527
|
-
"@tanstack/react-query": "^5.101.
|
|
31530
|
+
"@tanstack/react-query": "^5.101.4",
|
|
31528
31531
|
{{#if (includes examples "ai")}}
|
|
31529
31532
|
"@stardazed/streams-text-encoding": "^1.0.2",
|
|
31530
|
-
"@ungap/structured-clone": "^1.3.
|
|
31533
|
+
"@ungap/structured-clone": "^1.3.3",
|
|
31531
31534
|
{{/if}}
|
|
31532
|
-
"expo": "~57.0.
|
|
31533
|
-
"expo-constants": "~57.0.
|
|
31534
|
-
"expo-crypto": "~57.0.
|
|
31535
|
-
"expo-font": "~57.0.
|
|
31536
|
-
"expo-linking": "~57.0.
|
|
31537
|
-
"expo-network": "~57.0.
|
|
31538
|
-
"expo-router": "~57.0.
|
|
31539
|
-
"expo-secure-store": "~57.0.
|
|
31540
|
-
"expo-splash-screen": "~57.0.
|
|
31541
|
-
"expo-status-bar": "~57.0.
|
|
31542
|
-
"expo-system-ui": "~57.0.
|
|
31543
|
-
"expo-web-browser": "~57.0.
|
|
31535
|
+
"expo": "~57.0.8",
|
|
31536
|
+
"expo-constants": "~57.0.7",
|
|
31537
|
+
"expo-crypto": "~57.0.1",
|
|
31538
|
+
"expo-font": "~57.0.1",
|
|
31539
|
+
"expo-linking": "~57.0.4",
|
|
31540
|
+
"expo-network": "~57.0.1",
|
|
31541
|
+
"expo-router": "~57.0.8",
|
|
31542
|
+
"expo-secure-store": "~57.0.1",
|
|
31543
|
+
"expo-splash-screen": "~57.0.5",
|
|
31544
|
+
"expo-status-bar": "~57.0.1",
|
|
31545
|
+
"expo-system-ui": "~57.0.1",
|
|
31546
|
+
"expo-web-browser": "~57.0.2",
|
|
31544
31547
|
"react": "19.2.3",
|
|
31545
31548
|
"react-dom": "19.2.3",
|
|
31546
31549
|
"react-native": "0.86.0",
|
|
31547
31550
|
"react-native-gesture-handler": "~2.32.0",
|
|
31548
31551
|
"react-native-reanimated": "4.5.0",
|
|
31549
31552
|
"react-native-safe-area-context": "~5.7.0",
|
|
31550
|
-
"react-native-screens": "4.
|
|
31553
|
+
"react-native-screens": "~4.26.0",
|
|
31551
31554
|
"react-native-web": "~0.21.0",
|
|
31552
31555
|
"react-native-worklets": "0.10.0"
|
|
31553
31556
|
},
|
|
@@ -32854,31 +32857,31 @@ module.exports = config;
|
|
|
32854
32857
|
"@expo/vector-icons": "^15.1.1",
|
|
32855
32858
|
{{#if (includes examples "ai")}}
|
|
32856
32859
|
"@stardazed/streams-text-encoding": "^1.0.2",
|
|
32857
|
-
"@ungap/structured-clone": "^1.3.
|
|
32860
|
+
"@ungap/structured-clone": "^1.3.3",
|
|
32858
32861
|
{{/if}}
|
|
32859
|
-
"babel-preset-expo": "~57.0.
|
|
32860
|
-
"expo": "~57.0.
|
|
32861
|
-
"expo-constants": "~57.0.
|
|
32862
|
-
"expo-crypto": "~57.0.
|
|
32863
|
-
"expo-dev-client": "~57.0.
|
|
32864
|
-
"expo-font": "~57.0.
|
|
32865
|
-
"expo-linking": "~57.0.
|
|
32866
|
-
"expo-network": "~57.0.
|
|
32867
|
-
"expo-router": "~57.0.
|
|
32868
|
-
"expo-secure-store": "~57.0.
|
|
32869
|
-
"expo-splash-screen": "~57.0.
|
|
32870
|
-
"expo-status-bar": "~57.0.
|
|
32871
|
-
"expo-system-ui": "~57.0.
|
|
32872
|
-
"expo-web-browser": "~57.0.
|
|
32862
|
+
"babel-preset-expo": "~57.0.4",
|
|
32863
|
+
"expo": "~57.0.8",
|
|
32864
|
+
"expo-constants": "~57.0.7",
|
|
32865
|
+
"expo-crypto": "~57.0.1",
|
|
32866
|
+
"expo-dev-client": "~57.0.8",
|
|
32867
|
+
"expo-font": "~57.0.1",
|
|
32868
|
+
"expo-linking": "~57.0.4",
|
|
32869
|
+
"expo-network": "~57.0.1",
|
|
32870
|
+
"expo-router": "~57.0.8",
|
|
32871
|
+
"expo-secure-store": "~57.0.1",
|
|
32872
|
+
"expo-splash-screen": "~57.0.5",
|
|
32873
|
+
"expo-status-bar": "~57.0.1",
|
|
32874
|
+
"expo-system-ui": "~57.0.1",
|
|
32875
|
+
"expo-web-browser": "~57.0.2",
|
|
32873
32876
|
"react": "19.2.3",
|
|
32874
32877
|
"react-dom": "19.2.3",
|
|
32875
32878
|
"react-native": "0.86.0",
|
|
32876
32879
|
"react-native-gesture-handler": "~2.32.0",
|
|
32877
|
-
"react-native-nitro-modules": "0.36.
|
|
32880
|
+
"react-native-nitro-modules": "0.36.3",
|
|
32878
32881
|
"react-native-reanimated": "4.5.0",
|
|
32879
32882
|
"react-native-safe-area-context": "~5.7.0",
|
|
32880
|
-
"react-native-screens": "4.
|
|
32881
|
-
"react-native-unistyles": "^3.
|
|
32883
|
+
"react-native-screens": "~4.26.0",
|
|
32884
|
+
"react-native-unistyles": "^3.3.0",
|
|
32882
32885
|
"react-native-web": "~0.21.0",
|
|
32883
32886
|
"react-native-worklets": "0.10.0"
|
|
32884
32887
|
},
|
|
@@ -33984,24 +33987,24 @@ module.exports = uniwindConfig;
|
|
|
33984
33987
|
"web": "expo start --web"
|
|
33985
33988
|
},
|
|
33986
33989
|
"dependencies": {
|
|
33987
|
-
"@expo/metro-runtime": "~57.0.
|
|
33990
|
+
"@expo/metro-runtime": "~57.0.7",
|
|
33988
33991
|
"@expo/vector-icons": "^15.1.1",
|
|
33989
33992
|
"@gorhom/bottom-sheet": "^5.2.14",
|
|
33990
33993
|
{{#if (includes examples "ai")}}
|
|
33991
33994
|
"@stardazed/streams-text-encoding": "^1.0.2",
|
|
33992
|
-
"@ungap/structured-clone": "^1.3.
|
|
33995
|
+
"@ungap/structured-clone": "^1.3.3",
|
|
33993
33996
|
{{/if}}
|
|
33994
|
-
"expo": "~57.0.
|
|
33995
|
-
"expo-constants": "~57.0.
|
|
33996
|
-
"expo-font": "~57.0.
|
|
33997
|
-
"expo-haptics": "~57.0.
|
|
33998
|
-
"expo-linking": "~57.0.
|
|
33999
|
-
"expo-network": "~57.0.
|
|
34000
|
-
"expo-router": "~57.0.
|
|
34001
|
-
"expo-secure-store": "~57.0.
|
|
34002
|
-
"expo-status-bar": "~57.0.
|
|
34003
|
-
"expo-web-browser": "~57.0.
|
|
34004
|
-
"heroui-native": "^1.0.
|
|
33997
|
+
"expo": "~57.0.8",
|
|
33998
|
+
"expo-constants": "~57.0.7",
|
|
33999
|
+
"expo-font": "~57.0.1",
|
|
34000
|
+
"expo-haptics": "~57.0.1",
|
|
34001
|
+
"expo-linking": "~57.0.4",
|
|
34002
|
+
"expo-network": "~57.0.1",
|
|
34003
|
+
"expo-router": "~57.0.8",
|
|
34004
|
+
"expo-secure-store": "~57.0.1",
|
|
34005
|
+
"expo-status-bar": "~57.0.1",
|
|
34006
|
+
"expo-web-browser": "~57.0.2",
|
|
34007
|
+
"heroui-native": "^1.0.7",
|
|
34005
34008
|
"react": "19.2.3",
|
|
34006
34009
|
"react-dom": "19.2.3",
|
|
34007
34010
|
"react-native": "0.86.0",
|
|
@@ -34009,17 +34012,17 @@ module.exports = uniwindConfig;
|
|
|
34009
34012
|
"react-native-keyboard-controller": "1.21.9",
|
|
34010
34013
|
"react-native-reanimated": "4.5.0",
|
|
34011
34014
|
"react-native-safe-area-context": "~5.7.0",
|
|
34012
|
-
"react-native-screens": "4.
|
|
34015
|
+
"react-native-screens": "~4.26.0",
|
|
34013
34016
|
"react-native-svg": "15.15.4",
|
|
34014
34017
|
"react-native-web": "~0.21.0",
|
|
34015
34018
|
"react-native-worklets": "0.10.0",
|
|
34016
34019
|
"tailwind-merge": "^3.6.0",
|
|
34017
|
-
"tailwind-variants": "^3.
|
|
34018
|
-
"tailwindcss": "^4.3.
|
|
34020
|
+
"tailwind-variants": "^3.3.0",
|
|
34021
|
+
"tailwindcss": "^4.3.3",
|
|
34019
34022
|
"uniwind": "^1.10.0"
|
|
34020
34023
|
},
|
|
34021
34024
|
"devDependencies": {
|
|
34022
|
-
"@types/node": "^26.
|
|
34025
|
+
"@types/node": "^26.1.2",
|
|
34023
34026
|
"@types/react": "~19.2.17",
|
|
34024
34027
|
"typescript": "~6.0.3"
|
|
34025
34028
|
}
|
|
@@ -34308,14 +34311,14 @@ export default defineNuxtConfig({
|
|
|
34308
34311
|
},
|
|
34309
34312
|
"dependencies": {
|
|
34310
34313
|
"@nuxt/ui": "^4.10.0",
|
|
34311
|
-
"nuxt": "^4.5.
|
|
34312
|
-
"vue": "^3.5.
|
|
34314
|
+
"nuxt": "^4.5.1",
|
|
34315
|
+
"vue": "^3.5.40",
|
|
34313
34316
|
"vue-router": "^5.2.0"
|
|
34314
34317
|
},
|
|
34315
34318
|
"devDependencies": {
|
|
34316
|
-
"tailwindcss": "^4.3.
|
|
34317
|
-
"@iconify-json/lucide": "^1.2.
|
|
34318
|
-
"vue-tsc": "^3.3.
|
|
34319
|
+
"tailwindcss": "^4.3.3",
|
|
34320
|
+
"@iconify-json/lucide": "^1.2.120",
|
|
34321
|
+
"vue-tsc": "^3.3.8"
|
|
34319
34322
|
}
|
|
34320
34323
|
}
|
|
34321
34324
|
`],
|
|
@@ -34387,25 +34390,26 @@ initOpenNextCloudflareForDev();
|
|
|
34387
34390
|
"scripts": {
|
|
34388
34391
|
"dev": "next dev --port 3001",
|
|
34389
34392
|
"build": "next build",
|
|
34393
|
+
"check-types": "tsc --noEmit",
|
|
34390
34394
|
"start": "next start"
|
|
34391
34395
|
},
|
|
34392
34396
|
"dependencies": {
|
|
34393
34397
|
"@{{projectName}}/ui": "{{#if (eq packageManager "npm")}}*{{else}}workspace:*{{/if}}",
|
|
34394
34398
|
"@swc/helpers": "^0.5.23",
|
|
34395
|
-
"lucide-react": "^1.
|
|
34396
|
-
"next": "^16.2.
|
|
34399
|
+
"lucide-react": "^1.27.0",
|
|
34400
|
+
"next": "^16.2.12",
|
|
34397
34401
|
"next-themes": "^0.4.6",
|
|
34398
|
-
"react": "^19.2.
|
|
34399
|
-
"react-dom": "^19.2.
|
|
34402
|
+
"react": "^19.2.8",
|
|
34403
|
+
"react-dom": "^19.2.8",
|
|
34400
34404
|
"sonner": "^2.0.7",
|
|
34401
34405
|
"babel-plugin-react-compiler": "^1.0.0"
|
|
34402
34406
|
},
|
|
34403
34407
|
"devDependencies": {
|
|
34404
|
-
"@tailwindcss/postcss": "^4.3.
|
|
34405
|
-
"@types/node": "^20",
|
|
34408
|
+
"@tailwindcss/postcss": "^4.3.3",
|
|
34409
|
+
"@types/node": "^20.19.43",
|
|
34406
34410
|
"@types/react": "^19.2.17",
|
|
34407
34411
|
"@types/react-dom": "^19.2.3",
|
|
34408
|
-
"tailwindcss": "^4.3.
|
|
34412
|
+
"tailwindcss": "^4.3.3"
|
|
34409
34413
|
}
|
|
34410
34414
|
}
|
|
34411
34415
|
`],
|
|
@@ -34794,26 +34798,26 @@ export function ThemeProvider({
|
|
|
34794
34798
|
},
|
|
34795
34799
|
"dependencies": {
|
|
34796
34800
|
"@{{projectName}}/ui": "{{#if (eq packageManager "npm")}}*{{else}}workspace:*{{/if}}",
|
|
34797
|
-
"@react-router/fs-routes": "^8.
|
|
34798
|
-
"@react-router/node": "^8.
|
|
34799
|
-
"@react-router/serve": "^8.
|
|
34800
|
-
"isbot": "^5.1
|
|
34801
|
-
"lucide-react": "^1.
|
|
34801
|
+
"@react-router/fs-routes": "^8.3.0",
|
|
34802
|
+
"@react-router/node": "^8.3.0",
|
|
34803
|
+
"@react-router/serve": "^8.3.0",
|
|
34804
|
+
"isbot": "^5.2.1",
|
|
34805
|
+
"lucide-react": "^1.27.0",
|
|
34802
34806
|
"next-themes": "^0.4.6",
|
|
34803
|
-
"react": "^19.2.
|
|
34804
|
-
"react-dom": "^19.2.
|
|
34805
|
-
"react-router": "^8.
|
|
34807
|
+
"react": "^19.2.8",
|
|
34808
|
+
"react-dom": "^19.2.8",
|
|
34809
|
+
"react-router": "^8.3.0",
|
|
34806
34810
|
"sonner": "^2.0.7"
|
|
34807
34811
|
},
|
|
34808
34812
|
"devDependencies": {
|
|
34809
|
-
"@react-router/dev": "^8.
|
|
34810
|
-
"@tailwindcss/vite": "^4.3.
|
|
34811
|
-
"@types/node": "^22.
|
|
34813
|
+
"@react-router/dev": "^8.3.0",
|
|
34814
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
34815
|
+
"@types/node": "^22.20.1",
|
|
34812
34816
|
"@types/react": "^19.2.17",
|
|
34813
34817
|
"@types/react-dom": "^19.2.3",
|
|
34814
|
-
"react-router-devtools": "^6.2.
|
|
34815
|
-
"tailwindcss": "^4.3.
|
|
34816
|
-
"vite": "^
|
|
34818
|
+
"react-router-devtools": "^6.2.3",
|
|
34819
|
+
"tailwindcss": "^4.3.3",
|
|
34820
|
+
"vite": "^8.1.5",
|
|
34817
34821
|
"vite-tsconfig-paths": "^6.1.1"
|
|
34818
34822
|
}
|
|
34819
34823
|
}
|
|
@@ -35341,26 +35345,26 @@ export default defineConfig({
|
|
|
35341
35345
|
"check-types": "vite build && tsc --noEmit"
|
|
35342
35346
|
},
|
|
35343
35347
|
"dependencies": {
|
|
35344
|
-
"@hookform/resolvers": "^5.
|
|
35348
|
+
"@hookform/resolvers": "^5.5.7",
|
|
35345
35349
|
"@{{projectName}}/ui": "{{#if (eq packageManager "npm")}}*{{else}}workspace:*{{/if}}",
|
|
35346
|
-
"@tailwindcss/vite": "^4.3.
|
|
35347
|
-
"@tanstack/react-router": "^1.170.
|
|
35348
|
-
"lucide-react": "^1.
|
|
35350
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
35351
|
+
"@tanstack/react-router": "^1.170.18",
|
|
35352
|
+
"lucide-react": "^1.27.0",
|
|
35349
35353
|
"next-themes": "^0.4.6",
|
|
35350
|
-
"react": "^19.2.
|
|
35351
|
-
"react-dom": "^19.2.
|
|
35354
|
+
"react": "^19.2.8",
|
|
35355
|
+
"react-dom": "^19.2.8",
|
|
35352
35356
|
"sonner": "^2.0.7"
|
|
35353
35357
|
},
|
|
35354
35358
|
"devDependencies": {
|
|
35355
35359
|
"@tanstack/react-router-devtools": "^1.167.0",
|
|
35356
|
-
"@tanstack/router-plugin": "^1.168.
|
|
35357
|
-
"@types/node": "^22.
|
|
35360
|
+
"@tanstack/router-plugin": "^1.168.23",
|
|
35361
|
+
"@types/node": "^22.20.1",
|
|
35358
35362
|
"@types/react": "^19.2.17",
|
|
35359
35363
|
"@types/react-dom": "^19.2.3",
|
|
35360
|
-
"@vitejs/plugin-react": "^6.0.
|
|
35361
|
-
"postcss": "^8.5.
|
|
35362
|
-
"tailwindcss": "^4.3.
|
|
35363
|
-
"vite": "^8.1.
|
|
35364
|
+
"@vitejs/plugin-react": "^6.0.4",
|
|
35365
|
+
"postcss": "^8.5.24",
|
|
35366
|
+
"tailwindcss": "^4.3.3",
|
|
35367
|
+
"vite": "^8.1.5"
|
|
35364
35368
|
}
|
|
35365
35369
|
}
|
|
35366
35370
|
`],
|
|
@@ -35786,16 +35790,16 @@ export default defineConfig({
|
|
|
35786
35790
|
},
|
|
35787
35791
|
"dependencies": {
|
|
35788
35792
|
"@{{projectName}}/ui": "{{#if (eq packageManager "npm")}}*{{else}}workspace:*{{/if}}",
|
|
35789
|
-
"@tailwindcss/vite": "^4.3.
|
|
35790
|
-
"@tanstack/react-query": "^5.101.
|
|
35791
|
-
"@tanstack/react-router": "^1.170.
|
|
35792
|
-
"@tanstack/react-start": "^1.168.
|
|
35793
|
-
"lucide-react": "^1.
|
|
35793
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
35794
|
+
"@tanstack/react-query": "^5.101.4",
|
|
35795
|
+
"@tanstack/react-router": "^1.170.18",
|
|
35796
|
+
"@tanstack/react-start": "^1.168.32",
|
|
35797
|
+
"lucide-react": "^1.27.0",
|
|
35794
35798
|
"next-themes": "^0.4.6",
|
|
35795
|
-
"react": "^19.2.
|
|
35796
|
-
"react-dom": "^19.2.
|
|
35799
|
+
"react": "^19.2.8",
|
|
35800
|
+
"react-dom": "^19.2.8",
|
|
35797
35801
|
"sonner": "^2.0.7",
|
|
35798
|
-
"tailwindcss": "^4.3.
|
|
35802
|
+
"tailwindcss": "^4.3.3"
|
|
35799
35803
|
},
|
|
35800
35804
|
"devDependencies": {
|
|
35801
35805
|
"@tanstack/react-router-devtools": "^1.167.0",
|
|
@@ -35803,10 +35807,10 @@ export default defineConfig({
|
|
|
35803
35807
|
"@testing-library/react": "^16.3.2",
|
|
35804
35808
|
"@types/react": "^19.2.17",
|
|
35805
35809
|
"@types/react-dom": "^19.2.3",
|
|
35806
|
-
"@vitejs/plugin-react": "^6.0.
|
|
35807
|
-
"jsdom": "^
|
|
35808
|
-
"vite": "^8.1.
|
|
35809
|
-
"web-vitals": "^
|
|
35810
|
+
"@vitejs/plugin-react": "^6.0.4",
|
|
35811
|
+
"jsdom": "^30.0.0",
|
|
35812
|
+
"vite": "^8.1.5",
|
|
35813
|
+
"web-vitals": "^6.0.1"
|
|
35810
35814
|
}
|
|
35811
35815
|
}
|
|
35812
35816
|
`],
|
|
@@ -36605,17 +36609,17 @@ dist-ssr
|
|
|
36605
36609
|
"test": "vitest run"
|
|
36606
36610
|
},
|
|
36607
36611
|
"dependencies": {
|
|
36608
|
-
"@tailwindcss/vite": "^4.3.
|
|
36609
|
-
"@tanstack/router-plugin": "^1.168.
|
|
36610
|
-
"@tanstack/solid-router": "^1.170.
|
|
36611
|
-
"lucide-solid": "^1.
|
|
36612
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
36613
|
+
"@tanstack/router-plugin": "^1.168.23",
|
|
36614
|
+
"@tanstack/solid-router": "^1.170.18",
|
|
36615
|
+
"lucide-solid": "^1.27.0",
|
|
36612
36616
|
"solid-js": "^1.9.14",
|
|
36613
|
-
"tailwindcss": "^4.3.
|
|
36617
|
+
"tailwindcss": "^4.3.3"
|
|
36614
36618
|
},
|
|
36615
36619
|
"devDependencies": {
|
|
36616
36620
|
"@tanstack/solid-router-devtools": "^1.167.0",
|
|
36617
|
-
"vite": "^8.1.
|
|
36618
|
-
"vite-plugin-solid": "^2.11.
|
|
36621
|
+
"vite": "^8.1.5",
|
|
36622
|
+
"vite-plugin-solid": "^2.11.14"
|
|
36619
36623
|
}
|
|
36620
36624
|
}
|
|
36621
36625
|
`],
|
|
@@ -36925,13 +36929,13 @@ vite.config.ts.timestamp-*
|
|
|
36925
36929
|
{{else}}
|
|
36926
36930
|
"@sveltejs/adapter-auto": "^7.0.1",
|
|
36927
36931
|
{{/if}}
|
|
36928
|
-
"@sveltejs/kit": "^2.
|
|
36929
|
-
"@sveltejs/vite-plugin-svelte": "^7.
|
|
36930
|
-
"@tailwindcss/vite": "^4.3.
|
|
36931
|
-
"svelte": "^5.56.
|
|
36932
|
-
"svelte-check": "^4.7.
|
|
36933
|
-
"tailwindcss": "^4.3.
|
|
36934
|
-
"vite": "^8.1.
|
|
36932
|
+
"@sveltejs/kit": "^2.70.1",
|
|
36933
|
+
"@sveltejs/vite-plugin-svelte": "^7.2.0",
|
|
36934
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
36935
|
+
"svelte": "^5.56.8",
|
|
36936
|
+
"svelte-check": "^4.7.4",
|
|
36937
|
+
"tailwindcss": "^4.3.3",
|
|
36938
|
+
"vite": "^8.1.5"
|
|
36935
36939
|
},
|
|
36936
36940
|
"dependencies": {}
|
|
36937
36941
|
}
|
|
@@ -38124,23 +38128,23 @@ await app.finalize();
|
|
|
38124
38128
|
},
|
|
38125
38129
|
"dependencies": {
|
|
38126
38130
|
"@base-ui/react": "^1.6.0",
|
|
38127
|
-
"@shadcn/react": "^0.2.
|
|
38128
|
-
"shadcn": "^4.
|
|
38131
|
+
"@shadcn/react": "^0.2.1",
|
|
38132
|
+
"shadcn": "^4.16.0",
|
|
38129
38133
|
"class-variance-authority": "^0.7.1",
|
|
38130
38134
|
"clsx": "^2.1.1",
|
|
38131
|
-
"lucide-react": "^1.
|
|
38135
|
+
"lucide-react": "^1.27.0",
|
|
38132
38136
|
"next-themes": "^0.4.6",
|
|
38133
|
-
"react": "^19.2.
|
|
38134
|
-
"react-dom": "^19.2.
|
|
38137
|
+
"react": "^19.2.8",
|
|
38138
|
+
"react-dom": "^19.2.8",
|
|
38135
38139
|
"sonner": "^2.0.7",
|
|
38136
38140
|
"tailwind-merge": "^3.6.0",
|
|
38137
38141
|
"tw-animate-css": "^1.4.0"
|
|
38138
38142
|
},
|
|
38139
38143
|
"devDependencies": {
|
|
38140
|
-
"@tailwindcss/postcss": "^4.3.
|
|
38144
|
+
"@tailwindcss/postcss": "^4.3.3",
|
|
38141
38145
|
"@types/react": "^19.2.17",
|
|
38142
38146
|
"@types/react-dom": "^19.2.3",
|
|
38143
|
-
"tailwindcss": "^4.3.
|
|
38147
|
+
"tailwindcss": "^4.3.3"
|
|
38144
38148
|
},
|
|
38145
38149
|
"scripts": {
|
|
38146
38150
|
"check-types": "tsc --noEmit"
|