@savvy-web/pnpm-plugin-silk 0.22.0 → 0.23.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 CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/@savvy-web%2Fpnpm-plugin-silk?label=npm&color=cb3837)](https://www.npmjs.com/package/@savvy-web/pnpm-plugin-silk)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-4caf50.svg)](https://opensource.org/licenses/MIT)
5
- [![TypeScript 6.0](https://img.shields.io/badge/TypeScript-6.0-3178c6.svg)](https://www.typescriptlang.org/)
5
+ [![Node.js %3E%3D24.11.0](https://img.shields.io/badge/Node.js-%3E%3D24.11.0-5fa04e.svg)](https://nodejs.org/)
6
+ [![TypeScript 7.0](https://img.shields.io/badge/TypeScript-7.0-3178c6.svg)](https://www.typescriptlang.org/)
6
7
  [![pnpm](https://img.shields.io/badge/pnpm-%3E%3D11-orange)](https://pnpm.io/)
7
8
 
8
9
  Centralized dependency-version management for the Silk ecosystem, delivered as a pnpm config dependency. Define dependency catalogs, security overrides and build settings once, then share them across every repository in the ecosystem.
@@ -10,7 +11,7 @@ Centralized dependency-version management for the Silk ecosystem, delivered as a
10
11
  ## Features
11
12
 
12
13
  - **Dual catalog strategy** — current versions for direct dependencies (`catalog:silk`) and permissive ranges for peer dependencies (`catalog:silkPeers`)
13
- - **Security overrides** — centralized CVE fixes via `overrides` that propagate to every consuming repository
14
+ - **Security overrides** — centralized CVE fixes and compatibility pins via `overrides` that propagate to every consuming repository
14
15
  - **Build allowlist** — an `allowBuilds` map controls which packages may run install scripts; consuming repos extend it per key
15
16
  - **Security defaults** — `strictDepBuilds`, `blockExoticSubdeps` and `minimumReleaseAge` are enforced by default; weakening one triggers a warning
16
17
  - **Workspace settings inheritance** — `publicHoistPattern` and `allowedDeprecatedVersions` merge into consuming workspaces
package/index.js CHANGED
@@ -1,5 +1,8 @@
1
1
  //#region \0rolldown-pnpm-config/virtual/catalogs
2
2
  const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
3
+ ["@changesets/cli", "^3.0.0-next.8"],
4
+ ["@commitlint/cli", "^21.2.1"],
5
+ ["@commitlint/config-conventional", "^21.2.0"],
3
6
  ["@effect/ai", "^0.36.0"],
4
7
  ["@effect/ai-amazon-bedrock", "^0.16.1"],
5
8
  ["@effect/ai-anthropic", "^0.26.0"],
@@ -8,7 +11,7 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
8
11
  ["@effect/cli", "^0.75.2"],
9
12
  ["@effect/cluster", "^0.59.0"],
10
13
  ["@effect/experimental", "^0.60.0"],
11
- ["@effect/language-service", "^0.86.4"],
14
+ ["@effect/language-service", "^0.86.6"],
12
15
  ["@effect/opentelemetry", "^0.63.0"],
13
16
  ["@effect/platform", "^0.96.2"],
14
17
  ["@effect/platform-browser", "^0.76.0"],
@@ -32,10 +35,14 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
32
35
  ["@effect/sql-sqlite-node", "^0.52.0"],
33
36
  ["@effect/sql-sqlite-react-native", "^0.54.0"],
34
37
  ["@effect/sql-sqlite-wasm", "^0.52.0"],
35
- ["@effect/tsgo", "^0.16.3"],
38
+ ["@effect/tsgo", "^0.19.0"],
36
39
  ["@effect/typeclass", "^0.40.0"],
37
40
  ["@effect/vitest", "^0.29.0"],
38
41
  ["@effect/workflow", "^0.18.2"],
42
+ ["@rsbuild/core", "^2.1.5"],
43
+ ["@rspress/core", "^2.0.17"],
44
+ ["@tsdown/css", "^0.22.5"],
45
+ ["@tsdown/exe", "^0.22.5"],
39
46
  ["@types/node", "^26.1.1"],
40
47
  ["@types/react", "^19.2.17"],
41
48
  ["@types/react-dom", "^19.2.3"],
@@ -43,12 +50,22 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
43
50
  ["@vitest/coverage-istanbul", "^4.1.10"],
44
51
  ["@vitest/coverage-v8", "^4.1.10"],
45
52
  ["effect", "^3.21.4"],
53
+ ["husky", "^9.1.7"],
54
+ ["lint-staged", "^17.0.8"],
55
+ ["markdownlint-cli2", "^0.23.0"],
56
+ ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
46
57
  ["react", "^19.2.7"],
47
58
  ["react-dom", "^19.2.7"],
59
+ ["rolldown", "^1.1.5"],
60
+ ["tsdown", "^0.22.5"],
48
61
  ["tsx", "^4.23.0"],
49
- ["typescript", "^6.0.3"],
62
+ ["turbo", "^2.10.4"],
63
+ ["typescript", "^7.0.2"],
50
64
  ["vitest", "^4.1.10"]
51
65
  ])], ["silkPeers", /* @__PURE__ */ new Map([
66
+ ["@changesets/cli", "^3.0.0"],
67
+ ["@commitlint/cli", "^21.2.1"],
68
+ ["@commitlint/config-conventional", "^21.2.0"],
52
69
  ["@effect/ai", "^0.36.0"],
53
70
  ["@effect/ai-amazon-bedrock", "^0.16.1"],
54
71
  ["@effect/ai-anthropic", "^0.26.0"],
@@ -57,7 +74,7 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
57
74
  ["@effect/cli", "^0.75.2"],
58
75
  ["@effect/cluster", "^0.59.0"],
59
76
  ["@effect/experimental", "^0.60.0"],
60
- ["@effect/language-service", "^0.86.4"],
77
+ ["@effect/language-service", "^0.86.6"],
61
78
  ["@effect/opentelemetry", "^0.63.0"],
62
79
  ["@effect/platform", "^0.96.0"],
63
80
  ["@effect/platform-browser", "^0.76.0"],
@@ -81,10 +98,14 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
81
98
  ["@effect/sql-sqlite-node", "^0.52.0"],
82
99
  ["@effect/sql-sqlite-react-native", "^0.54.0"],
83
100
  ["@effect/sql-sqlite-wasm", "^0.52.0"],
84
- ["@effect/tsgo", "^0.16.3"],
101
+ ["@effect/tsgo", "^0.19.0"],
85
102
  ["@effect/typeclass", "^0.40.0"],
86
103
  ["@effect/vitest", "^0.29.0"],
87
104
  ["@effect/workflow", "^0.18.2"],
105
+ ["@rsbuild/core", "^2.1.0"],
106
+ ["@rspress/core", "^2.0.0"],
107
+ ["@tsdown/css", "^0.22.5"],
108
+ ["@tsdown/exe", "^0.22.5"],
88
109
  ["@types/node", "^26.1.0"],
89
110
  ["@types/react", "^19.2.0"],
90
111
  ["@types/react-dom", "^19.2.0"],
@@ -92,10 +113,17 @@ const catalogs = /* @__PURE__ */ new Map([["silk", /* @__PURE__ */ new Map([
92
113
  ["@vitest/coverage-istanbul", "^4.1.0"],
93
114
  ["@vitest/coverage-v8", "^4.1.0"],
94
115
  ["effect", "^3.21.0"],
116
+ ["husky", "^9.1.7"],
117
+ ["lint-staged", "^17.0.8"],
118
+ ["markdownlint-cli2", "^0.23.0"],
119
+ ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
95
120
  ["react", "^19.2.0"],
96
121
  ["react-dom", "^19.2.0"],
122
+ ["rolldown", "^1.1.0"],
123
+ ["tsdown", "^0.22.0"],
97
124
  ["tsx", "^4.23.0"],
98
- ["typescript", "^6.0.0"],
125
+ ["turbo", "^2.10.4"],
126
+ ["typescript", "^7.0.0"],
99
127
  ["vitest", "^4.1.0"]
100
128
  ])]]);
101
129
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/pnpm-plugin-silk",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "private": false,
5
5
  "description": "pnpm config dependency for centralized catalog management across the Silk ecosystem.",
6
6
  "keywords": [
package/pnpmfile.cjs CHANGED
@@ -2,7 +2,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
2
  let node_fs = require("node:fs");
3
3
  let node_path = require("node:path");
4
4
 
5
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/ctx.js
5
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/ctx.js
6
6
  /**
7
7
  * Resolve the consuming repo's root package name. Prefers pnpm's
8
8
  * `rootProjectManifest.name`, falling back to reading `package.json` from the
@@ -37,7 +37,7 @@ function excludeByRepo(merged, ctx, byRepo) {
37
37
  }
38
38
 
39
39
  //#endregion
40
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/enforcement.js
40
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/enforcement.js
41
41
  /**
42
42
  * Thrown when an `error`-enforced field diverges. A zero-dependency plain
43
43
  * `Error` subclass (NOT an Effect type) so it survives in the bundled pnpmfile.
@@ -72,7 +72,7 @@ function applyEnforcement(field, result, enforcement) {
72
72
  }
73
73
 
74
74
  //#endregion
75
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
75
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
76
76
  function unionSort(managed, local) {
77
77
  const set = new Set(managed);
78
78
  for (const item of local ?? []) set.add(item);
@@ -108,7 +108,7 @@ const arrayRecordUnion = (base, local) => {
108
108
  };
109
109
 
110
110
  //#endregion
111
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
111
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
112
112
  /**
113
113
  * Merge each named catalog; child wins per package. Emits override divergences
114
114
  * when a local version differs from the managed one.
@@ -143,7 +143,7 @@ const catalogs = (base, local) => {
143
143
  };
144
144
 
145
145
  //#endregion
146
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
146
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
147
147
  /**
148
148
  * `{...managed, ...child}` — child wins per key. Quiet. Merges two maps,
149
149
  * preferring child values.
@@ -188,7 +188,7 @@ const allowBuilds = (base, local) => {
188
188
  };
189
189
 
190
190
  //#endregion
191
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
191
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
192
192
  function mergeMapDetect(prefix, managed, child) {
193
193
  const merged = { ...managed };
194
194
  const divergences = [];
@@ -244,7 +244,7 @@ const peerDependencyRules = (base, local) => {
244
244
  };
245
245
 
246
246
  //#endregion
247
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
247
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
248
248
  /**
249
249
  * `child ?? base` — quiet (no divergences). Prefer local, fall back to managed.
250
250
  *
@@ -300,7 +300,7 @@ const securityMin = (base, local) => {
300
300
  };
301
301
 
302
302
  //#endregion
303
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
303
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
304
304
  /**
305
305
  * Built-in strategies keyed by manifest name.
306
306
  *
@@ -320,7 +320,7 @@ const STRATEGY_TABLE = {
320
320
  };
321
321
 
322
322
  //#endregion
323
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/warnings.js
323
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/warnings.js
324
324
  const WARNING_BOX_WIDTH = 75;
325
325
  function pad(line) {
326
326
  return `│${line}${" ".repeat(Math.max(0, WARNING_BOX_WIDTH - line.length - 2))}│`;
@@ -380,7 +380,7 @@ function formatSecurityWarning(divergences, name) {
380
380
  }
381
381
 
382
382
  //#endregion
383
- //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime.js
383
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime.js
384
384
  /**
385
385
  * Build the pnpm hooks from frozen base data + a field→strategy manifest.
386
386
  * Zero dependencies — bundled verbatim into the shipped pnpmfile.
@@ -448,6 +448,9 @@ const hooks = createHooks({
448
448
  "blockExoticSubdeps": true,
449
449
  "catalogs": {
450
450
  "silk": {
451
+ "@changesets/cli": "^3.0.0-next.8",
452
+ "@commitlint/cli": "^21.2.1",
453
+ "@commitlint/config-conventional": "^21.2.0",
451
454
  "@effect/ai": "^0.36.0",
452
455
  "@effect/ai-amazon-bedrock": "^0.16.1",
453
456
  "@effect/ai-anthropic": "^0.26.0",
@@ -456,7 +459,7 @@ const hooks = createHooks({
456
459
  "@effect/cli": "^0.75.2",
457
460
  "@effect/cluster": "^0.59.0",
458
461
  "@effect/experimental": "^0.60.0",
459
- "@effect/language-service": "^0.86.4",
462
+ "@effect/language-service": "^0.86.6",
460
463
  "@effect/opentelemetry": "^0.63.0",
461
464
  "@effect/platform": "^0.96.2",
462
465
  "@effect/platform-browser": "^0.76.0",
@@ -480,10 +483,14 @@ const hooks = createHooks({
480
483
  "@effect/sql-sqlite-node": "^0.52.0",
481
484
  "@effect/sql-sqlite-react-native": "^0.54.0",
482
485
  "@effect/sql-sqlite-wasm": "^0.52.0",
483
- "@effect/tsgo": "^0.16.3",
486
+ "@effect/tsgo": "^0.19.0",
484
487
  "@effect/typeclass": "^0.40.0",
485
488
  "@effect/vitest": "^0.29.0",
486
489
  "@effect/workflow": "^0.18.2",
490
+ "@rsbuild/core": "^2.1.5",
491
+ "@rspress/core": "^2.0.17",
492
+ "@tsdown/css": "^0.22.5",
493
+ "@tsdown/exe": "^0.22.5",
487
494
  "@types/node": "^26.1.1",
488
495
  "@types/react": "^19.2.17",
489
496
  "@types/react-dom": "^19.2.3",
@@ -491,13 +498,23 @@ const hooks = createHooks({
491
498
  "@vitest/coverage-istanbul": "^4.1.10",
492
499
  "@vitest/coverage-v8": "^4.1.10",
493
500
  "effect": "^3.21.4",
501
+ "husky": "^9.1.7",
502
+ "lint-staged": "^17.0.8",
503
+ "markdownlint-cli2": "^0.23.0",
504
+ "markdownlint-cli2-formatter-codequality": "^0.0.7",
494
505
  "react": "^19.2.7",
495
506
  "react-dom": "^19.2.7",
507
+ "rolldown": "^1.1.5",
508
+ "tsdown": "^0.22.5",
496
509
  "tsx": "^4.23.0",
497
- "typescript": "^6.0.3",
510
+ "turbo": "^2.10.4",
511
+ "typescript": "^7.0.2",
498
512
  "vitest": "^4.1.10"
499
513
  },
500
514
  "silkPeers": {
515
+ "@changesets/cli": "^3.0.0",
516
+ "@commitlint/cli": "^21.2.1",
517
+ "@commitlint/config-conventional": "^21.2.0",
501
518
  "@effect/ai": "^0.36.0",
502
519
  "@effect/ai-amazon-bedrock": "^0.16.1",
503
520
  "@effect/ai-anthropic": "^0.26.0",
@@ -506,7 +523,7 @@ const hooks = createHooks({
506
523
  "@effect/cli": "^0.75.2",
507
524
  "@effect/cluster": "^0.59.0",
508
525
  "@effect/experimental": "^0.60.0",
509
- "@effect/language-service": "^0.86.4",
526
+ "@effect/language-service": "^0.86.6",
510
527
  "@effect/opentelemetry": "^0.63.0",
511
528
  "@effect/platform": "^0.96.0",
512
529
  "@effect/platform-browser": "^0.76.0",
@@ -530,10 +547,14 @@ const hooks = createHooks({
530
547
  "@effect/sql-sqlite-node": "^0.52.0",
531
548
  "@effect/sql-sqlite-react-native": "^0.54.0",
532
549
  "@effect/sql-sqlite-wasm": "^0.52.0",
533
- "@effect/tsgo": "^0.16.3",
550
+ "@effect/tsgo": "^0.19.0",
534
551
  "@effect/typeclass": "^0.40.0",
535
552
  "@effect/vitest": "^0.29.0",
536
553
  "@effect/workflow": "^0.18.2",
554
+ "@rsbuild/core": "^2.1.0",
555
+ "@rspress/core": "^2.0.0",
556
+ "@tsdown/css": "^0.22.5",
557
+ "@tsdown/exe": "^0.22.5",
537
558
  "@types/node": "^26.1.0",
538
559
  "@types/react": "^19.2.0",
539
560
  "@types/react-dom": "^19.2.0",
@@ -541,16 +562,24 @@ const hooks = createHooks({
541
562
  "@vitest/coverage-istanbul": "^4.1.0",
542
563
  "@vitest/coverage-v8": "^4.1.0",
543
564
  "effect": "^3.21.0",
565
+ "husky": "^9.1.7",
566
+ "lint-staged": "^17.0.8",
567
+ "markdownlint-cli2": "^0.23.0",
568
+ "markdownlint-cli2-formatter-codequality": "^0.0.7",
544
569
  "react": "^19.2.0",
545
570
  "react-dom": "^19.2.0",
571
+ "rolldown": "^1.1.0",
572
+ "tsdown": "^0.22.0",
546
573
  "tsx": "^4.23.0",
547
- "typescript": "^6.0.0",
574
+ "turbo": "^2.10.4",
575
+ "typescript": "^7.0.0",
548
576
  "vitest": "^4.1.0"
549
577
  }
550
578
  },
551
579
  "confirmModulesPurge": false,
552
580
  "minimumReleaseAge": 1440,
553
581
  "minimumReleaseAgeExclude": [
582
+ "@effected/*",
554
583
  "@savvy-web/*",
555
584
  "@vitest-agent/*",
556
585
  "@typescript/*",
@@ -572,7 +601,7 @@ const hooks = createHooks({
572
601
  "api-extractor-llms",
573
602
  "xdg-effect"
574
603
  ],
575
- "overrides": { "@manypkg/find-root>@types/node": "catalog:silk" },
604
+ "overrides": { "@microsoft/api-extractor>typescript": "^6.0.3" },
576
605
  "peerDependencyRules": { "allowedVersions": {
577
606
  "@effect/vitest>vitest": "^4.1.0",
578
607
  "@typescript-eslint/project-service>typescript": "^6.0.0",
@@ -581,7 +610,8 @@ const hooks = createHooks({
581
610
  "@typescript-eslint/util>typescript": "^6.0.0",
582
611
  "@typescript-eslint/utils>typescript": "^6.0.0",
583
612
  "eslint-plugin-tsdoc>typescript": "^6.0.0",
584
- "ink-tab>ink": "^7.0.0"
613
+ "ink-tab>ink": "^7.0.0",
614
+ "tsdown>typescript": "^5.0.0 || ^6.0.0 || ^7.0.0"
585
615
  } },
586
616
  "publicHoistPattern": [
587
617
  "@changesets/cli",
@@ -601,7 +631,6 @@ const hooks = createHooks({
601
631
  "@vitest-agent/mcp",
602
632
  "@vitest/coverage-istanbul",
603
633
  "@vitest/coverage-v8",
604
- "commitizen",
605
634
  "husky",
606
635
  "lint-staged",
607
636
  "markdownlint-cli2",
@@ -609,9 +638,7 @@ const hooks = createHooks({
609
638
  "tsx",
610
639
  "turbo",
611
640
  "typescript",
612
- "vitest",
613
- "!@effect/*",
614
- "!effect"
641
+ "vitest"
615
642
  ],
616
643
  "strictDepBuilds": true
617
644
  }, {
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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/ctx.js
4
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/enforcement.js
39
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/arrays.js
74
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/catalogs.js
110
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/maps.js
145
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/overrides.js
190
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/scalar.js
246
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/strategies/table.js
302
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime/warnings.js
322
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.2.1_@types+react@19.2.17_rolldown@1.1.5/node_modules/rolldown-pnpm-config/runtime.js
382
+ //#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.2.2_@types+react@19.2.17_rolldown@1.1.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.
@@ -447,6 +447,9 @@ const hooks = createHooks({
447
447
  "blockExoticSubdeps": true,
448
448
  "catalogs": {
449
449
  "silk": {
450
+ "@changesets/cli": "^3.0.0-next.8",
451
+ "@commitlint/cli": "^21.2.1",
452
+ "@commitlint/config-conventional": "^21.2.0",
450
453
  "@effect/ai": "^0.36.0",
451
454
  "@effect/ai-amazon-bedrock": "^0.16.1",
452
455
  "@effect/ai-anthropic": "^0.26.0",
@@ -455,7 +458,7 @@ const hooks = createHooks({
455
458
  "@effect/cli": "^0.75.2",
456
459
  "@effect/cluster": "^0.59.0",
457
460
  "@effect/experimental": "^0.60.0",
458
- "@effect/language-service": "^0.86.4",
461
+ "@effect/language-service": "^0.86.6",
459
462
  "@effect/opentelemetry": "^0.63.0",
460
463
  "@effect/platform": "^0.96.2",
461
464
  "@effect/platform-browser": "^0.76.0",
@@ -479,10 +482,14 @@ const hooks = createHooks({
479
482
  "@effect/sql-sqlite-node": "^0.52.0",
480
483
  "@effect/sql-sqlite-react-native": "^0.54.0",
481
484
  "@effect/sql-sqlite-wasm": "^0.52.0",
482
- "@effect/tsgo": "^0.16.3",
485
+ "@effect/tsgo": "^0.19.0",
483
486
  "@effect/typeclass": "^0.40.0",
484
487
  "@effect/vitest": "^0.29.0",
485
488
  "@effect/workflow": "^0.18.2",
489
+ "@rsbuild/core": "^2.1.5",
490
+ "@rspress/core": "^2.0.17",
491
+ "@tsdown/css": "^0.22.5",
492
+ "@tsdown/exe": "^0.22.5",
486
493
  "@types/node": "^26.1.1",
487
494
  "@types/react": "^19.2.17",
488
495
  "@types/react-dom": "^19.2.3",
@@ -490,13 +497,23 @@ const hooks = createHooks({
490
497
  "@vitest/coverage-istanbul": "^4.1.10",
491
498
  "@vitest/coverage-v8": "^4.1.10",
492
499
  "effect": "^3.21.4",
500
+ "husky": "^9.1.7",
501
+ "lint-staged": "^17.0.8",
502
+ "markdownlint-cli2": "^0.23.0",
503
+ "markdownlint-cli2-formatter-codequality": "^0.0.7",
493
504
  "react": "^19.2.7",
494
505
  "react-dom": "^19.2.7",
506
+ "rolldown": "^1.1.5",
507
+ "tsdown": "^0.22.5",
495
508
  "tsx": "^4.23.0",
496
- "typescript": "^6.0.3",
509
+ "turbo": "^2.10.4",
510
+ "typescript": "^7.0.2",
497
511
  "vitest": "^4.1.10"
498
512
  },
499
513
  "silkPeers": {
514
+ "@changesets/cli": "^3.0.0",
515
+ "@commitlint/cli": "^21.2.1",
516
+ "@commitlint/config-conventional": "^21.2.0",
500
517
  "@effect/ai": "^0.36.0",
501
518
  "@effect/ai-amazon-bedrock": "^0.16.1",
502
519
  "@effect/ai-anthropic": "^0.26.0",
@@ -505,7 +522,7 @@ const hooks = createHooks({
505
522
  "@effect/cli": "^0.75.2",
506
523
  "@effect/cluster": "^0.59.0",
507
524
  "@effect/experimental": "^0.60.0",
508
- "@effect/language-service": "^0.86.4",
525
+ "@effect/language-service": "^0.86.6",
509
526
  "@effect/opentelemetry": "^0.63.0",
510
527
  "@effect/platform": "^0.96.0",
511
528
  "@effect/platform-browser": "^0.76.0",
@@ -529,10 +546,14 @@ const hooks = createHooks({
529
546
  "@effect/sql-sqlite-node": "^0.52.0",
530
547
  "@effect/sql-sqlite-react-native": "^0.54.0",
531
548
  "@effect/sql-sqlite-wasm": "^0.52.0",
532
- "@effect/tsgo": "^0.16.3",
549
+ "@effect/tsgo": "^0.19.0",
533
550
  "@effect/typeclass": "^0.40.0",
534
551
  "@effect/vitest": "^0.29.0",
535
552
  "@effect/workflow": "^0.18.2",
553
+ "@rsbuild/core": "^2.1.0",
554
+ "@rspress/core": "^2.0.0",
555
+ "@tsdown/css": "^0.22.5",
556
+ "@tsdown/exe": "^0.22.5",
536
557
  "@types/node": "^26.1.0",
537
558
  "@types/react": "^19.2.0",
538
559
  "@types/react-dom": "^19.2.0",
@@ -540,16 +561,24 @@ const hooks = createHooks({
540
561
  "@vitest/coverage-istanbul": "^4.1.0",
541
562
  "@vitest/coverage-v8": "^4.1.0",
542
563
  "effect": "^3.21.0",
564
+ "husky": "^9.1.7",
565
+ "lint-staged": "^17.0.8",
566
+ "markdownlint-cli2": "^0.23.0",
567
+ "markdownlint-cli2-formatter-codequality": "^0.0.7",
543
568
  "react": "^19.2.0",
544
569
  "react-dom": "^19.2.0",
570
+ "rolldown": "^1.1.0",
571
+ "tsdown": "^0.22.0",
545
572
  "tsx": "^4.23.0",
546
- "typescript": "^6.0.0",
573
+ "turbo": "^2.10.4",
574
+ "typescript": "^7.0.0",
547
575
  "vitest": "^4.1.0"
548
576
  }
549
577
  },
550
578
  "confirmModulesPurge": false,
551
579
  "minimumReleaseAge": 1440,
552
580
  "minimumReleaseAgeExclude": [
581
+ "@effected/*",
553
582
  "@savvy-web/*",
554
583
  "@vitest-agent/*",
555
584
  "@typescript/*",
@@ -571,7 +600,7 @@ const hooks = createHooks({
571
600
  "api-extractor-llms",
572
601
  "xdg-effect"
573
602
  ],
574
- "overrides": { "@manypkg/find-root>@types/node": "catalog:silk" },
603
+ "overrides": { "@microsoft/api-extractor>typescript": "^6.0.3" },
575
604
  "peerDependencyRules": { "allowedVersions": {
576
605
  "@effect/vitest>vitest": "^4.1.0",
577
606
  "@typescript-eslint/project-service>typescript": "^6.0.0",
@@ -580,7 +609,8 @@ const hooks = createHooks({
580
609
  "@typescript-eslint/util>typescript": "^6.0.0",
581
610
  "@typescript-eslint/utils>typescript": "^6.0.0",
582
611
  "eslint-plugin-tsdoc>typescript": "^6.0.0",
583
- "ink-tab>ink": "^7.0.0"
612
+ "ink-tab>ink": "^7.0.0",
613
+ "tsdown>typescript": "^5.0.0 || ^6.0.0 || ^7.0.0"
584
614
  } },
585
615
  "publicHoistPattern": [
586
616
  "@changesets/cli",
@@ -600,7 +630,6 @@ const hooks = createHooks({
600
630
  "@vitest-agent/mcp",
601
631
  "@vitest/coverage-istanbul",
602
632
  "@vitest/coverage-v8",
603
- "commitizen",
604
633
  "husky",
605
634
  "lint-staged",
606
635
  "markdownlint-cli2",
@@ -608,9 +637,7 @@ const hooks = createHooks({
608
637
  "tsx",
609
638
  "turbo",
610
639
  "typescript",
611
- "vitest",
612
- "!@effect/*",
613
- "!effect"
640
+ "vitest"
614
641
  ],
615
642
  "strictDepBuilds": true
616
643
  }, {