@better-fullstack/template-generator 1.6.0 → 1.6.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.
- package/dist/browser.d.mts +3 -0
- package/dist/browser.mjs +3 -0
- package/dist/core/template-reader.mjs +1 -1
- package/dist/fs-writer.d.mts +1 -1
- package/dist/fs-writer.d.mts.map +1 -1
- package/dist/fs-writer.mjs +12 -1
- package/dist/fs-writer.mjs.map +1 -1
- package/dist/index.d.mts +233 -296
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -77533
- package/dist/index.mjs.map +1 -1
- package/dist/preflight-validation-DCiZp_NU.d.mts +70 -0
- package/dist/preflight-validation-DCiZp_NU.d.mts.map +1 -0
- package/dist/preflight-validation-FOuwVCzR.mjs +81207 -0
- package/dist/preflight-validation-FOuwVCzR.mjs.map +1 -0
- package/dist/{template-reader-Bjn8sWYU.mjs → template-reader-D1uxgWOQ.mjs} +382 -180
- package/dist/template-reader-D1uxgWOQ.mjs.map +1 -0
- package/dist/{types-Dkk8hmmP.d.mts → types-Jq14WnvH.d.mts} +1 -1
- package/dist/{types-Dkk8hmmP.d.mts.map → types-Jq14WnvH.d.mts.map} +1 -1
- package/package.json +12 -5
- package/templates-binary/java-base/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/dist/template-reader-Bjn8sWYU.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,196 +1,149 @@
|
|
|
1
|
-
import { a as VirtualFileTree, i as VirtualFile, n as GeneratorResult, o as VirtualNode, r as VirtualDirectory, t as GeneratorOptions } from "./types-
|
|
1
|
+
import { a as VirtualFileTree, i as VirtualFile, n as GeneratorResult, o as VirtualNode, r as VirtualDirectory, t as GeneratorOptions } from "./types-Jq14WnvH.mjs";
|
|
2
|
+
import { a as TEMPLATE_COUNT, c as TemplateData, i as EMBEDDED_TEMPLATES, l as VirtualFileSystem, n as PreflightWarning, o as generateVirtualProject, r as validatePreflightConfig, s as processAddonTemplates, t as PreflightResult } from "./preflight-validation-DCiZp_NU.mjs";
|
|
2
3
|
import Handlebars from "handlebars";
|
|
3
4
|
import { ProjectConfig } from "@better-fullstack/types";
|
|
4
|
-
import { Data } from "effect";
|
|
5
5
|
|
|
6
|
-
//#region src/core/virtual-fs.d.ts
|
|
7
|
-
/**
|
|
8
|
-
* Pure-JS in-memory virtual file system.
|
|
9
|
-
* Stores files as a Map<path, content> — no Node.js dependencies (memfs, Buffer, etc.)
|
|
10
|
-
* so this works identically in browsers and Node.js.
|
|
11
|
-
*/
|
|
12
|
-
declare class VirtualFileSystem {
|
|
13
|
-
private _files;
|
|
14
|
-
private _dirs;
|
|
15
|
-
private _sourcePathMap;
|
|
16
|
-
writeFile(filePath: string, content: string, sourcePath?: string): void;
|
|
17
|
-
readFile(filePath: string): string | undefined;
|
|
18
|
-
exists(path: string): boolean;
|
|
19
|
-
fileExists(filePath: string): boolean;
|
|
20
|
-
directoryExists(dirPath: string): boolean;
|
|
21
|
-
mkdir(dirPath: string): void;
|
|
22
|
-
deleteFile(filePath: string): boolean;
|
|
23
|
-
listDir(dirPath: string): string[];
|
|
24
|
-
readJson<T = unknown>(filePath: string): T | undefined;
|
|
25
|
-
writeJson(filePath: string, data: unknown, spaces?: number): void;
|
|
26
|
-
getAllFiles(): string[];
|
|
27
|
-
getAllDirectories(): string[];
|
|
28
|
-
getFileCount(): number;
|
|
29
|
-
getDirectoryCount(): number;
|
|
30
|
-
toTree(rootName?: string): VirtualDirectory;
|
|
31
|
-
clear(): void;
|
|
32
|
-
/** Returns entries in a directory (like readdirSync with withFileTypes). */
|
|
33
|
-
private _readDir;
|
|
34
|
-
private _buildTree;
|
|
35
|
-
private _sortChildren;
|
|
36
|
-
private _ensureParentDirs;
|
|
37
|
-
private normalizePath;
|
|
38
|
-
}
|
|
39
|
-
//#endregion
|
|
40
6
|
//#region src/core/template-processor.d.ts
|
|
41
7
|
declare function processTemplateString(content: string, context: ProjectConfig): string;
|
|
42
8
|
declare function isBinaryFile(filePath: string): boolean;
|
|
43
9
|
declare function transformFilename(filename: string): string;
|
|
44
10
|
declare function processFileContent(filePath: string, content: string, context: ProjectConfig): string;
|
|
45
11
|
//#endregion
|
|
46
|
-
//#region src/template-handlers/utils.d.ts
|
|
47
|
-
type TemplateData = Map<string, string>;
|
|
48
|
-
//#endregion
|
|
49
|
-
//#region src/template-handlers/addons.d.ts
|
|
50
|
-
declare function processAddonTemplates(vfs: VirtualFileSystem, templates: TemplateData, config: ProjectConfig): Promise<void>;
|
|
51
|
-
//#endregion
|
|
52
|
-
//#region src/generator.d.ts
|
|
53
|
-
declare function generateVirtualProject(options: GeneratorOptions): Promise<GeneratorResult>;
|
|
54
|
-
//#endregion
|
|
55
12
|
//#region src/processors/addons-deps.d.ts
|
|
56
13
|
declare function processAddonsDeps(vfs: VirtualFileSystem, config: ProjectConfig): void;
|
|
57
14
|
//#endregion
|
|
58
|
-
//#region src/templates.generated.d.ts
|
|
59
|
-
declare const EMBEDDED_TEMPLATES: Map<string, string>;
|
|
60
|
-
declare const TEMPLATE_COUNT = 1047;
|
|
61
|
-
//#endregion
|
|
62
15
|
//#region src/utils/add-deps.d.ts
|
|
63
16
|
declare const dependencyVersionMap: {
|
|
64
|
-
readonly typescript: "^6.0.
|
|
65
|
-
readonly "better-auth": "^1.
|
|
66
|
-
readonly "@better-auth/expo": "^1.
|
|
67
|
-
readonly "@better-auth/drizzle-adapter": "^1.
|
|
68
|
-
readonly "@better-auth/prisma-adapter": "^1.
|
|
69
|
-
readonly "@better-auth/mongo-adapter": "^1.
|
|
70
|
-
readonly "@clerk/nextjs": "^7.
|
|
17
|
+
readonly typescript: "^6.0.3";
|
|
18
|
+
readonly "better-auth": "^1.6.9";
|
|
19
|
+
readonly "@better-auth/expo": "^1.6.9";
|
|
20
|
+
readonly "@better-auth/drizzle-adapter": "^1.6.9";
|
|
21
|
+
readonly "@better-auth/prisma-adapter": "^1.6.9";
|
|
22
|
+
readonly "@better-auth/mongo-adapter": "^1.6.9";
|
|
23
|
+
readonly "@clerk/nextjs": "^7.2.7";
|
|
71
24
|
readonly "@clerk/clerk-react": "^5.61.3";
|
|
72
|
-
readonly "@clerk/tanstack-react-start": "^1.
|
|
25
|
+
readonly "@clerk/tanstack-react-start": "^1.1.7";
|
|
73
26
|
readonly "@clerk/clerk-expo": "^2.19.31";
|
|
74
|
-
readonly "next-auth": "^4.24.
|
|
27
|
+
readonly "next-auth": "^4.24.14";
|
|
75
28
|
readonly "@auth/core": "^0.34.3";
|
|
76
|
-
readonly "@auth/drizzle-adapter": "^1.11.
|
|
77
|
-
readonly "@auth/prisma-adapter": "^2.11.
|
|
78
|
-
readonly "@stackframe/stack": "^2.8.
|
|
79
|
-
readonly "@supabase/supabase-js": "^2.
|
|
80
|
-
readonly "@supabase/ssr": "^0.10.
|
|
81
|
-
readonly "@auth0/nextjs-auth0": "^4.
|
|
29
|
+
readonly "@auth/drizzle-adapter": "^1.11.2";
|
|
30
|
+
readonly "@auth/prisma-adapter": "^2.11.2";
|
|
31
|
+
readonly "@stackframe/stack": "^2.8.85";
|
|
32
|
+
readonly "@supabase/supabase-js": "^2.104.1";
|
|
33
|
+
readonly "@supabase/ssr": "^0.10.2";
|
|
34
|
+
readonly "@auth0/nextjs-auth0": "^4.19.0";
|
|
82
35
|
readonly "drizzle-orm": "^0.45.2";
|
|
83
36
|
readonly "drizzle-kit": "^0.31.10";
|
|
84
37
|
readonly "@planetscale/database": "^1.20.1";
|
|
85
|
-
readonly "@libsql/client": "^0.17.
|
|
38
|
+
readonly "@libsql/client": "^0.17.3";
|
|
86
39
|
readonly libsql: "^0.5.29";
|
|
87
|
-
readonly "@neondatabase/serverless": "^1.0
|
|
40
|
+
readonly "@neondatabase/serverless": "^1.1.0";
|
|
88
41
|
readonly pg: "^8.20.0";
|
|
89
42
|
readonly "@types/pg": "^8.20.0";
|
|
90
43
|
readonly "@types/ws": "^8.18.1";
|
|
91
44
|
readonly ws: "^8.20.0";
|
|
92
|
-
readonly mysql2: "^3.
|
|
93
|
-
readonly "@prisma/client": "^7.
|
|
94
|
-
readonly prisma: "^7.
|
|
95
|
-
readonly "@prisma/adapter-d1": "^7.
|
|
96
|
-
readonly "@prisma/adapter-neon": "^7.
|
|
97
|
-
readonly "@prisma/adapter-mariadb": "^7.
|
|
98
|
-
readonly "@prisma/adapter-libsql": "^7.
|
|
99
|
-
readonly "@prisma/adapter-better-sqlite3": "^7.
|
|
100
|
-
readonly "@prisma/adapter-pg": "^7.
|
|
101
|
-
readonly "@prisma/adapter-planetscale": "^7.
|
|
102
|
-
readonly mongoose: "^9.
|
|
45
|
+
readonly mysql2: "^3.22.3";
|
|
46
|
+
readonly "@prisma/client": "^7.8.0";
|
|
47
|
+
readonly prisma: "^7.8.0";
|
|
48
|
+
readonly "@prisma/adapter-d1": "^7.8.0";
|
|
49
|
+
readonly "@prisma/adapter-neon": "^7.8.0";
|
|
50
|
+
readonly "@prisma/adapter-mariadb": "^7.8.0";
|
|
51
|
+
readonly "@prisma/adapter-libsql": "^7.8.0";
|
|
52
|
+
readonly "@prisma/adapter-better-sqlite3": "^7.8.0";
|
|
53
|
+
readonly "@prisma/adapter-pg": "^7.8.0";
|
|
54
|
+
readonly "@prisma/adapter-planetscale": "^7.8.0";
|
|
55
|
+
readonly mongoose: "^9.5.0";
|
|
103
56
|
readonly typeorm: "^0.3.28";
|
|
104
|
-
readonly "better-sqlite3": "^12.
|
|
57
|
+
readonly "better-sqlite3": "^12.9.0";
|
|
105
58
|
readonly "@types/better-sqlite3": "^7.6.13";
|
|
106
|
-
readonly kysely: "^0.28.
|
|
107
|
-
readonly "@mikro-orm/core": "^7.0.
|
|
108
|
-
readonly "@mikro-orm/sqlite": "^7.0.
|
|
109
|
-
readonly "@mikro-orm/postgresql": "^7.0.
|
|
110
|
-
readonly "@mikro-orm/mysql": "^7.0.
|
|
111
|
-
readonly "@mikro-orm/better-sqlite": "^6.6.
|
|
59
|
+
readonly kysely: "^0.28.16";
|
|
60
|
+
readonly "@mikro-orm/core": "^7.0.12";
|
|
61
|
+
readonly "@mikro-orm/sqlite": "^7.0.12";
|
|
62
|
+
readonly "@mikro-orm/postgresql": "^7.0.12";
|
|
63
|
+
readonly "@mikro-orm/mysql": "^7.0.12";
|
|
64
|
+
readonly "@mikro-orm/better-sqlite": "^6.6.13";
|
|
112
65
|
readonly sequelize: "^6.37.8";
|
|
113
66
|
readonly "sequelize-typescript": "^2.1.6";
|
|
114
67
|
readonly sqlite3: "^6.0.1";
|
|
115
68
|
readonly "vite-plugin-pwa": "^1.2.0";
|
|
116
69
|
readonly "@vite-pwa/assets-generator": "^1.0.2";
|
|
117
70
|
readonly "@tauri-apps/cli": "^2.10.1";
|
|
118
|
-
readonly "@tauri-apps/api": "^2.
|
|
119
|
-
readonly "@biomejs/biome": "^2.4.
|
|
120
|
-
readonly oxlint: "^1.
|
|
121
|
-
readonly oxfmt: "^0.
|
|
71
|
+
readonly "@tauri-apps/api": "^2.10.1";
|
|
72
|
+
readonly "@biomejs/biome": "^2.4.13";
|
|
73
|
+
readonly oxlint: "^1.61.0";
|
|
74
|
+
readonly oxfmt: "^0.46.0";
|
|
122
75
|
readonly husky: "^9.1.7";
|
|
123
|
-
readonly lefthook: "^2.1.
|
|
76
|
+
readonly lefthook: "^2.1.6";
|
|
124
77
|
readonly "lint-staged": "^16.4.0";
|
|
125
78
|
readonly tsx: "^4.21.0";
|
|
126
|
-
readonly "@types/node": "^25.
|
|
127
|
-
readonly "@types/bun": "^1.3.
|
|
79
|
+
readonly "@types/node": "^25.6.0";
|
|
80
|
+
readonly "@types/bun": "^1.3.13";
|
|
128
81
|
readonly "@elysiajs/node": "^1.4.5";
|
|
129
|
-
readonly "@elysiajs/cors": "^1.4.
|
|
82
|
+
readonly "@elysiajs/cors": "^1.4.2";
|
|
130
83
|
readonly "@elysiajs/trpc": "^1.1.0";
|
|
131
84
|
readonly elysia: "^1.4.28";
|
|
132
|
-
readonly "@hono/node-server": "^
|
|
85
|
+
readonly "@hono/node-server": "^2.0.0";
|
|
133
86
|
readonly "@hono/trpc-server": "^0.4.2";
|
|
134
|
-
readonly hono: "^4.12.
|
|
87
|
+
readonly hono: "^4.12.15";
|
|
135
88
|
readonly "@octokit/rest": "^22.0.1";
|
|
136
|
-
readonly "@vercel/sandbox": "^1.
|
|
137
|
-
readonly vercel: "^
|
|
138
|
-
readonly "@sveltejs/adapter-vercel": "^
|
|
139
|
-
readonly "bash-tool": "^1.3.
|
|
89
|
+
readonly "@vercel/sandbox": "^1.10.0";
|
|
90
|
+
readonly vercel: "^52.0.0";
|
|
91
|
+
readonly "@sveltejs/adapter-vercel": "^6.3.3";
|
|
92
|
+
readonly "bash-tool": "^1.3.16";
|
|
140
93
|
readonly cors: "^2.8.6";
|
|
141
94
|
readonly express: "^5.2.1";
|
|
142
95
|
readonly "@types/express": "^5.0.6";
|
|
143
96
|
readonly "@types/cors": "^2.8.19";
|
|
144
|
-
readonly fastify: "^5.8.
|
|
97
|
+
readonly fastify: "^5.8.5";
|
|
145
98
|
readonly "@fastify/cors": "^11.2.0";
|
|
146
|
-
readonly "@nestjs/core": "^11.1.
|
|
147
|
-
readonly "@nestjs/common": "^11.1.
|
|
148
|
-
readonly "@nestjs/platform-express": "^11.1.
|
|
99
|
+
readonly "@nestjs/core": "^11.1.19";
|
|
100
|
+
readonly "@nestjs/common": "^11.1.19";
|
|
101
|
+
readonly "@nestjs/platform-express": "^11.1.19";
|
|
149
102
|
readonly "reflect-metadata": "^0.2.2";
|
|
150
103
|
readonly rxjs: "^7.8.2";
|
|
151
|
-
readonly "encore.dev": "^1.56.
|
|
152
|
-
readonly "@adonisjs/core": "^7.3.
|
|
104
|
+
readonly "encore.dev": "^1.56.7";
|
|
105
|
+
readonly "@adonisjs/core": "^7.3.2";
|
|
153
106
|
readonly "@adonisjs/cors": "^3.0.0";
|
|
154
107
|
readonly "@adonisjs/assembler": "^8.4.0";
|
|
155
108
|
readonly "@adonisjs/tsconfig": "^2.0.0";
|
|
156
109
|
readonly nitropack: "^2.13.3";
|
|
157
110
|
readonly h3: "^2.0.0";
|
|
158
111
|
readonly fets: "^0.8.6";
|
|
159
|
-
readonly turbo: "^2.9.
|
|
160
|
-
readonly chat: "^4.
|
|
161
|
-
readonly "@chat-adapter/slack": "^4.
|
|
162
|
-
readonly "@chat-adapter/discord": "^4.
|
|
163
|
-
readonly "@chat-adapter/github": "^4.
|
|
164
|
-
readonly "@chat-adapter/state-memory": "^4.
|
|
165
|
-
readonly "@chat-adapter/state-redis": "^4.
|
|
166
|
-
readonly ai: "^6.0.
|
|
167
|
-
readonly "@ai-sdk/anthropic": "^3.0.
|
|
168
|
-
readonly "@ai-sdk/google": "^3.0.
|
|
169
|
-
readonly "@ai-sdk/vue": "^3.0.
|
|
170
|
-
readonly "@ai-sdk/svelte": "^4.0.
|
|
171
|
-
readonly "@ai-sdk/react": "^3.0.
|
|
112
|
+
readonly turbo: "^2.9.6";
|
|
113
|
+
readonly chat: "^4.26.0";
|
|
114
|
+
readonly "@chat-adapter/slack": "^4.26.0";
|
|
115
|
+
readonly "@chat-adapter/discord": "^4.26.0";
|
|
116
|
+
readonly "@chat-adapter/github": "^4.26.0";
|
|
117
|
+
readonly "@chat-adapter/state-memory": "^4.26.0";
|
|
118
|
+
readonly "@chat-adapter/state-redis": "^4.26.0";
|
|
119
|
+
readonly ai: "^6.0.168";
|
|
120
|
+
readonly "@ai-sdk/anthropic": "^3.0.71";
|
|
121
|
+
readonly "@ai-sdk/google": "^3.0.64";
|
|
122
|
+
readonly "@ai-sdk/vue": "^3.0.168";
|
|
123
|
+
readonly "@ai-sdk/svelte": "^4.0.168";
|
|
124
|
+
readonly "@ai-sdk/react": "^3.0.170";
|
|
172
125
|
readonly "@ai-sdk/devtools": "^0.0.15";
|
|
173
126
|
readonly streamdown: "^2.5.0";
|
|
174
127
|
readonly shiki: "^4.0.2";
|
|
175
|
-
readonly mastra: "^1.3
|
|
176
|
-
readonly "@mastra/core": "^1.
|
|
177
|
-
readonly "@voltagent/core": "^2.
|
|
178
|
-
readonly "@voltagent/server-hono": "^2.0.
|
|
128
|
+
readonly mastra: "^1.6.3";
|
|
129
|
+
readonly "@mastra/core": "^1.28.0";
|
|
130
|
+
readonly "@voltagent/core": "^2.7.3";
|
|
131
|
+
readonly "@voltagent/server-hono": "^2.0.13";
|
|
179
132
|
readonly "@voltagent/libsql": "^2.1.2";
|
|
180
133
|
readonly "@voltagent/logger": "^2.0.2";
|
|
181
|
-
readonly "@langchain/langgraph": "^1.2.
|
|
182
|
-
readonly "@langchain/core": "^1.1.
|
|
183
|
-
readonly "@langchain/google-genai": "^2.1.
|
|
184
|
-
readonly "@openai/agents": "^0.8.
|
|
185
|
-
readonly "@google/adk": "^0.
|
|
134
|
+
readonly "@langchain/langgraph": "^1.2.9";
|
|
135
|
+
readonly "@langchain/core": "^1.1.41";
|
|
136
|
+
readonly "@langchain/google-genai": "^2.1.28";
|
|
137
|
+
readonly "@openai/agents": "^0.8.5";
|
|
138
|
+
readonly "@google/adk": "^1.0.0";
|
|
186
139
|
readonly modelfusion: "^0.137.0";
|
|
187
|
-
readonly langchain: "^1.3.
|
|
140
|
+
readonly langchain: "^1.3.4";
|
|
188
141
|
readonly llamaindex: "^0.12.1";
|
|
189
|
-
readonly "@orpc/server": "^1.
|
|
190
|
-
readonly "@orpc/client": "^1.
|
|
191
|
-
readonly "@orpc/openapi": "^1.
|
|
192
|
-
readonly "@orpc/zod": "^1.
|
|
193
|
-
readonly "@orpc/tanstack-query": "^1.
|
|
142
|
+
readonly "@orpc/server": "^1.14.0";
|
|
143
|
+
readonly "@orpc/client": "^1.14.0";
|
|
144
|
+
readonly "@orpc/openapi": "^1.14.0";
|
|
145
|
+
readonly "@orpc/zod": "^1.14.0";
|
|
146
|
+
readonly "@orpc/tanstack-query": "^1.14.0";
|
|
194
147
|
readonly "@ts-rest/core": "^3.52.1";
|
|
195
148
|
readonly "@ts-rest/react-query": "^3.52.1";
|
|
196
149
|
readonly "@ts-rest/serverless": "^3.52.1";
|
|
@@ -200,66 +153,66 @@ declare const dependencyVersionMap: {
|
|
|
200
153
|
readonly graphql: "^16.13.2";
|
|
201
154
|
readonly "@garph/gqty": "^0.4.5";
|
|
202
155
|
readonly gqty: "^3.6.0";
|
|
203
|
-
readonly "@pothos/core": "^4.
|
|
156
|
+
readonly "@pothos/core": "^4.12.0";
|
|
204
157
|
readonly "@trpc/tanstack-react-query": "^11.16.0";
|
|
205
158
|
readonly "@trpc/server": "^11.16.0";
|
|
206
159
|
readonly "@trpc/client": "^11.16.0";
|
|
207
|
-
readonly next: "^16.2.
|
|
208
|
-
readonly convex: "^1.
|
|
160
|
+
readonly next: "^16.2.4";
|
|
161
|
+
readonly convex: "^1.36.1";
|
|
209
162
|
readonly "@convex-dev/react-query": "^0.1.0";
|
|
210
163
|
readonly "@convex-dev/agent": "^0.6.1";
|
|
211
164
|
readonly "@convex-dev/polar": "^0.9.0";
|
|
212
165
|
readonly "convex-svelte": "^0.0.12";
|
|
213
166
|
readonly "convex-nuxt": "0.1.5";
|
|
214
167
|
readonly "convex-vue": "^0.1.5";
|
|
215
|
-
readonly "@convex-dev/better-auth": "^0.
|
|
216
|
-
readonly "@tanstack/svelte-query": "^6.1.
|
|
217
|
-
readonly "@tanstack/svelte-query-devtools": "^6.1.
|
|
218
|
-
readonly "@tanstack/vue-query-devtools": "^6.1.
|
|
219
|
-
readonly "@tanstack/vue-query": "^5.
|
|
220
|
-
readonly "@tanstack/react-query-devtools": "^5.
|
|
221
|
-
readonly "@tanstack/react-query": "^5.
|
|
222
|
-
readonly "@tanstack/react-router-ssr-query": "^1.166.
|
|
223
|
-
readonly "@tanstack/router-cli": "^1.166.
|
|
224
|
-
readonly "@tanstack/solid-query": "^5.
|
|
225
|
-
readonly "@tanstack/solid-query-devtools": "^5.
|
|
226
|
-
readonly "@tanstack/solid-router-devtools": "^1.166.
|
|
227
|
-
readonly "@tanstack/angular-query-experimental": "^5.
|
|
168
|
+
readonly "@convex-dev/better-auth": "^0.12.0";
|
|
169
|
+
readonly "@tanstack/svelte-query": "^6.1.24";
|
|
170
|
+
readonly "@tanstack/svelte-query-devtools": "^6.1.24";
|
|
171
|
+
readonly "@tanstack/vue-query-devtools": "^6.1.24";
|
|
172
|
+
readonly "@tanstack/vue-query": "^5.100.5";
|
|
173
|
+
readonly "@tanstack/react-query-devtools": "^5.100.5";
|
|
174
|
+
readonly "@tanstack/react-query": "^5.100.5";
|
|
175
|
+
readonly "@tanstack/react-router-ssr-query": "^1.166.12";
|
|
176
|
+
readonly "@tanstack/router-cli": "^1.166.37";
|
|
177
|
+
readonly "@tanstack/solid-query": "^5.100.5";
|
|
178
|
+
readonly "@tanstack/solid-query-devtools": "^5.100.5";
|
|
179
|
+
readonly "@tanstack/solid-router-devtools": "^1.166.13";
|
|
180
|
+
readonly "@tanstack/angular-query-experimental": "^5.100.5";
|
|
228
181
|
readonly "@tanstack/react-table": "^8.21.3";
|
|
229
182
|
readonly "@tanstack/vue-table": "^8.21.3";
|
|
230
183
|
readonly "@tanstack/svelte-table": "^8.21.3";
|
|
231
184
|
readonly "@tanstack/solid-table": "^8.21.3";
|
|
232
185
|
readonly "@tanstack/angular-table": "^8.21.4";
|
|
233
|
-
readonly "@tanstack/react-virtual": "^3.13.
|
|
234
|
-
readonly "@tanstack/vue-virtual": "^3.13.
|
|
235
|
-
readonly "@tanstack/svelte-virtual": "^3.13.
|
|
236
|
-
readonly "@tanstack/solid-virtual": "^3.13.
|
|
237
|
-
readonly "@tanstack/angular-virtual": "^
|
|
238
|
-
readonly "@tanstack/db": "^0.6.
|
|
239
|
-
readonly "@tanstack/react-db": "^0.1.
|
|
240
|
-
readonly "@tanstack/vue-db": "^0.0.
|
|
241
|
-
readonly "@tanstack/solid-db": "^0.2.
|
|
242
|
-
readonly "@tanstack/svelte-db": "^0.1.
|
|
243
|
-
readonly "@tanstack/pacer": "^0.
|
|
244
|
-
readonly "@tanstack/react-pacer": "^0.
|
|
245
|
-
readonly "@tanstack/solid-pacer": "^0.
|
|
246
|
-
readonly "@tanstack/ai": "^0.
|
|
247
|
-
readonly "@tanstack/ai-react": "^0.
|
|
248
|
-
readonly "@tanstack/ai-solid": "^0.
|
|
249
|
-
readonly wrangler: "^4.
|
|
250
|
-
readonly "@cloudflare/vite-plugin": "^1.
|
|
251
|
-
readonly "@opennextjs/cloudflare": "^1.
|
|
186
|
+
readonly "@tanstack/react-virtual": "^3.13.24";
|
|
187
|
+
readonly "@tanstack/vue-virtual": "^3.13.24";
|
|
188
|
+
readonly "@tanstack/svelte-virtual": "^3.13.24";
|
|
189
|
+
readonly "@tanstack/solid-virtual": "^3.13.24";
|
|
190
|
+
readonly "@tanstack/angular-virtual": "^5.0.0";
|
|
191
|
+
readonly "@tanstack/db": "^0.6.5";
|
|
192
|
+
readonly "@tanstack/react-db": "^0.1.83";
|
|
193
|
+
readonly "@tanstack/vue-db": "^0.0.116";
|
|
194
|
+
readonly "@tanstack/solid-db": "^0.2.19";
|
|
195
|
+
readonly "@tanstack/svelte-db": "^0.1.82";
|
|
196
|
+
readonly "@tanstack/pacer": "^0.21.0";
|
|
197
|
+
readonly "@tanstack/react-pacer": "^0.22.0";
|
|
198
|
+
readonly "@tanstack/solid-pacer": "^0.21.0";
|
|
199
|
+
readonly "@tanstack/ai": "^0.14.0";
|
|
200
|
+
readonly "@tanstack/ai-react": "^0.8.0";
|
|
201
|
+
readonly "@tanstack/ai-solid": "^0.7.0";
|
|
202
|
+
readonly wrangler: "^4.85.0";
|
|
203
|
+
readonly "@cloudflare/vite-plugin": "^1.33.2";
|
|
204
|
+
readonly "@opennextjs/cloudflare": "^1.19.4";
|
|
252
205
|
readonly "nitro-cloudflare-dev": "^0.2.2";
|
|
253
206
|
readonly "@sveltejs/adapter-cloudflare": "^7.2.8";
|
|
254
207
|
readonly "@sveltejs/adapter-node": "^5.5.4";
|
|
255
|
-
readonly "@cloudflare/workers-types": "^4.
|
|
256
|
-
readonly alchemy: "^0.
|
|
257
|
-
readonly sst: "^4.
|
|
258
|
-
readonly "aws-cdk-lib": "^2.
|
|
208
|
+
readonly "@cloudflare/workers-types": "^4.20260426.1";
|
|
209
|
+
readonly alchemy: "^0.93.2";
|
|
210
|
+
readonly sst: "^4.12.2";
|
|
211
|
+
readonly "aws-cdk-lib": "^2.251.0";
|
|
259
212
|
readonly constructs: "^10.6.0";
|
|
260
|
-
readonly "@opennextjs/aws": "^3.
|
|
261
|
-
readonly dotenv: "^17.4.
|
|
262
|
-
readonly tsdown: "^0.21.
|
|
213
|
+
readonly "@opennextjs/aws": "^3.10.4";
|
|
214
|
+
readonly dotenv: "^17.4.2";
|
|
215
|
+
readonly tsdown: "^0.21.10";
|
|
263
216
|
readonly zod: "^4.3.6";
|
|
264
217
|
readonly "@t3-oss/env-core": "^0.13.11";
|
|
265
218
|
readonly "@t3-oss/env-nextjs": "^0.13.11";
|
|
@@ -268,43 +221,43 @@ declare const dependencyVersionMap: {
|
|
|
268
221
|
readonly "@polar-sh/better-auth": "^1.8.3";
|
|
269
222
|
readonly "@polar-sh/checkout": "^0.2.0";
|
|
270
223
|
readonly "@polar-sh/sdk": "^0.47.0";
|
|
271
|
-
readonly resend: "^6.
|
|
272
|
-
readonly "@react-email/components": "^1.0.
|
|
273
|
-
readonly "react-email": "^
|
|
274
|
-
readonly react: "^19.2.
|
|
224
|
+
readonly resend: "^6.12.2";
|
|
225
|
+
readonly "@react-email/components": "^1.0.12";
|
|
226
|
+
readonly "react-email": "^6.0.0";
|
|
227
|
+
readonly react: "^19.2.5";
|
|
275
228
|
readonly "@types/react": "^19.2.14";
|
|
276
|
-
readonly nodemailer: "^8.0.
|
|
229
|
+
readonly nodemailer: "^8.0.6";
|
|
277
230
|
readonly "@types/nodemailer": "^8.0.0";
|
|
278
231
|
readonly postmark: "^4.0.7";
|
|
279
232
|
readonly "@sendgrid/mail": "^8.1.6";
|
|
280
|
-
readonly "@aws-sdk/client-ses": "^3.
|
|
281
|
-
readonly "@aws-sdk/client-s3": "^3.
|
|
282
|
-
readonly "@aws-sdk/s3-request-presigner": "^3.
|
|
283
|
-
readonly "mailgun.js": "^
|
|
233
|
+
readonly "@aws-sdk/client-ses": "^3.1037.0";
|
|
234
|
+
readonly "@aws-sdk/client-s3": "^3.1037.0";
|
|
235
|
+
readonly "@aws-sdk/s3-request-presigner": "^3.1037.0";
|
|
236
|
+
readonly "mailgun.js": "^13.0.0";
|
|
284
237
|
readonly "form-data": "^4.0.5";
|
|
285
238
|
readonly "@plunk/node": "^3.0.3";
|
|
286
|
-
readonly effect: "^3.21.
|
|
239
|
+
readonly effect: "^3.21.2";
|
|
287
240
|
readonly "@effect/schema": "^0.75.5";
|
|
288
|
-
readonly "@effect/platform": "^0.96.
|
|
241
|
+
readonly "@effect/platform": "^0.96.1";
|
|
289
242
|
readonly "@effect/platform-node": "^0.106.0";
|
|
290
243
|
readonly "@effect/platform-bun": "^0.89.0";
|
|
291
244
|
readonly "@effect/platform-browser": "^0.76.0";
|
|
292
|
-
readonly "@effect/sql": "^0.51.
|
|
245
|
+
readonly "@effect/sql": "^0.51.1";
|
|
293
246
|
readonly "@effect/sql-sqlite-node": "^0.52.0";
|
|
294
247
|
readonly "@effect/sql-sqlite-bun": "^0.52.0";
|
|
295
248
|
readonly "@effect/sql-pg": "^0.52.1";
|
|
296
249
|
readonly "@effect/sql-mysql2": "^0.52.0";
|
|
297
250
|
readonly "@effect/sql-libsql": "^0.41.0";
|
|
298
251
|
readonly "@effect/sql-drizzle": "^0.50.0";
|
|
299
|
-
readonly "@effect/cli": "^0.75.
|
|
252
|
+
readonly "@effect/cli": "^0.75.1";
|
|
300
253
|
readonly "@effect/vitest": "^0.29.0";
|
|
301
254
|
readonly "@effect/opentelemetry": "^0.63.0";
|
|
302
|
-
readonly "@effect/rpc": "^0.75.
|
|
255
|
+
readonly "@effect/rpc": "^0.75.1";
|
|
303
256
|
readonly "@effect/rpc-http": "^0.52.4";
|
|
304
|
-
readonly "@effect/cluster": "^0.58.
|
|
305
|
-
readonly "@effect/workflow": "^0.18.
|
|
257
|
+
readonly "@effect/cluster": "^0.58.2";
|
|
258
|
+
readonly "@effect/workflow": "^0.18.1";
|
|
306
259
|
readonly "@effect/ai": "^0.35.0";
|
|
307
|
-
readonly "@effect/ai-openai": "^0.39.
|
|
260
|
+
readonly "@effect/ai-openai": "^0.39.2";
|
|
308
261
|
readonly "@effect/ai-anthropic": "^0.25.0";
|
|
309
262
|
readonly sass: "^1.99.0";
|
|
310
263
|
readonly less: "^4.6.4";
|
|
@@ -318,23 +271,23 @@ declare const dependencyVersionMap: {
|
|
|
318
271
|
readonly "@radix-ui/react-popover": "^1.1.15";
|
|
319
272
|
readonly "@radix-ui/react-switch": "^1.2.6";
|
|
320
273
|
readonly "@radix-ui/react-tabs": "^1.1.13";
|
|
321
|
-
readonly "@headlessui/react": "^2.2.
|
|
274
|
+
readonly "@headlessui/react": "^2.2.10";
|
|
322
275
|
readonly "@headlessui/vue": "^1.7.23";
|
|
323
276
|
readonly "@park-ui/panda-preset": "^0.43.1";
|
|
324
|
-
readonly "@chakra-ui/react": "^3.
|
|
277
|
+
readonly "@chakra-ui/react": "^3.35.0";
|
|
325
278
|
readonly "@emotion/react": "^11.14.0";
|
|
326
|
-
readonly "@heroui/react": "^3.0.
|
|
279
|
+
readonly "@heroui/react": "^3.0.3";
|
|
327
280
|
readonly "framer-motion": "^12.38.0";
|
|
328
|
-
readonly "@mantine/core": "^9.0
|
|
329
|
-
readonly "@mantine/hooks": "^9.0
|
|
281
|
+
readonly "@mantine/core": "^9.1.0";
|
|
282
|
+
readonly "@mantine/hooks": "^9.1.0";
|
|
330
283
|
readonly "@base-ui-components/react": "^1.0.0-rc.0";
|
|
331
|
-
readonly shadcn: "^4.
|
|
284
|
+
readonly shadcn: "^4.5.0";
|
|
332
285
|
readonly "radix-ui": "^1.4.3";
|
|
333
286
|
readonly "class-variance-authority": "^0.7.1";
|
|
334
287
|
readonly clsx: "^2.1.1";
|
|
335
288
|
readonly "tailwind-merge": "^3.5.0";
|
|
336
289
|
readonly "tw-animate-css": "^1.4.0";
|
|
337
|
-
readonly "lucide-react": "^1.
|
|
290
|
+
readonly "lucide-react": "^1.11.0";
|
|
338
291
|
readonly "@tabler/icons-react": "^3.41.1";
|
|
339
292
|
readonly "@hugeicons/react": "^1.1.6";
|
|
340
293
|
readonly "@hugeicons/core-free-icons": "^4.1.1";
|
|
@@ -351,29 +304,29 @@ declare const dependencyVersionMap: {
|
|
|
351
304
|
readonly "@fontsource/roboto": "^5.2.10";
|
|
352
305
|
readonly "@fontsource/public-sans": "^5.2.7";
|
|
353
306
|
readonly geist: "^1.7.0";
|
|
354
|
-
readonly "@ark-ui/react": "^5.
|
|
355
|
-
readonly "@ark-ui/vue": "^5.
|
|
356
|
-
readonly "@ark-ui/solid": "^5.
|
|
357
|
-
readonly "@ark-ui/svelte": "^5.
|
|
358
|
-
readonly "react-aria-components": "^1.
|
|
307
|
+
readonly "@ark-ui/react": "^5.36.2";
|
|
308
|
+
readonly "@ark-ui/vue": "^5.36.2";
|
|
309
|
+
readonly "@ark-ui/solid": "^5.36.2";
|
|
310
|
+
readonly "@ark-ui/svelte": "^5.21.2";
|
|
311
|
+
readonly "react-aria-components": "^1.17.0";
|
|
359
312
|
readonly daisyui: "^5.5.19";
|
|
360
313
|
readonly "@builder.io/qwik": "^1.19.2";
|
|
361
314
|
readonly "@builder.io/qwik-city": "^1.19.2";
|
|
362
315
|
readonly "@builder.io/qwik-react": "^0.5.8";
|
|
363
|
-
readonly "@angular/core": "^21.2.
|
|
364
|
-
readonly "@angular/common": "^21.2.
|
|
365
|
-
readonly "@angular/compiler": "^21.2.
|
|
366
|
-
readonly "@angular/platform-browser": "^21.2.
|
|
367
|
-
readonly "@angular/platform-browser-dynamic": "^21.2.
|
|
368
|
-
readonly "@angular/router": "^21.2.
|
|
369
|
-
readonly "@angular/forms": "^21.2.
|
|
370
|
-
readonly "@angular/animations": "^21.2.
|
|
371
|
-
readonly "@angular-devkit/build-angular": "^21.2.
|
|
372
|
-
readonly "@angular/cli": "^21.2.
|
|
373
|
-
readonly "@angular/compiler-cli": "^21.2.
|
|
316
|
+
readonly "@angular/core": "^21.2.10";
|
|
317
|
+
readonly "@angular/common": "^21.2.10";
|
|
318
|
+
readonly "@angular/compiler": "^21.2.10";
|
|
319
|
+
readonly "@angular/platform-browser": "^21.2.10";
|
|
320
|
+
readonly "@angular/platform-browser-dynamic": "^21.2.10";
|
|
321
|
+
readonly "@angular/router": "^21.2.10";
|
|
322
|
+
readonly "@angular/forms": "^21.2.10";
|
|
323
|
+
readonly "@angular/animations": "^21.2.10";
|
|
324
|
+
readonly "@angular-devkit/build-angular": "^21.2.8";
|
|
325
|
+
readonly "@angular/cli": "^21.2.8";
|
|
326
|
+
readonly "@angular/compiler-cli": "^21.2.10";
|
|
374
327
|
readonly zustand: "^5.0.12";
|
|
375
|
-
readonly jotai: "^2.19.
|
|
376
|
-
readonly nanostores: "^1.
|
|
328
|
+
readonly jotai: "^2.19.1";
|
|
329
|
+
readonly nanostores: "^1.3.0";
|
|
377
330
|
readonly "@nanostores/react": "^1.1.0";
|
|
378
331
|
readonly "@reduxjs/toolkit": "^2.11.2";
|
|
379
332
|
readonly "react-redux": "^9.2.0";
|
|
@@ -382,8 +335,8 @@ declare const dependencyVersionMap: {
|
|
|
382
335
|
readonly xstate: "^5.30.0";
|
|
383
336
|
readonly "@xstate/react": "^6.1.0";
|
|
384
337
|
readonly valtio: "^2.3.1";
|
|
385
|
-
readonly "@tanstack/store": "^0.
|
|
386
|
-
readonly "@tanstack/react-store": "^0.
|
|
338
|
+
readonly "@tanstack/store": "^0.11.0";
|
|
339
|
+
readonly "@tanstack/react-store": "^0.11.0";
|
|
387
340
|
readonly "@legendapp/state": "^2.1.15";
|
|
388
341
|
readonly valibot: "^1.3.1";
|
|
389
342
|
readonly arktype: "^2.2.0";
|
|
@@ -394,46 +347,46 @@ declare const dependencyVersionMap: {
|
|
|
394
347
|
readonly yup: "^1.7.1";
|
|
395
348
|
readonly "final-form": "^5.0.0";
|
|
396
349
|
readonly "react-final-form": "^7.0.0";
|
|
397
|
-
readonly "@conform-to/react": "^1.
|
|
398
|
-
readonly "@conform-to/zod": "^1.
|
|
350
|
+
readonly "@conform-to/react": "^1.19.0";
|
|
351
|
+
readonly "@conform-to/zod": "^1.19.0";
|
|
399
352
|
readonly "@modular-forms/solid": "^0.25.1";
|
|
400
353
|
readonly "@modular-forms/qwik": "^0.29.1";
|
|
401
|
-
readonly "@tanstack/react-form": "^1.
|
|
402
|
-
readonly "@tanstack/solid-form": "^1.
|
|
354
|
+
readonly "@tanstack/react-form": "^1.29.1";
|
|
355
|
+
readonly "@tanstack/solid-form": "^1.29.1";
|
|
403
356
|
readonly "socket.io": "^4.8.3";
|
|
404
357
|
readonly "socket.io-client": "^4.8.3";
|
|
405
358
|
readonly partykit: "^0.0.115";
|
|
406
|
-
readonly partysocket: "^1.1.
|
|
359
|
+
readonly partysocket: "^1.1.18";
|
|
407
360
|
readonly ably: "^2.21.0";
|
|
408
361
|
readonly pusher: "^5.3.3";
|
|
409
362
|
readonly "pusher-js": "^8.5.0";
|
|
410
|
-
readonly "@liveblocks/client": "^3.
|
|
411
|
-
readonly "@liveblocks/react": "^3.
|
|
412
|
-
readonly "@liveblocks/node": "^3.
|
|
363
|
+
readonly "@liveblocks/client": "^3.18.5";
|
|
364
|
+
readonly "@liveblocks/react": "^3.18.5";
|
|
365
|
+
readonly "@liveblocks/node": "^3.18.5";
|
|
413
366
|
readonly yjs: "^13.6.30";
|
|
414
367
|
readonly "y-websocket": "^3.0.0";
|
|
415
368
|
readonly "y-protocols": "^1.0.7";
|
|
416
369
|
readonly "@y-sweet/sdk": "^0.9.1";
|
|
417
370
|
readonly "@y-sweet/react": "^0.9.1";
|
|
418
|
-
readonly bullmq: "^5.
|
|
371
|
+
readonly bullmq: "^5.76.2";
|
|
419
372
|
readonly ioredis: "^5.10.1";
|
|
420
|
-
readonly "@trigger.dev/sdk": "^4.4.
|
|
421
|
-
readonly inngest: "^4.
|
|
422
|
-
readonly "@temporalio/client": "^1.
|
|
423
|
-
readonly "@temporalio/worker": "^1.
|
|
424
|
-
readonly "@temporalio/workflow": "^1.
|
|
425
|
-
readonly "@temporalio/activity": "^1.
|
|
373
|
+
readonly "@trigger.dev/sdk": "^4.4.4";
|
|
374
|
+
readonly inngest: "^4.2.4";
|
|
375
|
+
readonly "@temporalio/client": "^1.16.1";
|
|
376
|
+
readonly "@temporalio/worker": "^1.16.1";
|
|
377
|
+
readonly "@temporalio/workflow": "^1.16.1";
|
|
378
|
+
readonly "@temporalio/activity": "^1.16.1";
|
|
426
379
|
readonly jest: "^30.3.0";
|
|
427
380
|
readonly "@types/jest": "^30.0.0";
|
|
428
381
|
readonly "ts-jest": "^29.4.9";
|
|
429
382
|
readonly "@jest/globals": "^30.3.0";
|
|
430
383
|
readonly "jest-environment-jsdom": "^30.3.0";
|
|
431
|
-
readonly cypress: "^15.
|
|
432
|
-
readonly vitest: "^4.1.
|
|
433
|
-
readonly "@vitest/ui": "^4.1.
|
|
434
|
-
readonly "@vitest/coverage-v8": "^4.1.
|
|
435
|
-
readonly jsdom: "^29.0
|
|
436
|
-
readonly "happy-dom": "^20.
|
|
384
|
+
readonly cypress: "^15.14.1";
|
|
385
|
+
readonly vitest: "^4.1.5";
|
|
386
|
+
readonly "@vitest/ui": "^4.1.5";
|
|
387
|
+
readonly "@vitest/coverage-v8": "^4.1.5";
|
|
388
|
+
readonly jsdom: "^29.1.0";
|
|
389
|
+
readonly "happy-dom": "^20.9.0";
|
|
437
390
|
readonly "@playwright/test": "^1.59.1";
|
|
438
391
|
readonly playwright: "^1.59.1";
|
|
439
392
|
readonly "@testing-library/dom": "^10.4.1";
|
|
@@ -442,7 +395,7 @@ declare const dependencyVersionMap: {
|
|
|
442
395
|
readonly "@testing-library/svelte": "^5.3.1";
|
|
443
396
|
readonly "@testing-library/jest-dom": "^6.9.1";
|
|
444
397
|
readonly "@testing-library/user-event": "^14.6.1";
|
|
445
|
-
readonly msw: "^2.
|
|
398
|
+
readonly msw: "^2.13.6";
|
|
446
399
|
readonly storybook: "^8.6.18";
|
|
447
400
|
readonly "@storybook/react": "^8.6.18";
|
|
448
401
|
readonly "@storybook/react-vite": "^8.6.18";
|
|
@@ -453,19 +406,19 @@ declare const dependencyVersionMap: {
|
|
|
453
406
|
readonly "@storybook/addon-interactions": "^8.6.18";
|
|
454
407
|
readonly "@storybook/test": "^8.6.18";
|
|
455
408
|
readonly motion: "^12.38.0";
|
|
456
|
-
readonly gsap: "^3.
|
|
409
|
+
readonly gsap: "^3.15.0";
|
|
457
410
|
readonly "@react-spring/web": "^10.0.3";
|
|
458
411
|
readonly "@react-spring/native": "^10.0.3";
|
|
459
412
|
readonly "@formkit/auto-animate": "^0.9.0";
|
|
460
413
|
readonly "lottie-react": "^2.4.1";
|
|
461
414
|
readonly "lottie-react-native": "^7.3.6";
|
|
462
|
-
readonly stripe: "^22.
|
|
463
|
-
readonly "@stripe/stripe-js": "^9.
|
|
464
|
-
readonly "@stripe/react-stripe-js": "^6.
|
|
415
|
+
readonly stripe: "^22.1.0";
|
|
416
|
+
readonly "@stripe/stripe-js": "^9.3.1";
|
|
417
|
+
readonly "@stripe/react-stripe-js": "^6.2.0";
|
|
465
418
|
readonly "@lemonsqueezy/lemonsqueezy.js": "^4.0.0";
|
|
466
|
-
readonly "@paddle/paddle-node-sdk": "^3.
|
|
467
|
-
readonly "@paddle/paddle-js": "^1.6.
|
|
468
|
-
readonly dodopayments: "^2.
|
|
419
|
+
readonly "@paddle/paddle-node-sdk": "^3.8.0";
|
|
420
|
+
readonly "@paddle/paddle-js": "^1.6.4";
|
|
421
|
+
readonly dodopayments: "^2.28.2";
|
|
469
422
|
readonly "dodopayments-checkout": "^1.8.0";
|
|
470
423
|
readonly uploadthing: "^7.7.4";
|
|
471
424
|
readonly "@uploadthing/react": "^7.3.3";
|
|
@@ -506,49 +459,49 @@ declare const dependencyVersionMap: {
|
|
|
506
459
|
readonly "pino-http": "^11.0.0";
|
|
507
460
|
readonly winston: "^3.19.0";
|
|
508
461
|
readonly "@opentelemetry/api": "^1.9.1";
|
|
509
|
-
readonly "@opentelemetry/sdk-node": "^0.
|
|
510
|
-
readonly "@opentelemetry/auto-instrumentations-node": "^0.
|
|
511
|
-
readonly "@opentelemetry/exporter-trace-otlp-http": "^0.
|
|
512
|
-
readonly "@opentelemetry/exporter-metrics-otlp-http": "^0.
|
|
513
|
-
readonly "@opentelemetry/resources": "^2.
|
|
514
|
-
readonly "@opentelemetry/sdk-metrics": "^2.
|
|
462
|
+
readonly "@opentelemetry/sdk-node": "^0.215.0";
|
|
463
|
+
readonly "@opentelemetry/auto-instrumentations-node": "^0.73.0";
|
|
464
|
+
readonly "@opentelemetry/exporter-trace-otlp-http": "^0.215.0";
|
|
465
|
+
readonly "@opentelemetry/exporter-metrics-otlp-http": "^0.215.0";
|
|
466
|
+
readonly "@opentelemetry/resources": "^2.7.0";
|
|
467
|
+
readonly "@opentelemetry/sdk-metrics": "^2.7.0";
|
|
515
468
|
readonly "@opentelemetry/semantic-conventions": "^1.40.0";
|
|
516
|
-
readonly "@sentry/node": "^10.
|
|
517
|
-
readonly "@sentry/profiling-node": "^10.
|
|
469
|
+
readonly "@sentry/node": "^10.50.0";
|
|
470
|
+
readonly "@sentry/profiling-node": "^10.50.0";
|
|
518
471
|
readonly "prom-client": "^15.1.3";
|
|
519
|
-
readonly payload: "^3.
|
|
520
|
-
readonly "@payloadcms/next": "^3.
|
|
521
|
-
readonly "@payloadcms/richtext-lexical": "^3.
|
|
522
|
-
readonly "@payloadcms/db-postgres": "^3.
|
|
523
|
-
readonly "@payloadcms/db-mongodb": "^3.
|
|
524
|
-
readonly "@payloadcms/db-sqlite": "^3.
|
|
525
|
-
readonly "@payloadcms/plugin-seo": "^3.
|
|
526
|
-
readonly "@payloadcms/storage-s3": "^3.
|
|
527
|
-
readonly sanity: "^5.
|
|
528
|
-
readonly "next-sanity": "^12.
|
|
472
|
+
readonly payload: "^3.84.1";
|
|
473
|
+
readonly "@payloadcms/next": "^3.84.1";
|
|
474
|
+
readonly "@payloadcms/richtext-lexical": "^3.84.1";
|
|
475
|
+
readonly "@payloadcms/db-postgres": "^3.84.1";
|
|
476
|
+
readonly "@payloadcms/db-mongodb": "^3.84.1";
|
|
477
|
+
readonly "@payloadcms/db-sqlite": "^3.84.1";
|
|
478
|
+
readonly "@payloadcms/plugin-seo": "^3.84.1";
|
|
479
|
+
readonly "@payloadcms/storage-s3": "^3.84.1";
|
|
480
|
+
readonly sanity: "^5.22.0";
|
|
481
|
+
readonly "next-sanity": "^12.3.0";
|
|
529
482
|
readonly "@sanity/image-url": "^2.1.1";
|
|
530
|
-
readonly "@sanity/vision": "^5.
|
|
531
|
-
readonly "@sanity/client": "^7.
|
|
483
|
+
readonly "@sanity/vision": "^5.22.0";
|
|
484
|
+
readonly "@sanity/client": "^7.22.0";
|
|
532
485
|
readonly "@strapi/client": "^1.6.1";
|
|
533
|
-
readonly qs: "^6.15.
|
|
534
|
-
readonly tinacms: "^3.7.
|
|
535
|
-
readonly "@tinacms/cli": "^2.2.
|
|
486
|
+
readonly qs: "^6.15.1";
|
|
487
|
+
readonly tinacms: "^3.7.3";
|
|
488
|
+
readonly "@tinacms/cli": "^2.2.3";
|
|
536
489
|
readonly "@upstash/redis": "^1.37.0";
|
|
537
|
-
readonly i18next: "^
|
|
538
|
-
readonly "react-i18next": "^
|
|
539
|
-
readonly "i18next-browser-languagedetector": "^8.
|
|
540
|
-
readonly "i18next-http-backend": "^3.0.
|
|
541
|
-
readonly "next-intl": "^4.1
|
|
490
|
+
readonly i18next: "^26.0.8";
|
|
491
|
+
readonly "react-i18next": "^17.0.4";
|
|
492
|
+
readonly "i18next-browser-languagedetector": "^8.2.1";
|
|
493
|
+
readonly "i18next-http-backend": "^3.0.6";
|
|
494
|
+
readonly "next-intl": "^4.9.1";
|
|
542
495
|
readonly meilisearch: "^0.57.0";
|
|
543
|
-
readonly typesense: "^3.0.
|
|
496
|
+
readonly typesense: "^3.0.6";
|
|
544
497
|
readonly "@elastic/elasticsearch": "^9.3.4";
|
|
545
|
-
readonly algoliasearch: "^5.
|
|
498
|
+
readonly algoliasearch: "^5.51.0";
|
|
546
499
|
readonly edgedb: "^2.0.1";
|
|
547
500
|
readonly "@edgedb/generate": "^0.6.1";
|
|
548
501
|
readonly "@growthbook/growthbook": "^1.6.5";
|
|
549
502
|
readonly "@growthbook/growthbook-react": "^1.6.5";
|
|
550
|
-
readonly "posthog-js": "^1.
|
|
551
|
-
readonly "posthog-node": "^5.
|
|
503
|
+
readonly "posthog-js": "^1.372.1";
|
|
504
|
+
readonly "posthog-node": "^5.30.4";
|
|
552
505
|
readonly "plausible-tracker": "^0.3.9";
|
|
553
506
|
};
|
|
554
507
|
type AvailableDependencies = keyof typeof dependencyVersionMap;
|
|
@@ -669,21 +622,5 @@ declare function getDependencyVersionMap(): Record<string, string>;
|
|
|
669
622
|
*/
|
|
670
623
|
declare function listEcosystems(): string[];
|
|
671
624
|
//#endregion
|
|
672
|
-
|
|
673
|
-
declare class PreflightWarning extends Data.Class<{
|
|
674
|
-
readonly ruleId: string;
|
|
675
|
-
readonly featureDisplayName: string;
|
|
676
|
-
readonly featureKey: keyof ProjectConfig;
|
|
677
|
-
readonly selectedValue: string | string[];
|
|
678
|
-
readonly reason: string;
|
|
679
|
-
readonly suggestions: readonly string[];
|
|
680
|
-
}> {}
|
|
681
|
-
declare class PreflightResult extends Data.Class<{
|
|
682
|
-
readonly warnings: readonly PreflightWarning[];
|
|
683
|
-
}> {
|
|
684
|
-
get hasWarnings(): boolean;
|
|
685
|
-
}
|
|
686
|
-
declare const validatePreflightConfig: (config: ProjectConfig) => PreflightResult;
|
|
687
|
-
//#endregion
|
|
688
|
-
export { type AvailableDependencies, CheckResult, ECOSYSTEM_GROUPS, EMBEDDED_TEMPLATES, GeneratorOptions, GeneratorResult, Handlebars, NpmPackageInfo, type PreflightResult, type PreflightWarning, TEMPLATE_COUNT, type TemplateData, UpdateType, VersionInfo, VersionMismatch, VirtualDirectory, VirtualFile, VirtualFileSystem, VirtualFileTree, VirtualNode, checkAllVersions, checkVersionExists, compareVersions, dependencyVersionMap, fetchLatestVersion, findTemplateFilesWithPackage, generateCliReport, generateMarkdownReport, generateUpdatedVersionMap, generateVirtualProject, getDependencyVersionMap, getEcosystem, getUpdateType, groupByEcosystem, isBinaryFile, listEcosystems, parseVersion, processAddonTemplates, processAddonsDeps, processFileContent, processTemplateString, scanTemplateVersions, transformFilename, validatePreflightConfig };
|
|
625
|
+
export { type AvailableDependencies, CheckResult, ECOSYSTEM_GROUPS, EMBEDDED_TEMPLATES, GeneratorOptions, GeneratorResult, Handlebars, NpmPackageInfo, type PreflightResult, type PreflightWarning, TEMPLATE_COUNT, TemplateData, UpdateType, VersionInfo, VersionMismatch, VirtualDirectory, VirtualFile, VirtualFileSystem, VirtualFileTree, VirtualNode, checkAllVersions, checkVersionExists, compareVersions, dependencyVersionMap, fetchLatestVersion, findTemplateFilesWithPackage, generateCliReport, generateMarkdownReport, generateUpdatedVersionMap, generateVirtualProject, getDependencyVersionMap, getEcosystem, getUpdateType, groupByEcosystem, isBinaryFile, listEcosystems, parseVersion, processAddonTemplates, processAddonsDeps, processFileContent, processTemplateString, scanTemplateVersions, transformFilename, validatePreflightConfig };
|
|
689
626
|
//# sourceMappingURL=index.d.mts.map
|