@effected/pnpm-plugin-effect 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/pnpmfile.cjs ADDED
@@ -0,0 +1,584 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+ let node_fs = require("node:fs");
3
+ let node_path = require("node:path");
4
+
5
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/ctx.js
6
+ /**
7
+ * Resolve the consuming repo's root package name. Prefers pnpm's
8
+ * `rootProjectManifest.name`, falling back to reading `package.json` from the
9
+ * workspace/lockfile dir.
10
+ *
11
+ * @internal
12
+ */
13
+ function resolveRootName(config) {
14
+ const c = config;
15
+ if (c.rootProjectManifest?.name) return c.rootProjectManifest.name;
16
+ const rootDir = c.rootProjectManifestDir ?? c.lockfileDir ?? c.workspaceDir ?? c.dir ?? process.cwd();
17
+ try {
18
+ return JSON.parse((0, node_fs.readFileSync)((0, node_path.join)(rootDir, "package.json"), "utf8")).name;
19
+ } catch {
20
+ return;
21
+ }
22
+ }
23
+ /**
24
+ * Drop packages assigned to the consuming repo from a merged hoist list.
25
+ * Drop packages listed in the per-repo exclusion table (`byRepo`).
26
+ *
27
+ * @param merged - The full merged hoist-pattern list before repo-specific exclusions.
28
+ * @param ctx - Runtime context; `ctx.rootName` is the consuming repo's root `package.json` `name`.
29
+ * @param byRepo Keyed by consuming-repo package.json name; value = hoist patterns dropped in that repo.
30
+ * @internal
31
+ */
32
+ function excludeByRepo(merged, ctx, byRepo) {
33
+ const exclude = ctx.rootName ? byRepo[ctx.rootName] : void 0;
34
+ if (!exclude || exclude.length === 0) return merged;
35
+ const set = new Set(exclude);
36
+ return merged.filter((p) => !set.has(p));
37
+ }
38
+
39
+ //#endregion
40
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/enforcement.js
41
+ /**
42
+ * Thrown when an `error`-enforced field diverges. A zero-dependency plain
43
+ * `Error` subclass (NOT an Effect type) so it survives in the bundled pnpmfile.
44
+ * It is intended to fail the install and must never be swallowed by an install
45
+ * guard — see the note in `runtime/index.ts`.
46
+ *
47
+ * @internal
48
+ */
49
+ var EnforcementError = class extends Error {
50
+ constructor(message) {
51
+ super(message);
52
+ this.name = "EnforcementError";
53
+ }
54
+ };
55
+ /**
56
+ * Apply enforcement to a strategy result, partitioning its divergences into
57
+ * override and security buckets for the runtime to print. When enforcement is
58
+ * `error` and there is at least one divergence, throws {@link EnforcementError}.
59
+ *
60
+ * @internal
61
+ */
62
+ function applyEnforcement(field, result, enforcement) {
63
+ const overrides = [];
64
+ const security = [];
65
+ if (result.divergences.length > 0 && enforcement === "error") throw new EnforcementError(`Field "${field}" is enforced (error) but the local config diverges: ${result.divergences.map((d) => d.setting).join(", ")}`);
66
+ if (result.divergences.length > 0 && enforcement === "warn") for (const d of result.divergences) (d.kind === "security" ? security : overrides).push(d);
67
+ return {
68
+ value: result.merged,
69
+ overrides,
70
+ security
71
+ };
72
+ }
73
+
74
+ //#endregion
75
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
76
+ function unionSort(managed, local) {
77
+ const set = new Set(managed);
78
+ for (const item of local ?? []) set.add(item);
79
+ return [...set].sort((a, b) => a.localeCompare(b));
80
+ }
81
+ /**
82
+ * Union + sort string arrays; child entries are added to the managed set. Quiet.
83
+ *
84
+ * @internal
85
+ */
86
+ const arrayUnion = (base, local) => ({
87
+ merged: unionSort(base ?? [], local),
88
+ divergences: []
89
+ });
90
+ /**
91
+ * Per-axis union of a record of string arrays; drops empty axes. Quiet.
92
+ *
93
+ * @internal
94
+ */
95
+ const arrayRecordUnion = (base, local) => {
96
+ const managed = base ?? {};
97
+ const child = local ?? {};
98
+ const keys = /* @__PURE__ */ new Set([...Object.keys(managed), ...Object.keys(child)]);
99
+ const result = {};
100
+ for (const key of [...keys].sort((a, b) => a.localeCompare(b))) {
101
+ const merged = unionSort(managed[key] ?? [], child[key]);
102
+ if (merged.length > 0) result[key] = merged;
103
+ }
104
+ return {
105
+ merged: result,
106
+ divergences: []
107
+ };
108
+ };
109
+
110
+ //#endregion
111
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
112
+ /**
113
+ * Merge each named catalog; child wins per package. Emits override divergences
114
+ * when a local version differs from the managed one.
115
+ *
116
+ * @internal
117
+ */
118
+ const catalogs = (base, local) => {
119
+ const managed = base ?? {};
120
+ const child = local ?? {};
121
+ const divergences = [];
122
+ const merged = { ...child };
123
+ for (const [name, entries] of Object.entries(managed)) {
124
+ const childCat = child[name] ?? {};
125
+ const out = { ...entries };
126
+ for (const [pkg, childVersion] of Object.entries(childCat)) {
127
+ const managedVersion = entries[pkg];
128
+ if (managedVersion !== void 0 && managedVersion !== childVersion) divergences.push({
129
+ setting: `catalogs.${name}.${pkg}`,
130
+ managedValue: managedVersion,
131
+ localValue: childVersion,
132
+ detail: "Local version overrides the managed version.",
133
+ kind: "override"
134
+ });
135
+ out[pkg] = childVersion;
136
+ }
137
+ merged[name] = out;
138
+ }
139
+ return {
140
+ merged,
141
+ divergences
142
+ };
143
+ };
144
+
145
+ //#endregion
146
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
147
+ /**
148
+ * `{...managed, ...child}` — child wins per key. Quiet. Merges two maps,
149
+ * preferring child values.
150
+ *
151
+ * @internal
152
+ */
153
+ const mapChildWins = (base, local) => {
154
+ const managed = base ?? {};
155
+ const child = local;
156
+ return {
157
+ merged: child ? {
158
+ ...managed,
159
+ ...child
160
+ } : { ...managed },
161
+ divergences: []
162
+ };
163
+ };
164
+ /**
165
+ * `{...managed, ...child}`; flags enabling a build the managed config blocked.
166
+ * Detects allow-builds loosening.
167
+ *
168
+ * @internal
169
+ */
170
+ const allowBuilds = (base, local) => {
171
+ const managed = base ?? {};
172
+ const child = local ?? {};
173
+ const divergences = [];
174
+ for (const [pkg, childAllowed] of Object.entries(child)) if (childAllowed === true && managed[pkg] === false) divergences.push({
175
+ setting: `allowBuilds.${pkg}`,
176
+ managedValue: "false",
177
+ localValue: "true",
178
+ detail: `Enables build scripts for "${pkg}" that the managed config blocked.`,
179
+ kind: "security"
180
+ });
181
+ return {
182
+ merged: {
183
+ ...managed,
184
+ ...child
185
+ },
186
+ divergences
187
+ };
188
+ };
189
+
190
+ //#endregion
191
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
192
+ function mergeMapDetect(prefix, managed, child) {
193
+ const merged = { ...managed };
194
+ const divergences = [];
195
+ for (const [k, childVersion] of Object.entries(child)) {
196
+ const managedVersion = managed[k];
197
+ if (managedVersion !== void 0 && managedVersion !== childVersion) divergences.push({
198
+ setting: `${prefix}.${k}`,
199
+ managedValue: managedVersion,
200
+ localValue: childVersion,
201
+ detail: "Local version overrides the managed version.",
202
+ kind: "override"
203
+ });
204
+ merged[k] = childVersion;
205
+ }
206
+ return {
207
+ merged,
208
+ divergences
209
+ };
210
+ }
211
+ /**
212
+ * Security overrides: child wins per key; any diff → override divergence.
213
+ * Merge overrides, flagging local divergences.
214
+ *
215
+ * @internal
216
+ */
217
+ const overrides = (base, local) => {
218
+ const { merged, divergences } = mergeMapDetect("overrides", base ?? {}, local ?? {});
219
+ return {
220
+ merged,
221
+ divergences
222
+ };
223
+ };
224
+ /**
225
+ * peerDependencyRules: `allowedVersions` is override-detected; `ignoreMissing`
226
+ * and `allowAny` are unioned + sorted. Merges peer-dependency rules,
227
+ * flagging version overrides.
228
+ *
229
+ * @internal
230
+ */
231
+ const peerDependencyRules = (base, local) => {
232
+ const managed = base ?? {};
233
+ const child = local ?? {};
234
+ const av = mergeMapDetect("peerDependencyRules.allowedVersions", managed.allowedVersions ?? {}, child.allowedVersions ?? {});
235
+ const union = (s = [], c = []) => [.../* @__PURE__ */ new Set([...s, ...c])].sort((a, b) => a.localeCompare(b));
236
+ return {
237
+ merged: {
238
+ allowedVersions: av.merged,
239
+ ignoreMissing: union(managed.ignoreMissing, child.ignoreMissing),
240
+ allowAny: union(managed.allowAny, child.allowAny)
241
+ },
242
+ divergences: av.divergences
243
+ };
244
+ };
245
+
246
+ //#endregion
247
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
248
+ /**
249
+ * `child ?? base` — quiet (no divergences). Prefer local, fall back to managed.
250
+ *
251
+ * @internal
252
+ */
253
+ const scalar = (base, local) => ({
254
+ merged: local ?? base,
255
+ divergences: []
256
+ });
257
+ /**
258
+ * `child ?? base`; flags when child disables a managed boolean. The strategy is
259
+ * field-agnostic, so it emits `setting: ""`; the runtime fills the field name.
260
+ * Detects flag loosening.
261
+ *
262
+ * @internal
263
+ */
264
+ const securityFlag = (base, local) => {
265
+ const merged = local ?? base;
266
+ const divergences = [];
267
+ if (base === true && local === false) divergences.push({
268
+ setting: "",
269
+ managedValue: "true",
270
+ localValue: "false",
271
+ detail: "Disables a security check the managed config enabled.",
272
+ kind: "security"
273
+ });
274
+ return {
275
+ merged,
276
+ divergences
277
+ };
278
+ };
279
+ /**
280
+ * `child ?? base`; flags when child lowers the value. Field-agnostic, so it
281
+ * emits `setting: ""`; the runtime fills the field name. Detects
282
+ * minimum-release-age loosening.
283
+ *
284
+ * @internal
285
+ */
286
+ const securityMin = (base, local) => {
287
+ const merged = local ?? base;
288
+ const divergences = [];
289
+ if (typeof base === "number" && typeof local === "number" && local < base) divergences.push({
290
+ setting: "",
291
+ managedValue: String(base),
292
+ localValue: String(local),
293
+ detail: `Shortens the release-age quarantine from ${base} to ${local} minutes.`,
294
+ kind: "security"
295
+ });
296
+ return {
297
+ merged,
298
+ divergences
299
+ };
300
+ };
301
+
302
+ //#endregion
303
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
304
+ /**
305
+ * Built-in strategies keyed by manifest name.
306
+ *
307
+ * @internal
308
+ */
309
+ const STRATEGY_TABLE = {
310
+ scalar,
311
+ catalogs,
312
+ mapChildWins,
313
+ arrayUnion,
314
+ arrayRecordUnion,
315
+ overrides,
316
+ peerDependencyRules,
317
+ securityFlag,
318
+ securityMin,
319
+ allowBuilds
320
+ };
321
+
322
+ //#endregion
323
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/warnings.js
324
+ const WARNING_BOX_WIDTH = 75;
325
+ function pad(line) {
326
+ return `│${line}${" ".repeat(Math.max(0, WARNING_BOX_WIDTH - line.length - 2))}│`;
327
+ }
328
+ /**
329
+ * Format override divergences into a prominent warning box for console output,
330
+ * tagged with the emitting config's `name`. `Divergence.setting` is the
331
+ * already-resolved config path, printed directly.
332
+ *
333
+ * @internal
334
+ */
335
+ function formatOverrideWarning(divergences, name) {
336
+ if (divergences.length === 0) return "";
337
+ const border = "─".repeat(WARNING_BOX_WIDTH - 2);
338
+ const lines = [];
339
+ lines.push(`┌${border}┐`);
340
+ lines.push(pad(` [${name}]`));
341
+ lines.push(pad(" ⚠️ CATALOG OVERRIDE DETECTED"));
342
+ lines.push(`├${border}┤`);
343
+ lines.push(pad(" The following entries override managed versions:"));
344
+ lines.push(pad(""));
345
+ for (const d of divergences) {
346
+ lines.push(pad(` ${d.setting}`));
347
+ lines.push(pad(` Managed version: ${d.managedValue}`));
348
+ lines.push(pad(` Local override: ${d.localValue}`));
349
+ lines.push(pad(""));
350
+ }
351
+ lines.push(pad(" Local versions will be used. To use the managed defaults, remove"));
352
+ lines.push(pad(" these entries from your pnpm-workspace.yaml."));
353
+ lines.push(`└${border}┘`);
354
+ return lines.join("\n");
355
+ }
356
+ /**
357
+ * Format security-loosening divergences into a prominent box, tagged with the
358
+ * emitting config's `name`.
359
+ *
360
+ * @internal
361
+ */
362
+ function formatSecurityWarning(divergences, name) {
363
+ if (divergences.length === 0) return "";
364
+ const border = "─".repeat(WARNING_BOX_WIDTH - 2);
365
+ const lines = [];
366
+ lines.push(`┌${border}┐`);
367
+ lines.push(pad(` [${name}]`));
368
+ lines.push(pad(" ⚠️ SECURITY OVERRIDE DETECTED"));
369
+ lines.push(`├${border}┤`);
370
+ lines.push(pad(" The following entries weaken managed security defaults:"));
371
+ lines.push(pad(""));
372
+ for (const d of divergences) {
373
+ lines.push(pad(` ${d.setting}: managed=${d.managedValue} -> local=${d.localValue}`));
374
+ lines.push(pad(` ${d.detail}`));
375
+ lines.push(pad(""));
376
+ }
377
+ lines.push(pad(" Local values will be used. Review these before shipping."));
378
+ lines.push(`└${border}┘`);
379
+ return lines.join("\n");
380
+ }
381
+
382
+ //#endregion
383
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.3.0_@types+react@19.2.17_ioredis@5.11.1_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime.js
384
+ /**
385
+ * Build the pnpm hooks from frozen base data + a field→strategy manifest.
386
+ * Zero dependencies — bundled verbatim into the shipped pnpmfile.
387
+ *
388
+ * @remarks
389
+ * `updateConfig` deliberately has no catch-and-fall-back-to-local guard: an
390
+ * `error`-enforced divergence throws `EnforcementError`, which is meant to
391
+ * propagate and fail the install. If a swallow-guard is ever added here, it MUST
392
+ * rethrow `EnforcementError` (check `err instanceof EnforcementError` /
393
+ * `err.name === "EnforcementError"`) rather than fall back to the local config.
394
+ *
395
+ * @public
396
+ */
397
+ function createHooks(base, manifest, name) {
398
+ return { updateConfig(config) {
399
+ const ctx = { rootName: resolveRootName(config) };
400
+ const out = { ...config };
401
+ const allOverrides = [];
402
+ const allSecurity = [];
403
+ for (const [field, entry] of Object.entries(manifest)) {
404
+ const strategy = STRATEGY_TABLE[entry.strategy];
405
+ if (!strategy) continue;
406
+ const result = strategy(base[field], config[field], ctx);
407
+ let merged = result.merged;
408
+ const byRepo = entry.options?.excludeByRepo;
409
+ if (byRepo && Array.isArray(merged)) merged = excludeByRepo(merged, ctx, byRepo);
410
+ const named = result.divergences.map((d) => d.setting === "" ? {
411
+ ...d,
412
+ setting: field
413
+ } : d);
414
+ const { value, overrides, security } = applyEnforcement(field, {
415
+ merged,
416
+ divergences: named
417
+ }, entry.enforcement);
418
+ allOverrides.push(...overrides);
419
+ allSecurity.push(...security);
420
+ if (value !== void 0 && !(typeof value === "object" && value !== null && Object.keys(value).length === 0)) out[field] = value;
421
+ }
422
+ const ob = formatOverrideWarning(allOverrides, name);
423
+ if (ob) console.warn(ob);
424
+ const sb = formatSecurityWarning(allSecurity, name);
425
+ if (sb) console.warn(sb);
426
+ return out;
427
+ } };
428
+ }
429
+
430
+ //#endregion
431
+ //#region \0rolldown-pnpm-config/virtual/pnpmfile
432
+ const hooks = createHooks({
433
+ "catalogs": {
434
+ "effect": {
435
+ "@effect/ai-anthropic": "4.0.0-beta.98",
436
+ "@effect/ai-openai": "4.0.0-beta.98",
437
+ "@effect/ai-openai-compat": "4.0.0-beta.98",
438
+ "@effect/ai-openrouter": "4.0.0-beta.98",
439
+ "@effect/atom-react": "4.0.0-beta.98",
440
+ "@effect/atom-solid": "4.0.0-beta.98",
441
+ "@effect/atom-vue": "4.0.0-beta.98",
442
+ "@effect/openapi-generator": "4.0.0-beta.98",
443
+ "@effect/opentelemetry": "4.0.0-beta.98",
444
+ "@effect/platform-browser": "4.0.0-beta.98",
445
+ "@effect/platform-bun": "4.0.0-beta.98",
446
+ "@effect/platform-node": "4.0.0-beta.98",
447
+ "@effect/platform-node-shared": "4.0.0-beta.98",
448
+ "@effect/sql-clickhouse": "4.0.0-beta.98",
449
+ "@effect/sql-d1": "4.0.0-beta.98",
450
+ "@effect/sql-libsql": "4.0.0-beta.98",
451
+ "@effect/sql-mssql": "4.0.0-beta.98",
452
+ "@effect/sql-mysql2": "4.0.0-beta.98",
453
+ "@effect/sql-pg": "4.0.0-beta.98",
454
+ "@effect/sql-pglite": "4.0.0-beta.98",
455
+ "@effect/sql-sqlite-bun": "4.0.0-beta.98",
456
+ "@effect/sql-sqlite-do": "4.0.0-beta.98",
457
+ "@effect/sql-sqlite-node": "4.0.0-beta.98",
458
+ "@effect/sql-sqlite-react-native": "4.0.0-beta.98",
459
+ "@effect/sql-sqlite-wasm": "4.0.0-beta.98",
460
+ "@effect/tsgo": "^0.19.0",
461
+ "@effect/vitest": "4.0.0-beta.98",
462
+ "effect": "4.0.0-beta.98"
463
+ },
464
+ "effect3": {
465
+ "@effect/ai": "^0.36.0",
466
+ "@effect/ai-amazon-bedrock": "^0.16.1",
467
+ "@effect/ai-anthropic": "^0.26.0",
468
+ "@effect/ai-google": "^0.15.0",
469
+ "@effect/ai-openai": "^0.40.1",
470
+ "@effect/cli": "^0.75.2",
471
+ "@effect/cluster": "^0.59.0",
472
+ "@effect/experimental": "^0.60.0",
473
+ "@effect/language-service": "^0.86.6",
474
+ "@effect/opentelemetry": "^0.63.0",
475
+ "@effect/platform": "^0.96.2",
476
+ "@effect/platform-browser": "^0.76.0",
477
+ "@effect/platform-bun": "^0.90.0",
478
+ "@effect/platform-node": "^0.107.0",
479
+ "@effect/platform-node-shared": "^0.60.0",
480
+ "@effect/printer": "^0.49.0",
481
+ "@effect/printer-ansi": "^0.49.0",
482
+ "@effect/rpc": "^0.75.1",
483
+ "@effect/sql": "^0.51.1",
484
+ "@effect/sql-clickhouse": "^0.49.0",
485
+ "@effect/sql-d1": "^0.49.0",
486
+ "@effect/sql-drizzle": "^0.50.0",
487
+ "@effect/sql-kysely": "^0.47.0",
488
+ "@effect/sql-libsql": "^0.41.0",
489
+ "@effect/sql-mssql": "^0.52.0",
490
+ "@effect/sql-mysql2": "^0.52.0",
491
+ "@effect/sql-pg": "^0.52.1",
492
+ "@effect/sql-sqlite-bun": "^0.52.0",
493
+ "@effect/sql-sqlite-do": "^0.29.0",
494
+ "@effect/sql-sqlite-node": "^0.52.0",
495
+ "@effect/sql-sqlite-react-native": "^0.54.0",
496
+ "@effect/sql-sqlite-wasm": "^0.52.0",
497
+ "@effect/typeclass": "^0.40.0",
498
+ "@effect/vitest": "^0.29.0",
499
+ "@effect/workflow": "^0.18.2",
500
+ "effect": "^3.21.4"
501
+ },
502
+ "effect3Peers": {
503
+ "@effect/ai": "^0.36.0",
504
+ "@effect/ai-amazon-bedrock": "^0.16.1",
505
+ "@effect/ai-anthropic": "^0.26.0",
506
+ "@effect/ai-google": "^0.15.0",
507
+ "@effect/ai-openai": "^0.40.1",
508
+ "@effect/cli": "^0.75.2",
509
+ "@effect/cluster": "^0.59.0",
510
+ "@effect/experimental": "^0.60.0",
511
+ "@effect/language-service": "^0.86.6",
512
+ "@effect/opentelemetry": "^0.63.0",
513
+ "@effect/platform": "^0.96.0",
514
+ "@effect/platform-browser": "^0.76.0",
515
+ "@effect/platform-bun": "^0.90.0",
516
+ "@effect/platform-node": "^0.107.0",
517
+ "@effect/platform-node-shared": "^0.60.0",
518
+ "@effect/printer": "^0.49.0",
519
+ "@effect/printer-ansi": "^0.49.0",
520
+ "@effect/rpc": "^0.75.1",
521
+ "@effect/sql": "^0.51.0",
522
+ "@effect/sql-clickhouse": "^0.49.0",
523
+ "@effect/sql-d1": "^0.49.0",
524
+ "@effect/sql-drizzle": "^0.50.0",
525
+ "@effect/sql-kysely": "^0.47.0",
526
+ "@effect/sql-libsql": "^0.41.0",
527
+ "@effect/sql-mssql": "^0.52.0",
528
+ "@effect/sql-mysql2": "^0.52.0",
529
+ "@effect/sql-pg": "^0.52.1",
530
+ "@effect/sql-sqlite-bun": "^0.52.0",
531
+ "@effect/sql-sqlite-do": "^0.29.0",
532
+ "@effect/sql-sqlite-node": "^0.52.0",
533
+ "@effect/sql-sqlite-react-native": "^0.54.0",
534
+ "@effect/sql-sqlite-wasm": "^0.52.0",
535
+ "@effect/typeclass": "^0.40.0",
536
+ "@effect/vitest": "^0.29.0",
537
+ "@effect/workflow": "^0.18.2",
538
+ "effect": "^3.21.0"
539
+ },
540
+ "effectPeers": {
541
+ "@effect/ai-anthropic": "4.0.0-beta.98",
542
+ "@effect/ai-openai": "4.0.0-beta.98",
543
+ "@effect/ai-openai-compat": "4.0.0-beta.98",
544
+ "@effect/ai-openrouter": "4.0.0-beta.98",
545
+ "@effect/atom-react": "4.0.0-beta.98",
546
+ "@effect/atom-solid": "4.0.0-beta.98",
547
+ "@effect/atom-vue": "4.0.0-beta.98",
548
+ "@effect/openapi-generator": "4.0.0-beta.98",
549
+ "@effect/opentelemetry": "4.0.0-beta.98",
550
+ "@effect/platform-browser": "4.0.0-beta.98",
551
+ "@effect/platform-bun": "4.0.0-beta.98",
552
+ "@effect/platform-node": "4.0.0-beta.98",
553
+ "@effect/platform-node-shared": "4.0.0-beta.98",
554
+ "@effect/sql-clickhouse": "4.0.0-beta.98",
555
+ "@effect/sql-d1": "4.0.0-beta.98",
556
+ "@effect/sql-libsql": "4.0.0-beta.98",
557
+ "@effect/sql-mssql": "4.0.0-beta.98",
558
+ "@effect/sql-mysql2": "4.0.0-beta.98",
559
+ "@effect/sql-pg": "4.0.0-beta.98",
560
+ "@effect/sql-pglite": "4.0.0-beta.98",
561
+ "@effect/sql-sqlite-bun": "4.0.0-beta.98",
562
+ "@effect/sql-sqlite-do": "4.0.0-beta.98",
563
+ "@effect/sql-sqlite-node": "4.0.0-beta.98",
564
+ "@effect/sql-sqlite-react-native": "4.0.0-beta.98",
565
+ "@effect/sql-sqlite-wasm": "4.0.0-beta.98",
566
+ "@effect/tsgo": "^0.16.2",
567
+ "@effect/vitest": "4.0.0-beta.98",
568
+ "effect": "4.0.0-beta.98"
569
+ }
570
+ },
571
+ "minimumReleaseAgeExclude": ["@effect/tsgo-*"]
572
+ }, {
573
+ "catalogs": {
574
+ "enforcement": "warn",
575
+ "strategy": "catalogs"
576
+ },
577
+ "minimumReleaseAgeExclude": {
578
+ "enforcement": "absent",
579
+ "strategy": "arrayUnion"
580
+ }
581
+ }, "@effected/pnpm-plugin-effect");
582
+
583
+ //#endregion
584
+ exports.hooks = hooks;