@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 CHANGED
@@ -6,18 +6,7 @@
6
6
  [![TypeScript 7.0](https://img.shields.io/badge/TypeScript-7.0-3178c6.svg)](https://www.typescriptlang.org/)
7
7
  [![pnpm](https://img.shields.io/badge/pnpm-%3E%3D11-orange)](https://pnpm.io/)
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
-
11
- ## Features
12
-
13
- - **Dual catalog strategy** — current versions for direct dependencies (`catalog:silk`) and permissive ranges for peer dependencies (`catalog:silkPeers`)
14
- - **Security overrides** — centralized CVE fixes and compatibility pins via `overrides` that propagate to every consuming repository
15
- - **Build allowlist** — an `allowBuilds` map controls which packages may run install scripts; consuming repos extend it per key
16
- - **Security defaults** — `strictDepBuilds`, `blockExoticSubdeps` and `minimumReleaseAge` are enforced by default; weakening one triggers a warning
17
- - **Workspace settings inheritance** — `publicHoistPattern` and `allowedDeprecatedVersions` merge into consuming workspaces
18
- - **Peer dependency rules** — `peerDependencyRules.allowedVersions` suppresses common peer-dependency warnings
19
- - **Effect ecosystem coordination** — the full `@effect/*` package family and `effect` itself, pinned to mutually compatible versions
20
- - **Non-destructive merging** — local definitions always win, with warnings when they diverge from the shared defaults
9
+ Centralized dependency-version management for the Silk ecosystem, delivered as a pnpm config dependency. Define dependency catalogs, security overrides and install-time policy once, then share them across every repository in the ecosystem.
21
10
 
22
11
  ## Install
23
12
 
@@ -25,9 +14,10 @@ Add as a config dependency using pnpm:
25
14
 
26
15
  ```bash
27
16
  pnpm add --config @savvy-web/pnpm-plugin-silk
17
+ # writes the configDependencies entry shown below into pnpm-workspace.yaml
28
18
  ```
29
19
 
30
- This adds the package to your `pnpm-workspace.yaml` with the required integrity hash (pnpm fills in the version and hash automatically):
20
+ The entry carries the required integrity hash, which pnpm fills in along with the version:
31
21
 
32
22
  ```yaml
33
23
  configDependencies:
@@ -41,16 +31,41 @@ Reference Silk catalogs in your `package.json`:
41
31
  ```json
42
32
  {
43
33
  "devDependencies": {
44
- "typescript": "catalog:silk",
45
- "vitest": "catalog:silk"
34
+ "tsdown": "catalog:build",
35
+ "typescript": "catalog:build",
36
+ "vitest": "catalog:test"
46
37
  },
47
38
  "peerDependencies": {
48
- "typescript": "catalog:silkPeers"
39
+ "typescript": "catalog:build:peers"
49
40
  }
50
41
  }
51
42
  ```
52
43
 
53
- The `silk` catalog supplies current versions for direct dependencies and `silkPeers` supplies permissive ranges for peers. Security overrides, build allowlists and hoist patterns merge automatically during `pnpm install`.
44
+ A catalog supplies the current version for a direct dependency, and its `:peers` companion supplies the permissive range for the same package declared as a peer. Security overrides, build allowlists and hoist patterns merge automatically during `pnpm install`.
45
+
46
+ ## Catalogs
47
+
48
+ Five catalogs ship with the plugin, each paired with a `:peers` variant that carries wider ranges for `peerDependencies`.
49
+
50
+ | Catalog | Peer catalog | Contents |
51
+ | ------- | ------------ | --------- |
52
+ | `build` | `build:peers` | `tsdown`, `rolldown`, `@rsbuild/core`, the `@tsdown/*` add-ons, TypeScript, `tsx`, React and the matching `@types/*` packages |
53
+ | `docs` | `docs:peers` | `@rspress/core` and its sitemap and mermaid plugins, VitePress, Vite, React and the matching `@types/*` packages |
54
+ | `lint` | `lint:peers` | Biome, `@changesets/cli`, commitlint, husky, `lint-staged`, `markdownlint-cli2` and Turborepo |
55
+ | `silk` | `silk:peers` | the shared repo toolchain that has no more specific home: TypeScript and the native-preview compiler, `tsx`, husky, `lint-staged`, `markdownlint-cli2`, React and the `@types/*` packages |
56
+ | `test` | `test:peers` | Vitest and its Istanbul and V8 coverage providers |
57
+
58
+ Effect is not one of them. `effect` and the whole `@effect/*` family come from [`@effected/pnpm-plugin-effect`](https://www.npmjs.com/package/@effected/pnpm-plugin-effect) as `catalog:effect` and `catalog:effect:peers`, so a repo that builds on Effect installs that config dependency alongside this one.
59
+
60
+ ## Features
61
+
62
+ - **Purpose-scoped catalogs** — five catalog pairs keyed by what the dependency is for, rather than one flat list every consumer inherits whole
63
+ - **Security overrides** — centralized CVE fixes and compatibility pins via `overrides` that propagate to every consuming repository
64
+ - **Build allowlist** — an `allowBuilds` map controls which packages may run install scripts; consuming repos extend it per key
65
+ - **Security defaults** — `strictDepBuilds`, `blockExoticSubdeps` and `minimumReleaseAge` are enforced by default; weakening one triggers a warning
66
+ - **Workspace settings inheritance** — `publicHoistPattern` and `allowedDeprecatedVersions` merge into consuming workspaces
67
+ - **Peer dependency rules** — `peerDependencyRules.allowedVersions` suppresses common peer-dependency warnings
68
+ - **Non-destructive merging** — local definitions always win, with warnings when they diverge from the shared defaults
54
69
 
55
70
  ## License
56
71
 
package/index.js CHANGED
@@ -1,18 +1,18 @@
1
1
  //#region \0rolldown-pnpm-config/virtual/catalogs
2
2
  const catalogs = /* @__PURE__ */ new Map([
3
3
  ["build", /* @__PURE__ */ new Map([
4
- ["@rsbuild/core", "^2.1.9"],
4
+ ["@rsbuild/core", "^2.1.13"],
5
5
  ["@tsdown/css", "^0.22.14"],
6
6
  ["@tsdown/exe", "^0.22.14"],
7
7
  ["@types/bun", "^1.3.14"],
8
- ["@types/node", "^26.1.2"],
8
+ ["@types/node", "^26.2.0"],
9
9
  ["@types/react", "^19.2.18"],
10
10
  ["@types/react-dom", "^19.2.4"],
11
11
  ["react", "^19.2.8"],
12
12
  ["react-dom", "^19.2.8"],
13
- ["rolldown", "^1.2.1"],
13
+ ["rolldown", "^1.2.5"],
14
14
  ["tsdown", "^0.22.14"],
15
- ["tsx", "^4.23.4"],
15
+ ["tsx", "^4.23.12"],
16
16
  ["typescript", "^7.0.2"]
17
17
  ])],
18
18
  ["build:peers", /* @__PURE__ */ new Map([
@@ -20,61 +20,33 @@ const catalogs = /* @__PURE__ */ new Map([
20
20
  ["@tsdown/css", "^0.22.0"],
21
21
  ["@tsdown/exe", "^0.22.0"],
22
22
  ["@types/bun", "^1.3.14"],
23
- ["@types/node", "^26.1.0"],
23
+ ["@types/node", "^26.2.0"],
24
24
  ["@types/react", "^19.2.0"],
25
25
  ["@types/react-dom", "^19.2.0"],
26
26
  ["react", "^19.2.0"],
27
27
  ["react-dom", "^19.2.0"],
28
28
  ["rolldown", "^1.2.0"],
29
29
  ["tsdown", "^0.22.0"],
30
- ["tsx", "^4.23.4"],
31
- ["typescript", "^7.0.0"]
32
- ])],
33
- ["buildPeers", /* @__PURE__ */ new Map([
34
- ["@rsbuild/core", "^2.1.0"],
35
- ["@tsdown/css", "^0.22.0"],
36
- ["@tsdown/exe", "^0.22.0"],
37
- ["@types/bun", "^1.3.14"],
38
- ["@types/node", "^26.1.0"],
39
- ["@types/react", "^19.2.0"],
40
- ["@types/react-dom", "^19.2.0"],
41
- ["react", "^19.2.0"],
42
- ["react-dom", "^19.2.0"],
43
- ["rolldown", "^1.2.0"],
44
- ["tsdown", "^0.22.0"],
45
- ["tsx", "^4.23.4"],
30
+ ["tsx", "^4.23.12"],
46
31
  ["typescript", "^7.0.0"]
47
32
  ])],
48
33
  ["docs", /* @__PURE__ */ new Map([
49
34
  ["@rspress/core", "^2.0.19"],
50
35
  ["@rspress/plugin-sitemap", "^2.0.19"],
51
- ["@types/node", "^26.1.2"],
36
+ ["@types/node", "^26.2.0"],
52
37
  ["@types/react", "^19.2.18"],
53
38
  ["@types/react-dom", "^19.2.4"],
54
39
  ["react", "^19.2.8"],
55
40
  ["react-dom", "^19.2.8"],
56
41
  ["rspress-plugin-mermaid", "^1.0.1"],
57
42
  ["typescript", "^7.0.2"],
58
- ["vite", "^8.2.0"],
43
+ ["vite", "^8.2.1"],
59
44
  ["vitepress", "^2.0.0-alpha.19"]
60
45
  ])],
61
46
  ["docs:peers", /* @__PURE__ */ new Map([
62
47
  ["@rspress/core", "^2.0.0"],
63
48
  ["@rspress/plugin-sitemap", "^2.0.19"],
64
- ["@types/node", "^26.1.0"],
65
- ["@types/react", "^19.2.0"],
66
- ["@types/react-dom", "^19.2.0"],
67
- ["react", "^19.2.0"],
68
- ["react-dom", "^19.2.0"],
69
- ["rspress-plugin-mermaid", "^1.0.1"],
70
- ["typescript", "^7.0.0"],
71
- ["vite", "^8.2.0"],
72
- ["vitepress", "^2.0.0-alpha.19"]
73
- ])],
74
- ["docsPeers", /* @__PURE__ */ new Map([
75
- ["@rspress/core", "^2.0.0"],
76
- ["@rspress/plugin-sitemap", "^2.0.19"],
77
- ["@types/node", "^26.1.0"],
49
+ ["@types/node", "^26.2.0"],
78
50
  ["@types/react", "^19.2.0"],
79
51
  ["@types/react-dom", "^19.2.0"],
80
52
  ["react", "^19.2.0"],
@@ -86,246 +58,65 @@ const catalogs = /* @__PURE__ */ new Map([
86
58
  ])],
87
59
  ["lint", /* @__PURE__ */ new Map([
88
60
  ["@biomejs/biome", "2.5.0"],
89
- ["@changesets/cli", "^3.0.0"],
90
- ["@commitlint/cli", "^21.2.1"],
91
- ["@commitlint/config-conventional", "^21.2.0"],
61
+ ["@changesets/cli", "^3.0.1"],
62
+ ["@commitlint/cli", "^21.2.2"],
63
+ ["@commitlint/config-conventional", "^21.2.2"],
92
64
  ["husky", "^9.1.7"],
93
65
  ["lint-staged", "^17.3.0"],
94
66
  ["markdownlint-cli2", "^0.23.2"],
95
67
  ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
96
- ["turbo", "^2.10.8"]
68
+ ["turbo", "^2.10.11"]
97
69
  ])],
98
70
  ["lint:peers", /* @__PURE__ */ new Map([
99
71
  ["@biomejs/biome", "2.5.0"],
100
- ["@changesets/cli", "^3.0.0"],
101
- ["@commitlint/cli", "^21.2.1"],
102
- ["@commitlint/config-conventional", "^21.2.0"],
103
- ["husky", "^9.1.7"],
104
- ["lint-staged", "^17.3.0"],
105
- ["markdownlint-cli2", "^0.23.2"],
106
- ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
107
- ["turbo", "^2.10.8"]
108
- ])],
109
- ["lintPeers", /* @__PURE__ */ new Map([
110
- ["@biomejs/biome", "2.5.0"],
111
- ["@changesets/cli", "^3.0.0"],
112
- ["@commitlint/cli", "^21.2.1"],
113
- ["@commitlint/config-conventional", "^21.2.0"],
72
+ ["@changesets/cli", "^3.0.1"],
73
+ ["@commitlint/cli", "^21.2.2"],
74
+ ["@commitlint/config-conventional", "^21.2.2"],
114
75
  ["husky", "^9.1.7"],
115
76
  ["lint-staged", "^17.3.0"],
116
77
  ["markdownlint-cli2", "^0.23.2"],
117
78
  ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
118
- ["turbo", "^2.10.8"]
79
+ ["turbo", "^2.10.11"]
119
80
  ])],
120
81
  ["silk", /* @__PURE__ */ new Map([
121
- ["@changesets/cli", "^3.0.0"],
122
- ["@commitlint/cli", "^21.2.1"],
123
- ["@commitlint/config-conventional", "^21.2.0"],
124
- ["@effect/ai", "^0.36.0"],
125
- ["@effect/ai-amazon-bedrock", "^0.16.1"],
126
- ["@effect/ai-anthropic", "^0.26.0"],
127
- ["@effect/ai-google", "^0.15.0"],
128
- ["@effect/ai-openai", "^0.40.1"],
129
- ["@effect/cli", "^0.75.2"],
130
- ["@effect/cluster", "^0.59.0"],
131
- ["@effect/experimental", "^0.60.0"],
132
- ["@effect/language-service", "^0.86.6"],
133
- ["@effect/opentelemetry", "^0.63.0"],
134
- ["@effect/platform", "^0.96.2"],
135
- ["@effect/platform-browser", "^0.76.0"],
136
- ["@effect/platform-bun", "^0.90.0"],
137
- ["@effect/platform-node", "^0.107.0"],
138
- ["@effect/platform-node-shared", "^0.60.0"],
139
- ["@effect/printer", "^0.49.0"],
140
- ["@effect/printer-ansi", "^0.49.0"],
141
- ["@effect/rpc", "^0.75.1"],
142
- ["@effect/sql", "^0.51.1"],
143
- ["@effect/sql-clickhouse", "^0.49.0"],
144
- ["@effect/sql-d1", "^0.49.0"],
145
- ["@effect/sql-drizzle", "^0.50.0"],
146
- ["@effect/sql-kysely", "^0.47.0"],
147
- ["@effect/sql-libsql", "^0.41.0"],
148
- ["@effect/sql-mssql", "^0.52.0"],
149
- ["@effect/sql-mysql2", "^0.52.0"],
150
- ["@effect/sql-pg", "^0.52.1"],
151
- ["@effect/sql-sqlite-bun", "^0.52.0"],
152
- ["@effect/sql-sqlite-do", "^0.29.0"],
153
- ["@effect/sql-sqlite-node", "^0.52.0"],
154
- ["@effect/sql-sqlite-react-native", "^0.54.0"],
155
- ["@effect/sql-sqlite-wasm", "^0.52.0"],
156
- ["@effect/tsgo", "^0.19.0"],
157
- ["@effect/typeclass", "^0.40.0"],
158
- ["@effect/vitest", "^0.29.0"],
159
- ["@effect/workflow", "^0.18.2"],
160
- ["@rsbuild/core", "^2.1.9"],
161
- ["@rspress/core", "^2.0.19"],
162
- ["@tsdown/css", "^0.22.14"],
163
- ["@tsdown/exe", "^0.22.14"],
164
82
  ["@types/bun", "^1.3.14"],
165
- ["@types/node", "^26.1.2"],
83
+ ["@types/node", "^26.2.0"],
166
84
  ["@types/react", "^19.2.18"],
167
85
  ["@types/react-dom", "^19.2.4"],
168
86
  ["@typescript/native-preview", "^7.0.0-dev.20260707.2"],
169
- ["@vitest/coverage-istanbul", "^4.1.10"],
170
- ["@vitest/coverage-v8", "^4.1.10"],
171
- ["effect", "^3.21.4"],
172
87
  ["husky", "^9.1.7"],
173
88
  ["lint-staged", "^17.3.0"],
174
89
  ["markdownlint-cli2", "^0.23.2"],
175
90
  ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
176
91
  ["react", "^19.2.8"],
177
92
  ["react-dom", "^19.2.8"],
178
- ["rolldown", "^1.2.1"],
179
- ["tsdown", "^0.22.14"],
180
- ["tsx", "^4.23.4"],
181
- ["turbo", "^2.10.8"],
182
- ["typescript", "^7.0.2"],
183
- ["vitest", "^4.1.10"]
93
+ ["tsx", "^4.23.12"],
94
+ ["typescript", "^7.0.2"]
184
95
  ])],
185
96
  ["silk:peers", /* @__PURE__ */ new Map([
186
- ["@changesets/cli", "^3.0.0"],
187
- ["@commitlint/cli", "^21.2.1"],
188
- ["@commitlint/config-conventional", "^21.2.0"],
189
- ["@effect/ai", "^0.36.0"],
190
- ["@effect/ai-amazon-bedrock", "^0.16.1"],
191
- ["@effect/ai-anthropic", "^0.26.0"],
192
- ["@effect/ai-google", "^0.15.0"],
193
- ["@effect/ai-openai", "^0.40.1"],
194
- ["@effect/cli", "^0.75.2"],
195
- ["@effect/cluster", "^0.59.0"],
196
- ["@effect/experimental", "^0.60.0"],
197
- ["@effect/language-service", "^0.86.6"],
198
- ["@effect/opentelemetry", "^0.63.0"],
199
- ["@effect/platform", "^0.96.0"],
200
- ["@effect/platform-browser", "^0.76.0"],
201
- ["@effect/platform-bun", "^0.90.0"],
202
- ["@effect/platform-node", "^0.107.0"],
203
- ["@effect/platform-node-shared", "^0.60.0"],
204
- ["@effect/printer", "^0.49.0"],
205
- ["@effect/printer-ansi", "^0.49.0"],
206
- ["@effect/rpc", "^0.75.1"],
207
- ["@effect/sql", "^0.51.0"],
208
- ["@effect/sql-clickhouse", "^0.49.0"],
209
- ["@effect/sql-d1", "^0.49.0"],
210
- ["@effect/sql-drizzle", "^0.50.0"],
211
- ["@effect/sql-kysely", "^0.47.0"],
212
- ["@effect/sql-libsql", "^0.41.0"],
213
- ["@effect/sql-mssql", "^0.52.0"],
214
- ["@effect/sql-mysql2", "^0.52.0"],
215
- ["@effect/sql-pg", "^0.52.1"],
216
- ["@effect/sql-sqlite-bun", "^0.52.0"],
217
- ["@effect/sql-sqlite-do", "^0.29.0"],
218
- ["@effect/sql-sqlite-node", "^0.52.0"],
219
- ["@effect/sql-sqlite-react-native", "^0.54.0"],
220
- ["@effect/sql-sqlite-wasm", "^0.52.0"],
221
- ["@effect/tsgo", "^0.19.0"],
222
- ["@effect/typeclass", "^0.40.0"],
223
- ["@effect/vitest", "^0.29.0"],
224
- ["@effect/workflow", "^0.18.2"],
225
- ["@rsbuild/core", "^2.1.0"],
226
- ["@rspress/core", "^2.0.0"],
227
- ["@tsdown/css", "^0.22.14"],
228
- ["@tsdown/exe", "^0.22.14"],
229
- ["@types/bun", "^1.3.14"],
230
- ["@types/node", "^26.1.0"],
231
- ["@types/react", "^19.2.0"],
232
- ["@types/react-dom", "^19.2.0"],
233
- ["@typescript/native-preview", "^7.0.0-dev.20260707.2"],
234
- ["@vitest/coverage-istanbul", "^4.1.0"],
235
- ["@vitest/coverage-v8", "^4.1.0"],
236
- ["effect", "^3.21.0"],
237
- ["husky", "^9.1.7"],
238
- ["lint-staged", "^17.3.0"],
239
- ["markdownlint-cli2", "^0.23.2"],
240
- ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
241
- ["react", "^19.2.0"],
242
- ["react-dom", "^19.2.0"],
243
- ["rolldown", "^1.2.0"],
244
- ["tsdown", "^0.22.0"],
245
- ["tsx", "^4.23.4"],
246
- ["turbo", "^2.10.8"],
247
- ["typescript", "^7.0.0"],
248
- ["vitest", "^4.1.0"]
249
- ])],
250
- ["silkPeers", /* @__PURE__ */ new Map([
251
- ["@changesets/cli", "^3.0.0"],
252
- ["@commitlint/cli", "^21.2.1"],
253
- ["@commitlint/config-conventional", "^21.2.0"],
254
- ["@effect/ai", "^0.36.0"],
255
- ["@effect/ai-amazon-bedrock", "^0.16.1"],
256
- ["@effect/ai-anthropic", "^0.26.0"],
257
- ["@effect/ai-google", "^0.15.0"],
258
- ["@effect/ai-openai", "^0.40.1"],
259
- ["@effect/cli", "^0.75.2"],
260
- ["@effect/cluster", "^0.59.0"],
261
- ["@effect/experimental", "^0.60.0"],
262
- ["@effect/language-service", "^0.86.6"],
263
- ["@effect/opentelemetry", "^0.63.0"],
264
- ["@effect/platform", "^0.96.0"],
265
- ["@effect/platform-browser", "^0.76.0"],
266
- ["@effect/platform-bun", "^0.90.0"],
267
- ["@effect/platform-node", "^0.107.0"],
268
- ["@effect/platform-node-shared", "^0.60.0"],
269
- ["@effect/printer", "^0.49.0"],
270
- ["@effect/printer-ansi", "^0.49.0"],
271
- ["@effect/rpc", "^0.75.1"],
272
- ["@effect/sql", "^0.51.0"],
273
- ["@effect/sql-clickhouse", "^0.49.0"],
274
- ["@effect/sql-d1", "^0.49.0"],
275
- ["@effect/sql-drizzle", "^0.50.0"],
276
- ["@effect/sql-kysely", "^0.47.0"],
277
- ["@effect/sql-libsql", "^0.41.0"],
278
- ["@effect/sql-mssql", "^0.52.0"],
279
- ["@effect/sql-mysql2", "^0.52.0"],
280
- ["@effect/sql-pg", "^0.52.1"],
281
- ["@effect/sql-sqlite-bun", "^0.52.0"],
282
- ["@effect/sql-sqlite-do", "^0.29.0"],
283
- ["@effect/sql-sqlite-node", "^0.52.0"],
284
- ["@effect/sql-sqlite-react-native", "^0.54.0"],
285
- ["@effect/sql-sqlite-wasm", "^0.52.0"],
286
- ["@effect/tsgo", "^0.19.0"],
287
- ["@effect/typeclass", "^0.40.0"],
288
- ["@effect/vitest", "^0.29.0"],
289
- ["@effect/workflow", "^0.18.2"],
290
- ["@rsbuild/core", "^2.1.0"],
291
- ["@rspress/core", "^2.0.0"],
292
- ["@tsdown/css", "^0.22.14"],
293
- ["@tsdown/exe", "^0.22.14"],
294
97
  ["@types/bun", "^1.3.14"],
295
- ["@types/node", "^26.1.0"],
98
+ ["@types/node", "^26.2.0"],
296
99
  ["@types/react", "^19.2.0"],
297
100
  ["@types/react-dom", "^19.2.0"],
298
101
  ["@typescript/native-preview", "^7.0.0-dev.20260707.2"],
299
- ["@vitest/coverage-istanbul", "^4.1.0"],
300
- ["@vitest/coverage-v8", "^4.1.0"],
301
- ["effect", "^3.21.0"],
302
102
  ["husky", "^9.1.7"],
303
103
  ["lint-staged", "^17.3.0"],
304
104
  ["markdownlint-cli2", "^0.23.2"],
305
105
  ["markdownlint-cli2-formatter-codequality", "^0.0.7"],
306
106
  ["react", "^19.2.0"],
307
107
  ["react-dom", "^19.2.0"],
308
- ["rolldown", "^1.2.0"],
309
- ["tsdown", "^0.22.0"],
310
- ["tsx", "^4.23.4"],
311
- ["turbo", "^2.10.8"],
312
- ["typescript", "^7.0.0"],
313
- ["vitest", "^4.1.0"]
108
+ ["tsx", "^4.23.12"],
109
+ ["typescript", "^7.0.0"]
314
110
  ])],
315
111
  ["test", /* @__PURE__ */ new Map([
316
- ["@vitest/coverage-istanbul", "^4.1.10"],
317
- ["@vitest/coverage-v8", "^4.1.10"],
318
- ["vitest", "^4.1.10"]
112
+ ["@vitest/coverage-istanbul", "^4.1.11"],
113
+ ["@vitest/coverage-v8", "^4.1.11"],
114
+ ["vitest", "^4.1.11"]
319
115
  ])],
320
116
  ["test:peers", /* @__PURE__ */ new Map([
321
117
  ["@vitest/coverage-istanbul", "^4.1.0"],
322
118
  ["@vitest/coverage-v8", "^4.1.0"],
323
119
  ["vitest", "^4.1.0"]
324
- ])],
325
- ["testPeers", /* @__PURE__ */ new Map([
326
- ["@vitest/coverage-istanbul", "^4.1.0"],
327
- ["@vitest/coverage-v8", "^4.1.0"],
328
- ["vitest", "^4.1.0"]
329
120
  ])]
330
121
  ]);
331
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/pnpm-plugin-silk",
3
- "version": "0.26.1",
3
+ "version": "0.28.0",
4
4
  "private": false,
5
5
  "description": "pnpm config dependency for centralized catalog management across the Silk ecosystem.",
6
6
  "keywords": [