@better-fullstack/template-generator 2.0.3 → 2.1.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 +1 -1
- package/dist/browser.mjs +1 -1
- package/dist/fs-writer.mjs +1 -1
- package/dist/fs-writer.mjs.map +1 -1
- package/dist/index.d.mts +160 -139
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{preflight-validation-D6XT9YOY.d.mts → preflight-validation-CKPm09jX.d.mts} +2 -2
- package/dist/preflight-validation-CKPm09jX.d.mts.map +1 -0
- package/dist/{preflight-validation-TkvtalMK.mjs → preflight-validation-qM1EvU0f.mjs} +67075 -63285
- package/dist/preflight-validation-qM1EvU0f.mjs.map +1 -0
- package/package.json +2 -2
- package/dist/preflight-validation-D6XT9YOY.d.mts.map +0 -1
- package/dist/preflight-validation-TkvtalMK.mjs.map +0 -1
package/dist/browser.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
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, n as PreflightWarning, o as generateVirtualProject, r as validatePreflightConfig, t as PreflightResult } from "./preflight-validation-
|
|
2
|
+
import { a as TEMPLATE_COUNT, c as TemplateData, i as EMBEDDED_TEMPLATES, n as PreflightWarning, o as generateVirtualProject, r as validatePreflightConfig, t as PreflightResult } from "./preflight-validation-CKPm09jX.mjs";
|
|
3
3
|
export { EMBEDDED_TEMPLATES, GeneratorOptions, GeneratorResult, type PreflightResult, type PreflightWarning, TEMPLATE_COUNT, type TemplateData, VirtualDirectory, VirtualFile, VirtualFileTree, VirtualNode, generateVirtualProject, validatePreflightConfig };
|
package/dist/browser.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { i as generateVirtualProject, n as EMBEDDED_TEMPLATES, r as TEMPLATE_COUNT, t as validatePreflightConfig } from "./preflight-validation-
|
|
1
|
+
import { i as generateVirtualProject, n as EMBEDDED_TEMPLATES, r as TEMPLATE_COUNT, t as validatePreflightConfig } from "./preflight-validation-qM1EvU0f.mjs";
|
|
2
2
|
|
|
3
3
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, generateVirtualProject, validatePreflightConfig };
|
package/dist/fs-writer.mjs
CHANGED
|
@@ -24,7 +24,7 @@ async function writeNode(node, baseDir, relativePath) {
|
|
|
24
24
|
}
|
|
25
25
|
async function writeSelectedFiles(tree, destDir, filter) {
|
|
26
26
|
const writtenFiles = [];
|
|
27
|
-
|
|
27
|
+
for (const child of tree.root.children) await writeSelectedNode(child, destDir, "", filter, writtenFiles);
|
|
28
28
|
return writtenFiles;
|
|
29
29
|
}
|
|
30
30
|
async function writeSelectedNode(node, baseDir, relativePath, filter, writtenFiles) {
|
package/dist/fs-writer.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fs-writer.mjs","names":["writtenFiles: string[]"],"sources":["../src/fs-writer.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport { join, dirname } from \"pathe\";\n\nimport type { VirtualFileTree, VirtualNode, VirtualFile, VirtualDirectory } from \"./types\";\n\nimport { getBinaryTemplatesRoot } from \"./core/template-reader\";\n\nconst BINARY_FILE_MARKER = \"[Binary file]\";\nconst EXECUTABLE_FILE_NAMES = new Set([\"mvnw\", \"gradlew\"]);\n\nexport async function writeTreeToFilesystem(tree: VirtualFileTree, destDir: string): Promise<void> {\n for (const child of tree.root.children) {\n await writeNode(child, destDir, \"\");\n }\n}\n\nasync function writeNode(node: VirtualNode, baseDir: string, relativePath: string): Promise<void> {\n const fullPath = join(baseDir, relativePath, node.name);\n const nodePath = relativePath ? join(relativePath, node.name) : node.name;\n\n if (node.type === \"file\") {\n const fileNode = node as VirtualFile;\n await fs.mkdir(dirname(fullPath), { recursive: true });\n\n if (fileNode.content === BINARY_FILE_MARKER && fileNode.sourcePath) {\n await copyBinaryFile(fileNode.sourcePath, fullPath);\n } else if (fileNode.content !== BINARY_FILE_MARKER) {\n await fs.writeFile(fullPath, fileNode.content, \"utf-8\");\n }\n await maybeMakeExecutable(fullPath, node.name);\n } else {\n await fs.mkdir(fullPath, { recursive: true });\n for (const child of (node as VirtualDirectory).children) {\n await writeNode(child, baseDir, nodePath);\n }\n }\n}\n\nexport async function writeSelectedFiles(\n tree: VirtualFileTree,\n destDir: string,\n filter: (filePath: string) => boolean,\n): Promise<string[]> {\n const writtenFiles: string[] = [];\n
|
|
1
|
+
{"version":3,"file":"fs-writer.mjs","names":["writtenFiles: string[]"],"sources":["../src/fs-writer.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport { join, dirname } from \"pathe\";\n\nimport type { VirtualFileTree, VirtualNode, VirtualFile, VirtualDirectory } from \"./types\";\n\nimport { getBinaryTemplatesRoot } from \"./core/template-reader\";\n\nconst BINARY_FILE_MARKER = \"[Binary file]\";\nconst EXECUTABLE_FILE_NAMES = new Set([\"mvnw\", \"gradlew\"]);\n\nexport async function writeTreeToFilesystem(tree: VirtualFileTree, destDir: string): Promise<void> {\n for (const child of tree.root.children) {\n await writeNode(child, destDir, \"\");\n }\n}\n\nasync function writeNode(node: VirtualNode, baseDir: string, relativePath: string): Promise<void> {\n const fullPath = join(baseDir, relativePath, node.name);\n const nodePath = relativePath ? join(relativePath, node.name) : node.name;\n\n if (node.type === \"file\") {\n const fileNode = node as VirtualFile;\n await fs.mkdir(dirname(fullPath), { recursive: true });\n\n if (fileNode.content === BINARY_FILE_MARKER && fileNode.sourcePath) {\n await copyBinaryFile(fileNode.sourcePath, fullPath);\n } else if (fileNode.content !== BINARY_FILE_MARKER) {\n await fs.writeFile(fullPath, fileNode.content, \"utf-8\");\n }\n await maybeMakeExecutable(fullPath, node.name);\n } else {\n await fs.mkdir(fullPath, { recursive: true });\n for (const child of (node as VirtualDirectory).children) {\n await writeNode(child, baseDir, nodePath);\n }\n }\n}\n\nexport async function writeSelectedFiles(\n tree: VirtualFileTree,\n destDir: string,\n filter: (filePath: string) => boolean,\n): Promise<string[]> {\n const writtenFiles: string[] = [];\n for (const child of tree.root.children) {\n await writeSelectedNode(child, destDir, \"\", filter, writtenFiles);\n }\n return writtenFiles;\n}\n\nasync function writeSelectedNode(\n node: VirtualNode,\n baseDir: string,\n relativePath: string,\n filter: (filePath: string) => boolean,\n writtenFiles: string[],\n): Promise<void> {\n const nodePath = relativePath ? `${relativePath}/${node.name}` : node.name;\n\n if (node.type === \"file\") {\n if (filter(nodePath)) {\n const fileNode = node as VirtualFile;\n await fs.mkdir(dirname(join(baseDir, nodePath)), { recursive: true });\n\n if (fileNode.content === BINARY_FILE_MARKER && fileNode.sourcePath) {\n await copyBinaryFile(fileNode.sourcePath, join(baseDir, nodePath));\n } else if (fileNode.content !== BINARY_FILE_MARKER) {\n await fs.writeFile(join(baseDir, nodePath), fileNode.content, \"utf-8\");\n }\n await maybeMakeExecutable(join(baseDir, nodePath), node.name);\n writtenFiles.push(nodePath);\n }\n } else {\n for (const child of (node as VirtualDirectory).children) {\n await writeSelectedNode(child, baseDir, nodePath, filter, writtenFiles);\n }\n }\n}\n\nasync function copyBinaryFile(templatePath: string, destPath: string): Promise<void> {\n const templatesRoot = getBinaryTemplatesRoot();\n const sourcePath = join(templatesRoot, templatePath);\n\n try {\n await fs.copyFile(sourcePath, destPath);\n } catch (error) {\n console.warn(`Failed to copy binary file: ${templatePath}`, error);\n }\n}\n\nasync function maybeMakeExecutable(fullPath: string, fileName: string): Promise<void> {\n if (!EXECUTABLE_FILE_NAMES.has(fileName)) return;\n\n try {\n await fs.chmod(fullPath, 0o755);\n } catch (error) {\n console.warn(`Failed to mark file as executable: ${fullPath}`, error);\n }\n}\n"],"mappings":";;;;;AAOA,MAAM,qBAAqB;AAC3B,MAAM,wBAAwB,IAAI,IAAI,CAAC,QAAQ,UAAU,CAAC;AAE1D,eAAsB,sBAAsB,MAAuB,SAAgC;AACjG,MAAK,MAAM,SAAS,KAAK,KAAK,SAC5B,OAAM,UAAU,OAAO,SAAS,GAAG;;AAIvC,eAAe,UAAU,MAAmB,SAAiB,cAAqC;CAChG,MAAM,WAAW,KAAK,SAAS,cAAc,KAAK,KAAK;CACvD,MAAM,WAAW,eAAe,KAAK,cAAc,KAAK,KAAK,GAAG,KAAK;AAErE,KAAI,KAAK,SAAS,QAAQ;EACxB,MAAM,WAAW;AACjB,QAAM,GAAG,MAAM,QAAQ,SAAS,EAAE,EAAE,WAAW,MAAM,CAAC;AAEtD,MAAI,SAAS,YAAY,sBAAsB,SAAS,WACtD,OAAM,eAAe,SAAS,YAAY,SAAS;WAC1C,SAAS,YAAY,mBAC9B,OAAM,GAAG,UAAU,UAAU,SAAS,SAAS,QAAQ;AAEzD,QAAM,oBAAoB,UAAU,KAAK,KAAK;QACzC;AACL,QAAM,GAAG,MAAM,UAAU,EAAE,WAAW,MAAM,CAAC;AAC7C,OAAK,MAAM,SAAU,KAA0B,SAC7C,OAAM,UAAU,OAAO,SAAS,SAAS;;;AAK/C,eAAsB,mBACpB,MACA,SACA,QACmB;CACnB,MAAMA,eAAyB,EAAE;AACjC,MAAK,MAAM,SAAS,KAAK,KAAK,SAC5B,OAAM,kBAAkB,OAAO,SAAS,IAAI,QAAQ,aAAa;AAEnE,QAAO;;AAGT,eAAe,kBACb,MACA,SACA,cACA,QACA,cACe;CACf,MAAM,WAAW,eAAe,GAAG,aAAa,GAAG,KAAK,SAAS,KAAK;AAEtE,KAAI,KAAK,SAAS,QAChB;MAAI,OAAO,SAAS,EAAE;GACpB,MAAM,WAAW;AACjB,SAAM,GAAG,MAAM,QAAQ,KAAK,SAAS,SAAS,CAAC,EAAE,EAAE,WAAW,MAAM,CAAC;AAErE,OAAI,SAAS,YAAY,sBAAsB,SAAS,WACtD,OAAM,eAAe,SAAS,YAAY,KAAK,SAAS,SAAS,CAAC;YACzD,SAAS,YAAY,mBAC9B,OAAM,GAAG,UAAU,KAAK,SAAS,SAAS,EAAE,SAAS,SAAS,QAAQ;AAExE,SAAM,oBAAoB,KAAK,SAAS,SAAS,EAAE,KAAK,KAAK;AAC7D,gBAAa,KAAK,SAAS;;OAG7B,MAAK,MAAM,SAAU,KAA0B,SAC7C,OAAM,kBAAkB,OAAO,SAAS,UAAU,QAAQ,aAAa;;AAK7E,eAAe,eAAe,cAAsB,UAAiC;CAEnF,MAAM,aAAa,KADG,wBAAwB,EACP,aAAa;AAEpD,KAAI;AACF,QAAM,GAAG,SAAS,YAAY,SAAS;UAChC,OAAO;AACd,UAAQ,KAAK,+BAA+B,gBAAgB,MAAM;;;AAItE,eAAe,oBAAoB,UAAkB,UAAiC;AACpF,KAAI,CAAC,sBAAsB,IAAI,SAAS,CAAE;AAE1C,KAAI;AACF,QAAM,GAAG,MAAM,UAAU,IAAM;UACxB,OAAO;AACd,UAAQ,KAAK,sCAAsC,YAAY,MAAM"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
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-
|
|
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-CKPm09jX.mjs";
|
|
3
3
|
import Handlebars from "handlebars";
|
|
4
4
|
import { ProjectConfig } from "@better-fullstack/types";
|
|
5
5
|
|
|
6
6
|
//#region src/core/template-processor.d.ts
|
|
7
7
|
declare function normalizeElixirAppName(projectName?: string): string;
|
|
8
8
|
declare function elixirModuleName(projectName?: string): string;
|
|
9
|
+
declare function elixirDeployAppName(projectName?: string): string;
|
|
9
10
|
declare function nativeApplicationId(projectName?: string): string;
|
|
10
11
|
declare function processTemplateString(content: string, context: ProjectConfig): string;
|
|
11
12
|
declare function isBinaryFile(filePath: string): boolean;
|
|
@@ -18,18 +19,18 @@ declare function processAddonsDeps(vfs: VirtualFileSystem, config: ProjectConfig
|
|
|
18
19
|
//#region src/utils/add-deps.d.ts
|
|
19
20
|
declare const dependencyVersionMap: {
|
|
20
21
|
readonly typescript: "^6.0.3";
|
|
21
|
-
readonly "better-auth": "^1.6.
|
|
22
|
-
readonly "@better-auth/expo": "^1.6.
|
|
22
|
+
readonly "better-auth": "^1.6.20";
|
|
23
|
+
readonly "@better-auth/expo": "^1.6.20";
|
|
23
24
|
readonly "expo-linking": "^56.0.14";
|
|
24
25
|
readonly "expo-constants": "^56.0.18";
|
|
25
26
|
readonly "expo-web-browser": "^56.0.5";
|
|
26
27
|
readonly "expo-network": "^56.0.5";
|
|
27
|
-
readonly "@better-auth/drizzle-adapter": "^1.6.
|
|
28
|
-
readonly "@better-auth/prisma-adapter": "^1.6.
|
|
29
|
-
readonly "@better-auth/mongo-adapter": "^1.6.
|
|
30
|
-
readonly "@clerk/nextjs": "^7.5.
|
|
28
|
+
readonly "@better-auth/drizzle-adapter": "^1.6.20";
|
|
29
|
+
readonly "@better-auth/prisma-adapter": "^1.6.20";
|
|
30
|
+
readonly "@better-auth/mongo-adapter": "^1.6.20";
|
|
31
|
+
readonly "@clerk/nextjs": "^7.5.7";
|
|
31
32
|
readonly "@clerk/clerk-react": "^5.61.3";
|
|
32
|
-
readonly "@clerk/tanstack-react-start": "^1.4.
|
|
33
|
+
readonly "@clerk/tanstack-react-start": "^1.4.7";
|
|
33
34
|
readonly "@clerk/clerk-expo": "^2.19.31";
|
|
34
35
|
readonly "next-auth": "^4.24.14";
|
|
35
36
|
readonly "@auth/core": "^0.34.3";
|
|
@@ -44,10 +45,10 @@ declare const dependencyVersionMap: {
|
|
|
44
45
|
readonly "drizzle-orm": "^0.45.2";
|
|
45
46
|
readonly "drizzle-kit": "^0.31.10";
|
|
46
47
|
readonly "@planetscale/database": "^1.20.1";
|
|
47
|
-
readonly "@libsql/client": "^0.17.
|
|
48
|
+
readonly "@libsql/client": "^0.17.4";
|
|
48
49
|
readonly libsql: "^0.5.29";
|
|
49
50
|
readonly "@neondatabase/serverless": "^1.1.0";
|
|
50
|
-
readonly pg: "^8.
|
|
51
|
+
readonly pg: "^8.22.0";
|
|
51
52
|
readonly "@types/pg": "^8.20.0";
|
|
52
53
|
readonly "@types/ws": "^8.18.1";
|
|
53
54
|
readonly ws: "^8.21.0";
|
|
@@ -61,9 +62,9 @@ declare const dependencyVersionMap: {
|
|
|
61
62
|
readonly "@prisma/adapter-better-sqlite3": "^7.8.0";
|
|
62
63
|
readonly "@prisma/adapter-pg": "^7.8.0";
|
|
63
64
|
readonly "@prisma/adapter-planetscale": "^7.8.0";
|
|
64
|
-
readonly mongoose: "^9.7.
|
|
65
|
+
readonly mongoose: "^9.7.1";
|
|
65
66
|
readonly typeorm: "^1.0.0";
|
|
66
|
-
readonly "better-sqlite3": "^12.
|
|
67
|
+
readonly "better-sqlite3": "^12.11.1";
|
|
67
68
|
readonly "@types/better-sqlite3": "^7.6.13";
|
|
68
69
|
readonly kysely: "^0.29.2";
|
|
69
70
|
readonly "@mikro-orm/core": "^7.1.4";
|
|
@@ -76,31 +77,32 @@ declare const dependencyVersionMap: {
|
|
|
76
77
|
readonly sqlite3: "^6.0.1";
|
|
77
78
|
readonly "vite-plugin-pwa": "^1.3.0";
|
|
78
79
|
readonly "@vite-pwa/assets-generator": "^1.0.2";
|
|
79
|
-
readonly "@tauri-apps/cli": "^2.11.
|
|
80
|
-
readonly "@tauri-apps/api": "^2.11.
|
|
80
|
+
readonly "@tauri-apps/cli": "^2.11.3";
|
|
81
|
+
readonly "@tauri-apps/api": "^2.11.1";
|
|
81
82
|
readonly "@biomejs/biome": "^2.5.0";
|
|
82
|
-
readonly
|
|
83
|
-
readonly
|
|
83
|
+
readonly ultracite: "^7.8.3";
|
|
84
|
+
readonly oxlint: "^1.70.0";
|
|
85
|
+
readonly oxfmt: "^0.55.0";
|
|
84
86
|
readonly husky: "^9.1.7";
|
|
85
87
|
readonly lefthook: "^2.1.9";
|
|
86
|
-
readonly "lint-staged": "^17.0.
|
|
88
|
+
readonly "lint-staged": "^17.0.8";
|
|
87
89
|
readonly tsx: "^4.22.4";
|
|
88
|
-
readonly "@types/node": "^
|
|
90
|
+
readonly "@types/node": "^26.0.0";
|
|
89
91
|
readonly "@types/bun": "^1.3.14";
|
|
90
92
|
readonly "@elysiajs/node": "^1.4.5";
|
|
91
93
|
readonly "@elysiajs/cors": "^1.4.2";
|
|
92
94
|
readonly "@elysiajs/openapi": "^1.4.15";
|
|
93
95
|
readonly "@elysiajs/trpc": "^1.1.0";
|
|
94
|
-
readonly elysia: "^1.4.
|
|
95
|
-
readonly "@hono/node-server": "^2.0.
|
|
96
|
+
readonly elysia: "^1.4.29";
|
|
97
|
+
readonly "@hono/node-server": "^2.0.5";
|
|
96
98
|
readonly "@hono/trpc-server": "^0.4.2";
|
|
97
99
|
readonly "@hono/zod-openapi": "^1.4.0";
|
|
98
|
-
readonly hono: "^4.12.
|
|
100
|
+
readonly hono: "^4.12.26";
|
|
99
101
|
readonly "@netlify/functions": "^5.3.0";
|
|
100
102
|
readonly "@octokit/rest": "^22.0.1";
|
|
101
103
|
readonly "@vercel/sandbox": "^2.2.1";
|
|
102
|
-
readonly vercel: "^54.14.
|
|
103
|
-
readonly "@sveltejs/adapter-vercel": "^6.3.
|
|
104
|
+
readonly vercel: "^54.14.5";
|
|
105
|
+
readonly "@sveltejs/adapter-vercel": "^6.3.4";
|
|
104
106
|
readonly "bash-tool": "^1.3.17";
|
|
105
107
|
readonly cors: "^2.8.6";
|
|
106
108
|
readonly express: "^5.2.1";
|
|
@@ -125,34 +127,34 @@ declare const dependencyVersionMap: {
|
|
|
125
127
|
readonly fets: "^0.8.7";
|
|
126
128
|
readonly turbo: "^2.9.18";
|
|
127
129
|
readonly nx: "^23.0.0";
|
|
128
|
-
readonly chat: "^4.
|
|
129
|
-
readonly "@chat-adapter/slack": "^4.
|
|
130
|
-
readonly "@chat-adapter/discord": "^4.
|
|
131
|
-
readonly "@chat-adapter/github": "^4.
|
|
132
|
-
readonly "@chat-adapter/state-memory": "^4.
|
|
133
|
-
readonly "@chat-adapter/state-redis": "^4.
|
|
134
|
-
readonly ai: "^6.0.
|
|
135
|
-
readonly "@ai-sdk/anthropic": "^3.0.
|
|
136
|
-
readonly "@ai-sdk/google": "^3.0.
|
|
137
|
-
readonly "@ai-sdk/vue": "^3.0.
|
|
138
|
-
readonly "@ai-sdk/svelte": "^4.0.
|
|
139
|
-
readonly "@ai-sdk/react": "^3.0.
|
|
140
|
-
readonly "@ai-sdk/devtools": "^0.0.
|
|
130
|
+
readonly chat: "^4.31.0";
|
|
131
|
+
readonly "@chat-adapter/slack": "^4.31.0";
|
|
132
|
+
readonly "@chat-adapter/discord": "^4.31.0";
|
|
133
|
+
readonly "@chat-adapter/github": "^4.31.0";
|
|
134
|
+
readonly "@chat-adapter/state-memory": "^4.31.0";
|
|
135
|
+
readonly "@chat-adapter/state-redis": "^4.31.0";
|
|
136
|
+
readonly ai: "^6.0.208";
|
|
137
|
+
readonly "@ai-sdk/anthropic": "^3.0.85";
|
|
138
|
+
readonly "@ai-sdk/google": "^3.0.83";
|
|
139
|
+
readonly "@ai-sdk/vue": "^3.0.208";
|
|
140
|
+
readonly "@ai-sdk/svelte": "^4.0.208";
|
|
141
|
+
readonly "@ai-sdk/react": "^3.0.210";
|
|
142
|
+
readonly "@ai-sdk/devtools": "^0.0.20";
|
|
141
143
|
readonly streamdown: "^2.5.0";
|
|
142
144
|
readonly shiki: "^4.2.0";
|
|
143
|
-
readonly mastra: "^1.
|
|
144
|
-
readonly "@mastra/core": "^1.
|
|
145
|
+
readonly mastra: "^1.15.0";
|
|
146
|
+
readonly "@mastra/core": "^1.45.0";
|
|
145
147
|
readonly "@voltagent/core": "^2.7.7";
|
|
146
148
|
readonly "@voltagent/server-hono": "^2.0.14";
|
|
147
149
|
readonly "@voltagent/libsql": "^2.1.2";
|
|
148
150
|
readonly "@voltagent/logger": "^2.0.2";
|
|
149
|
-
readonly "@langchain/langgraph": "^1.4.
|
|
150
|
-
readonly "@langchain/core": "^1.
|
|
151
|
-
readonly "@langchain/google-genai": "^2.
|
|
152
|
-
readonly "@openai/agents": "^0.11.
|
|
151
|
+
readonly "@langchain/langgraph": "^1.4.4";
|
|
152
|
+
readonly "@langchain/core": "^1.2.0";
|
|
153
|
+
readonly "@langchain/google-genai": "^2.2.0";
|
|
154
|
+
readonly "@openai/agents": "^0.11.8";
|
|
153
155
|
readonly "@google/adk": "^1.2.0";
|
|
154
156
|
readonly modelfusion: "^0.137.0";
|
|
155
|
-
readonly langchain: "^1.
|
|
157
|
+
readonly langchain: "^1.5.0";
|
|
156
158
|
readonly llamaindex: "^0.12.1";
|
|
157
159
|
readonly "ai-cli": "^0.3.1";
|
|
158
160
|
readonly "@orpc/server": "^1.14.6";
|
|
@@ -169,23 +171,24 @@ declare const dependencyVersionMap: {
|
|
|
169
171
|
readonly graphql: "^16.14.2";
|
|
170
172
|
readonly "@garph/gqty": "^0.4.5";
|
|
171
173
|
readonly gqty: "^3.6.0";
|
|
172
|
-
readonly "@pothos/core": "^4.
|
|
174
|
+
readonly "@pothos/core": "^4.13.0";
|
|
175
|
+
readonly "@apollo/server": "^5.5.1";
|
|
173
176
|
readonly "@asteasolutions/zod-to-openapi": "^8.5.0";
|
|
174
|
-
readonly "@scalar/express-api-reference": "^0.10.
|
|
175
|
-
readonly "@scalar/fastify-api-reference": "^1.
|
|
176
|
-
readonly "@scalar/hono-api-reference": "^0.11.
|
|
177
|
-
readonly "@trpc/tanstack-react-query": "^11.
|
|
178
|
-
readonly "@trpc/server": "^11.
|
|
179
|
-
readonly "@trpc/client": "^11.
|
|
177
|
+
readonly "@scalar/express-api-reference": "^0.10.4";
|
|
178
|
+
readonly "@scalar/fastify-api-reference": "^1.60.0";
|
|
179
|
+
readonly "@scalar/hono-api-reference": "^0.11.4";
|
|
180
|
+
readonly "@trpc/tanstack-react-query": "^11.18.0";
|
|
181
|
+
readonly "@trpc/server": "^11.18.0";
|
|
182
|
+
readonly "@trpc/client": "^11.18.0";
|
|
180
183
|
readonly next: "^16.2.9";
|
|
181
184
|
readonly convex: "^1.41.0";
|
|
182
185
|
readonly "@convex-dev/react-query": "^0.1.0";
|
|
183
|
-
readonly "@convex-dev/agent": "^0.6.
|
|
186
|
+
readonly "@convex-dev/agent": "^0.6.4";
|
|
184
187
|
readonly "@convex-dev/polar": "^0.9.1";
|
|
185
|
-
readonly "convex-svelte": "^0.
|
|
188
|
+
readonly "convex-svelte": "^0.14.0";
|
|
186
189
|
readonly "convex-nuxt": "0.1.5";
|
|
187
190
|
readonly "convex-vue": "^0.1.5";
|
|
188
|
-
readonly "@convex-dev/better-auth": "^0.12.
|
|
191
|
+
readonly "@convex-dev/better-auth": "^0.12.4";
|
|
189
192
|
readonly "@tanstack/svelte-query": "^6.1.34";
|
|
190
193
|
readonly "@tanstack/svelte-query-devtools": "^6.1.34";
|
|
191
194
|
readonly "@tanstack/vue-query-devtools": "^6.1.34";
|
|
@@ -203,61 +206,66 @@ declare const dependencyVersionMap: {
|
|
|
203
206
|
readonly "@tanstack/svelte-table": "^8.21.3";
|
|
204
207
|
readonly "@tanstack/solid-table": "^8.21.3";
|
|
205
208
|
readonly "@tanstack/angular-table": "^8.21.4";
|
|
206
|
-
readonly "@tanstack/react-virtual": "^3.14.
|
|
207
|
-
readonly "@tanstack/vue-virtual": "^3.13.
|
|
208
|
-
readonly "@tanstack/svelte-virtual": "^3.13.
|
|
209
|
-
readonly "@tanstack/solid-virtual": "^3.13.
|
|
210
|
-
readonly "@tanstack/angular-virtual": "^5.0.
|
|
211
|
-
readonly "@tanstack/db": "^0.6.
|
|
212
|
-
readonly "@tanstack/react-db": "^0.1.
|
|
213
|
-
readonly "@tanstack/vue-db": "^0.0.
|
|
214
|
-
readonly "@tanstack/solid-db": "^0.2.
|
|
215
|
-
readonly "@tanstack/svelte-db": "^0.1.
|
|
209
|
+
readonly "@tanstack/react-virtual": "^3.14.3";
|
|
210
|
+
readonly "@tanstack/vue-virtual": "^3.13.29";
|
|
211
|
+
readonly "@tanstack/svelte-virtual": "^3.13.29";
|
|
212
|
+
readonly "@tanstack/solid-virtual": "^3.13.29";
|
|
213
|
+
readonly "@tanstack/angular-virtual": "^5.0.5";
|
|
214
|
+
readonly "@tanstack/db": "^0.6.9";
|
|
215
|
+
readonly "@tanstack/react-db": "^0.1.87";
|
|
216
|
+
readonly "@tanstack/vue-db": "^0.0.120";
|
|
217
|
+
readonly "@tanstack/solid-db": "^0.2.23";
|
|
218
|
+
readonly "@tanstack/svelte-db": "^0.1.86";
|
|
216
219
|
readonly "@tanstack/pacer": "^0.21.1";
|
|
217
220
|
readonly "@tanstack/react-pacer": "^0.22.1";
|
|
218
221
|
readonly "@tanstack/solid-pacer": "^0.21.1";
|
|
219
|
-
readonly "@tanstack/ai": "^0.
|
|
220
|
-
readonly "@tanstack/ai-react": "^0.15.
|
|
221
|
-
readonly "@tanstack/ai-solid": "^0.13.
|
|
222
|
-
readonly wrangler: "^4.
|
|
223
|
-
readonly "@cloudflare/vite-plugin": "^1.
|
|
222
|
+
readonly "@tanstack/ai": "^0.32.0";
|
|
223
|
+
readonly "@tanstack/ai-react": "^0.15.9";
|
|
224
|
+
readonly "@tanstack/ai-solid": "^0.13.9";
|
|
225
|
+
readonly wrangler: "^4.103.0";
|
|
226
|
+
readonly "@cloudflare/vite-plugin": "^1.42.1";
|
|
224
227
|
readonly "@opennextjs/cloudflare": "^1.19.11";
|
|
225
228
|
readonly "nitro-cloudflare-dev": "^0.2.2";
|
|
226
|
-
readonly "@sveltejs/adapter-cloudflare": "^7.2.
|
|
229
|
+
readonly "@sveltejs/adapter-cloudflare": "^7.2.9";
|
|
227
230
|
readonly "@sveltejs/adapter-node": "^5.5.4";
|
|
228
|
-
readonly "@cloudflare/workers-types": "^4.
|
|
231
|
+
readonly "@cloudflare/workers-types": "^4.20260621.1";
|
|
229
232
|
readonly alchemy: "^0.93.12";
|
|
230
233
|
readonly sst: "^4.15.2";
|
|
231
|
-
readonly "aws-cdk-lib": "^2.
|
|
234
|
+
readonly "aws-cdk-lib": "^2.260.0";
|
|
232
235
|
readonly constructs: "^10.6.0";
|
|
233
236
|
readonly "@opennextjs/aws": "^4.0.3";
|
|
234
237
|
readonly dotenv: "^17.4.2";
|
|
235
|
-
readonly tsdown: "^0.22.
|
|
238
|
+
readonly tsdown: "^0.22.3";
|
|
236
239
|
readonly zod: "^4.4.3";
|
|
237
240
|
readonly "@t3-oss/env-core": "^0.13.11";
|
|
238
241
|
readonly "@t3-oss/env-nextjs": "^0.13.11";
|
|
239
242
|
readonly "@t3-oss/env-nuxt": "^0.13.11";
|
|
240
|
-
readonly srvx: "^0.11.
|
|
243
|
+
readonly srvx: "^0.11.17";
|
|
241
244
|
readonly "@polar-sh/better-auth": "^1.8.4";
|
|
242
245
|
readonly "@polar-sh/checkout": "^0.3.0";
|
|
243
246
|
readonly "@polar-sh/sdk": "^0.48.1";
|
|
244
|
-
readonly resend: "^6.
|
|
247
|
+
readonly resend: "^6.14.0";
|
|
245
248
|
readonly "@react-email/components": "^1.0.12";
|
|
246
|
-
readonly "react-email": "^6.6.
|
|
249
|
+
readonly "react-email": "^6.6.3";
|
|
247
250
|
readonly react: "^19.2.7";
|
|
251
|
+
readonly "react-dom": "^19.2.7";
|
|
248
252
|
readonly "@types/react": "^19.2.17";
|
|
249
|
-
readonly
|
|
253
|
+
readonly "@wxt-dev/module-react": "^1.1.5";
|
|
254
|
+
readonly wxt: "^0.20.27";
|
|
255
|
+
readonly "@opentui/core": "^0.4.1";
|
|
256
|
+
readonly nodemailer: "^9.0.1";
|
|
257
|
+
readonly "@types/react-dom": "^19.2.3";
|
|
250
258
|
readonly "@types/nodemailer": "^8.0.1";
|
|
251
259
|
readonly postmark: "^4.0.7";
|
|
252
260
|
readonly "@sendgrid/mail": "^8.1.6";
|
|
253
|
-
readonly "@aws-sdk/client-ses": "^3.
|
|
254
|
-
readonly "@aws-sdk/client-s3": "^3.
|
|
255
|
-
readonly "@aws-sdk/s3-request-presigner": "^3.
|
|
261
|
+
readonly "@aws-sdk/client-ses": "^3.1073.0";
|
|
262
|
+
readonly "@aws-sdk/client-s3": "^3.1073.0";
|
|
263
|
+
readonly "@aws-sdk/s3-request-presigner": "^3.1073.0";
|
|
256
264
|
readonly "mailgun.js": "^13.2.0";
|
|
257
265
|
readonly "form-data": "^4.0.6";
|
|
258
266
|
readonly "@plunk/node": "^3.0.3";
|
|
259
|
-
readonly effect: "^3.21.
|
|
260
|
-
readonly "@effect/platform": "^0.96.
|
|
267
|
+
readonly effect: "^3.21.4";
|
|
268
|
+
readonly "@effect/platform": "^0.96.2";
|
|
261
269
|
readonly "@effect/platform-node": "^0.107.0";
|
|
262
270
|
readonly "@effect/platform-bun": "^0.90.0";
|
|
263
271
|
readonly "@effect/platform-browser": "^0.76.0";
|
|
@@ -276,43 +284,43 @@ declare const dependencyVersionMap: {
|
|
|
276
284
|
readonly "@effect/cluster": "^0.59.0";
|
|
277
285
|
readonly "@effect/workflow": "^0.18.2";
|
|
278
286
|
readonly "@effect/ai": "^0.36.0";
|
|
279
|
-
readonly "@effect/ai-openai": "^0.40.
|
|
287
|
+
readonly "@effect/ai-openai": "^0.40.1";
|
|
280
288
|
readonly "@effect/ai-anthropic": "^0.26.0";
|
|
281
289
|
readonly sass: "^1.101.0";
|
|
282
290
|
readonly less: "^4.6.6";
|
|
283
|
-
readonly "@radix-ui/react-dialog": "^1.1.
|
|
284
|
-
readonly "@radix-ui/react-dropdown-menu": "^2.1.
|
|
285
|
-
readonly "@radix-ui/react-slot": "^1.
|
|
286
|
-
readonly "@radix-ui/react-label": "^2.1.
|
|
287
|
-
readonly "@radix-ui/react-checkbox": "^1.3.
|
|
288
|
-
readonly "@radix-ui/react-select": "^2.3.
|
|
289
|
-
readonly "@radix-ui/react-toast": "^1.2.
|
|
290
|
-
readonly "@radix-ui/react-popover": "^1.1.
|
|
291
|
-
readonly "@radix-ui/react-switch": "^1.3.
|
|
292
|
-
readonly "@radix-ui/react-tabs": "^1.1.
|
|
291
|
+
readonly "@radix-ui/react-dialog": "^1.1.17";
|
|
292
|
+
readonly "@radix-ui/react-dropdown-menu": "^2.1.18";
|
|
293
|
+
readonly "@radix-ui/react-slot": "^1.3.0";
|
|
294
|
+
readonly "@radix-ui/react-label": "^2.1.10";
|
|
295
|
+
readonly "@radix-ui/react-checkbox": "^1.3.5";
|
|
296
|
+
readonly "@radix-ui/react-select": "^2.3.1";
|
|
297
|
+
readonly "@radix-ui/react-toast": "^1.2.17";
|
|
298
|
+
readonly "@radix-ui/react-popover": "^1.1.17";
|
|
299
|
+
readonly "@radix-ui/react-switch": "^1.3.1";
|
|
300
|
+
readonly "@radix-ui/react-tabs": "^1.1.15";
|
|
293
301
|
readonly "@headlessui/react": "^2.2.10";
|
|
294
302
|
readonly "@headlessui/vue": "^1.7.23";
|
|
295
303
|
readonly "@park-ui/panda-preset": "^0.43.1";
|
|
296
304
|
readonly "@chakra-ui/react": "^3.36.0";
|
|
297
305
|
readonly "@emotion/react": "^11.14.0";
|
|
298
306
|
readonly "@emotion/styled": "^11.14.1";
|
|
299
|
-
readonly "@heroui/react": "^3.1
|
|
307
|
+
readonly "@heroui/react": "^3.2.1";
|
|
300
308
|
readonly "framer-motion": "^12.40.0";
|
|
301
|
-
readonly "@mantine/core": "^9.3.
|
|
302
|
-
readonly "@mantine/hooks": "^9.3.
|
|
309
|
+
readonly "@mantine/core": "^9.3.2";
|
|
310
|
+
readonly "@mantine/hooks": "^9.3.2";
|
|
303
311
|
readonly "@mui/material": "^9.1.1";
|
|
304
|
-
readonly antd: "^6.4.
|
|
312
|
+
readonly antd: "^6.4.5";
|
|
305
313
|
readonly "@base-ui-components/react": "^1.0.0-rc.0";
|
|
306
314
|
readonly shadcn: "^4.11.0";
|
|
307
|
-
readonly "radix-ui": "^1.
|
|
315
|
+
readonly "radix-ui": "^1.6.0";
|
|
308
316
|
readonly "class-variance-authority": "^0.7.1";
|
|
309
317
|
readonly clsx: "^2.1.1";
|
|
310
318
|
readonly "tailwind-merge": "^3.6.0";
|
|
311
319
|
readonly "tw-animate-css": "^1.4.0";
|
|
312
|
-
readonly "lucide-react": "^1.
|
|
320
|
+
readonly "lucide-react": "^1.21.0";
|
|
313
321
|
readonly "@tabler/icons-react": "^3.44.0";
|
|
314
|
-
readonly "@hugeicons/react": "^1.1.
|
|
315
|
-
readonly "@hugeicons/core-free-icons": "^4.2.
|
|
322
|
+
readonly "@hugeicons/react": "^1.1.7";
|
|
323
|
+
readonly "@hugeicons/core-free-icons": "^4.2.1";
|
|
316
324
|
readonly "@phosphor-icons/react": "^2.1.10";
|
|
317
325
|
readonly "@remixicon/react": "^4.9.0";
|
|
318
326
|
readonly "@heroicons/react": "^2.2.0";
|
|
@@ -332,7 +340,7 @@ declare const dependencyVersionMap: {
|
|
|
332
340
|
readonly "@ark-ui/vue": "^5.37.2";
|
|
333
341
|
readonly "@ark-ui/solid": "^5.37.1";
|
|
334
342
|
readonly "@ark-ui/svelte": "^5.22.1";
|
|
335
|
-
readonly "react-aria-components": "^1.
|
|
343
|
+
readonly "react-aria-components": "^1.19.0";
|
|
336
344
|
readonly daisyui: "^5.5.23";
|
|
337
345
|
readonly "shadcn-svelte": "^1.3.0";
|
|
338
346
|
readonly "bits-ui": "^2.18.1";
|
|
@@ -340,17 +348,17 @@ declare const dependencyVersionMap: {
|
|
|
340
348
|
readonly "@builder.io/qwik": "^1.20.0";
|
|
341
349
|
readonly "@builder.io/qwik-city": "^1.20.0";
|
|
342
350
|
readonly "@builder.io/qwik-react": "^0.5.8";
|
|
343
|
-
readonly "@angular/core": "^22.0.
|
|
344
|
-
readonly "@angular/common": "^22.0.
|
|
345
|
-
readonly "@angular/compiler": "^22.0.
|
|
346
|
-
readonly "@angular/platform-browser": "^22.0.
|
|
347
|
-
readonly "@angular/platform-browser-dynamic": "^22.0.
|
|
348
|
-
readonly "@angular/router": "^22.0.
|
|
349
|
-
readonly "@angular/forms": "^22.0.
|
|
350
|
-
readonly "@angular/animations": "^22.0.
|
|
351
|
-
readonly "@angular-devkit/build-angular": "^22.0.
|
|
352
|
-
readonly "@angular/cli": "^22.0.
|
|
353
|
-
readonly "@angular/compiler-cli": "^22.0.
|
|
351
|
+
readonly "@angular/core": "^22.0.2";
|
|
352
|
+
readonly "@angular/common": "^22.0.2";
|
|
353
|
+
readonly "@angular/compiler": "^22.0.2";
|
|
354
|
+
readonly "@angular/platform-browser": "^22.0.2";
|
|
355
|
+
readonly "@angular/platform-browser-dynamic": "^22.0.2";
|
|
356
|
+
readonly "@angular/router": "^22.0.2";
|
|
357
|
+
readonly "@angular/forms": "^22.0.2";
|
|
358
|
+
readonly "@angular/animations": "^22.0.2";
|
|
359
|
+
readonly "@angular-devkit/build-angular": "^22.0.3";
|
|
360
|
+
readonly "@angular/cli": "^22.0.3";
|
|
361
|
+
readonly "@angular/compiler-cli": "^22.0.2";
|
|
354
362
|
readonly zustand: "^5.0.14";
|
|
355
363
|
readonly jotai: "^2.20.1";
|
|
356
364
|
readonly nanostores: "^1.3.0";
|
|
@@ -366,7 +374,7 @@ declare const dependencyVersionMap: {
|
|
|
366
374
|
readonly "@tanstack/react-store": "^0.11.0";
|
|
367
375
|
readonly "@legendapp/state": "^2.1.15";
|
|
368
376
|
readonly valibot: "^1.4.1";
|
|
369
|
-
readonly arktype: "^2.2.
|
|
377
|
+
readonly arktype: "^2.2.1";
|
|
370
378
|
readonly "@sinclair/typebox": "^0.34.49";
|
|
371
379
|
readonly typia: "^12.1.1";
|
|
372
380
|
readonly runtypes: "^7.0.4";
|
|
@@ -384,21 +392,21 @@ declare const dependencyVersionMap: {
|
|
|
384
392
|
readonly "socket.io-client": "^4.8.3";
|
|
385
393
|
readonly partykit: "^0.0.115";
|
|
386
394
|
readonly partysocket: "^1.2.0";
|
|
387
|
-
readonly ably: "^2.
|
|
395
|
+
readonly ably: "^2.23.0";
|
|
388
396
|
readonly pusher: "^5.3.4";
|
|
389
397
|
readonly "pusher-js": "^8.5.0";
|
|
390
|
-
readonly "@liveblocks/client": "^3.
|
|
391
|
-
readonly "@liveblocks/react": "^3.
|
|
392
|
-
readonly "@liveblocks/node": "^3.
|
|
398
|
+
readonly "@liveblocks/client": "^3.20.0";
|
|
399
|
+
readonly "@liveblocks/react": "^3.20.0";
|
|
400
|
+
readonly "@liveblocks/node": "^3.20.0";
|
|
393
401
|
readonly yjs: "^13.6.31";
|
|
394
402
|
readonly "y-websocket": "^3.0.0";
|
|
395
403
|
readonly "y-protocols": "^1.0.7";
|
|
396
404
|
readonly "@y-sweet/sdk": "^0.9.1";
|
|
397
405
|
readonly "@y-sweet/react": "^0.9.1";
|
|
398
|
-
readonly bullmq: "^5.
|
|
406
|
+
readonly bullmq: "^5.79.1";
|
|
399
407
|
readonly ioredis: "^5.11.1";
|
|
400
408
|
readonly "@trigger.dev/sdk": "^4.4.6";
|
|
401
|
-
readonly inngest: "^4.
|
|
409
|
+
readonly inngest: "^4.7.0";
|
|
402
410
|
readonly "@temporalio/client": "^1.18.1";
|
|
403
411
|
readonly "@temporalio/worker": "^1.18.1";
|
|
404
412
|
readonly "@temporalio/workflow": "^1.18.1";
|
|
@@ -413,22 +421,22 @@ declare const dependencyVersionMap: {
|
|
|
413
421
|
readonly "@vitest/ui": "4.1.8";
|
|
414
422
|
readonly "@vitest/coverage-v8": "4.1.8";
|
|
415
423
|
readonly jsdom: "^29.1.1";
|
|
416
|
-
readonly "happy-dom": "^20.10.
|
|
424
|
+
readonly "happy-dom": "^20.10.6";
|
|
417
425
|
readonly "@playwright/test": "^1.61.0";
|
|
418
426
|
readonly playwright: "^1.61.0";
|
|
419
427
|
readonly "@testing-library/dom": "^10.4.1";
|
|
420
428
|
readonly "@testing-library/react": "^16.3.2";
|
|
421
429
|
readonly "@testing-library/vue": "^8.1.0";
|
|
422
|
-
readonly "@testing-library/svelte": "^5.
|
|
430
|
+
readonly "@testing-library/svelte": "^5.4.1";
|
|
423
431
|
readonly "@testing-library/jest-dom": "^6.9.1";
|
|
424
432
|
readonly "@testing-library/user-event": "^14.6.1";
|
|
425
433
|
readonly msw: "^2.14.6";
|
|
426
434
|
readonly storybook: "^8.6.18";
|
|
427
435
|
readonly "@storybook/react": "^8.6.18";
|
|
428
436
|
readonly "@storybook/react-vite": "^8.6.18";
|
|
429
|
-
readonly "@storybook/vue3": "^10.4.
|
|
437
|
+
readonly "@storybook/vue3": "^10.4.6";
|
|
430
438
|
readonly "@storybook/vue3-vite": "^8.6.18";
|
|
431
|
-
readonly "@storybook/svelte": "^10.4.
|
|
439
|
+
readonly "@storybook/svelte": "^10.4.6";
|
|
432
440
|
readonly "@storybook/svelte-vite": "^8.6.18";
|
|
433
441
|
readonly "@storybook/nextjs": "^8.6.18";
|
|
434
442
|
readonly "@storybook/addon-essentials": "^8.6.18";
|
|
@@ -441,13 +449,13 @@ declare const dependencyVersionMap: {
|
|
|
441
449
|
readonly "@formkit/auto-animate": "^0.9.0";
|
|
442
450
|
readonly "lottie-react": "^2.4.1";
|
|
443
451
|
readonly "lottie-react-native": "^7.3.8";
|
|
444
|
-
readonly stripe: "^22.2.
|
|
452
|
+
readonly stripe: "^22.2.2";
|
|
445
453
|
readonly "@stripe/stripe-js": "^9.8.0";
|
|
446
454
|
readonly "@stripe/react-stripe-js": "^6.6.0";
|
|
447
455
|
readonly "@lemonsqueezy/lemonsqueezy.js": "^4.0.0";
|
|
448
456
|
readonly "@paddle/paddle-node-sdk": "^3.8.0";
|
|
449
457
|
readonly "@paddle/paddle-js": "^1.6.4";
|
|
450
|
-
readonly dodopayments: "^2.
|
|
458
|
+
readonly dodopayments: "^2.39.1";
|
|
451
459
|
readonly "dodopayments-checkout": "^1.9.4";
|
|
452
460
|
readonly uploadthing: "^7.7.4";
|
|
453
461
|
readonly "@uploadthing/react": "^7.3.3";
|
|
@@ -496,11 +504,11 @@ declare const dependencyVersionMap: {
|
|
|
496
504
|
readonly "@opentelemetry/resources": "^2.8.0";
|
|
497
505
|
readonly "@opentelemetry/sdk-metrics": "^2.8.0";
|
|
498
506
|
readonly "@opentelemetry/semantic-conventions": "^1.41.1";
|
|
499
|
-
readonly "@sentry/node": "^10.
|
|
500
|
-
readonly "@sentry/profiling-node": "^10.
|
|
507
|
+
readonly "@sentry/node": "^10.59.0";
|
|
508
|
+
readonly "@sentry/profiling-node": "^10.59.0";
|
|
501
509
|
readonly "prom-client": "^15.1.3";
|
|
502
|
-
readonly "dd-trace": "^5.
|
|
503
|
-
readonly "@axiomhq/js": "^1.
|
|
510
|
+
readonly "dd-trace": "^5.109.0";
|
|
511
|
+
readonly "@axiomhq/js": "^1.7.0";
|
|
504
512
|
readonly "@logtail/node": "^0.5.8";
|
|
505
513
|
readonly payload: "^3.85.1";
|
|
506
514
|
readonly "@payloadcms/next": "^3.85.1";
|
|
@@ -510,16 +518,23 @@ declare const dependencyVersionMap: {
|
|
|
510
518
|
readonly "@payloadcms/db-sqlite": "^3.85.1";
|
|
511
519
|
readonly "@payloadcms/plugin-seo": "^3.85.1";
|
|
512
520
|
readonly "@payloadcms/storage-s3": "^3.85.1";
|
|
513
|
-
readonly sanity: "^6.
|
|
514
|
-
readonly "next-sanity": "^13.1.
|
|
521
|
+
readonly sanity: "^6.1.0";
|
|
522
|
+
readonly "next-sanity": "^13.1.1";
|
|
515
523
|
readonly "@sanity/image-url": "^2.1.1";
|
|
516
|
-
readonly "@sanity/vision": "^6.
|
|
517
|
-
readonly "@sanity/client": "^7.
|
|
524
|
+
readonly "@sanity/vision": "^6.1.0";
|
|
525
|
+
readonly "@sanity/client": "^7.23.0";
|
|
518
526
|
readonly "@strapi/client": "^1.6.2";
|
|
519
527
|
readonly qs: "^6.15.2";
|
|
528
|
+
readonly "@types/qs": "^6.14.0";
|
|
520
529
|
readonly "@directus/sdk": "^22.0.0";
|
|
521
|
-
readonly tinacms: "^3.9.
|
|
522
|
-
readonly "@tinacms/cli": "^2.5.
|
|
530
|
+
readonly tinacms: "^3.9.3";
|
|
531
|
+
readonly "@tinacms/cli": "^2.5.1";
|
|
532
|
+
readonly "@keystatic/core": "^0.5.50";
|
|
533
|
+
readonly "@keystatic/next": "^5.0.4";
|
|
534
|
+
readonly "@markdoc/markdoc": "^0.5.7";
|
|
535
|
+
readonly "@astrojs/react": "^6.0.0";
|
|
536
|
+
readonly "@astrojs/markdoc": "^2.0.0";
|
|
537
|
+
readonly "@astrojs/node": "^11.0.0";
|
|
523
538
|
readonly cloudinary: "^2.10.0";
|
|
524
539
|
readonly swr: "^2.4.1";
|
|
525
540
|
readonly "@upstash/redis": "^1.38.0";
|
|
@@ -530,17 +545,23 @@ declare const dependencyVersionMap: {
|
|
|
530
545
|
readonly "react-i18next": "^17.0.8";
|
|
531
546
|
readonly "i18next-browser-languagedetector": "^8.2.1";
|
|
532
547
|
readonly "i18next-http-backend": "^4.0.0";
|
|
548
|
+
readonly "@inlang/paraglide-js": "^2.20.1";
|
|
533
549
|
readonly "next-intl": "^4.13.0";
|
|
534
550
|
readonly meilisearch: "^0.58.0";
|
|
535
551
|
readonly typesense: "^3.0.6";
|
|
536
552
|
readonly "@elastic/elasticsearch": "^9.4.2";
|
|
537
|
-
readonly
|
|
553
|
+
readonly "@opensearch-project/opensearch": "^3.6.0";
|
|
554
|
+
readonly algoliasearch: "^5.55.0";
|
|
555
|
+
readonly postgres: "^3.4.7";
|
|
556
|
+
readonly "@qdrant/js-client-rest": "^1.15.1";
|
|
557
|
+
readonly chromadb: "^1.10.5";
|
|
558
|
+
readonly "@pinecone-database/pinecone": "^6.1.2";
|
|
538
559
|
readonly edgedb: "^2.0.1";
|
|
539
560
|
readonly "@edgedb/generate": "^0.6.1";
|
|
540
561
|
readonly "@growthbook/growthbook": "^1.6.5";
|
|
541
562
|
readonly "@growthbook/growthbook-react": "^1.6.5";
|
|
542
|
-
readonly "posthog-js": "^1.
|
|
543
|
-
readonly "posthog-node": "^5.
|
|
563
|
+
readonly "posthog-js": "^1.391.7";
|
|
564
|
+
readonly "posthog-node": "^5.38.2";
|
|
544
565
|
readonly "@launchdarkly/js-client-sdk": "^4.9.0";
|
|
545
566
|
readonly "@launchdarkly/node-server-sdk": "^9.11.2";
|
|
546
567
|
readonly "@flagsmith/flagsmith": "^12.0.1";
|
|
@@ -668,5 +689,5 @@ declare function getDependencyVersionMap(): Record<string, string>;
|
|
|
668
689
|
*/
|
|
669
690
|
declare function listEcosystems(): string[];
|
|
670
691
|
//#endregion
|
|
671
|
-
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, elixirModuleName, fetchLatestVersion, findTemplateFilesWithPackage, generateCliReport, generateMarkdownReport, generateUpdatedVersionMap, generateVirtualProject, getDependencyVersionMap, getEcosystem, getUpdateType, groupByEcosystem, isBinaryFile, listEcosystems, nativeApplicationId, normalizeElixirAppName, parseVersion, processAddonTemplates, processAddonsDeps, processFileContent, processTemplateString, scanTemplateVersions, transformFilename, validatePreflightConfig };
|
|
692
|
+
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, elixirDeployAppName, elixirModuleName, fetchLatestVersion, findTemplateFilesWithPackage, generateCliReport, generateMarkdownReport, generateUpdatedVersionMap, generateVirtualProject, getDependencyVersionMap, getEcosystem, getUpdateType, groupByEcosystem, isBinaryFile, listEcosystems, nativeApplicationId, normalizeElixirAppName, parseVersion, processAddonTemplates, processAddonsDeps, processFileContent, processTemplateString, scanTemplateVersions, transformFilename, validatePreflightConfig };
|
|
672
693
|
//# sourceMappingURL=index.d.mts.map
|