@reliverse/dler 1.7.93 → 1.7.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/app/build/build-library.js +0 -1
- package/bin/app/config/cfg-core.js +1 -1
- package/bin/app/config/cfg-create.js +1 -3
- package/bin/app/config/cfg-gen-cfg.js +1 -1
- package/bin/app/config/cfg-reltypes-content.d.ts +3 -0
- package/bin/app/config/cfg-reltypes-content.js +1139 -0
- package/bin/app/config/cfg-reltypes-utils.d.ts +2 -0
- package/bin/app/config/cfg-reltypes-utils.js +50 -0
- package/bin/app/config/constants.d.ts +1 -1
- package/bin/app/config/constants.js +1 -1
- package/bin/app/config/prepare.js +2 -0
- package/bin/app/init/use-template/cp-modules/compose-env-file/cef-impl.js +1 -1
- package/bin/app/mrse/cmd.js +4 -4
- package/bin/app/providers/better-t-stack/types.d.ts +9 -9
- package/bin/app/providers/reliverse-stack/rs-impl.d.ts +2 -2
- package/bin/app/utils/agg/agg-3.js +2 -2
- package/bin/app/utils/mrseHelpers.js +1 -1
- package/bin/dler.js +2 -10
- package/package.json +27 -27
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import path from "@reliverse/pathkit";
|
|
2
|
+
import fs from "@reliverse/relifso";
|
|
3
|
+
import { relinka } from "@reliverse/relinka";
|
|
4
|
+
import { generateReltypesContent } from "./cfg-reltypes-content.js";
|
|
5
|
+
const LAST_UPDATED = "2025-08-23";
|
|
6
|
+
export async function checkIfRegenerationNeeded(reltypesPath) {
|
|
7
|
+
try {
|
|
8
|
+
const content = await fs.readFile(reltypesPath, "utf8");
|
|
9
|
+
const lines = content.split("\n");
|
|
10
|
+
const firstLine = lines[0];
|
|
11
|
+
if (!firstLine) {
|
|
12
|
+
return true;
|
|
13
|
+
}
|
|
14
|
+
const dateMatch = firstLine.match(/\/\/ reliverse\.ts types were autogenerated at (.+)/);
|
|
15
|
+
if (!dateMatch || !dateMatch[1]) {
|
|
16
|
+
return true;
|
|
17
|
+
}
|
|
18
|
+
const fileDate = new Date(dateMatch[1]);
|
|
19
|
+
const lastUpdated = new Date(LAST_UPDATED);
|
|
20
|
+
return fileDate < lastUpdated;
|
|
21
|
+
} catch {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export async function ensureReltypesFile(cwd) {
|
|
26
|
+
const reltypesPath = path.resolve(cwd, "reltypes.ts");
|
|
27
|
+
if (await fs.pathExists(reltypesPath)) {
|
|
28
|
+
const needsRegeneration = await checkIfRegenerationNeeded(reltypesPath);
|
|
29
|
+
if (!needsRegeneration) {
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
relinka("verbose", "reltypes.ts exists but is outdated, regenerating...");
|
|
33
|
+
}
|
|
34
|
+
try {
|
|
35
|
+
const reltypesContent = generateReltypesContent({ lastUpdated: LAST_UPDATED });
|
|
36
|
+
const isNewFile = !await fs.pathExists(reltypesPath);
|
|
37
|
+
await fs.outputFile(reltypesPath, reltypesContent, { encoding: "utf8" });
|
|
38
|
+
if (isNewFile) {
|
|
39
|
+
relinka("success", `Generated reltypes.ts at ${reltypesPath}`);
|
|
40
|
+
} else {
|
|
41
|
+
relinka("success", `Regenerated reltypes.ts at ${reltypesPath}`);
|
|
42
|
+
}
|
|
43
|
+
relinka("verbose", "This file contains TypeScript types for your reliverse.ts configuration");
|
|
44
|
+
} catch (error) {
|
|
45
|
+
relinka(
|
|
46
|
+
"warn",
|
|
47
|
+
`Could not generate reltypes.ts: ${error instanceof Error ? error.message : String(error)}`
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const PROJECT_ROOT: string;
|
|
2
|
-
export declare const cliVersion = "1.7.
|
|
2
|
+
export declare const cliVersion = "1.7.94";
|
|
3
3
|
export declare const cliName = "@reliverse/rse";
|
|
4
4
|
export declare const rseName = "@reliverse/rse";
|
|
5
5
|
export declare const dlerName = "@reliverse/dler";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os from "node:os";
|
|
2
2
|
import path from "@reliverse/pathkit";
|
|
3
3
|
export const PROJECT_ROOT = path.resolve(process.cwd());
|
|
4
|
-
const version = "1.7.
|
|
4
|
+
const version = "1.7.94";
|
|
5
5
|
export const cliVersion = version;
|
|
6
6
|
export const cliName = "@reliverse/rse";
|
|
7
7
|
export const rseName = "@reliverse/rse";
|
|
@@ -3,6 +3,7 @@ import fs from "@reliverse/relifso";
|
|
|
3
3
|
import { relinka } from "@reliverse/relinka";
|
|
4
4
|
import { readPackageJSON } from "pkg-types";
|
|
5
5
|
import { DEFAULT_CONFIG_DLER } from "./default.js";
|
|
6
|
+
import { ensureReltypesFile } from "./cfg-reltypes-utils.js";
|
|
6
7
|
const CONFIG_FILENAME = "reliverse.ts";
|
|
7
8
|
export async function ensureDlerConfig(isDev) {
|
|
8
9
|
const configPath = path.resolve(process.cwd(), CONFIG_FILENAME);
|
|
@@ -47,6 +48,7 @@ export async function prepareDlerEnvironment(isDev) {
|
|
|
47
48
|
if (await fs.pathExists(tsconfigPath)) {
|
|
48
49
|
await ensureTsconfigIncludes(tsconfigPath);
|
|
49
50
|
}
|
|
51
|
+
await ensureReltypesFile(cwd);
|
|
50
52
|
}
|
|
51
53
|
async function ensureGitignoreEntries(cwd) {
|
|
52
54
|
const gitignorePath = path.resolve(cwd, ".gitignore");
|
|
@@ -218,7 +218,7 @@ export async function promptAndSetMissingValues(missingKeys, envPath, maskInput,
|
|
|
218
218
|
let projectName = "";
|
|
219
219
|
if (isMrse && projectPath) {
|
|
220
220
|
projectName = path.basename(projectPath);
|
|
221
|
-
mrseEnvPath = path.join(projectPath, "
|
|
221
|
+
mrseEnvPath = path.join(projectPath, "mrse", `${projectName}.env`);
|
|
222
222
|
const mrseEnvExists = await fs.pathExists(mrseEnvPath).catch(() => false);
|
|
223
223
|
if (skipPrompts && mrseEnvExists) {
|
|
224
224
|
relinka("info", `Using environment variables from mrse/${projectName}.env`);
|
package/bin/app/mrse/cmd.js
CHANGED
|
@@ -50,7 +50,7 @@ export default defineCommand({
|
|
|
50
50
|
typesPath: {
|
|
51
51
|
type: "string",
|
|
52
52
|
description: "Custom path to type definitions for TypeScript configs",
|
|
53
|
-
default: "../src/
|
|
53
|
+
default: "../src-ts/app/types/mod"
|
|
54
54
|
},
|
|
55
55
|
_: {
|
|
56
56
|
type: "array",
|
|
@@ -75,13 +75,13 @@ export default defineCommand({
|
|
|
75
75
|
relinka("info", "Fresh mode enabled: Will redownload all cached .env.example files");
|
|
76
76
|
}
|
|
77
77
|
const cwd = process.cwd();
|
|
78
|
-
const mrseFolderPath = path.join(cwd, "
|
|
78
|
+
const mrseFolderPath = path.join(cwd, "mrse");
|
|
79
79
|
await ensuredir(mrseFolderPath);
|
|
80
80
|
const mrseFileName = useJsonc ? "mreliverse.jsonc" : "mreliverse.ts";
|
|
81
|
-
const mrsePath = path.join(cwd,
|
|
81
|
+
const mrsePath = path.join(cwd, mrseFileName);
|
|
82
82
|
const mrseExists = await fs.pathExists(mrsePath);
|
|
83
83
|
const oppositeFormatFileName = useJsonc ? "mreliverse.ts" : "mreliverse.jsonc";
|
|
84
|
-
const oppositeFormatPath = path.join(cwd,
|
|
84
|
+
const oppositeFormatPath = path.join(cwd, oppositeFormatFileName);
|
|
85
85
|
const oppositeFormatExists = await fs.pathExists(oppositeFormatPath);
|
|
86
86
|
if (!mrseExists && oppositeFormatExists) {
|
|
87
87
|
relinka(
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const DatabaseSchema: z.ZodEnum<{
|
|
3
3
|
none: "none";
|
|
4
|
-
mysql: "mysql";
|
|
5
4
|
sqlite: "sqlite";
|
|
5
|
+
mysql: "mysql";
|
|
6
6
|
mongodb: "mongodb";
|
|
7
7
|
postgres: "postgres";
|
|
8
8
|
}>;
|
|
9
9
|
export type Database = z.infer<typeof DatabaseSchema>;
|
|
10
10
|
export declare const ORMSchema: z.ZodEnum<{
|
|
11
11
|
none: "none";
|
|
12
|
-
mongoose: "mongoose";
|
|
13
12
|
drizzle: "drizzle";
|
|
13
|
+
mongoose: "mongoose";
|
|
14
14
|
prisma: "prisma";
|
|
15
15
|
}>;
|
|
16
16
|
export type ORM = z.infer<typeof ORMSchema>;
|
|
17
17
|
export declare const BackendSchema: z.ZodEnum<{
|
|
18
18
|
none: "none";
|
|
19
19
|
hono: "hono";
|
|
20
|
-
convex: "convex";
|
|
21
20
|
next: "next";
|
|
22
21
|
express: "express";
|
|
23
22
|
fastify: "fastify";
|
|
24
23
|
elysia: "elysia";
|
|
24
|
+
convex: "convex";
|
|
25
25
|
}>;
|
|
26
26
|
export type Backend = z.infer<typeof BackendSchema>;
|
|
27
27
|
export declare const RuntimeSchema: z.ZodEnum<{
|
|
@@ -33,11 +33,11 @@ export declare const RuntimeSchema: z.ZodEnum<{
|
|
|
33
33
|
export type Runtime = z.infer<typeof RuntimeSchema>;
|
|
34
34
|
export declare const FrontendSchema: z.ZodEnum<{
|
|
35
35
|
none: "none";
|
|
36
|
-
nuxt: "nuxt";
|
|
37
|
-
"react-router": "react-router";
|
|
38
36
|
svelte: "svelte";
|
|
37
|
+
nuxt: "nuxt";
|
|
39
38
|
solid: "solid";
|
|
40
39
|
next: "next";
|
|
40
|
+
"react-router": "react-router";
|
|
41
41
|
"tanstack-router": "tanstack-router";
|
|
42
42
|
"tanstack-start": "tanstack-start";
|
|
43
43
|
"native-nativewind": "native-nativewind";
|
|
@@ -45,11 +45,11 @@ export declare const FrontendSchema: z.ZodEnum<{
|
|
|
45
45
|
}>;
|
|
46
46
|
export type Frontend = z.infer<typeof FrontendSchema>;
|
|
47
47
|
export declare const AddonsSchema: z.ZodEnum<{
|
|
48
|
-
biome: "biome";
|
|
49
48
|
none: "none";
|
|
50
|
-
|
|
49
|
+
biome: "biome";
|
|
51
50
|
tauri: "tauri";
|
|
52
51
|
turborepo: "turborepo";
|
|
52
|
+
starlight: "starlight";
|
|
53
53
|
pwa: "pwa";
|
|
54
54
|
husky: "husky";
|
|
55
55
|
}>;
|
|
@@ -61,18 +61,18 @@ export declare const ExamplesSchema: z.ZodEnum<{
|
|
|
61
61
|
}>;
|
|
62
62
|
export type Examples = z.infer<typeof ExamplesSchema>;
|
|
63
63
|
export declare const PackageManagerSchema: z.ZodEnum<{
|
|
64
|
-
bun: "bun";
|
|
65
64
|
npm: "npm";
|
|
66
65
|
pnpm: "pnpm";
|
|
66
|
+
bun: "bun";
|
|
67
67
|
}>;
|
|
68
68
|
export type PackageManager = z.infer<typeof PackageManagerSchema>;
|
|
69
69
|
export declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
70
70
|
none: "none";
|
|
71
|
+
supabase: "supabase";
|
|
71
72
|
neon: "neon";
|
|
72
73
|
turso: "turso";
|
|
73
74
|
"prisma-postgres": "prisma-postgres";
|
|
74
75
|
"mongodb-atlas": "mongodb-atlas";
|
|
75
|
-
supabase: "supabase";
|
|
76
76
|
}>;
|
|
77
77
|
export type DatabaseSetup = z.infer<typeof DatabaseSetupSchema>;
|
|
78
78
|
export declare const APISchema: z.ZodEnum<{
|
|
@@ -14,7 +14,7 @@ export type BrowserRepoOption = "reliverse/template-browser-extension" | "unknow
|
|
|
14
14
|
export declare function configureBrowserExtension(): Promise<{
|
|
15
15
|
displayName: string;
|
|
16
16
|
description: string;
|
|
17
|
-
features: ("
|
|
17
|
+
features: ("commands" | "webview" | "language" | "themes")[];
|
|
18
18
|
activation: "onCommand" | "onLanguage" | "startup";
|
|
19
19
|
publisher: string;
|
|
20
20
|
}>;
|
|
@@ -24,7 +24,7 @@ export declare function configureBrowserExtension(): Promise<{
|
|
|
24
24
|
export declare function configureVSCodeExtension(): Promise<{
|
|
25
25
|
displayName: string;
|
|
26
26
|
description: string;
|
|
27
|
-
features: ("
|
|
27
|
+
features: ("commands" | "webview" | "language" | "themes")[];
|
|
28
28
|
activation: "onCommand" | "onLanguage" | "startup";
|
|
29
29
|
publisher: string;
|
|
30
30
|
}>;
|
|
@@ -186,12 +186,12 @@ export function printUsage(isDev) {
|
|
|
186
186
|
if (isDev) {
|
|
187
187
|
relinka(
|
|
188
188
|
"log",
|
|
189
|
-
"bun dev:tools agg --input src/app
|
|
189
|
+
"bun dev:tools agg --input src-ts/app --out src-ts/mod.ts --recursive --named --strip src-ts/app"
|
|
190
190
|
);
|
|
191
191
|
} else {
|
|
192
192
|
relinka(
|
|
193
193
|
"log",
|
|
194
|
-
"dler tools --tool agg --input src/libs --out aggregator.ts --recursive --named"
|
|
194
|
+
"dler tools --tool agg --input src-ts/libs --out aggregator.ts --recursive --named"
|
|
195
195
|
);
|
|
196
196
|
}
|
|
197
197
|
}
|
|
@@ -12,7 +12,7 @@ export async function hasConfigFiles(projectPath) {
|
|
|
12
12
|
}
|
|
13
13
|
export async function isMrseProject(projectPath) {
|
|
14
14
|
const configPath = path.join(projectPath, ".config");
|
|
15
|
-
const mrseFolderPath = path.join(projectPath, "
|
|
15
|
+
const mrseFolderPath = path.join(projectPath, "mrse");
|
|
16
16
|
const hasMrseConfig = await Promise.all([
|
|
17
17
|
fs.pathExists(path.join(configPath, "mreliverse.ts")),
|
|
18
18
|
fs.pathExists(path.join(configPath, "mreliverse.jsonc"))
|
package/bin/dler.js
CHANGED
|
@@ -12,7 +12,7 @@ let isDev = process.env.DLER_DEV_MODE === "true";
|
|
|
12
12
|
const main = defineCommand({
|
|
13
13
|
meta: {
|
|
14
14
|
name: "dler",
|
|
15
|
-
version: "1.7.
|
|
15
|
+
version: "1.7.94",
|
|
16
16
|
description: `Displays dler's command menu.
|
|
17
17
|
To see ALL available commands and arguments, run: 'dler --help' (or 'dler <command> --help')
|
|
18
18
|
Available menu commands: ${MENU_CMDS.join(", ")}`
|
|
@@ -87,12 +87,4 @@ Available menu commands: ${MENU_CMDS.join(", ")}`
|
|
|
87
87
|
await showEndPrompt();
|
|
88
88
|
}
|
|
89
89
|
});
|
|
90
|
-
await runMain(
|
|
91
|
-
main
|
|
92
|
-
// {
|
|
93
|
-
// fileBased: {
|
|
94
|
-
// enable: true,
|
|
95
|
-
// cmdsRootPath: "src-ts/app",
|
|
96
|
-
// },
|
|
97
|
-
// }
|
|
98
|
-
);
|
|
90
|
+
await runMain(main);
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"@ai-sdk/openai": "^
|
|
4
|
-
"@hookform/resolvers": "^5.2.
|
|
5
|
-
"@libsql/client": "^0.15.
|
|
6
|
-
"@mendable/firecrawl-js": "^1.
|
|
3
|
+
"@ai-sdk/openai": "^2.0.19",
|
|
4
|
+
"@hookform/resolvers": "^5.2.1",
|
|
5
|
+
"@libsql/client": "^0.15.12",
|
|
6
|
+
"@mendable/firecrawl-js": "^3.1.0",
|
|
7
7
|
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
|
|
8
8
|
"@octokit/request-error": "^7.0.0",
|
|
9
9
|
"@octokit/rest": "^22.0.0",
|
|
10
10
|
"@radix-ui/react-label": "^2.1.7",
|
|
11
|
-
"@radix-ui/react-select": "^2.2.
|
|
11
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
12
12
|
"@radix-ui/react-slot": "^1.2.3",
|
|
13
13
|
"@reliverse/bleump": "^1.1.4",
|
|
14
14
|
"@reliverse/pathkit": "^1.3.4",
|
|
@@ -24,25 +24,25 @@
|
|
|
24
24
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
25
25
|
"@rollup/plugin-replace": "^6.0.2",
|
|
26
26
|
"@rollup/pluginutils": "^5.2.0",
|
|
27
|
-
"@sinclair/typebox": "^0.34.
|
|
27
|
+
"@sinclair/typebox": "^0.34.40",
|
|
28
28
|
"@uploadcare/upload-client": "^6.17.0",
|
|
29
|
-
"@vercel/sdk": "^1.10.
|
|
30
|
-
"ai": "^
|
|
29
|
+
"@vercel/sdk": "^1.10.5",
|
|
30
|
+
"ai": "^5.0.22",
|
|
31
31
|
"async-listen": "^3.1.0",
|
|
32
32
|
"autoprefixer": "^10.4.21",
|
|
33
|
-
"better-auth": "^1.3.
|
|
33
|
+
"better-auth": "^1.3.7",
|
|
34
34
|
"better-sqlite3": "^12.2.0",
|
|
35
35
|
"bun-plugin-tailwind": "^0.0.15",
|
|
36
|
-
"c12": "^3.
|
|
36
|
+
"c12": "^3.2.0",
|
|
37
37
|
"class-variance-authority": "^0.7.1",
|
|
38
38
|
"clsx": "^2.1.1",
|
|
39
39
|
"confbox": "^0.2.2",
|
|
40
|
-
"cssnano": "^7.1.
|
|
40
|
+
"cssnano": "^7.1.1",
|
|
41
41
|
"defu": "^6.1.4",
|
|
42
42
|
"destr": "^2.0.5",
|
|
43
43
|
"detect-package-manager": "^3.0.2",
|
|
44
44
|
"dotenv": "^17.2.1",
|
|
45
|
-
"drizzle-orm": "^0.44.
|
|
45
|
+
"drizzle-orm": "^0.44.4",
|
|
46
46
|
"enquirer": "^2.4.1",
|
|
47
47
|
"esbuild": "^0.25.9",
|
|
48
48
|
"escape-string-regexp": "^5.0.0",
|
|
@@ -57,36 +57,36 @@
|
|
|
57
57
|
"https-proxy-agent": "^7.0.6",
|
|
58
58
|
"jiti": "^2.5.1",
|
|
59
59
|
"jsonrepair": "^3.13.0",
|
|
60
|
-
"ky": "^1.
|
|
60
|
+
"ky": "^1.9.0",
|
|
61
61
|
"lookpath": "^1.2.3",
|
|
62
|
-
"lucide-react": "^0.
|
|
63
|
-
"magic-string": "^0.30.
|
|
62
|
+
"lucide-react": "^0.541.0",
|
|
63
|
+
"magic-string": "^0.30.18",
|
|
64
64
|
"magicast": "^0.3.5",
|
|
65
|
-
"mlly": "^1.
|
|
65
|
+
"mlly": "^1.8.0",
|
|
66
66
|
"nanoid": "^5.1.5",
|
|
67
|
-
"nypm": "^0.6.
|
|
67
|
+
"nypm": "^0.6.1",
|
|
68
68
|
"octokit": "^5.0.3",
|
|
69
69
|
"ofetch": "^1.4.1",
|
|
70
70
|
"open": "^10.2.0",
|
|
71
71
|
"ora": "^8.2.0",
|
|
72
72
|
"p-all": "^5.0.0",
|
|
73
|
-
"p-limit": "^
|
|
73
|
+
"p-limit": "^7.1.0",
|
|
74
74
|
"p-map": "^7.0.3",
|
|
75
75
|
"path-key": "^4.0.0",
|
|
76
|
-
"pkg-types": "^2.
|
|
76
|
+
"pkg-types": "^2.3.0",
|
|
77
77
|
"postcss": "^8.5.6",
|
|
78
78
|
"postcss-nested": "^7.0.2",
|
|
79
|
-
"posthog-node": "^5.
|
|
79
|
+
"posthog-node": "^5.7.0",
|
|
80
80
|
"pretty-bytes": "^7.0.1",
|
|
81
81
|
"pretty-ms": "^9.2.0",
|
|
82
82
|
"querystring": "^0.2.1",
|
|
83
83
|
"random-words": "^2.0.1",
|
|
84
|
-
"react": "^19.1.
|
|
85
|
-
"react-dom": "^19.1.
|
|
86
|
-
"react-hook-form": "^7.
|
|
84
|
+
"react": "^19.1.1",
|
|
85
|
+
"react-dom": "^19.1.1",
|
|
86
|
+
"react-hook-form": "^7.62.0",
|
|
87
87
|
"registry-auth-token": "^5.1.0",
|
|
88
88
|
"registry-url": "^7.2.0",
|
|
89
|
-
"rollup": "^4.
|
|
89
|
+
"rollup": "^4.47.1",
|
|
90
90
|
"rollup-plugin-dts": "^6.2.3",
|
|
91
91
|
"scule": "^1.3.0",
|
|
92
92
|
"semver": "^7.7.2",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"simple-git": "^3.28.0",
|
|
95
95
|
"strip-json-comments": "^5.0.3",
|
|
96
96
|
"tailwind-merge": "^3.3.1",
|
|
97
|
-
"tailwindcss": "^4.1.
|
|
97
|
+
"tailwindcss": "^4.1.12",
|
|
98
98
|
"tailwindcss-animate": "^1.0.7",
|
|
99
99
|
"tar": "^7.4.3",
|
|
100
100
|
"tar-stream": "^3.1.7",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"ts-morph": "^26.0.0",
|
|
103
103
|
"uncrypto": "^0.1.3",
|
|
104
104
|
"untyped": "^2.0.0",
|
|
105
|
-
"uploadthing": "^7.7.
|
|
105
|
+
"uploadthing": "^7.7.4",
|
|
106
106
|
"zod": "4.0.17"
|
|
107
107
|
},
|
|
108
108
|
"description": "dler (prev. relidler) is a flexible, unified, and fully automated bundler for TypeScript and JavaScript projects, as well as an NPM and JSR publishing tool.",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"license": "MIT",
|
|
111
111
|
"name": "@reliverse/dler",
|
|
112
112
|
"type": "module",
|
|
113
|
-
"version": "1.7.
|
|
113
|
+
"version": "1.7.94",
|
|
114
114
|
"keywords": [
|
|
115
115
|
"reliverse",
|
|
116
116
|
"cli",
|