@savvy-web/pnpm-plugin-silk 0.26.1 → 0.28.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/README.md +32 -17
- package/index.js +26 -235
- package/package.json +1 -1
- package/pnpmfile.cjs +37 -245
- package/pnpmfile.mjs +37 -245
- package/tsdoc-metadata.json +1 -1
package/pnpmfile.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { readFileSync } from "node:fs";
|
|
2
2
|
import { join } from "node:path";
|
|
3
3
|
|
|
4
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
4
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/ctx.js
|
|
5
5
|
/**
|
|
6
6
|
* Resolve the consuming repo's root package name. Prefers pnpm's
|
|
7
7
|
* `rootProjectManifest.name`, falling back to reading `package.json` from the
|
|
@@ -36,7 +36,7 @@ function excludeByRepo(merged, ctx, byRepo) {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
//#endregion
|
|
39
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
39
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/enforcement.js
|
|
40
40
|
/**
|
|
41
41
|
* Thrown when an `error`-enforced field diverges. A zero-dependency plain
|
|
42
42
|
* `Error` subclass (NOT an Effect type) so it survives in the bundled pnpmfile.
|
|
@@ -71,7 +71,7 @@ function applyEnforcement(field, result, enforcement) {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
//#endregion
|
|
74
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
74
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
|
|
75
75
|
function unionSort(managed, local) {
|
|
76
76
|
const set = new Set(managed);
|
|
77
77
|
for (const item of local ?? []) set.add(item);
|
|
@@ -107,7 +107,7 @@ const arrayRecordUnion = (base, local) => {
|
|
|
107
107
|
};
|
|
108
108
|
|
|
109
109
|
//#endregion
|
|
110
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
110
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
|
|
111
111
|
/**
|
|
112
112
|
* Merge each named catalog; child wins per package. Emits override divergences
|
|
113
113
|
* when a local version differs from the managed one.
|
|
@@ -142,7 +142,7 @@ const catalogs = (base, local) => {
|
|
|
142
142
|
};
|
|
143
143
|
|
|
144
144
|
//#endregion
|
|
145
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
145
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
|
|
146
146
|
/**
|
|
147
147
|
* `{...managed, ...child}` — child wins per key. Quiet. Merges two maps,
|
|
148
148
|
* preferring child values.
|
|
@@ -187,7 +187,7 @@ const allowBuilds = (base, local) => {
|
|
|
187
187
|
};
|
|
188
188
|
|
|
189
189
|
//#endregion
|
|
190
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
190
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
|
|
191
191
|
function mergeMapDetect(prefix, managed, child) {
|
|
192
192
|
const merged = { ...managed };
|
|
193
193
|
const divergences = [];
|
|
@@ -243,7 +243,7 @@ const peerDependencyRules = (base, local) => {
|
|
|
243
243
|
};
|
|
244
244
|
|
|
245
245
|
//#endregion
|
|
246
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
246
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
|
|
247
247
|
/**
|
|
248
248
|
* `child ?? base` — quiet (no divergences). Prefer local, fall back to managed.
|
|
249
249
|
*
|
|
@@ -299,7 +299,7 @@ const securityMin = (base, local) => {
|
|
|
299
299
|
};
|
|
300
300
|
|
|
301
301
|
//#endregion
|
|
302
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
302
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
|
|
303
303
|
/**
|
|
304
304
|
* Built-in strategies keyed by manifest name.
|
|
305
305
|
*
|
|
@@ -319,7 +319,7 @@ const STRATEGY_TABLE = {
|
|
|
319
319
|
};
|
|
320
320
|
|
|
321
321
|
//#endregion
|
|
322
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
322
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime/warnings.js
|
|
323
323
|
const WARNING_BOX_WIDTH = 75;
|
|
324
324
|
function pad(line) {
|
|
325
325
|
return `│${line}${" ".repeat(Math.max(0, WARNING_BOX_WIDTH - line.length - 2))}│`;
|
|
@@ -379,7 +379,7 @@ function formatSecurityWarning(divergences, name) {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
//#endregion
|
|
382
|
-
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.
|
|
382
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.2_@types+react@19.2.18_redis@6.2.1_rolldown@1.2.5/node_modules/rolldown-pnpm-config/runtime.js
|
|
383
383
|
/**
|
|
384
384
|
* Build the pnpm hooks from frozen base data + a field→strategy manifest.
|
|
385
385
|
* Zero dependencies — bundled verbatim into the shipped pnpmfile.
|
|
@@ -430,6 +430,7 @@ function createHooks(base, manifest, name) {
|
|
|
430
430
|
//#region \0rolldown-pnpm-config/virtual/pnpmfile
|
|
431
431
|
const hooks = createHooks({
|
|
432
432
|
"allowBuilds": {
|
|
433
|
+
"@modelcontextprotocol/inspector": true,
|
|
433
434
|
"@parcel/watcher": true,
|
|
434
435
|
"better-sqlite3": true,
|
|
435
436
|
"core-js": true,
|
|
@@ -447,18 +448,18 @@ const hooks = createHooks({
|
|
|
447
448
|
"blockExoticSubdeps": true,
|
|
448
449
|
"catalogs": {
|
|
449
450
|
"build": {
|
|
450
|
-
"@rsbuild/core": "^2.1.
|
|
451
|
+
"@rsbuild/core": "^2.1.13",
|
|
451
452
|
"@tsdown/css": "^0.22.14",
|
|
452
453
|
"@tsdown/exe": "^0.22.14",
|
|
453
454
|
"@types/bun": "^1.3.14",
|
|
454
|
-
"@types/node": "^26.
|
|
455
|
+
"@types/node": "^26.2.0",
|
|
455
456
|
"@types/react": "^19.2.18",
|
|
456
457
|
"@types/react-dom": "^19.2.4",
|
|
457
458
|
"react": "^19.2.8",
|
|
458
459
|
"react-dom": "^19.2.8",
|
|
459
|
-
"rolldown": "^1.2.
|
|
460
|
+
"rolldown": "^1.2.5",
|
|
460
461
|
"tsdown": "^0.22.14",
|
|
461
|
-
"tsx": "^4.23.
|
|
462
|
+
"tsx": "^4.23.12",
|
|
462
463
|
"typescript": "^7.0.2"
|
|
463
464
|
},
|
|
464
465
|
"build:peers": {
|
|
@@ -466,61 +467,33 @@ const hooks = createHooks({
|
|
|
466
467
|
"@tsdown/css": "^0.22.0",
|
|
467
468
|
"@tsdown/exe": "^0.22.0",
|
|
468
469
|
"@types/bun": "^1.3.14",
|
|
469
|
-
"@types/node": "^26.
|
|
470
|
+
"@types/node": "^26.2.0",
|
|
470
471
|
"@types/react": "^19.2.0",
|
|
471
472
|
"@types/react-dom": "^19.2.0",
|
|
472
473
|
"react": "^19.2.0",
|
|
473
474
|
"react-dom": "^19.2.0",
|
|
474
475
|
"rolldown": "^1.2.0",
|
|
475
476
|
"tsdown": "^0.22.0",
|
|
476
|
-
"tsx": "^4.23.
|
|
477
|
-
"typescript": "^7.0.0"
|
|
478
|
-
},
|
|
479
|
-
"buildPeers": {
|
|
480
|
-
"@rsbuild/core": "^2.1.0",
|
|
481
|
-
"@tsdown/css": "^0.22.0",
|
|
482
|
-
"@tsdown/exe": "^0.22.0",
|
|
483
|
-
"@types/bun": "^1.3.14",
|
|
484
|
-
"@types/node": "^26.1.0",
|
|
485
|
-
"@types/react": "^19.2.0",
|
|
486
|
-
"@types/react-dom": "^19.2.0",
|
|
487
|
-
"react": "^19.2.0",
|
|
488
|
-
"react-dom": "^19.2.0",
|
|
489
|
-
"rolldown": "^1.2.0",
|
|
490
|
-
"tsdown": "^0.22.0",
|
|
491
|
-
"tsx": "^4.23.4",
|
|
477
|
+
"tsx": "^4.23.12",
|
|
492
478
|
"typescript": "^7.0.0"
|
|
493
479
|
},
|
|
494
480
|
"docs": {
|
|
495
481
|
"@rspress/core": "^2.0.19",
|
|
496
482
|
"@rspress/plugin-sitemap": "^2.0.19",
|
|
497
|
-
"@types/node": "^26.
|
|
483
|
+
"@types/node": "^26.2.0",
|
|
498
484
|
"@types/react": "^19.2.18",
|
|
499
485
|
"@types/react-dom": "^19.2.4",
|
|
500
486
|
"react": "^19.2.8",
|
|
501
487
|
"react-dom": "^19.2.8",
|
|
502
488
|
"rspress-plugin-mermaid": "^1.0.1",
|
|
503
489
|
"typescript": "^7.0.2",
|
|
504
|
-
"vite": "^8.2.
|
|
490
|
+
"vite": "^8.2.1",
|
|
505
491
|
"vitepress": "^2.0.0-alpha.19"
|
|
506
492
|
},
|
|
507
493
|
"docs:peers": {
|
|
508
494
|
"@rspress/core": "^2.0.0",
|
|
509
495
|
"@rspress/plugin-sitemap": "^2.0.19",
|
|
510
|
-
"@types/node": "^26.
|
|
511
|
-
"@types/react": "^19.2.0",
|
|
512
|
-
"@types/react-dom": "^19.2.0",
|
|
513
|
-
"react": "^19.2.0",
|
|
514
|
-
"react-dom": "^19.2.0",
|
|
515
|
-
"rspress-plugin-mermaid": "^1.0.1",
|
|
516
|
-
"typescript": "^7.0.0",
|
|
517
|
-
"vite": "^8.2.0",
|
|
518
|
-
"vitepress": "^2.0.0-alpha.19"
|
|
519
|
-
},
|
|
520
|
-
"docsPeers": {
|
|
521
|
-
"@rspress/core": "^2.0.0",
|
|
522
|
-
"@rspress/plugin-sitemap": "^2.0.19",
|
|
523
|
-
"@types/node": "^26.1.0",
|
|
496
|
+
"@types/node": "^26.2.0",
|
|
524
497
|
"@types/react": "^19.2.0",
|
|
525
498
|
"@types/react-dom": "^19.2.0",
|
|
526
499
|
"react": "^19.2.0",
|
|
@@ -532,246 +505,65 @@ const hooks = createHooks({
|
|
|
532
505
|
},
|
|
533
506
|
"lint": {
|
|
534
507
|
"@biomejs/biome": "2.5.0",
|
|
535
|
-
"@changesets/cli": "^3.0.
|
|
536
|
-
"@commitlint/cli": "^21.2.
|
|
537
|
-
"@commitlint/config-conventional": "^21.2.
|
|
508
|
+
"@changesets/cli": "^3.0.1",
|
|
509
|
+
"@commitlint/cli": "^21.2.2",
|
|
510
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
538
511
|
"husky": "^9.1.7",
|
|
539
512
|
"lint-staged": "^17.3.0",
|
|
540
513
|
"markdownlint-cli2": "^0.23.2",
|
|
541
514
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
542
|
-
"turbo": "^2.10.
|
|
515
|
+
"turbo": "^2.10.11"
|
|
543
516
|
},
|
|
544
517
|
"lint:peers": {
|
|
545
518
|
"@biomejs/biome": "2.5.0",
|
|
546
|
-
"@changesets/cli": "^3.0.
|
|
547
|
-
"@commitlint/cli": "^21.2.
|
|
548
|
-
"@commitlint/config-conventional": "^21.2.
|
|
549
|
-
"husky": "^9.1.7",
|
|
550
|
-
"lint-staged": "^17.3.0",
|
|
551
|
-
"markdownlint-cli2": "^0.23.2",
|
|
552
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
553
|
-
"turbo": "^2.10.8"
|
|
554
|
-
},
|
|
555
|
-
"lintPeers": {
|
|
556
|
-
"@biomejs/biome": "2.5.0",
|
|
557
|
-
"@changesets/cli": "^3.0.0",
|
|
558
|
-
"@commitlint/cli": "^21.2.1",
|
|
559
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
519
|
+
"@changesets/cli": "^3.0.1",
|
|
520
|
+
"@commitlint/cli": "^21.2.2",
|
|
521
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
560
522
|
"husky": "^9.1.7",
|
|
561
523
|
"lint-staged": "^17.3.0",
|
|
562
524
|
"markdownlint-cli2": "^0.23.2",
|
|
563
525
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
564
|
-
"turbo": "^2.10.
|
|
526
|
+
"turbo": "^2.10.11"
|
|
565
527
|
},
|
|
566
528
|
"silk": {
|
|
567
|
-
"@changesets/cli": "^3.0.0",
|
|
568
|
-
"@commitlint/cli": "^21.2.1",
|
|
569
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
570
|
-
"@effect/ai": "^0.36.0",
|
|
571
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
572
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
573
|
-
"@effect/ai-google": "^0.15.0",
|
|
574
|
-
"@effect/ai-openai": "^0.40.1",
|
|
575
|
-
"@effect/cli": "^0.75.2",
|
|
576
|
-
"@effect/cluster": "^0.59.0",
|
|
577
|
-
"@effect/experimental": "^0.60.0",
|
|
578
|
-
"@effect/language-service": "^0.86.6",
|
|
579
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
580
|
-
"@effect/platform": "^0.96.2",
|
|
581
|
-
"@effect/platform-browser": "^0.76.0",
|
|
582
|
-
"@effect/platform-bun": "^0.90.0",
|
|
583
|
-
"@effect/platform-node": "^0.107.0",
|
|
584
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
585
|
-
"@effect/printer": "^0.49.0",
|
|
586
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
587
|
-
"@effect/rpc": "^0.75.1",
|
|
588
|
-
"@effect/sql": "^0.51.1",
|
|
589
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
590
|
-
"@effect/sql-d1": "^0.49.0",
|
|
591
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
592
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
593
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
594
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
595
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
596
|
-
"@effect/sql-pg": "^0.52.1",
|
|
597
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
598
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
599
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
600
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
601
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
602
|
-
"@effect/tsgo": "^0.19.0",
|
|
603
|
-
"@effect/typeclass": "^0.40.0",
|
|
604
|
-
"@effect/vitest": "^0.29.0",
|
|
605
|
-
"@effect/workflow": "^0.18.2",
|
|
606
|
-
"@rsbuild/core": "^2.1.9",
|
|
607
|
-
"@rspress/core": "^2.0.19",
|
|
608
|
-
"@tsdown/css": "^0.22.14",
|
|
609
|
-
"@tsdown/exe": "^0.22.14",
|
|
610
529
|
"@types/bun": "^1.3.14",
|
|
611
|
-
"@types/node": "^26.
|
|
530
|
+
"@types/node": "^26.2.0",
|
|
612
531
|
"@types/react": "^19.2.18",
|
|
613
532
|
"@types/react-dom": "^19.2.4",
|
|
614
533
|
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
615
|
-
"@vitest/coverage-istanbul": "^4.1.10",
|
|
616
|
-
"@vitest/coverage-v8": "^4.1.10",
|
|
617
|
-
"effect": "^3.21.4",
|
|
618
534
|
"husky": "^9.1.7",
|
|
619
535
|
"lint-staged": "^17.3.0",
|
|
620
536
|
"markdownlint-cli2": "^0.23.2",
|
|
621
537
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
622
538
|
"react": "^19.2.8",
|
|
623
539
|
"react-dom": "^19.2.8",
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"tsx": "^4.23.4",
|
|
627
|
-
"turbo": "^2.10.8",
|
|
628
|
-
"typescript": "^7.0.2",
|
|
629
|
-
"vitest": "^4.1.10"
|
|
540
|
+
"tsx": "^4.23.12",
|
|
541
|
+
"typescript": "^7.0.2"
|
|
630
542
|
},
|
|
631
543
|
"silk:peers": {
|
|
632
|
-
"@changesets/cli": "^3.0.0",
|
|
633
|
-
"@commitlint/cli": "^21.2.1",
|
|
634
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
635
|
-
"@effect/ai": "^0.36.0",
|
|
636
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
637
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
638
|
-
"@effect/ai-google": "^0.15.0",
|
|
639
|
-
"@effect/ai-openai": "^0.40.1",
|
|
640
|
-
"@effect/cli": "^0.75.2",
|
|
641
|
-
"@effect/cluster": "^0.59.0",
|
|
642
|
-
"@effect/experimental": "^0.60.0",
|
|
643
|
-
"@effect/language-service": "^0.86.6",
|
|
644
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
645
|
-
"@effect/platform": "^0.96.0",
|
|
646
|
-
"@effect/platform-browser": "^0.76.0",
|
|
647
|
-
"@effect/platform-bun": "^0.90.0",
|
|
648
|
-
"@effect/platform-node": "^0.107.0",
|
|
649
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
650
|
-
"@effect/printer": "^0.49.0",
|
|
651
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
652
|
-
"@effect/rpc": "^0.75.1",
|
|
653
|
-
"@effect/sql": "^0.51.0",
|
|
654
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
655
|
-
"@effect/sql-d1": "^0.49.0",
|
|
656
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
657
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
658
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
659
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
660
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
661
|
-
"@effect/sql-pg": "^0.52.1",
|
|
662
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
663
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
664
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
665
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
666
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
667
|
-
"@effect/tsgo": "^0.19.0",
|
|
668
|
-
"@effect/typeclass": "^0.40.0",
|
|
669
|
-
"@effect/vitest": "^0.29.0",
|
|
670
|
-
"@effect/workflow": "^0.18.2",
|
|
671
|
-
"@rsbuild/core": "^2.1.0",
|
|
672
|
-
"@rspress/core": "^2.0.0",
|
|
673
|
-
"@tsdown/css": "^0.22.14",
|
|
674
|
-
"@tsdown/exe": "^0.22.14",
|
|
675
|
-
"@types/bun": "^1.3.14",
|
|
676
|
-
"@types/node": "^26.1.0",
|
|
677
|
-
"@types/react": "^19.2.0",
|
|
678
|
-
"@types/react-dom": "^19.2.0",
|
|
679
|
-
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
680
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
681
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
682
|
-
"effect": "^3.21.0",
|
|
683
|
-
"husky": "^9.1.7",
|
|
684
|
-
"lint-staged": "^17.3.0",
|
|
685
|
-
"markdownlint-cli2": "^0.23.2",
|
|
686
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
687
|
-
"react": "^19.2.0",
|
|
688
|
-
"react-dom": "^19.2.0",
|
|
689
|
-
"rolldown": "^1.2.0",
|
|
690
|
-
"tsdown": "^0.22.0",
|
|
691
|
-
"tsx": "^4.23.4",
|
|
692
|
-
"turbo": "^2.10.8",
|
|
693
|
-
"typescript": "^7.0.0",
|
|
694
|
-
"vitest": "^4.1.0"
|
|
695
|
-
},
|
|
696
|
-
"silkPeers": {
|
|
697
|
-
"@changesets/cli": "^3.0.0",
|
|
698
|
-
"@commitlint/cli": "^21.2.1",
|
|
699
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
700
|
-
"@effect/ai": "^0.36.0",
|
|
701
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
702
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
703
|
-
"@effect/ai-google": "^0.15.0",
|
|
704
|
-
"@effect/ai-openai": "^0.40.1",
|
|
705
|
-
"@effect/cli": "^0.75.2",
|
|
706
|
-
"@effect/cluster": "^0.59.0",
|
|
707
|
-
"@effect/experimental": "^0.60.0",
|
|
708
|
-
"@effect/language-service": "^0.86.6",
|
|
709
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
710
|
-
"@effect/platform": "^0.96.0",
|
|
711
|
-
"@effect/platform-browser": "^0.76.0",
|
|
712
|
-
"@effect/platform-bun": "^0.90.0",
|
|
713
|
-
"@effect/platform-node": "^0.107.0",
|
|
714
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
715
|
-
"@effect/printer": "^0.49.0",
|
|
716
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
717
|
-
"@effect/rpc": "^0.75.1",
|
|
718
|
-
"@effect/sql": "^0.51.0",
|
|
719
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
720
|
-
"@effect/sql-d1": "^0.49.0",
|
|
721
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
722
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
723
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
724
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
725
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
726
|
-
"@effect/sql-pg": "^0.52.1",
|
|
727
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
728
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
729
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
730
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
731
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
732
|
-
"@effect/tsgo": "^0.19.0",
|
|
733
|
-
"@effect/typeclass": "^0.40.0",
|
|
734
|
-
"@effect/vitest": "^0.29.0",
|
|
735
|
-
"@effect/workflow": "^0.18.2",
|
|
736
|
-
"@rsbuild/core": "^2.1.0",
|
|
737
|
-
"@rspress/core": "^2.0.0",
|
|
738
|
-
"@tsdown/css": "^0.22.14",
|
|
739
|
-
"@tsdown/exe": "^0.22.14",
|
|
740
544
|
"@types/bun": "^1.3.14",
|
|
741
|
-
"@types/node": "^26.
|
|
545
|
+
"@types/node": "^26.2.0",
|
|
742
546
|
"@types/react": "^19.2.0",
|
|
743
547
|
"@types/react-dom": "^19.2.0",
|
|
744
548
|
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
745
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
746
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
747
|
-
"effect": "^3.21.0",
|
|
748
549
|
"husky": "^9.1.7",
|
|
749
550
|
"lint-staged": "^17.3.0",
|
|
750
551
|
"markdownlint-cli2": "^0.23.2",
|
|
751
552
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
752
553
|
"react": "^19.2.0",
|
|
753
554
|
"react-dom": "^19.2.0",
|
|
754
|
-
"
|
|
755
|
-
"
|
|
756
|
-
"tsx": "^4.23.4",
|
|
757
|
-
"turbo": "^2.10.8",
|
|
758
|
-
"typescript": "^7.0.0",
|
|
759
|
-
"vitest": "^4.1.0"
|
|
555
|
+
"tsx": "^4.23.12",
|
|
556
|
+
"typescript": "^7.0.0"
|
|
760
557
|
},
|
|
761
558
|
"test": {
|
|
762
|
-
"@vitest/coverage-istanbul": "^4.1.
|
|
763
|
-
"@vitest/coverage-v8": "^4.1.
|
|
764
|
-
"vitest": "^4.1.
|
|
559
|
+
"@vitest/coverage-istanbul": "^4.1.11",
|
|
560
|
+
"@vitest/coverage-v8": "^4.1.11",
|
|
561
|
+
"vitest": "^4.1.11"
|
|
765
562
|
},
|
|
766
563
|
"test:peers": {
|
|
767
564
|
"@vitest/coverage-istanbul": "^4.1.0",
|
|
768
565
|
"@vitest/coverage-v8": "^4.1.0",
|
|
769
566
|
"vitest": "^4.1.0"
|
|
770
|
-
},
|
|
771
|
-
"testPeers": {
|
|
772
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
773
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
774
|
-
"vitest": "^4.1.0"
|
|
775
567
|
}
|
|
776
568
|
},
|
|
777
569
|
"confirmModulesPurge": false,
|