@better-fullstack/template-generator 1.5.4 → 1.6.1
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 +177 -231
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -74179
- package/dist/index.mjs.map +1 -1
- package/dist/preflight-validation-CrqUbe6T.mjs +80533 -0
- package/dist/preflight-validation-CrqUbe6T.mjs.map +1 -0
- package/dist/preflight-validation-N9ifOLE9.d.mts +70 -0
- package/dist/preflight-validation-N9ifOLE9.d.mts.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 +10 -3
- 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,84 +1,37 @@
|
|
|
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-N9ifOLE9.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 = 1000;
|
|
61
|
-
//#endregion
|
|
62
15
|
//#region src/utils/add-deps.d.ts
|
|
63
16
|
declare const dependencyVersionMap: {
|
|
64
17
|
readonly typescript: "^6.0.2";
|
|
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.0.
|
|
18
|
+
readonly "better-auth": "^1.6.2";
|
|
19
|
+
readonly "@better-auth/expo": "^1.6.2";
|
|
20
|
+
readonly "@better-auth/drizzle-adapter": "^1.6.2";
|
|
21
|
+
readonly "@better-auth/prisma-adapter": "^1.6.2";
|
|
22
|
+
readonly "@better-auth/mongo-adapter": "^1.6.2";
|
|
23
|
+
readonly "@clerk/nextjs": "^7.0.12";
|
|
71
24
|
readonly "@clerk/clerk-react": "^5.61.3";
|
|
72
|
-
readonly "@clerk/tanstack-react-start": "^1.0.
|
|
25
|
+
readonly "@clerk/tanstack-react-start": "^1.0.12";
|
|
73
26
|
readonly "@clerk/clerk-expo": "^2.19.31";
|
|
74
27
|
readonly "next-auth": "^4.24.13";
|
|
75
28
|
readonly "@auth/core": "^0.34.3";
|
|
76
29
|
readonly "@auth/drizzle-adapter": "^1.11.1";
|
|
77
30
|
readonly "@auth/prisma-adapter": "^2.11.1";
|
|
78
|
-
readonly "@stackframe/stack": "^2.8.
|
|
79
|
-
readonly "@supabase/supabase-js": "^2.
|
|
80
|
-
readonly "@supabase/ssr": "^0.10.
|
|
81
|
-
readonly "@auth0/nextjs-auth0": "^4.
|
|
31
|
+
readonly "@stackframe/stack": "^2.8.81";
|
|
32
|
+
readonly "@supabase/supabase-js": "^2.103.0";
|
|
33
|
+
readonly "@supabase/ssr": "^0.10.2";
|
|
34
|
+
readonly "@auth0/nextjs-auth0": "^4.17.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";
|
|
@@ -89,105 +42,108 @@ declare const dependencyVersionMap: {
|
|
|
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.
|
|
45
|
+
readonly mysql2: "^3.22.0";
|
|
46
|
+
readonly "@prisma/client": "^7.7.0";
|
|
47
|
+
readonly prisma: "^7.7.0";
|
|
48
|
+
readonly "@prisma/adapter-d1": "^7.7.0";
|
|
49
|
+
readonly "@prisma/adapter-neon": "^7.7.0";
|
|
50
|
+
readonly "@prisma/adapter-mariadb": "^7.7.0";
|
|
51
|
+
readonly "@prisma/adapter-libsql": "^7.7.0";
|
|
52
|
+
readonly "@prisma/adapter-better-sqlite3": "^7.7.0";
|
|
53
|
+
readonly "@prisma/adapter-pg": "^7.7.0";
|
|
54
|
+
readonly "@prisma/adapter-planetscale": "^7.7.0";
|
|
102
55
|
readonly mongoose: "^9.4.1";
|
|
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.10";
|
|
61
|
+
readonly "@mikro-orm/sqlite": "^7.0.10";
|
|
62
|
+
readonly "@mikro-orm/postgresql": "^7.0.10";
|
|
63
|
+
readonly "@mikro-orm/mysql": "^7.0.10";
|
|
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 "@
|
|
119
|
-
readonly
|
|
120
|
-
readonly
|
|
71
|
+
readonly "@tauri-apps/api": "^2.10.1";
|
|
72
|
+
readonly "@biomejs/biome": "^2.4.11";
|
|
73
|
+
readonly oxlint: "^1.59.0";
|
|
74
|
+
readonly oxfmt: "^0.44.0";
|
|
121
75
|
readonly husky: "^9.1.7";
|
|
122
76
|
readonly lefthook: "^2.1.5";
|
|
123
77
|
readonly "lint-staged": "^16.4.0";
|
|
124
78
|
readonly tsx: "^4.21.0";
|
|
125
|
-
readonly "@types/node": "^25.
|
|
126
|
-
readonly "@types/bun": "^1.3.
|
|
79
|
+
readonly "@types/node": "^25.6.0";
|
|
80
|
+
readonly "@types/bun": "^1.3.12";
|
|
127
81
|
readonly "@elysiajs/node": "^1.4.5";
|
|
128
82
|
readonly "@elysiajs/cors": "^1.4.1";
|
|
129
83
|
readonly "@elysiajs/trpc": "^1.1.0";
|
|
130
84
|
readonly elysia: "^1.4.28";
|
|
131
|
-
readonly "@hono/node-server": "^1.19.
|
|
85
|
+
readonly "@hono/node-server": "^1.19.14";
|
|
132
86
|
readonly "@hono/trpc-server": "^0.4.2";
|
|
133
|
-
readonly hono: "^4.12.
|
|
87
|
+
readonly hono: "^4.12.12";
|
|
134
88
|
readonly "@octokit/rest": "^22.0.1";
|
|
135
|
-
readonly "@vercel/sandbox": "^1.9.
|
|
136
|
-
readonly
|
|
89
|
+
readonly "@vercel/sandbox": "^1.9.3";
|
|
90
|
+
readonly vercel: "^50.44.0";
|
|
91
|
+
readonly "@sveltejs/adapter-vercel": "^6.3.3";
|
|
92
|
+
readonly "bash-tool": "^1.3.16";
|
|
137
93
|
readonly cors: "^2.8.6";
|
|
138
94
|
readonly express: "^5.2.1";
|
|
139
95
|
readonly "@types/express": "^5.0.6";
|
|
140
96
|
readonly "@types/cors": "^2.8.19";
|
|
141
97
|
readonly fastify: "^5.8.4";
|
|
142
98
|
readonly "@fastify/cors": "^11.2.0";
|
|
143
|
-
readonly "@nestjs/core": "^11.1.
|
|
144
|
-
readonly "@nestjs/common": "^11.1.
|
|
145
|
-
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";
|
|
146
102
|
readonly "reflect-metadata": "^0.2.2";
|
|
147
103
|
readonly rxjs: "^7.8.2";
|
|
148
|
-
readonly "encore.dev": "^1.56.
|
|
149
|
-
readonly "@adonisjs/core": "^7.3.
|
|
104
|
+
readonly "encore.dev": "^1.56.5";
|
|
105
|
+
readonly "@adonisjs/core": "^7.3.1";
|
|
150
106
|
readonly "@adonisjs/cors": "^3.0.0";
|
|
151
107
|
readonly "@adonisjs/assembler": "^8.4.0";
|
|
152
108
|
readonly "@adonisjs/tsconfig": "^2.0.0";
|
|
153
109
|
readonly nitropack: "^2.13.3";
|
|
154
110
|
readonly h3: "^2.0.0";
|
|
155
111
|
readonly fets: "^0.8.6";
|
|
156
|
-
readonly turbo: "^2.9.
|
|
157
|
-
readonly chat: "^4.
|
|
158
|
-
readonly "@chat-adapter/slack": "^4.
|
|
159
|
-
readonly "@chat-adapter/discord": "^4.
|
|
160
|
-
readonly "@chat-adapter/github": "^4.
|
|
161
|
-
readonly "@chat-adapter/state-memory": "^4.
|
|
162
|
-
readonly "@chat-adapter/state-redis": "^4.
|
|
163
|
-
readonly ai: "^6.0.
|
|
164
|
-
readonly "@ai-sdk/anthropic": "^3.0.
|
|
165
|
-
readonly "@ai-sdk/google": "^3.0.
|
|
166
|
-
readonly "@ai-sdk/vue": "^3.0.
|
|
167
|
-
readonly "@ai-sdk/svelte": "^4.0.
|
|
168
|
-
readonly "@ai-sdk/react": "^3.0.
|
|
112
|
+
readonly turbo: "^2.9.6";
|
|
113
|
+
readonly chat: "^4.25.0";
|
|
114
|
+
readonly "@chat-adapter/slack": "^4.25.0";
|
|
115
|
+
readonly "@chat-adapter/discord": "^4.25.0";
|
|
116
|
+
readonly "@chat-adapter/github": "^4.25.0";
|
|
117
|
+
readonly "@chat-adapter/state-memory": "^4.25.0";
|
|
118
|
+
readonly "@chat-adapter/state-redis": "^4.25.0";
|
|
119
|
+
readonly ai: "^6.0.158";
|
|
120
|
+
readonly "@ai-sdk/anthropic": "^3.0.69";
|
|
121
|
+
readonly "@ai-sdk/google": "^3.0.62";
|
|
122
|
+
readonly "@ai-sdk/vue": "^3.0.158";
|
|
123
|
+
readonly "@ai-sdk/svelte": "^4.0.158";
|
|
124
|
+
readonly "@ai-sdk/react": "^3.0.160";
|
|
169
125
|
readonly "@ai-sdk/devtools": "^0.0.15";
|
|
170
126
|
readonly streamdown: "^2.5.0";
|
|
171
127
|
readonly shiki: "^4.0.2";
|
|
172
|
-
readonly mastra: "^1.
|
|
173
|
-
readonly "@mastra/core": "^1.
|
|
174
|
-
readonly "@voltagent/core": "^2.
|
|
175
|
-
readonly "@voltagent/server-hono": "^2.0.
|
|
128
|
+
readonly mastra: "^1.5.0";
|
|
129
|
+
readonly "@mastra/core": "^1.24.1";
|
|
130
|
+
readonly "@voltagent/core": "^2.7.0";
|
|
131
|
+
readonly "@voltagent/server-hono": "^2.0.9";
|
|
176
132
|
readonly "@voltagent/libsql": "^2.1.2";
|
|
177
133
|
readonly "@voltagent/logger": "^2.0.2";
|
|
178
|
-
readonly "@langchain/langgraph": "^1.2.
|
|
134
|
+
readonly "@langchain/langgraph": "^1.2.8";
|
|
179
135
|
readonly "@langchain/core": "^1.1.39";
|
|
180
136
|
readonly "@langchain/google-genai": "^2.1.26";
|
|
181
137
|
readonly "@openai/agents": "^0.8.3";
|
|
182
138
|
readonly "@google/adk": "^0.6.1";
|
|
183
139
|
readonly modelfusion: "^0.137.0";
|
|
184
|
-
readonly langchain: "^1.3.
|
|
140
|
+
readonly langchain: "^1.3.1";
|
|
185
141
|
readonly llamaindex: "^0.12.1";
|
|
186
|
-
readonly "@orpc/server": "^1.13.
|
|
187
|
-
readonly "@orpc/client": "^1.13.
|
|
188
|
-
readonly "@orpc/openapi": "^1.13.
|
|
189
|
-
readonly "@orpc/zod": "^1.13.
|
|
190
|
-
readonly "@orpc/tanstack-query": "^1.13.
|
|
142
|
+
readonly "@orpc/server": "^1.13.14";
|
|
143
|
+
readonly "@orpc/client": "^1.13.14";
|
|
144
|
+
readonly "@orpc/openapi": "^1.13.14";
|
|
145
|
+
readonly "@orpc/zod": "^1.13.14";
|
|
146
|
+
readonly "@orpc/tanstack-query": "^1.13.14";
|
|
191
147
|
readonly "@ts-rest/core": "^3.52.1";
|
|
192
148
|
readonly "@ts-rest/react-query": "^3.52.1";
|
|
193
149
|
readonly "@ts-rest/serverless": "^3.52.1";
|
|
@@ -197,11 +153,12 @@ declare const dependencyVersionMap: {
|
|
|
197
153
|
readonly graphql: "^16.13.2";
|
|
198
154
|
readonly "@garph/gqty": "^0.4.5";
|
|
199
155
|
readonly gqty: "^3.6.0";
|
|
156
|
+
readonly "@pothos/core": "^4.12.0";
|
|
200
157
|
readonly "@trpc/tanstack-react-query": "^11.16.0";
|
|
201
158
|
readonly "@trpc/server": "^11.16.0";
|
|
202
159
|
readonly "@trpc/client": "^11.16.0";
|
|
203
|
-
readonly next: "^16.2.
|
|
204
|
-
readonly convex: "^1.
|
|
160
|
+
readonly next: "^16.2.3";
|
|
161
|
+
readonly convex: "^1.35.1";
|
|
205
162
|
readonly "@convex-dev/react-query": "^0.1.0";
|
|
206
163
|
readonly "@convex-dev/agent": "^0.6.1";
|
|
207
164
|
readonly "@convex-dev/polar": "^0.9.0";
|
|
@@ -209,18 +166,18 @@ declare const dependencyVersionMap: {
|
|
|
209
166
|
readonly "convex-nuxt": "0.1.5";
|
|
210
167
|
readonly "convex-vue": "^0.1.5";
|
|
211
168
|
readonly "@convex-dev/better-auth": "^0.11.4";
|
|
212
|
-
readonly "@tanstack/svelte-query": "^6.1.
|
|
213
|
-
readonly "@tanstack/svelte-query-devtools": "^6.1.
|
|
214
|
-
readonly "@tanstack/vue-query-devtools": "^6.1.
|
|
215
|
-
readonly "@tanstack/vue-query": "^5.
|
|
216
|
-
readonly "@tanstack/react-query-devtools": "^5.
|
|
217
|
-
readonly "@tanstack/react-query": "^5.
|
|
218
|
-
readonly "@tanstack/react-router-ssr-query": "^1.166.
|
|
219
|
-
readonly "@tanstack/router-cli": "^1.166.
|
|
220
|
-
readonly "@tanstack/solid-query": "^5.
|
|
221
|
-
readonly "@tanstack/solid-query-devtools": "^5.
|
|
222
|
-
readonly "@tanstack/solid-router-devtools": "^1.166.
|
|
223
|
-
readonly "@tanstack/angular-query-experimental": "^5.
|
|
169
|
+
readonly "@tanstack/svelte-query": "^6.1.16";
|
|
170
|
+
readonly "@tanstack/svelte-query-devtools": "^6.1.16";
|
|
171
|
+
readonly "@tanstack/vue-query-devtools": "^6.1.16";
|
|
172
|
+
readonly "@tanstack/vue-query": "^5.99.0";
|
|
173
|
+
readonly "@tanstack/react-query-devtools": "^5.99.0";
|
|
174
|
+
readonly "@tanstack/react-query": "^5.99.0";
|
|
175
|
+
readonly "@tanstack/react-router-ssr-query": "^1.166.11";
|
|
176
|
+
readonly "@tanstack/router-cli": "^1.166.31";
|
|
177
|
+
readonly "@tanstack/solid-query": "^5.99.0";
|
|
178
|
+
readonly "@tanstack/solid-query-devtools": "^5.99.0";
|
|
179
|
+
readonly "@tanstack/solid-router-devtools": "^1.166.13";
|
|
180
|
+
readonly "@tanstack/angular-query-experimental": "^5.99.0";
|
|
224
181
|
readonly "@tanstack/react-table": "^8.21.3";
|
|
225
182
|
readonly "@tanstack/vue-table": "^8.21.3";
|
|
226
183
|
readonly "@tanstack/svelte-table": "^8.21.3";
|
|
@@ -231,30 +188,30 @@ declare const dependencyVersionMap: {
|
|
|
231
188
|
readonly "@tanstack/svelte-virtual": "^3.13.23";
|
|
232
189
|
readonly "@tanstack/solid-virtual": "^3.13.23";
|
|
233
190
|
readonly "@tanstack/angular-virtual": "^4.0.11";
|
|
234
|
-
readonly "@tanstack/db": "^0.6.
|
|
235
|
-
readonly "@tanstack/react-db": "^0.1.
|
|
236
|
-
readonly "@tanstack/vue-db": "^0.0.
|
|
237
|
-
readonly "@tanstack/solid-db": "^0.2.
|
|
238
|
-
readonly "@tanstack/svelte-db": "^0.1.
|
|
191
|
+
readonly "@tanstack/db": "^0.6.4";
|
|
192
|
+
readonly "@tanstack/react-db": "^0.1.82";
|
|
193
|
+
readonly "@tanstack/vue-db": "^0.0.115";
|
|
194
|
+
readonly "@tanstack/solid-db": "^0.2.18";
|
|
195
|
+
readonly "@tanstack/svelte-db": "^0.1.81";
|
|
239
196
|
readonly "@tanstack/pacer": "^0.20.1";
|
|
240
197
|
readonly "@tanstack/react-pacer": "^0.21.1";
|
|
241
198
|
readonly "@tanstack/solid-pacer": "^0.20.1";
|
|
242
|
-
readonly "@tanstack/ai": "^0.10.
|
|
243
|
-
readonly "@tanstack/ai-react": "^0.7.
|
|
244
|
-
readonly "@tanstack/ai-solid": "^0.6.
|
|
245
|
-
readonly wrangler: "^4.
|
|
246
|
-
readonly "@cloudflare/vite-plugin": "^1.31.
|
|
247
|
-
readonly "@opennextjs/cloudflare": "^1.
|
|
199
|
+
readonly "@tanstack/ai": "^0.10.2";
|
|
200
|
+
readonly "@tanstack/ai-react": "^0.7.10";
|
|
201
|
+
readonly "@tanstack/ai-solid": "^0.6.14";
|
|
202
|
+
readonly wrangler: "^4.81.1";
|
|
203
|
+
readonly "@cloudflare/vite-plugin": "^1.31.2";
|
|
204
|
+
readonly "@opennextjs/cloudflare": "^1.19.1";
|
|
248
205
|
readonly "nitro-cloudflare-dev": "^0.2.2";
|
|
249
206
|
readonly "@sveltejs/adapter-cloudflare": "^7.2.8";
|
|
250
207
|
readonly "@sveltejs/adapter-node": "^5.5.4";
|
|
251
|
-
readonly "@cloudflare/workers-types": "^4.
|
|
252
|
-
readonly alchemy: "^0.
|
|
253
|
-
readonly sst: "^4.
|
|
208
|
+
readonly "@cloudflare/workers-types": "^4.20260413.1";
|
|
209
|
+
readonly alchemy: "^0.91.2";
|
|
210
|
+
readonly sst: "^4.7.1";
|
|
254
211
|
readonly "aws-cdk-lib": "^2.248.0";
|
|
255
212
|
readonly constructs: "^10.6.0";
|
|
256
|
-
readonly "@opennextjs/aws": "^3.
|
|
257
|
-
readonly dotenv: "^17.4.
|
|
213
|
+
readonly "@opennextjs/aws": "^3.10.1";
|
|
214
|
+
readonly dotenv: "^17.4.2";
|
|
258
215
|
readonly tsdown: "^0.21.7";
|
|
259
216
|
readonly zod: "^4.3.6";
|
|
260
217
|
readonly "@t3-oss/env-core": "^0.13.11";
|
|
@@ -265,17 +222,17 @@ declare const dependencyVersionMap: {
|
|
|
265
222
|
readonly "@polar-sh/checkout": "^0.2.0";
|
|
266
223
|
readonly "@polar-sh/sdk": "^0.47.0";
|
|
267
224
|
readonly resend: "^6.10.0";
|
|
268
|
-
readonly "@react-email/components": "^1.0.
|
|
225
|
+
readonly "@react-email/components": "^1.0.12";
|
|
269
226
|
readonly "react-email": "^5.2.10";
|
|
270
|
-
readonly react: "^19.2.
|
|
227
|
+
readonly react: "^19.2.5";
|
|
271
228
|
readonly "@types/react": "^19.2.14";
|
|
272
|
-
readonly nodemailer: "^8.0.
|
|
229
|
+
readonly nodemailer: "^8.0.5";
|
|
273
230
|
readonly "@types/nodemailer": "^8.0.0";
|
|
274
231
|
readonly postmark: "^4.0.7";
|
|
275
232
|
readonly "@sendgrid/mail": "^8.1.6";
|
|
276
|
-
readonly "@aws-sdk/client-ses": "^3.
|
|
277
|
-
readonly "@aws-sdk/client-s3": "^3.
|
|
278
|
-
readonly "@aws-sdk/s3-request-presigner": "^3.
|
|
233
|
+
readonly "@aws-sdk/client-ses": "^3.1029.0";
|
|
234
|
+
readonly "@aws-sdk/client-s3": "^3.1029.0";
|
|
235
|
+
readonly "@aws-sdk/s3-request-presigner": "^3.1029.0";
|
|
279
236
|
readonly "mailgun.js": "^12.7.1";
|
|
280
237
|
readonly "form-data": "^4.0.5";
|
|
281
238
|
readonly "@plunk/node": "^3.0.3";
|
|
@@ -314,23 +271,23 @@ declare const dependencyVersionMap: {
|
|
|
314
271
|
readonly "@radix-ui/react-popover": "^1.1.15";
|
|
315
272
|
readonly "@radix-ui/react-switch": "^1.2.6";
|
|
316
273
|
readonly "@radix-ui/react-tabs": "^1.1.13";
|
|
317
|
-
readonly "@headlessui/react": "^2.2.
|
|
274
|
+
readonly "@headlessui/react": "^2.2.10";
|
|
318
275
|
readonly "@headlessui/vue": "^1.7.23";
|
|
319
276
|
readonly "@park-ui/panda-preset": "^0.43.1";
|
|
320
277
|
readonly "@chakra-ui/react": "^3.34.0";
|
|
321
278
|
readonly "@emotion/react": "^11.14.0";
|
|
322
279
|
readonly "@heroui/react": "^3.0.2";
|
|
323
280
|
readonly "framer-motion": "^12.38.0";
|
|
324
|
-
readonly "@mantine/core": "^9.0.
|
|
325
|
-
readonly "@mantine/hooks": "^9.0.
|
|
281
|
+
readonly "@mantine/core": "^9.0.2";
|
|
282
|
+
readonly "@mantine/hooks": "^9.0.2";
|
|
326
283
|
readonly "@base-ui-components/react": "^1.0.0-rc.0";
|
|
327
|
-
readonly shadcn: "^4.
|
|
284
|
+
readonly shadcn: "^4.2.0";
|
|
328
285
|
readonly "radix-ui": "^1.4.3";
|
|
329
286
|
readonly "class-variance-authority": "^0.7.1";
|
|
330
287
|
readonly clsx: "^2.1.1";
|
|
331
288
|
readonly "tailwind-merge": "^3.5.0";
|
|
332
289
|
readonly "tw-animate-css": "^1.4.0";
|
|
333
|
-
readonly "lucide-react": "^1.
|
|
290
|
+
readonly "lucide-react": "^1.8.0";
|
|
334
291
|
readonly "@tabler/icons-react": "^3.41.1";
|
|
335
292
|
readonly "@hugeicons/react": "^1.1.6";
|
|
336
293
|
readonly "@hugeicons/core-free-icons": "^4.1.1";
|
|
@@ -347,28 +304,28 @@ declare const dependencyVersionMap: {
|
|
|
347
304
|
readonly "@fontsource/roboto": "^5.2.10";
|
|
348
305
|
readonly "@fontsource/public-sans": "^5.2.7";
|
|
349
306
|
readonly geist: "^1.7.0";
|
|
350
|
-
readonly "@ark-ui/react": "^5.
|
|
351
|
-
readonly "@ark-ui/vue": "^5.
|
|
352
|
-
readonly "@ark-ui/solid": "^5.
|
|
353
|
-
readonly "@ark-ui/svelte": "^5.
|
|
307
|
+
readonly "@ark-ui/react": "^5.36.0";
|
|
308
|
+
readonly "@ark-ui/vue": "^5.36.0";
|
|
309
|
+
readonly "@ark-ui/solid": "^5.36.0";
|
|
310
|
+
readonly "@ark-ui/svelte": "^5.21.0";
|
|
354
311
|
readonly "react-aria-components": "^1.16.0";
|
|
355
312
|
readonly daisyui: "^5.5.19";
|
|
356
313
|
readonly "@builder.io/qwik": "^1.19.2";
|
|
357
314
|
readonly "@builder.io/qwik-city": "^1.19.2";
|
|
358
315
|
readonly "@builder.io/qwik-react": "^0.5.8";
|
|
359
|
-
readonly "@angular/core": "^21.2.
|
|
360
|
-
readonly "@angular/common": "^21.2.
|
|
361
|
-
readonly "@angular/compiler": "^21.2.
|
|
362
|
-
readonly "@angular/platform-browser": "^21.2.
|
|
363
|
-
readonly "@angular/platform-browser-dynamic": "^21.2.
|
|
364
|
-
readonly "@angular/router": "^21.2.
|
|
365
|
-
readonly "@angular/forms": "^21.2.
|
|
366
|
-
readonly "@angular/animations": "^21.2.
|
|
367
|
-
readonly "@angular-devkit/build-angular": "^21.2.
|
|
368
|
-
readonly "@angular/cli": "^21.2.
|
|
369
|
-
readonly "@angular/compiler-cli": "^21.2.
|
|
316
|
+
readonly "@angular/core": "^21.2.8";
|
|
317
|
+
readonly "@angular/common": "^21.2.8";
|
|
318
|
+
readonly "@angular/compiler": "^21.2.8";
|
|
319
|
+
readonly "@angular/platform-browser": "^21.2.8";
|
|
320
|
+
readonly "@angular/platform-browser-dynamic": "^21.2.8";
|
|
321
|
+
readonly "@angular/router": "^21.2.8";
|
|
322
|
+
readonly "@angular/forms": "^21.2.8";
|
|
323
|
+
readonly "@angular/animations": "^21.2.8";
|
|
324
|
+
readonly "@angular-devkit/build-angular": "^21.2.7";
|
|
325
|
+
readonly "@angular/cli": "^21.2.7";
|
|
326
|
+
readonly "@angular/compiler-cli": "^21.2.8";
|
|
370
327
|
readonly zustand: "^5.0.12";
|
|
371
|
-
readonly jotai: "^2.19.
|
|
328
|
+
readonly jotai: "^2.19.1";
|
|
372
329
|
readonly nanostores: "^1.2.0";
|
|
373
330
|
readonly "@nanostores/react": "^1.1.0";
|
|
374
331
|
readonly "@reduxjs/toolkit": "^2.11.2";
|
|
@@ -378,8 +335,8 @@ declare const dependencyVersionMap: {
|
|
|
378
335
|
readonly xstate: "^5.30.0";
|
|
379
336
|
readonly "@xstate/react": "^6.1.0";
|
|
380
337
|
readonly valtio: "^2.3.1";
|
|
381
|
-
readonly "@tanstack/store": "^0.
|
|
382
|
-
readonly "@tanstack/react-store": "^0.
|
|
338
|
+
readonly "@tanstack/store": "^0.10.0";
|
|
339
|
+
readonly "@tanstack/react-store": "^0.10.0";
|
|
383
340
|
readonly "@legendapp/state": "^2.1.15";
|
|
384
341
|
readonly valibot: "^1.3.1";
|
|
385
342
|
readonly arktype: "^2.2.0";
|
|
@@ -394,8 +351,8 @@ declare const dependencyVersionMap: {
|
|
|
394
351
|
readonly "@conform-to/zod": "^1.18.0";
|
|
395
352
|
readonly "@modular-forms/solid": "^0.25.1";
|
|
396
353
|
readonly "@modular-forms/qwik": "^0.29.1";
|
|
397
|
-
readonly "@tanstack/react-form": "^1.
|
|
398
|
-
readonly "@tanstack/solid-form": "^1.
|
|
354
|
+
readonly "@tanstack/react-form": "^1.29.0";
|
|
355
|
+
readonly "@tanstack/solid-form": "^1.29.0";
|
|
399
356
|
readonly "socket.io": "^4.8.3";
|
|
400
357
|
readonly "socket.io-client": "^4.8.3";
|
|
401
358
|
readonly partykit: "^0.0.115";
|
|
@@ -403,32 +360,32 @@ declare const dependencyVersionMap: {
|
|
|
403
360
|
readonly ably: "^2.21.0";
|
|
404
361
|
readonly pusher: "^5.3.3";
|
|
405
362
|
readonly "pusher-js": "^8.5.0";
|
|
406
|
-
readonly "@liveblocks/client": "^3.
|
|
407
|
-
readonly "@liveblocks/react": "^3.
|
|
408
|
-
readonly "@liveblocks/node": "^3.
|
|
363
|
+
readonly "@liveblocks/client": "^3.18.0";
|
|
364
|
+
readonly "@liveblocks/react": "^3.18.0";
|
|
365
|
+
readonly "@liveblocks/node": "^3.18.0";
|
|
409
366
|
readonly yjs: "^13.6.30";
|
|
410
367
|
readonly "y-websocket": "^3.0.0";
|
|
411
368
|
readonly "y-protocols": "^1.0.7";
|
|
412
369
|
readonly "@y-sweet/sdk": "^0.9.1";
|
|
413
370
|
readonly "@y-sweet/react": "^0.9.1";
|
|
414
|
-
readonly bullmq: "^5.73.
|
|
371
|
+
readonly bullmq: "^5.73.5";
|
|
415
372
|
readonly ioredis: "^5.10.1";
|
|
416
373
|
readonly "@trigger.dev/sdk": "^4.4.3";
|
|
417
|
-
readonly inngest: "^4.1
|
|
418
|
-
readonly "@temporalio/client": "^1.
|
|
419
|
-
readonly "@temporalio/worker": "^1.
|
|
420
|
-
readonly "@temporalio/workflow": "^1.
|
|
421
|
-
readonly "@temporalio/activity": "^1.
|
|
374
|
+
readonly inngest: "^4.2.1";
|
|
375
|
+
readonly "@temporalio/client": "^1.16.0";
|
|
376
|
+
readonly "@temporalio/worker": "^1.16.0";
|
|
377
|
+
readonly "@temporalio/workflow": "^1.16.0";
|
|
378
|
+
readonly "@temporalio/activity": "^1.16.0";
|
|
422
379
|
readonly jest: "^30.3.0";
|
|
423
380
|
readonly "@types/jest": "^30.0.0";
|
|
424
381
|
readonly "ts-jest": "^29.4.9";
|
|
425
382
|
readonly "@jest/globals": "^30.3.0";
|
|
426
383
|
readonly "jest-environment-jsdom": "^30.3.0";
|
|
427
|
-
readonly cypress: "^15.13.
|
|
428
|
-
readonly vitest: "^4.1.
|
|
429
|
-
readonly "@vitest/ui": "^4.1.
|
|
430
|
-
readonly "@vitest/coverage-v8": "^4.1.
|
|
431
|
-
readonly jsdom: "^29.0.
|
|
384
|
+
readonly cypress: "^15.13.1";
|
|
385
|
+
readonly vitest: "^4.1.4";
|
|
386
|
+
readonly "@vitest/ui": "^4.1.4";
|
|
387
|
+
readonly "@vitest/coverage-v8": "^4.1.4";
|
|
388
|
+
readonly jsdom: "^29.0.2";
|
|
432
389
|
readonly "happy-dom": "^20.8.9";
|
|
433
390
|
readonly "@playwright/test": "^1.59.1";
|
|
434
391
|
readonly playwright: "^1.59.1";
|
|
@@ -438,7 +395,7 @@ declare const dependencyVersionMap: {
|
|
|
438
395
|
readonly "@testing-library/svelte": "^5.3.1";
|
|
439
396
|
readonly "@testing-library/jest-dom": "^6.9.1";
|
|
440
397
|
readonly "@testing-library/user-event": "^14.6.1";
|
|
441
|
-
readonly msw: "^2.
|
|
398
|
+
readonly msw: "^2.13.2";
|
|
442
399
|
readonly storybook: "^8.6.18";
|
|
443
400
|
readonly "@storybook/react": "^8.6.18";
|
|
444
401
|
readonly "@storybook/react-vite": "^8.6.18";
|
|
@@ -455,13 +412,13 @@ declare const dependencyVersionMap: {
|
|
|
455
412
|
readonly "@formkit/auto-animate": "^0.9.0";
|
|
456
413
|
readonly "lottie-react": "^2.4.1";
|
|
457
414
|
readonly "lottie-react-native": "^7.3.6";
|
|
458
|
-
readonly stripe: "^22.0.
|
|
459
|
-
readonly "@stripe/stripe-js": "^9.0
|
|
415
|
+
readonly stripe: "^22.0.1";
|
|
416
|
+
readonly "@stripe/stripe-js": "^9.1.0";
|
|
460
417
|
readonly "@stripe/react-stripe-js": "^6.1.0";
|
|
461
418
|
readonly "@lemonsqueezy/lemonsqueezy.js": "^4.0.0";
|
|
462
|
-
readonly "@paddle/paddle-node-sdk": "^3.
|
|
419
|
+
readonly "@paddle/paddle-node-sdk": "^3.7.0";
|
|
463
420
|
readonly "@paddle/paddle-js": "^1.6.2";
|
|
464
|
-
readonly dodopayments: "^2.
|
|
421
|
+
readonly dodopayments: "^2.27.0";
|
|
465
422
|
readonly "dodopayments-checkout": "^1.8.0";
|
|
466
423
|
readonly uploadthing: "^7.7.4";
|
|
467
424
|
readonly "@uploadthing/react": "^7.3.3";
|
|
@@ -509,37 +466,42 @@ declare const dependencyVersionMap: {
|
|
|
509
466
|
readonly "@opentelemetry/resources": "^2.6.1";
|
|
510
467
|
readonly "@opentelemetry/sdk-metrics": "^2.6.1";
|
|
511
468
|
readonly "@opentelemetry/semantic-conventions": "^1.40.0";
|
|
512
|
-
readonly "@sentry/node": "^10.
|
|
513
|
-
readonly "@sentry/profiling-node": "^10.
|
|
469
|
+
readonly "@sentry/node": "^10.48.0";
|
|
470
|
+
readonly "@sentry/profiling-node": "^10.48.0";
|
|
514
471
|
readonly "prom-client": "^15.1.3";
|
|
515
|
-
readonly payload: "^3.
|
|
516
|
-
readonly "@payloadcms/next": "^3.
|
|
517
|
-
readonly "@payloadcms/richtext-lexical": "^3.
|
|
518
|
-
readonly "@payloadcms/db-postgres": "^3.
|
|
519
|
-
readonly "@payloadcms/db-mongodb": "^3.
|
|
520
|
-
readonly "@payloadcms/db-sqlite": "^3.
|
|
521
|
-
readonly "@payloadcms/plugin-seo": "^3.
|
|
522
|
-
readonly "@payloadcms/storage-s3": "^3.
|
|
523
|
-
readonly sanity: "^5.
|
|
524
|
-
readonly "next-sanity": "^12.2.
|
|
472
|
+
readonly payload: "^3.82.1";
|
|
473
|
+
readonly "@payloadcms/next": "^3.82.1";
|
|
474
|
+
readonly "@payloadcms/richtext-lexical": "^3.82.1";
|
|
475
|
+
readonly "@payloadcms/db-postgres": "^3.82.1";
|
|
476
|
+
readonly "@payloadcms/db-mongodb": "^3.82.1";
|
|
477
|
+
readonly "@payloadcms/db-sqlite": "^3.82.1";
|
|
478
|
+
readonly "@payloadcms/plugin-seo": "^3.82.1";
|
|
479
|
+
readonly "@payloadcms/storage-s3": "^3.82.1";
|
|
480
|
+
readonly sanity: "^5.20.0";
|
|
481
|
+
readonly "next-sanity": "^12.2.2";
|
|
525
482
|
readonly "@sanity/image-url": "^2.1.1";
|
|
526
|
-
readonly "@sanity/vision": "^5.
|
|
483
|
+
readonly "@sanity/vision": "^5.20.0";
|
|
527
484
|
readonly "@sanity/client": "^7.20.0";
|
|
528
485
|
readonly "@strapi/client": "^1.6.1";
|
|
529
|
-
readonly qs: "^6.15.
|
|
530
|
-
readonly tinacms: "^3.7.
|
|
531
|
-
readonly "@tinacms/cli": "^2.2.
|
|
486
|
+
readonly qs: "^6.15.1";
|
|
487
|
+
readonly tinacms: "^3.7.2";
|
|
488
|
+
readonly "@tinacms/cli": "^2.2.2";
|
|
532
489
|
readonly "@upstash/redis": "^1.37.0";
|
|
490
|
+
readonly i18next: "^26.0.4";
|
|
491
|
+
readonly "react-i18next": "^17.0.2";
|
|
492
|
+
readonly "i18next-browser-languagedetector": "^8.2.1";
|
|
493
|
+
readonly "i18next-http-backend": "^3.0.4";
|
|
494
|
+
readonly "next-intl": "^4.9.1";
|
|
533
495
|
readonly meilisearch: "^0.57.0";
|
|
534
496
|
readonly typesense: "^3.0.5";
|
|
535
497
|
readonly "@elastic/elasticsearch": "^9.3.4";
|
|
536
|
-
readonly algoliasearch: "^5.
|
|
498
|
+
readonly algoliasearch: "^5.50.1";
|
|
537
499
|
readonly edgedb: "^2.0.1";
|
|
538
500
|
readonly "@edgedb/generate": "^0.6.1";
|
|
539
501
|
readonly "@growthbook/growthbook": "^1.6.5";
|
|
540
502
|
readonly "@growthbook/growthbook-react": "^1.6.5";
|
|
541
|
-
readonly "posthog-js": "^1.
|
|
542
|
-
readonly "posthog-node": "^5.
|
|
503
|
+
readonly "posthog-js": "^1.367.0";
|
|
504
|
+
readonly "posthog-node": "^5.29.2";
|
|
543
505
|
readonly "plausible-tracker": "^0.3.9";
|
|
544
506
|
};
|
|
545
507
|
type AvailableDependencies = keyof typeof dependencyVersionMap;
|
|
@@ -660,21 +622,5 @@ declare function getDependencyVersionMap(): Record<string, string>;
|
|
|
660
622
|
*/
|
|
661
623
|
declare function listEcosystems(): string[];
|
|
662
624
|
//#endregion
|
|
663
|
-
|
|
664
|
-
declare class PreflightWarning extends Data.Class<{
|
|
665
|
-
readonly ruleId: string;
|
|
666
|
-
readonly featureDisplayName: string;
|
|
667
|
-
readonly featureKey: keyof ProjectConfig;
|
|
668
|
-
readonly selectedValue: string | string[];
|
|
669
|
-
readonly reason: string;
|
|
670
|
-
readonly suggestions: readonly string[];
|
|
671
|
-
}> {}
|
|
672
|
-
declare class PreflightResult extends Data.Class<{
|
|
673
|
-
readonly warnings: readonly PreflightWarning[];
|
|
674
|
-
}> {
|
|
675
|
-
get hasWarnings(): boolean;
|
|
676
|
-
}
|
|
677
|
-
declare const validatePreflightConfig: (config: ProjectConfig) => PreflightResult;
|
|
678
|
-
//#endregion
|
|
679
|
-
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 };
|
|
680
626
|
//# sourceMappingURL=index.d.mts.map
|