@savvy-web/pnpm-plugin-silk 0.26.0 → 0.27.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 +19 -228
- package/package.json +1 -1
- package/pnpmfile.cjs +29 -238
- package/pnpmfile.mjs +29 -238
package/README.md
CHANGED
|
@@ -6,18 +6,7 @@
|
|
|
6
6
|
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](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
|
|
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
|
-
|
|
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
|
-
"
|
|
45
|
-
"
|
|
34
|
+
"tsdown": "catalog:build",
|
|
35
|
+
"typescript": "catalog:build",
|
|
36
|
+
"vitest": "catalog:test"
|
|
46
37
|
},
|
|
47
38
|
"peerDependencies": {
|
|
48
|
-
"typescript": "catalog:
|
|
39
|
+
"typescript": "catalog:build:peers"
|
|
49
40
|
}
|
|
50
41
|
}
|
|
51
42
|
```
|
|
52
43
|
|
|
53
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
13
|
+
["rolldown", "^1.2.4"],
|
|
14
14
|
["tsdown", "^0.22.14"],
|
|
15
|
-
["tsx", "^4.23.
|
|
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.
|
|
24
|
-
["@types/react", "^19.2.0"],
|
|
25
|
-
["@types/react-dom", "^19.2.0"],
|
|
26
|
-
["react", "^19.2.0"],
|
|
27
|
-
["react-dom", "^19.2.0"],
|
|
28
|
-
["rolldown", "^1.2.0"],
|
|
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"],
|
|
23
|
+
["@types/node", "^26.2.0"],
|
|
39
24
|
["@types/react", "^19.2.0"],
|
|
40
25
|
["@types/react-dom", "^19.2.0"],
|
|
41
26
|
["react", "^19.2.0"],
|
|
42
27
|
["react-dom", "^19.2.0"],
|
|
43
28
|
["rolldown", "^1.2.0"],
|
|
44
29
|
["tsdown", "^0.22.0"],
|
|
45
|
-
["tsx", "^4.23.
|
|
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.
|
|
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.
|
|
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.
|
|
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,231 +58,55 @@ 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.
|
|
91
|
-
["@commitlint/config-conventional", "^21.2.
|
|
61
|
+
["@changesets/cli", "^3.0.0"],
|
|
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.
|
|
68
|
+
["turbo", "^2.10.10"]
|
|
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.
|
|
102
|
-
["@commitlint/config-conventional", "^21.2.
|
|
72
|
+
["@changesets/cli", "^3.0.0"],
|
|
73
|
+
["@commitlint/cli", "^21.2.2"],
|
|
74
|
+
["@commitlint/config-conventional", "^21.2.2"],
|
|
103
75
|
["husky", "^9.1.7"],
|
|
104
76
|
["lint-staged", "^17.3.0"],
|
|
105
77
|
["markdownlint-cli2", "^0.23.2"],
|
|
106
78
|
["markdownlint-cli2-formatter-codequality", "^0.0.7"],
|
|
107
|
-
["turbo", "^2.10.
|
|
108
|
-
])],
|
|
109
|
-
["lintPeers", /* @__PURE__ */ new Map([
|
|
110
|
-
["@biomejs/biome", "2.5.0"],
|
|
111
|
-
["@changesets/cli", "^3.0.0-next.10"],
|
|
112
|
-
["@commitlint/cli", "^21.2.1"],
|
|
113
|
-
["@commitlint/config-conventional", "^21.2.0"],
|
|
114
|
-
["husky", "^9.1.7"],
|
|
115
|
-
["lint-staged", "^17.3.0"],
|
|
116
|
-
["markdownlint-cli2", "^0.23.2"],
|
|
117
|
-
["markdownlint-cli2-formatter-codequality", "^0.0.7"],
|
|
118
|
-
["turbo", "^2.10.8"]
|
|
79
|
+
["turbo", "^2.10.10"]
|
|
119
80
|
])],
|
|
120
81
|
["silk", /* @__PURE__ */ new Map([
|
|
121
|
-
["@changesets/cli", "^3.0.0-next.10"],
|
|
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
83
|
["@types/node", "^26.1.2"],
|
|
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
93
|
["tsx", "^4.23.4"],
|
|
181
|
-
["
|
|
182
|
-
["typescript", "^7.0.2"],
|
|
183
|
-
["vitest", "^4.1.10"]
|
|
94
|
+
["typescript", "^7.0.2"]
|
|
184
95
|
])],
|
|
185
96
|
["silk:peers", /* @__PURE__ */ new Map([
|
|
186
|
-
["@changesets/cli", "^3.0.0-next.10"],
|
|
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
97
|
["@types/bun", "^1.3.14"],
|
|
230
98
|
["@types/node", "^26.1.0"],
|
|
231
99
|
["@types/react", "^19.2.0"],
|
|
232
100
|
["@types/react-dom", "^19.2.0"],
|
|
233
101
|
["@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
102
|
["husky", "^9.1.7"],
|
|
238
103
|
["lint-staged", "^17.3.0"],
|
|
239
104
|
["markdownlint-cli2", "^0.23.2"],
|
|
240
105
|
["markdownlint-cli2-formatter-codequality", "^0.0.7"],
|
|
241
106
|
["react", "^19.2.0"],
|
|
242
107
|
["react-dom", "^19.2.0"],
|
|
243
|
-
["rolldown", "^1.2.0"],
|
|
244
|
-
["tsdown", "^0.22.0"],
|
|
245
108
|
["tsx", "^4.23.4"],
|
|
246
|
-
["
|
|
247
|
-
["typescript", "^7.0.0"],
|
|
248
|
-
["vitest", "^4.1.0"]
|
|
249
|
-
])],
|
|
250
|
-
["silkPeers", /* @__PURE__ */ new Map([
|
|
251
|
-
["@changesets/cli", "^3.0.0-next.10"],
|
|
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
|
-
["@types/bun", "^1.3.14"],
|
|
295
|
-
["@types/node", "^26.1.0"],
|
|
296
|
-
["@types/react", "^19.2.0"],
|
|
297
|
-
["@types/react-dom", "^19.2.0"],
|
|
298
|
-
["@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
|
-
["husky", "^9.1.7"],
|
|
303
|
-
["lint-staged", "^17.3.0"],
|
|
304
|
-
["markdownlint-cli2", "^0.23.2"],
|
|
305
|
-
["markdownlint-cli2-formatter-codequality", "^0.0.7"],
|
|
306
|
-
["react", "^19.2.0"],
|
|
307
|
-
["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"]
|
|
109
|
+
["typescript", "^7.0.0"]
|
|
314
110
|
])],
|
|
315
111
|
["test", /* @__PURE__ */ new Map([
|
|
316
112
|
["@vitest/coverage-istanbul", "^4.1.10"],
|
|
@@ -321,11 +117,6 @@ const catalogs = /* @__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
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.
|
|
5
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
40
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
75
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
111
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
146
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
191
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
247
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
303
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
323
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.
|
|
383
|
+
//#region ../../node_modules/.pnpm/rolldown-pnpm-config@0.6.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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,18 +448,18 @@ const hooks = createHooks({
|
|
|
448
448
|
"blockExoticSubdeps": true,
|
|
449
449
|
"catalogs": {
|
|
450
450
|
"build": {
|
|
451
|
-
"@rsbuild/core": "^2.1.
|
|
451
|
+
"@rsbuild/core": "^2.1.13",
|
|
452
452
|
"@tsdown/css": "^0.22.14",
|
|
453
453
|
"@tsdown/exe": "^0.22.14",
|
|
454
454
|
"@types/bun": "^1.3.14",
|
|
455
|
-
"@types/node": "^26.
|
|
455
|
+
"@types/node": "^26.2.0",
|
|
456
456
|
"@types/react": "^19.2.18",
|
|
457
457
|
"@types/react-dom": "^19.2.4",
|
|
458
458
|
"react": "^19.2.8",
|
|
459
459
|
"react-dom": "^19.2.8",
|
|
460
|
-
"rolldown": "^1.2.
|
|
460
|
+
"rolldown": "^1.2.4",
|
|
461
461
|
"tsdown": "^0.22.14",
|
|
462
|
-
"tsx": "^4.23.
|
|
462
|
+
"tsx": "^4.23.12",
|
|
463
463
|
"typescript": "^7.0.2"
|
|
464
464
|
},
|
|
465
465
|
"build:peers": {
|
|
@@ -467,61 +467,33 @@ const hooks = createHooks({
|
|
|
467
467
|
"@tsdown/css": "^0.22.0",
|
|
468
468
|
"@tsdown/exe": "^0.22.0",
|
|
469
469
|
"@types/bun": "^1.3.14",
|
|
470
|
-
"@types/node": "^26.
|
|
471
|
-
"@types/react": "^19.2.0",
|
|
472
|
-
"@types/react-dom": "^19.2.0",
|
|
473
|
-
"react": "^19.2.0",
|
|
474
|
-
"react-dom": "^19.2.0",
|
|
475
|
-
"rolldown": "^1.2.0",
|
|
476
|
-
"tsdown": "^0.22.0",
|
|
477
|
-
"tsx": "^4.23.4",
|
|
478
|
-
"typescript": "^7.0.0"
|
|
479
|
-
},
|
|
480
|
-
"buildPeers": {
|
|
481
|
-
"@rsbuild/core": "^2.1.0",
|
|
482
|
-
"@tsdown/css": "^0.22.0",
|
|
483
|
-
"@tsdown/exe": "^0.22.0",
|
|
484
|
-
"@types/bun": "^1.3.14",
|
|
485
|
-
"@types/node": "^26.1.0",
|
|
470
|
+
"@types/node": "^26.2.0",
|
|
486
471
|
"@types/react": "^19.2.0",
|
|
487
472
|
"@types/react-dom": "^19.2.0",
|
|
488
473
|
"react": "^19.2.0",
|
|
489
474
|
"react-dom": "^19.2.0",
|
|
490
475
|
"rolldown": "^1.2.0",
|
|
491
476
|
"tsdown": "^0.22.0",
|
|
492
|
-
"tsx": "^4.23.
|
|
477
|
+
"tsx": "^4.23.12",
|
|
493
478
|
"typescript": "^7.0.0"
|
|
494
479
|
},
|
|
495
480
|
"docs": {
|
|
496
481
|
"@rspress/core": "^2.0.19",
|
|
497
482
|
"@rspress/plugin-sitemap": "^2.0.19",
|
|
498
|
-
"@types/node": "^26.
|
|
483
|
+
"@types/node": "^26.2.0",
|
|
499
484
|
"@types/react": "^19.2.18",
|
|
500
485
|
"@types/react-dom": "^19.2.4",
|
|
501
486
|
"react": "^19.2.8",
|
|
502
487
|
"react-dom": "^19.2.8",
|
|
503
488
|
"rspress-plugin-mermaid": "^1.0.1",
|
|
504
489
|
"typescript": "^7.0.2",
|
|
505
|
-
"vite": "^8.2.
|
|
490
|
+
"vite": "^8.2.1",
|
|
506
491
|
"vitepress": "^2.0.0-alpha.19"
|
|
507
492
|
},
|
|
508
493
|
"docs:peers": {
|
|
509
494
|
"@rspress/core": "^2.0.0",
|
|
510
495
|
"@rspress/plugin-sitemap": "^2.0.19",
|
|
511
|
-
"@types/node": "^26.
|
|
512
|
-
"@types/react": "^19.2.0",
|
|
513
|
-
"@types/react-dom": "^19.2.0",
|
|
514
|
-
"react": "^19.2.0",
|
|
515
|
-
"react-dom": "^19.2.0",
|
|
516
|
-
"rspress-plugin-mermaid": "^1.0.1",
|
|
517
|
-
"typescript": "^7.0.0",
|
|
518
|
-
"vite": "^8.2.0",
|
|
519
|
-
"vitepress": "^2.0.0-alpha.19"
|
|
520
|
-
},
|
|
521
|
-
"docsPeers": {
|
|
522
|
-
"@rspress/core": "^2.0.0",
|
|
523
|
-
"@rspress/plugin-sitemap": "^2.0.19",
|
|
524
|
-
"@types/node": "^26.1.0",
|
|
496
|
+
"@types/node": "^26.2.0",
|
|
525
497
|
"@types/react": "^19.2.0",
|
|
526
498
|
"@types/react-dom": "^19.2.0",
|
|
527
499
|
"react": "^19.2.0",
|
|
@@ -533,231 +505,55 @@ const hooks = createHooks({
|
|
|
533
505
|
},
|
|
534
506
|
"lint": {
|
|
535
507
|
"@biomejs/biome": "2.5.0",
|
|
536
|
-
"@changesets/cli": "^3.0.0
|
|
537
|
-
"@commitlint/cli": "^21.2.
|
|
538
|
-
"@commitlint/config-conventional": "^21.2.
|
|
508
|
+
"@changesets/cli": "^3.0.0",
|
|
509
|
+
"@commitlint/cli": "^21.2.2",
|
|
510
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
539
511
|
"husky": "^9.1.7",
|
|
540
512
|
"lint-staged": "^17.3.0",
|
|
541
513
|
"markdownlint-cli2": "^0.23.2",
|
|
542
514
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
543
|
-
"turbo": "^2.10.
|
|
515
|
+
"turbo": "^2.10.10"
|
|
544
516
|
},
|
|
545
517
|
"lint:peers": {
|
|
546
518
|
"@biomejs/biome": "2.5.0",
|
|
547
|
-
"@changesets/cli": "^3.0.0
|
|
548
|
-
"@commitlint/cli": "^21.2.
|
|
549
|
-
"@commitlint/config-conventional": "^21.2.
|
|
519
|
+
"@changesets/cli": "^3.0.0",
|
|
520
|
+
"@commitlint/cli": "^21.2.2",
|
|
521
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
550
522
|
"husky": "^9.1.7",
|
|
551
523
|
"lint-staged": "^17.3.0",
|
|
552
524
|
"markdownlint-cli2": "^0.23.2",
|
|
553
525
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
554
|
-
"turbo": "^2.10.
|
|
555
|
-
},
|
|
556
|
-
"lintPeers": {
|
|
557
|
-
"@biomejs/biome": "2.5.0",
|
|
558
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
559
|
-
"@commitlint/cli": "^21.2.1",
|
|
560
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
561
|
-
"husky": "^9.1.7",
|
|
562
|
-
"lint-staged": "^17.3.0",
|
|
563
|
-
"markdownlint-cli2": "^0.23.2",
|
|
564
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
565
|
-
"turbo": "^2.10.8"
|
|
526
|
+
"turbo": "^2.10.10"
|
|
566
527
|
},
|
|
567
528
|
"silk": {
|
|
568
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
569
|
-
"@commitlint/cli": "^21.2.1",
|
|
570
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
571
|
-
"@effect/ai": "^0.36.0",
|
|
572
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
573
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
574
|
-
"@effect/ai-google": "^0.15.0",
|
|
575
|
-
"@effect/ai-openai": "^0.40.1",
|
|
576
|
-
"@effect/cli": "^0.75.2",
|
|
577
|
-
"@effect/cluster": "^0.59.0",
|
|
578
|
-
"@effect/experimental": "^0.60.0",
|
|
579
|
-
"@effect/language-service": "^0.86.6",
|
|
580
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
581
|
-
"@effect/platform": "^0.96.2",
|
|
582
|
-
"@effect/platform-browser": "^0.76.0",
|
|
583
|
-
"@effect/platform-bun": "^0.90.0",
|
|
584
|
-
"@effect/platform-node": "^0.107.0",
|
|
585
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
586
|
-
"@effect/printer": "^0.49.0",
|
|
587
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
588
|
-
"@effect/rpc": "^0.75.1",
|
|
589
|
-
"@effect/sql": "^0.51.1",
|
|
590
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
591
|
-
"@effect/sql-d1": "^0.49.0",
|
|
592
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
593
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
594
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
595
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
596
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
597
|
-
"@effect/sql-pg": "^0.52.1",
|
|
598
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
599
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
600
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
601
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
602
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
603
|
-
"@effect/tsgo": "^0.19.0",
|
|
604
|
-
"@effect/typeclass": "^0.40.0",
|
|
605
|
-
"@effect/vitest": "^0.29.0",
|
|
606
|
-
"@effect/workflow": "^0.18.2",
|
|
607
|
-
"@rsbuild/core": "^2.1.9",
|
|
608
|
-
"@rspress/core": "^2.0.19",
|
|
609
|
-
"@tsdown/css": "^0.22.14",
|
|
610
|
-
"@tsdown/exe": "^0.22.14",
|
|
611
529
|
"@types/bun": "^1.3.14",
|
|
612
530
|
"@types/node": "^26.1.2",
|
|
613
531
|
"@types/react": "^19.2.18",
|
|
614
532
|
"@types/react-dom": "^19.2.4",
|
|
615
533
|
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
616
|
-
"@vitest/coverage-istanbul": "^4.1.10",
|
|
617
|
-
"@vitest/coverage-v8": "^4.1.10",
|
|
618
|
-
"effect": "^3.21.4",
|
|
619
534
|
"husky": "^9.1.7",
|
|
620
535
|
"lint-staged": "^17.3.0",
|
|
621
536
|
"markdownlint-cli2": "^0.23.2",
|
|
622
537
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
623
538
|
"react": "^19.2.8",
|
|
624
539
|
"react-dom": "^19.2.8",
|
|
625
|
-
"rolldown": "^1.2.1",
|
|
626
|
-
"tsdown": "^0.22.14",
|
|
627
540
|
"tsx": "^4.23.4",
|
|
628
|
-
"
|
|
629
|
-
"typescript": "^7.0.2",
|
|
630
|
-
"vitest": "^4.1.10"
|
|
541
|
+
"typescript": "^7.0.2"
|
|
631
542
|
},
|
|
632
543
|
"silk:peers": {
|
|
633
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
634
|
-
"@commitlint/cli": "^21.2.1",
|
|
635
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
636
|
-
"@effect/ai": "^0.36.0",
|
|
637
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
638
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
639
|
-
"@effect/ai-google": "^0.15.0",
|
|
640
|
-
"@effect/ai-openai": "^0.40.1",
|
|
641
|
-
"@effect/cli": "^0.75.2",
|
|
642
|
-
"@effect/cluster": "^0.59.0",
|
|
643
|
-
"@effect/experimental": "^0.60.0",
|
|
644
|
-
"@effect/language-service": "^0.86.6",
|
|
645
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
646
|
-
"@effect/platform": "^0.96.0",
|
|
647
|
-
"@effect/platform-browser": "^0.76.0",
|
|
648
|
-
"@effect/platform-bun": "^0.90.0",
|
|
649
|
-
"@effect/platform-node": "^0.107.0",
|
|
650
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
651
|
-
"@effect/printer": "^0.49.0",
|
|
652
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
653
|
-
"@effect/rpc": "^0.75.1",
|
|
654
|
-
"@effect/sql": "^0.51.0",
|
|
655
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
656
|
-
"@effect/sql-d1": "^0.49.0",
|
|
657
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
658
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
659
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
660
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
661
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
662
|
-
"@effect/sql-pg": "^0.52.1",
|
|
663
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
664
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
665
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
666
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
667
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
668
|
-
"@effect/tsgo": "^0.19.0",
|
|
669
|
-
"@effect/typeclass": "^0.40.0",
|
|
670
|
-
"@effect/vitest": "^0.29.0",
|
|
671
|
-
"@effect/workflow": "^0.18.2",
|
|
672
|
-
"@rsbuild/core": "^2.1.0",
|
|
673
|
-
"@rspress/core": "^2.0.0",
|
|
674
|
-
"@tsdown/css": "^0.22.14",
|
|
675
|
-
"@tsdown/exe": "^0.22.14",
|
|
676
544
|
"@types/bun": "^1.3.14",
|
|
677
545
|
"@types/node": "^26.1.0",
|
|
678
546
|
"@types/react": "^19.2.0",
|
|
679
547
|
"@types/react-dom": "^19.2.0",
|
|
680
548
|
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
681
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
682
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
683
|
-
"effect": "^3.21.0",
|
|
684
549
|
"husky": "^9.1.7",
|
|
685
550
|
"lint-staged": "^17.3.0",
|
|
686
551
|
"markdownlint-cli2": "^0.23.2",
|
|
687
552
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
688
553
|
"react": "^19.2.0",
|
|
689
554
|
"react-dom": "^19.2.0",
|
|
690
|
-
"rolldown": "^1.2.0",
|
|
691
|
-
"tsdown": "^0.22.0",
|
|
692
555
|
"tsx": "^4.23.4",
|
|
693
|
-
"
|
|
694
|
-
"typescript": "^7.0.0",
|
|
695
|
-
"vitest": "^4.1.0"
|
|
696
|
-
},
|
|
697
|
-
"silkPeers": {
|
|
698
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
699
|
-
"@commitlint/cli": "^21.2.1",
|
|
700
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
701
|
-
"@effect/ai": "^0.36.0",
|
|
702
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
703
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
704
|
-
"@effect/ai-google": "^0.15.0",
|
|
705
|
-
"@effect/ai-openai": "^0.40.1",
|
|
706
|
-
"@effect/cli": "^0.75.2",
|
|
707
|
-
"@effect/cluster": "^0.59.0",
|
|
708
|
-
"@effect/experimental": "^0.60.0",
|
|
709
|
-
"@effect/language-service": "^0.86.6",
|
|
710
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
711
|
-
"@effect/platform": "^0.96.0",
|
|
712
|
-
"@effect/platform-browser": "^0.76.0",
|
|
713
|
-
"@effect/platform-bun": "^0.90.0",
|
|
714
|
-
"@effect/platform-node": "^0.107.0",
|
|
715
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
716
|
-
"@effect/printer": "^0.49.0",
|
|
717
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
718
|
-
"@effect/rpc": "^0.75.1",
|
|
719
|
-
"@effect/sql": "^0.51.0",
|
|
720
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
721
|
-
"@effect/sql-d1": "^0.49.0",
|
|
722
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
723
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
724
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
725
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
726
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
727
|
-
"@effect/sql-pg": "^0.52.1",
|
|
728
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
729
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
730
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
731
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
732
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
733
|
-
"@effect/tsgo": "^0.19.0",
|
|
734
|
-
"@effect/typeclass": "^0.40.0",
|
|
735
|
-
"@effect/vitest": "^0.29.0",
|
|
736
|
-
"@effect/workflow": "^0.18.2",
|
|
737
|
-
"@rsbuild/core": "^2.1.0",
|
|
738
|
-
"@rspress/core": "^2.0.0",
|
|
739
|
-
"@tsdown/css": "^0.22.14",
|
|
740
|
-
"@tsdown/exe": "^0.22.14",
|
|
741
|
-
"@types/bun": "^1.3.14",
|
|
742
|
-
"@types/node": "^26.1.0",
|
|
743
|
-
"@types/react": "^19.2.0",
|
|
744
|
-
"@types/react-dom": "^19.2.0",
|
|
745
|
-
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
|
|
746
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
747
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
748
|
-
"effect": "^3.21.0",
|
|
749
|
-
"husky": "^9.1.7",
|
|
750
|
-
"lint-staged": "^17.3.0",
|
|
751
|
-
"markdownlint-cli2": "^0.23.2",
|
|
752
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
753
|
-
"react": "^19.2.0",
|
|
754
|
-
"react-dom": "^19.2.0",
|
|
755
|
-
"rolldown": "^1.2.0",
|
|
756
|
-
"tsdown": "^0.22.0",
|
|
757
|
-
"tsx": "^4.23.4",
|
|
758
|
-
"turbo": "^2.10.8",
|
|
759
|
-
"typescript": "^7.0.0",
|
|
760
|
-
"vitest": "^4.1.0"
|
|
556
|
+
"typescript": "^7.0.0"
|
|
761
557
|
},
|
|
762
558
|
"test": {
|
|
763
559
|
"@vitest/coverage-istanbul": "^4.1.10",
|
|
@@ -768,11 +564,6 @@ const hooks = createHooks({
|
|
|
768
564
|
"@vitest/coverage-istanbul": "^4.1.0",
|
|
769
565
|
"@vitest/coverage-v8": "^4.1.0",
|
|
770
566
|
"vitest": "^4.1.0"
|
|
771
|
-
},
|
|
772
|
-
"testPeers": {
|
|
773
|
-
"@vitest/coverage-istanbul": "^4.1.0",
|
|
774
|
-
"@vitest/coverage-v8": "^4.1.0",
|
|
775
|
-
"vitest": "^4.1.0"
|
|
776
567
|
}
|
|
777
568
|
},
|
|
778
569
|
"confirmModulesPurge": false,
|
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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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.0_@types+react@19.2.18_ioredis@5.11.1_supports-color@8.1.1__rolldown@1.2.4/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,18 +447,18 @@ const hooks = createHooks({
|
|
|
447
447
|
"blockExoticSubdeps": true,
|
|
448
448
|
"catalogs": {
|
|
449
449
|
"build": {
|
|
450
|
-
"@rsbuild/core": "^2.1.
|
|
450
|
+
"@rsbuild/core": "^2.1.13",
|
|
451
451
|
"@tsdown/css": "^0.22.14",
|
|
452
452
|
"@tsdown/exe": "^0.22.14",
|
|
453
453
|
"@types/bun": "^1.3.14",
|
|
454
|
-
"@types/node": "^26.
|
|
454
|
+
"@types/node": "^26.2.0",
|
|
455
455
|
"@types/react": "^19.2.18",
|
|
456
456
|
"@types/react-dom": "^19.2.4",
|
|
457
457
|
"react": "^19.2.8",
|
|
458
458
|
"react-dom": "^19.2.8",
|
|
459
|
-
"rolldown": "^1.2.
|
|
459
|
+
"rolldown": "^1.2.4",
|
|
460
460
|
"tsdown": "^0.22.14",
|
|
461
|
-
"tsx": "^4.23.
|
|
461
|
+
"tsx": "^4.23.12",
|
|
462
462
|
"typescript": "^7.0.2"
|
|
463
463
|
},
|
|
464
464
|
"build:peers": {
|
|
@@ -466,61 +466,33 @@ const hooks = createHooks({
|
|
|
466
466
|
"@tsdown/css": "^0.22.0",
|
|
467
467
|
"@tsdown/exe": "^0.22.0",
|
|
468
468
|
"@types/bun": "^1.3.14",
|
|
469
|
-
"@types/node": "^26.
|
|
470
|
-
"@types/react": "^19.2.0",
|
|
471
|
-
"@types/react-dom": "^19.2.0",
|
|
472
|
-
"react": "^19.2.0",
|
|
473
|
-
"react-dom": "^19.2.0",
|
|
474
|
-
"rolldown": "^1.2.0",
|
|
475
|
-
"tsdown": "^0.22.0",
|
|
476
|
-
"tsx": "^4.23.4",
|
|
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",
|
|
469
|
+
"@types/node": "^26.2.0",
|
|
485
470
|
"@types/react": "^19.2.0",
|
|
486
471
|
"@types/react-dom": "^19.2.0",
|
|
487
472
|
"react": "^19.2.0",
|
|
488
473
|
"react-dom": "^19.2.0",
|
|
489
474
|
"rolldown": "^1.2.0",
|
|
490
475
|
"tsdown": "^0.22.0",
|
|
491
|
-
"tsx": "^4.23.
|
|
476
|
+
"tsx": "^4.23.12",
|
|
492
477
|
"typescript": "^7.0.0"
|
|
493
478
|
},
|
|
494
479
|
"docs": {
|
|
495
480
|
"@rspress/core": "^2.0.19",
|
|
496
481
|
"@rspress/plugin-sitemap": "^2.0.19",
|
|
497
|
-
"@types/node": "^26.
|
|
482
|
+
"@types/node": "^26.2.0",
|
|
498
483
|
"@types/react": "^19.2.18",
|
|
499
484
|
"@types/react-dom": "^19.2.4",
|
|
500
485
|
"react": "^19.2.8",
|
|
501
486
|
"react-dom": "^19.2.8",
|
|
502
487
|
"rspress-plugin-mermaid": "^1.0.1",
|
|
503
488
|
"typescript": "^7.0.2",
|
|
504
|
-
"vite": "^8.2.
|
|
489
|
+
"vite": "^8.2.1",
|
|
505
490
|
"vitepress": "^2.0.0-alpha.19"
|
|
506
491
|
},
|
|
507
492
|
"docs:peers": {
|
|
508
493
|
"@rspress/core": "^2.0.0",
|
|
509
494
|
"@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",
|
|
495
|
+
"@types/node": "^26.2.0",
|
|
524
496
|
"@types/react": "^19.2.0",
|
|
525
497
|
"@types/react-dom": "^19.2.0",
|
|
526
498
|
"react": "^19.2.0",
|
|
@@ -532,231 +504,55 @@ const hooks = createHooks({
|
|
|
532
504
|
},
|
|
533
505
|
"lint": {
|
|
534
506
|
"@biomejs/biome": "2.5.0",
|
|
535
|
-
"@changesets/cli": "^3.0.0
|
|
536
|
-
"@commitlint/cli": "^21.2.
|
|
537
|
-
"@commitlint/config-conventional": "^21.2.
|
|
507
|
+
"@changesets/cli": "^3.0.0",
|
|
508
|
+
"@commitlint/cli": "^21.2.2",
|
|
509
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
538
510
|
"husky": "^9.1.7",
|
|
539
511
|
"lint-staged": "^17.3.0",
|
|
540
512
|
"markdownlint-cli2": "^0.23.2",
|
|
541
513
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
542
|
-
"turbo": "^2.10.
|
|
514
|
+
"turbo": "^2.10.10"
|
|
543
515
|
},
|
|
544
516
|
"lint:peers": {
|
|
545
517
|
"@biomejs/biome": "2.5.0",
|
|
546
|
-
"@changesets/cli": "^3.0.0
|
|
547
|
-
"@commitlint/cli": "^21.2.
|
|
548
|
-
"@commitlint/config-conventional": "^21.2.
|
|
518
|
+
"@changesets/cli": "^3.0.0",
|
|
519
|
+
"@commitlint/cli": "^21.2.2",
|
|
520
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
549
521
|
"husky": "^9.1.7",
|
|
550
522
|
"lint-staged": "^17.3.0",
|
|
551
523
|
"markdownlint-cli2": "^0.23.2",
|
|
552
524
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
553
|
-
"turbo": "^2.10.
|
|
554
|
-
},
|
|
555
|
-
"lintPeers": {
|
|
556
|
-
"@biomejs/biome": "2.5.0",
|
|
557
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
558
|
-
"@commitlint/cli": "^21.2.1",
|
|
559
|
-
"@commitlint/config-conventional": "^21.2.0",
|
|
560
|
-
"husky": "^9.1.7",
|
|
561
|
-
"lint-staged": "^17.3.0",
|
|
562
|
-
"markdownlint-cli2": "^0.23.2",
|
|
563
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
564
|
-
"turbo": "^2.10.8"
|
|
525
|
+
"turbo": "^2.10.10"
|
|
565
526
|
},
|
|
566
527
|
"silk": {
|
|
567
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
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
528
|
"@types/bun": "^1.3.14",
|
|
611
529
|
"@types/node": "^26.1.2",
|
|
612
530
|
"@types/react": "^19.2.18",
|
|
613
531
|
"@types/react-dom": "^19.2.4",
|
|
614
532
|
"@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
533
|
"husky": "^9.1.7",
|
|
619
534
|
"lint-staged": "^17.3.0",
|
|
620
535
|
"markdownlint-cli2": "^0.23.2",
|
|
621
536
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
622
537
|
"react": "^19.2.8",
|
|
623
538
|
"react-dom": "^19.2.8",
|
|
624
|
-
"rolldown": "^1.2.1",
|
|
625
|
-
"tsdown": "^0.22.14",
|
|
626
539
|
"tsx": "^4.23.4",
|
|
627
|
-
"
|
|
628
|
-
"typescript": "^7.0.2",
|
|
629
|
-
"vitest": "^4.1.10"
|
|
540
|
+
"typescript": "^7.0.2"
|
|
630
541
|
},
|
|
631
542
|
"silk:peers": {
|
|
632
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
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
543
|
"@types/bun": "^1.3.14",
|
|
676
544
|
"@types/node": "^26.1.0",
|
|
677
545
|
"@types/react": "^19.2.0",
|
|
678
546
|
"@types/react-dom": "^19.2.0",
|
|
679
547
|
"@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
548
|
"husky": "^9.1.7",
|
|
684
549
|
"lint-staged": "^17.3.0",
|
|
685
550
|
"markdownlint-cli2": "^0.23.2",
|
|
686
551
|
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
687
552
|
"react": "^19.2.0",
|
|
688
553
|
"react-dom": "^19.2.0",
|
|
689
|
-
"rolldown": "^1.2.0",
|
|
690
|
-
"tsdown": "^0.22.0",
|
|
691
554
|
"tsx": "^4.23.4",
|
|
692
|
-
"
|
|
693
|
-
"typescript": "^7.0.0",
|
|
694
|
-
"vitest": "^4.1.0"
|
|
695
|
-
},
|
|
696
|
-
"silkPeers": {
|
|
697
|
-
"@changesets/cli": "^3.0.0-next.10",
|
|
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
|
-
"@types/bun": "^1.3.14",
|
|
741
|
-
"@types/node": "^26.1.0",
|
|
742
|
-
"@types/react": "^19.2.0",
|
|
743
|
-
"@types/react-dom": "^19.2.0",
|
|
744
|
-
"@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
|
-
"husky": "^9.1.7",
|
|
749
|
-
"lint-staged": "^17.3.0",
|
|
750
|
-
"markdownlint-cli2": "^0.23.2",
|
|
751
|
-
"markdownlint-cli2-formatter-codequality": "^0.0.7",
|
|
752
|
-
"react": "^19.2.0",
|
|
753
|
-
"react-dom": "^19.2.0",
|
|
754
|
-
"rolldown": "^1.2.0",
|
|
755
|
-
"tsdown": "^0.22.0",
|
|
756
|
-
"tsx": "^4.23.4",
|
|
757
|
-
"turbo": "^2.10.8",
|
|
758
|
-
"typescript": "^7.0.0",
|
|
759
|
-
"vitest": "^4.1.0"
|
|
555
|
+
"typescript": "^7.0.0"
|
|
760
556
|
},
|
|
761
557
|
"test": {
|
|
762
558
|
"@vitest/coverage-istanbul": "^4.1.10",
|
|
@@ -767,11 +563,6 @@ const hooks = createHooks({
|
|
|
767
563
|
"@vitest/coverage-istanbul": "^4.1.0",
|
|
768
564
|
"@vitest/coverage-v8": "^4.1.0",
|
|
769
565
|
"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
566
|
}
|
|
776
567
|
},
|
|
777
568
|
"confirmModulesPurge": false,
|