@effected/pnpm-plugin-effect 0.4.0 → 0.5.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 +3 -19
- package/index.js +59 -206
- package/package.json +1 -1
- package/pnpmfile.cjs +93 -237
- package/pnpmfile.mjs +93 -237
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
A pnpm [config dependency](https://pnpm.io/config-dependencies) that centralizes Effect-ecosystem versioning through two [pnpm catalogs](https://pnpm.io/catalogs). The `effect` catalog pins every `effect` and `@effect/*` package to one [Effect v4](https://effect.website/blog/releases/effect/40-beta/) release. The `effect:peers` catalog carries the same package set at a computed shared floor — the lowest version safe to advertise as a peer range — so a library you publish does not over-constrain the applications that install it. Install it once and both catalogs are available to every package in your workspace.
|
|
10
10
|
|
|
11
11
|
> **Pre-release.** This package is part of the `@effected/*` kit, in pre-`1.0.0`
|
|
12
|
-
> development against a single pinned Effect v4
|
|
12
|
+
> development against a single pinned Effect v4 prerelease. Packages graduate to
|
|
13
13
|
> `1.0.0` once Effect `4.0.0` ships. To hold your own `effect` versions at
|
|
14
14
|
> exactly the ones the kit is built and tested against, install
|
|
15
15
|
> [`@effected/pnpm-plugin-effect`](https://www.npmjs.com/package/@effected/pnpm-plugin-effect).
|
|
@@ -22,7 +22,7 @@ A pnpm [config dependency](https://pnpm.io/config-dependencies) that centralizes
|
|
|
22
22
|
|
|
23
23
|
## Why @effected/pnpm-plugin-effect
|
|
24
24
|
|
|
25
|
-
Effect ships as a couple of dozen packages that have to move together. Pin them by hand and the pins drift: one `@effect/*` package advances, its `effect` peer no longer matches the core you installed, and the failure surfaces as a type error in a file nobody touched. Keeping the pins in one place is the whole idea, and pnpm catalogs are the mechanism — `catalog:effect` in a manifest instead of a version string, and one place to edit when the
|
|
25
|
+
Effect ships as a couple of dozen packages that have to move together. Pin them by hand and the pins drift: one `@effect/*` package advances, its `effect` peer no longer matches the core you installed, and the failure surfaces as a type error in a file nobody touched. Keeping the pins in one place is the whole idea, and pnpm catalogs are the mechanism — `catalog:effect` in a manifest instead of a version string, and one place to edit when the pin advances.
|
|
26
26
|
|
|
27
27
|
The second catalog is the part you cannot get from a catalog alone. A library's `peerDependencies` should be as *wide* as it can safely be, while its `devDependencies` should be as *specific* as possible; those are different numbers and computing the peer floor by hand across a whole ecosystem is grim. `effect:peers` is that computation, done once. This is a convenience, not a requirement — it packages the way [effected](https://github.com/spencerbeggs/effected) pins its own Effect dependencies, so a project that wants the same discipline can adopt it instead of rebuilding it. It ships catalogs and a pnpmfile, not a code API.
|
|
28
28
|
|
|
@@ -75,32 +75,16 @@ Libraries want both catalogs: the pinned versions to develop and test against, a
|
|
|
75
75
|
|
|
76
76
|
pnpm rewrites `catalog:` specifiers to concrete ranges when it publishes, so what lands on the registry is an ordinary manifest. Nothing downstream needs this plugin, or pnpm.
|
|
77
77
|
|
|
78
|
-
### Testing against both Effect versions
|
|
79
|
-
|
|
80
|
-
During the Effect v3 → v4 transition the plugin also ships an `effect3` catalog — and its `effect3:peers` floor — tracking the latest Effect **v3** releases, so you can verify code against both Effect majors in a single monorepo. A package or test workspace that should build against v3 references `catalog:effect3` where another references `catalog:effect`:
|
|
81
|
-
|
|
82
|
-
```json
|
|
83
|
-
{
|
|
84
|
-
"devDependencies": {
|
|
85
|
-
"effect": "catalog:effect3"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
A handful of packages are excluded where their v3 line has known issues. The `effect3` catalogs are removed at this plugin's own `1.0.0`, once Effect `4.0.0` has shipped and there is nothing left to interoperate with.
|
|
91
|
-
|
|
92
78
|
## What it ships
|
|
93
79
|
|
|
94
80
|
| Catalog | Contents | Use it in |
|
|
95
81
|
| ------- | -------- | --------- |
|
|
96
82
|
| `catalog:effect` | Every `effect` and `@effect/*` package, pinned to one v4 release | `dependencies` for applications, `devDependencies` for libraries |
|
|
97
83
|
| `catalog:effect:peers` | The same package set at the computed shared peer floor | `peerDependencies` for libraries |
|
|
98
|
-
| `catalog:effect3` | The same package set tracking the latest Effect **v3** releases, a few excluded | testing against Effect v3 alongside v4 |
|
|
99
|
-
| `catalog:effect3:peers` | The v3 package set at its computed peer floor | `peerDependencies` when advertising v3 support |
|
|
100
84
|
|
|
101
85
|
It also ships a pnpmfile, which pnpm loads from the config dependency automatically. There is nothing to import and nothing to call — the package has no code API, only configuration.
|
|
102
86
|
|
|
103
|
-
While the whole ecosystem is pinned to a single
|
|
87
|
+
While the whole ecosystem is pinned to a single Effect v4 prerelease, the two catalogs largely coincide. The floor computation earns its keep once the packages' releases desynchronize — and it earned it under Effect v3, where the floors genuinely diverged.
|
|
104
88
|
|
|
105
89
|
## License
|
|
106
90
|
|
package/index.js
CHANGED
|
@@ -1,210 +1,63 @@
|
|
|
1
1
|
//#region \0rolldown-pnpm-config/virtual/catalogs
|
|
2
|
-
const catalogs = /* @__PURE__ */ new Map([
|
|
3
|
-
["effect",
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
]
|
|
33
|
-
["effect
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
["effect", "4.0.0-beta.107"]
|
|
62
|
-
])],
|
|
63
|
-
["effect3", /* @__PURE__ */ new Map([
|
|
64
|
-
["@effect/ai", "^0.36.0"],
|
|
65
|
-
["@effect/ai-amazon-bedrock", "^0.16.1"],
|
|
66
|
-
["@effect/ai-anthropic", "^0.26.0"],
|
|
67
|
-
["@effect/ai-google", "^0.15.0"],
|
|
68
|
-
["@effect/ai-openai", "^0.40.1"],
|
|
69
|
-
["@effect/cli", "^0.75.2"],
|
|
70
|
-
["@effect/cluster", "^0.59.0"],
|
|
71
|
-
["@effect/experimental", "^0.60.0"],
|
|
72
|
-
["@effect/language-service", "^0.86.6"],
|
|
73
|
-
["@effect/opentelemetry", "^0.63.0"],
|
|
74
|
-
["@effect/platform", "^0.96.2"],
|
|
75
|
-
["@effect/platform-browser", "^0.76.0"],
|
|
76
|
-
["@effect/platform-bun", "^0.90.0"],
|
|
77
|
-
["@effect/platform-node", "^0.107.0"],
|
|
78
|
-
["@effect/platform-node-shared", "^0.60.0"],
|
|
79
|
-
["@effect/printer", "^0.49.0"],
|
|
80
|
-
["@effect/printer-ansi", "^0.49.0"],
|
|
81
|
-
["@effect/rpc", "^0.75.1"],
|
|
82
|
-
["@effect/sql", "^0.51.1"],
|
|
83
|
-
["@effect/sql-clickhouse", "^0.49.0"],
|
|
84
|
-
["@effect/sql-d1", "^0.49.0"],
|
|
85
|
-
["@effect/sql-drizzle", "^0.50.0"],
|
|
86
|
-
["@effect/sql-kysely", "^0.47.0"],
|
|
87
|
-
["@effect/sql-libsql", "^0.41.0"],
|
|
88
|
-
["@effect/sql-mssql", "^0.52.0"],
|
|
89
|
-
["@effect/sql-mysql2", "^0.52.0"],
|
|
90
|
-
["@effect/sql-pg", "^0.52.1"],
|
|
91
|
-
["@effect/sql-sqlite-bun", "^0.52.0"],
|
|
92
|
-
["@effect/sql-sqlite-do", "^0.29.0"],
|
|
93
|
-
["@effect/sql-sqlite-node", "^0.52.0"],
|
|
94
|
-
["@effect/sql-sqlite-react-native", "^0.54.0"],
|
|
95
|
-
["@effect/sql-sqlite-wasm", "^0.52.0"],
|
|
96
|
-
["@effect/typeclass", "^0.40.0"],
|
|
97
|
-
["@effect/vitest", "^0.29.0"],
|
|
98
|
-
["@effect/workflow", "^0.18.2"],
|
|
99
|
-
["effect", "^3.21.4"]
|
|
100
|
-
])],
|
|
101
|
-
["effect3:peers", /* @__PURE__ */ new Map([
|
|
102
|
-
["@effect/ai", "^0.36.0"],
|
|
103
|
-
["@effect/ai-amazon-bedrock", "^0.16.1"],
|
|
104
|
-
["@effect/ai-anthropic", "^0.26.0"],
|
|
105
|
-
["@effect/ai-google", "^0.15.0"],
|
|
106
|
-
["@effect/ai-openai", "^0.40.1"],
|
|
107
|
-
["@effect/cli", "^0.75.2"],
|
|
108
|
-
["@effect/cluster", "^0.59.0"],
|
|
109
|
-
["@effect/experimental", "^0.60.0"],
|
|
110
|
-
["@effect/language-service", "^0.86.6"],
|
|
111
|
-
["@effect/opentelemetry", "^0.63.0"],
|
|
112
|
-
["@effect/platform", "^0.96.0"],
|
|
113
|
-
["@effect/platform-browser", "^0.76.0"],
|
|
114
|
-
["@effect/platform-bun", "^0.90.0"],
|
|
115
|
-
["@effect/platform-node", "^0.107.0"],
|
|
116
|
-
["@effect/platform-node-shared", "^0.60.0"],
|
|
117
|
-
["@effect/printer", "^0.49.0"],
|
|
118
|
-
["@effect/printer-ansi", "^0.49.0"],
|
|
119
|
-
["@effect/rpc", "^0.75.1"],
|
|
120
|
-
["@effect/sql", "^0.51.0"],
|
|
121
|
-
["@effect/sql-clickhouse", "^0.49.0"],
|
|
122
|
-
["@effect/sql-d1", "^0.49.0"],
|
|
123
|
-
["@effect/sql-drizzle", "^0.50.0"],
|
|
124
|
-
["@effect/sql-kysely", "^0.47.0"],
|
|
125
|
-
["@effect/sql-libsql", "^0.41.0"],
|
|
126
|
-
["@effect/sql-mssql", "^0.52.0"],
|
|
127
|
-
["@effect/sql-mysql2", "^0.52.0"],
|
|
128
|
-
["@effect/sql-pg", "^0.52.1"],
|
|
129
|
-
["@effect/sql-sqlite-bun", "^0.52.0"],
|
|
130
|
-
["@effect/sql-sqlite-do", "^0.29.0"],
|
|
131
|
-
["@effect/sql-sqlite-node", "^0.52.0"],
|
|
132
|
-
["@effect/sql-sqlite-react-native", "^0.54.0"],
|
|
133
|
-
["@effect/sql-sqlite-wasm", "^0.52.0"],
|
|
134
|
-
["@effect/typeclass", "^0.40.0"],
|
|
135
|
-
["@effect/vitest", "^0.29.0"],
|
|
136
|
-
["@effect/workflow", "^0.18.2"],
|
|
137
|
-
["effect", "^3.21.0"]
|
|
138
|
-
])],
|
|
139
|
-
["effect3Peers", /* @__PURE__ */ new Map([
|
|
140
|
-
["@effect/ai", "^0.36.0"],
|
|
141
|
-
["@effect/ai-amazon-bedrock", "^0.16.1"],
|
|
142
|
-
["@effect/ai-anthropic", "^0.26.0"],
|
|
143
|
-
["@effect/ai-google", "^0.15.0"],
|
|
144
|
-
["@effect/ai-openai", "^0.40.1"],
|
|
145
|
-
["@effect/cli", "^0.75.2"],
|
|
146
|
-
["@effect/cluster", "^0.59.0"],
|
|
147
|
-
["@effect/experimental", "^0.60.0"],
|
|
148
|
-
["@effect/language-service", "^0.86.6"],
|
|
149
|
-
["@effect/opentelemetry", "^0.63.0"],
|
|
150
|
-
["@effect/platform", "^0.96.0"],
|
|
151
|
-
["@effect/platform-browser", "^0.76.0"],
|
|
152
|
-
["@effect/platform-bun", "^0.90.0"],
|
|
153
|
-
["@effect/platform-node", "^0.107.0"],
|
|
154
|
-
["@effect/platform-node-shared", "^0.60.0"],
|
|
155
|
-
["@effect/printer", "^0.49.0"],
|
|
156
|
-
["@effect/printer-ansi", "^0.49.0"],
|
|
157
|
-
["@effect/rpc", "^0.75.1"],
|
|
158
|
-
["@effect/sql", "^0.51.0"],
|
|
159
|
-
["@effect/sql-clickhouse", "^0.49.0"],
|
|
160
|
-
["@effect/sql-d1", "^0.49.0"],
|
|
161
|
-
["@effect/sql-drizzle", "^0.50.0"],
|
|
162
|
-
["@effect/sql-kysely", "^0.47.0"],
|
|
163
|
-
["@effect/sql-libsql", "^0.41.0"],
|
|
164
|
-
["@effect/sql-mssql", "^0.52.0"],
|
|
165
|
-
["@effect/sql-mysql2", "^0.52.0"],
|
|
166
|
-
["@effect/sql-pg", "^0.52.1"],
|
|
167
|
-
["@effect/sql-sqlite-bun", "^0.52.0"],
|
|
168
|
-
["@effect/sql-sqlite-do", "^0.29.0"],
|
|
169
|
-
["@effect/sql-sqlite-node", "^0.52.0"],
|
|
170
|
-
["@effect/sql-sqlite-react-native", "^0.54.0"],
|
|
171
|
-
["@effect/sql-sqlite-wasm", "^0.52.0"],
|
|
172
|
-
["@effect/typeclass", "^0.40.0"],
|
|
173
|
-
["@effect/vitest", "^0.29.0"],
|
|
174
|
-
["@effect/workflow", "^0.18.2"],
|
|
175
|
-
["effect", "^3.21.0"]
|
|
176
|
-
])],
|
|
177
|
-
["effectPeers", /* @__PURE__ */ new Map([
|
|
178
|
-
["@effect/ai-anthropic", "4.0.0-beta.107"],
|
|
179
|
-
["@effect/ai-openai", "4.0.0-beta.107"],
|
|
180
|
-
["@effect/ai-openai-compat", "4.0.0-beta.107"],
|
|
181
|
-
["@effect/ai-openrouter", "4.0.0-beta.107"],
|
|
182
|
-
["@effect/atom-react", "4.0.0-beta.107"],
|
|
183
|
-
["@effect/atom-solid", "4.0.0-beta.107"],
|
|
184
|
-
["@effect/atom-vue", "4.0.0-beta.107"],
|
|
185
|
-
["@effect/openapi-generator", "4.0.0-beta.107"],
|
|
186
|
-
["@effect/opentelemetry", "4.0.0-beta.107"],
|
|
187
|
-
["@effect/platform-browser", "4.0.0-beta.107"],
|
|
188
|
-
["@effect/platform-bun", "4.0.0-beta.107"],
|
|
189
|
-
["@effect/platform-node", "4.0.0-beta.107"],
|
|
190
|
-
["@effect/platform-node-shared", "4.0.0-beta.107"],
|
|
191
|
-
["@effect/sql-clickhouse", "4.0.0-beta.107"],
|
|
192
|
-
["@effect/sql-d1", "4.0.0-beta.107"],
|
|
193
|
-
["@effect/sql-libsql", "4.0.0-beta.107"],
|
|
194
|
-
["@effect/sql-mssql", "4.0.0-beta.107"],
|
|
195
|
-
["@effect/sql-mysql2", "4.0.0-beta.107"],
|
|
196
|
-
["@effect/sql-pg", "4.0.0-beta.107"],
|
|
197
|
-
["@effect/sql-pglite", "4.0.0-beta.107"],
|
|
198
|
-
["@effect/sql-sqlite-bun", "4.0.0-beta.107"],
|
|
199
|
-
["@effect/sql-sqlite-do", "4.0.0-beta.107"],
|
|
200
|
-
["@effect/sql-sqlite-node", "4.0.0-beta.107"],
|
|
201
|
-
["@effect/sql-sqlite-react-native", "4.0.0-beta.107"],
|
|
202
|
-
["@effect/sql-sqlite-wasm", "4.0.0-beta.107"],
|
|
203
|
-
["@effect/tsgo", "0.36.4"],
|
|
204
|
-
["@effect/vitest", "4.0.0-beta.107"],
|
|
205
|
-
["effect", "4.0.0-beta.107"]
|
|
206
|
-
])]
|
|
207
|
-
]);
|
|
2
|
+
const catalogs = /* @__PURE__ */ new Map([["effect", /* @__PURE__ */ new Map([
|
|
3
|
+
["@effect/ai-anthropic", "4.0.0-rc.109"],
|
|
4
|
+
["@effect/ai-openai", "4.0.0-rc.109"],
|
|
5
|
+
["@effect/ai-openai-compat", "4.0.0-rc.109"],
|
|
6
|
+
["@effect/ai-openrouter", "4.0.0-rc.109"],
|
|
7
|
+
["@effect/atom-react", "4.0.0-rc.109"],
|
|
8
|
+
["@effect/atom-solid", "4.0.0-rc.109"],
|
|
9
|
+
["@effect/atom-vue", "4.0.0-rc.109"],
|
|
10
|
+
["@effect/openapi-generator", "4.0.0-rc.109"],
|
|
11
|
+
["@effect/opentelemetry", "4.0.0-rc.109"],
|
|
12
|
+
["@effect/platform-browser", "4.0.0-rc.109"],
|
|
13
|
+
["@effect/platform-bun", "4.0.0-rc.109"],
|
|
14
|
+
["@effect/platform-node", "4.0.0-rc.109"],
|
|
15
|
+
["@effect/platform-node-shared", "4.0.0-rc.109"],
|
|
16
|
+
["@effect/sql-clickhouse", "4.0.0-rc.109"],
|
|
17
|
+
["@effect/sql-d1", "4.0.0-rc.109"],
|
|
18
|
+
["@effect/sql-libsql", "4.0.0-rc.109"],
|
|
19
|
+
["@effect/sql-mssql", "4.0.0-rc.109"],
|
|
20
|
+
["@effect/sql-mysql2", "4.0.0-rc.109"],
|
|
21
|
+
["@effect/sql-pg", "4.0.0-rc.109"],
|
|
22
|
+
["@effect/sql-pglite", "4.0.0-rc.109"],
|
|
23
|
+
["@effect/sql-sqlite-bun", "4.0.0-rc.109"],
|
|
24
|
+
["@effect/sql-sqlite-do", "4.0.0-rc.109"],
|
|
25
|
+
["@effect/sql-sqlite-node", "4.0.0-rc.109"],
|
|
26
|
+
["@effect/sql-sqlite-react-native", "4.0.0-rc.109"],
|
|
27
|
+
["@effect/sql-sqlite-wasm", "4.0.0-rc.109"],
|
|
28
|
+
["@effect/tsgo", "0.36.5"],
|
|
29
|
+
["@effect/vitest", "4.0.0-rc.109"],
|
|
30
|
+
["effect", "4.0.0-rc.109"]
|
|
31
|
+
])], ["effect:peers", /* @__PURE__ */ new Map([
|
|
32
|
+
["@effect/ai-anthropic", "4.0.0-rc.109"],
|
|
33
|
+
["@effect/ai-openai", "4.0.0-rc.109"],
|
|
34
|
+
["@effect/ai-openai-compat", "4.0.0-rc.109"],
|
|
35
|
+
["@effect/ai-openrouter", "4.0.0-rc.109"],
|
|
36
|
+
["@effect/atom-react", "4.0.0-rc.109"],
|
|
37
|
+
["@effect/atom-solid", "4.0.0-rc.109"],
|
|
38
|
+
["@effect/atom-vue", "4.0.0-rc.109"],
|
|
39
|
+
["@effect/openapi-generator", "4.0.0-rc.109"],
|
|
40
|
+
["@effect/opentelemetry", "4.0.0-rc.109"],
|
|
41
|
+
["@effect/platform-browser", "4.0.0-rc.109"],
|
|
42
|
+
["@effect/platform-bun", "4.0.0-rc.109"],
|
|
43
|
+
["@effect/platform-node", "4.0.0-rc.109"],
|
|
44
|
+
["@effect/platform-node-shared", "4.0.0-rc.109"],
|
|
45
|
+
["@effect/sql-clickhouse", "4.0.0-rc.109"],
|
|
46
|
+
["@effect/sql-d1", "4.0.0-rc.109"],
|
|
47
|
+
["@effect/sql-libsql", "4.0.0-rc.109"],
|
|
48
|
+
["@effect/sql-mssql", "4.0.0-rc.109"],
|
|
49
|
+
["@effect/sql-mysql2", "4.0.0-rc.109"],
|
|
50
|
+
["@effect/sql-pg", "4.0.0-rc.109"],
|
|
51
|
+
["@effect/sql-pglite", "4.0.0-rc.109"],
|
|
52
|
+
["@effect/sql-sqlite-bun", "4.0.0-rc.109"],
|
|
53
|
+
["@effect/sql-sqlite-do", "4.0.0-rc.109"],
|
|
54
|
+
["@effect/sql-sqlite-node", "4.0.0-rc.109"],
|
|
55
|
+
["@effect/sql-sqlite-react-native", "4.0.0-rc.109"],
|
|
56
|
+
["@effect/sql-sqlite-wasm", "4.0.0-rc.109"],
|
|
57
|
+
["@effect/tsgo", "0.36.5"],
|
|
58
|
+
["@effect/vitest", "4.0.0-rc.109"],
|
|
59
|
+
["effect", "4.0.0-rc.109"]
|
|
60
|
+
])]]);
|
|
208
61
|
|
|
209
62
|
//#endregion
|
|
210
63
|
export { catalogs };
|
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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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.
|
|
@@ -432,239 +432,95 @@ function createHooks(base, manifest, name) {
|
|
|
432
432
|
const hooks = createHooks({
|
|
433
433
|
"catalogs": {
|
|
434
434
|
"effect": {
|
|
435
|
-
"@effect/ai-anthropic": "4.0.0-
|
|
436
|
-
"@effect/ai-openai": "4.0.0-
|
|
437
|
-
"@effect/ai-openai-compat": "4.0.0-
|
|
438
|
-
"@effect/ai-openrouter": "4.0.0-
|
|
439
|
-
"@effect/atom-react": "4.0.0-
|
|
440
|
-
"@effect/atom-solid": "4.0.0-
|
|
441
|
-
"@effect/atom-vue": "4.0.0-
|
|
442
|
-
"@effect/openapi-generator": "4.0.0-
|
|
443
|
-
"@effect/opentelemetry": "4.0.0-
|
|
444
|
-
"@effect/platform-browser": "4.0.0-
|
|
445
|
-
"@effect/platform-bun": "4.0.0-
|
|
446
|
-
"@effect/platform-node": "4.0.0-
|
|
447
|
-
"@effect/platform-node-shared": "4.0.0-
|
|
448
|
-
"@effect/sql-clickhouse": "4.0.0-
|
|
449
|
-
"@effect/sql-d1": "4.0.0-
|
|
450
|
-
"@effect/sql-libsql": "4.0.0-
|
|
451
|
-
"@effect/sql-mssql": "4.0.0-
|
|
452
|
-
"@effect/sql-mysql2": "4.0.0-
|
|
453
|
-
"@effect/sql-pg": "4.0.0-
|
|
454
|
-
"@effect/sql-pglite": "4.0.0-
|
|
455
|
-
"@effect/sql-sqlite-bun": "4.0.0-
|
|
456
|
-
"@effect/sql-sqlite-do": "4.0.0-
|
|
457
|
-
"@effect/sql-sqlite-node": "4.0.0-
|
|
458
|
-
"@effect/sql-sqlite-react-native": "4.0.0-
|
|
459
|
-
"@effect/sql-sqlite-wasm": "4.0.0-
|
|
460
|
-
"@effect/tsgo": "0.36.
|
|
461
|
-
"@effect/vitest": "4.0.0-
|
|
462
|
-
"effect": "4.0.0-
|
|
435
|
+
"@effect/ai-anthropic": "4.0.0-rc.109",
|
|
436
|
+
"@effect/ai-openai": "4.0.0-rc.109",
|
|
437
|
+
"@effect/ai-openai-compat": "4.0.0-rc.109",
|
|
438
|
+
"@effect/ai-openrouter": "4.0.0-rc.109",
|
|
439
|
+
"@effect/atom-react": "4.0.0-rc.109",
|
|
440
|
+
"@effect/atom-solid": "4.0.0-rc.109",
|
|
441
|
+
"@effect/atom-vue": "4.0.0-rc.109",
|
|
442
|
+
"@effect/openapi-generator": "4.0.0-rc.109",
|
|
443
|
+
"@effect/opentelemetry": "4.0.0-rc.109",
|
|
444
|
+
"@effect/platform-browser": "4.0.0-rc.109",
|
|
445
|
+
"@effect/platform-bun": "4.0.0-rc.109",
|
|
446
|
+
"@effect/platform-node": "4.0.0-rc.109",
|
|
447
|
+
"@effect/platform-node-shared": "4.0.0-rc.109",
|
|
448
|
+
"@effect/sql-clickhouse": "4.0.0-rc.109",
|
|
449
|
+
"@effect/sql-d1": "4.0.0-rc.109",
|
|
450
|
+
"@effect/sql-libsql": "4.0.0-rc.109",
|
|
451
|
+
"@effect/sql-mssql": "4.0.0-rc.109",
|
|
452
|
+
"@effect/sql-mysql2": "4.0.0-rc.109",
|
|
453
|
+
"@effect/sql-pg": "4.0.0-rc.109",
|
|
454
|
+
"@effect/sql-pglite": "4.0.0-rc.109",
|
|
455
|
+
"@effect/sql-sqlite-bun": "4.0.0-rc.109",
|
|
456
|
+
"@effect/sql-sqlite-do": "4.0.0-rc.109",
|
|
457
|
+
"@effect/sql-sqlite-node": "4.0.0-rc.109",
|
|
458
|
+
"@effect/sql-sqlite-react-native": "4.0.0-rc.109",
|
|
459
|
+
"@effect/sql-sqlite-wasm": "4.0.0-rc.109",
|
|
460
|
+
"@effect/tsgo": "0.36.5",
|
|
461
|
+
"@effect/vitest": "4.0.0-rc.109",
|
|
462
|
+
"effect": "4.0.0-rc.109"
|
|
463
463
|
},
|
|
464
464
|
"effect:peers": {
|
|
465
|
-
"@effect/ai-anthropic": "4.0.0-
|
|
466
|
-
"@effect/ai-openai": "4.0.0-
|
|
467
|
-
"@effect/ai-openai-compat": "4.0.0-
|
|
468
|
-
"@effect/ai-openrouter": "4.0.0-
|
|
469
|
-
"@effect/atom-react": "4.0.0-
|
|
470
|
-
"@effect/atom-solid": "4.0.0-
|
|
471
|
-
"@effect/atom-vue": "4.0.0-
|
|
472
|
-
"@effect/openapi-generator": "4.0.0-
|
|
473
|
-
"@effect/opentelemetry": "4.0.0-
|
|
474
|
-
"@effect/platform-browser": "4.0.0-
|
|
475
|
-
"@effect/platform-bun": "4.0.0-
|
|
476
|
-
"@effect/platform-node": "4.0.0-
|
|
477
|
-
"@effect/platform-node-shared": "4.0.0-
|
|
478
|
-
"@effect/sql-clickhouse": "4.0.0-
|
|
479
|
-
"@effect/sql-d1": "4.0.0-
|
|
480
|
-
"@effect/sql-libsql": "4.0.0-
|
|
481
|
-
"@effect/sql-mssql": "4.0.0-
|
|
482
|
-
"@effect/sql-mysql2": "4.0.0-
|
|
483
|
-
"@effect/sql-pg": "4.0.0-
|
|
484
|
-
"@effect/sql-pglite": "4.0.0-
|
|
485
|
-
"@effect/sql-sqlite-bun": "4.0.0-
|
|
486
|
-
"@effect/sql-sqlite-do": "4.0.0-
|
|
487
|
-
"@effect/sql-sqlite-node": "4.0.0-
|
|
488
|
-
"@effect/sql-sqlite-react-native": "4.0.0-
|
|
489
|
-
"@effect/sql-sqlite-wasm": "4.0.0-
|
|
490
|
-
"@effect/tsgo": "0.36.
|
|
491
|
-
"@effect/vitest": "4.0.0-
|
|
492
|
-
"effect": "4.0.0-
|
|
493
|
-
},
|
|
494
|
-
"effect3": {
|
|
495
|
-
"@effect/ai": "^0.36.0",
|
|
496
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
497
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
498
|
-
"@effect/ai-google": "^0.15.0",
|
|
499
|
-
"@effect/ai-openai": "^0.40.1",
|
|
500
|
-
"@effect/cli": "^0.75.2",
|
|
501
|
-
"@effect/cluster": "^0.59.0",
|
|
502
|
-
"@effect/experimental": "^0.60.0",
|
|
503
|
-
"@effect/language-service": "^0.86.6",
|
|
504
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
505
|
-
"@effect/platform": "^0.96.2",
|
|
506
|
-
"@effect/platform-browser": "^0.76.0",
|
|
507
|
-
"@effect/platform-bun": "^0.90.0",
|
|
508
|
-
"@effect/platform-node": "^0.107.0",
|
|
509
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
510
|
-
"@effect/printer": "^0.49.0",
|
|
511
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
512
|
-
"@effect/rpc": "^0.75.1",
|
|
513
|
-
"@effect/sql": "^0.51.1",
|
|
514
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
515
|
-
"@effect/sql-d1": "^0.49.0",
|
|
516
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
517
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
518
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
519
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
520
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
521
|
-
"@effect/sql-pg": "^0.52.1",
|
|
522
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
523
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
524
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
525
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
526
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
527
|
-
"@effect/typeclass": "^0.40.0",
|
|
528
|
-
"@effect/vitest": "^0.29.0",
|
|
529
|
-
"@effect/workflow": "^0.18.2",
|
|
530
|
-
"effect": "^3.21.4"
|
|
531
|
-
},
|
|
532
|
-
"effect3:peers": {
|
|
533
|
-
"@effect/ai": "^0.36.0",
|
|
534
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
535
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
536
|
-
"@effect/ai-google": "^0.15.0",
|
|
537
|
-
"@effect/ai-openai": "^0.40.1",
|
|
538
|
-
"@effect/cli": "^0.75.2",
|
|
539
|
-
"@effect/cluster": "^0.59.0",
|
|
540
|
-
"@effect/experimental": "^0.60.0",
|
|
541
|
-
"@effect/language-service": "^0.86.6",
|
|
542
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
543
|
-
"@effect/platform": "^0.96.0",
|
|
544
|
-
"@effect/platform-browser": "^0.76.0",
|
|
545
|
-
"@effect/platform-bun": "^0.90.0",
|
|
546
|
-
"@effect/platform-node": "^0.107.0",
|
|
547
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
548
|
-
"@effect/printer": "^0.49.0",
|
|
549
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
550
|
-
"@effect/rpc": "^0.75.1",
|
|
551
|
-
"@effect/sql": "^0.51.0",
|
|
552
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
553
|
-
"@effect/sql-d1": "^0.49.0",
|
|
554
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
555
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
556
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
557
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
558
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
559
|
-
"@effect/sql-pg": "^0.52.1",
|
|
560
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
561
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
562
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
563
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
564
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
565
|
-
"@effect/typeclass": "^0.40.0",
|
|
566
|
-
"@effect/vitest": "^0.29.0",
|
|
567
|
-
"@effect/workflow": "^0.18.2",
|
|
568
|
-
"effect": "^3.21.0"
|
|
569
|
-
},
|
|
570
|
-
"effect3Peers": {
|
|
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.0",
|
|
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.0",
|
|
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/typeclass": "^0.40.0",
|
|
604
|
-
"@effect/vitest": "^0.29.0",
|
|
605
|
-
"@effect/workflow": "^0.18.2",
|
|
606
|
-
"effect": "^3.21.0"
|
|
607
|
-
},
|
|
608
|
-
"effectPeers": {
|
|
609
|
-
"@effect/ai-anthropic": "4.0.0-beta.107",
|
|
610
|
-
"@effect/ai-openai": "4.0.0-beta.107",
|
|
611
|
-
"@effect/ai-openai-compat": "4.0.0-beta.107",
|
|
612
|
-
"@effect/ai-openrouter": "4.0.0-beta.107",
|
|
613
|
-
"@effect/atom-react": "4.0.0-beta.107",
|
|
614
|
-
"@effect/atom-solid": "4.0.0-beta.107",
|
|
615
|
-
"@effect/atom-vue": "4.0.0-beta.107",
|
|
616
|
-
"@effect/openapi-generator": "4.0.0-beta.107",
|
|
617
|
-
"@effect/opentelemetry": "4.0.0-beta.107",
|
|
618
|
-
"@effect/platform-browser": "4.0.0-beta.107",
|
|
619
|
-
"@effect/platform-bun": "4.0.0-beta.107",
|
|
620
|
-
"@effect/platform-node": "4.0.0-beta.107",
|
|
621
|
-
"@effect/platform-node-shared": "4.0.0-beta.107",
|
|
622
|
-
"@effect/sql-clickhouse": "4.0.0-beta.107",
|
|
623
|
-
"@effect/sql-d1": "4.0.0-beta.107",
|
|
624
|
-
"@effect/sql-libsql": "4.0.0-beta.107",
|
|
625
|
-
"@effect/sql-mssql": "4.0.0-beta.107",
|
|
626
|
-
"@effect/sql-mysql2": "4.0.0-beta.107",
|
|
627
|
-
"@effect/sql-pg": "4.0.0-beta.107",
|
|
628
|
-
"@effect/sql-pglite": "4.0.0-beta.107",
|
|
629
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.107",
|
|
630
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.107",
|
|
631
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.107",
|
|
632
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.107",
|
|
633
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.107",
|
|
634
|
-
"@effect/tsgo": "0.36.4",
|
|
635
|
-
"@effect/vitest": "4.0.0-beta.107",
|
|
636
|
-
"effect": "4.0.0-beta.107"
|
|
465
|
+
"@effect/ai-anthropic": "4.0.0-rc.109",
|
|
466
|
+
"@effect/ai-openai": "4.0.0-rc.109",
|
|
467
|
+
"@effect/ai-openai-compat": "4.0.0-rc.109",
|
|
468
|
+
"@effect/ai-openrouter": "4.0.0-rc.109",
|
|
469
|
+
"@effect/atom-react": "4.0.0-rc.109",
|
|
470
|
+
"@effect/atom-solid": "4.0.0-rc.109",
|
|
471
|
+
"@effect/atom-vue": "4.0.0-rc.109",
|
|
472
|
+
"@effect/openapi-generator": "4.0.0-rc.109",
|
|
473
|
+
"@effect/opentelemetry": "4.0.0-rc.109",
|
|
474
|
+
"@effect/platform-browser": "4.0.0-rc.109",
|
|
475
|
+
"@effect/platform-bun": "4.0.0-rc.109",
|
|
476
|
+
"@effect/platform-node": "4.0.0-rc.109",
|
|
477
|
+
"@effect/platform-node-shared": "4.0.0-rc.109",
|
|
478
|
+
"@effect/sql-clickhouse": "4.0.0-rc.109",
|
|
479
|
+
"@effect/sql-d1": "4.0.0-rc.109",
|
|
480
|
+
"@effect/sql-libsql": "4.0.0-rc.109",
|
|
481
|
+
"@effect/sql-mssql": "4.0.0-rc.109",
|
|
482
|
+
"@effect/sql-mysql2": "4.0.0-rc.109",
|
|
483
|
+
"@effect/sql-pg": "4.0.0-rc.109",
|
|
484
|
+
"@effect/sql-pglite": "4.0.0-rc.109",
|
|
485
|
+
"@effect/sql-sqlite-bun": "4.0.0-rc.109",
|
|
486
|
+
"@effect/sql-sqlite-do": "4.0.0-rc.109",
|
|
487
|
+
"@effect/sql-sqlite-node": "4.0.0-rc.109",
|
|
488
|
+
"@effect/sql-sqlite-react-native": "4.0.0-rc.109",
|
|
489
|
+
"@effect/sql-sqlite-wasm": "4.0.0-rc.109",
|
|
490
|
+
"@effect/tsgo": "0.36.5",
|
|
491
|
+
"@effect/vitest": "4.0.0-rc.109",
|
|
492
|
+
"effect": "4.0.0-rc.109"
|
|
637
493
|
}
|
|
638
494
|
},
|
|
639
495
|
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
640
496
|
"peerDependencyRules": { "allowedVersions": {
|
|
641
|
-
"@effect/ai-anthropic@4.0.0-
|
|
642
|
-
"@effect/ai-openai-compat@4.0.0-
|
|
643
|
-
"@effect/ai-openai@4.0.0-
|
|
644
|
-
"@effect/ai-openrouter@4.0.0-
|
|
645
|
-
"@effect/atom-react@4.0.0-
|
|
646
|
-
"@effect/atom-solid@4.0.0-
|
|
647
|
-
"@effect/atom-vue@4.0.0-
|
|
648
|
-
"@effect/openapi-generator@4.0.0-
|
|
649
|
-
"@effect/opentelemetry@4.0.0-
|
|
650
|
-
"@effect/platform-browser@4.0.0-
|
|
651
|
-
"@effect/platform-bun@4.0.0-
|
|
652
|
-
"@effect/platform-node-shared@4.0.0-
|
|
653
|
-
"@effect/platform-node@4.0.0-
|
|
654
|
-
"@effect/sql-clickhouse@4.0.0-
|
|
655
|
-
"@effect/sql-d1@4.0.0-
|
|
656
|
-
"@effect/sql-libsql@4.0.0-
|
|
657
|
-
"@effect/sql-mssql@4.0.0-
|
|
658
|
-
"@effect/sql-mysql2@4.0.0-
|
|
659
|
-
"@effect/sql-pg@4.0.0-
|
|
660
|
-
"@effect/sql-pglite@4.0.0-
|
|
661
|
-
"@effect/sql-sqlite-bun@4.0.0-
|
|
662
|
-
"@effect/sql-sqlite-do@4.0.0-
|
|
663
|
-
"@effect/sql-sqlite-node@4.0.0-
|
|
664
|
-
"@effect/sql-sqlite-react-native@4.0.0-
|
|
665
|
-
"@effect/sql-sqlite-wasm@4.0.0-
|
|
666
|
-
"@effect/tsgo@0.36.
|
|
667
|
-
"@effect/vitest@4.0.0-
|
|
497
|
+
"@effect/ai-anthropic@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
498
|
+
"@effect/ai-openai-compat@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
499
|
+
"@effect/ai-openai@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
500
|
+
"@effect/ai-openrouter@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
501
|
+
"@effect/atom-react@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
502
|
+
"@effect/atom-solid@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
503
|
+
"@effect/atom-vue@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
504
|
+
"@effect/openapi-generator@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
505
|
+
"@effect/opentelemetry@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
506
|
+
"@effect/platform-browser@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
507
|
+
"@effect/platform-bun@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
508
|
+
"@effect/platform-node-shared@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
509
|
+
"@effect/platform-node@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
510
|
+
"@effect/sql-clickhouse@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
511
|
+
"@effect/sql-d1@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
512
|
+
"@effect/sql-libsql@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
513
|
+
"@effect/sql-mssql@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
514
|
+
"@effect/sql-mysql2@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
515
|
+
"@effect/sql-pg@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
516
|
+
"@effect/sql-pglite@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
517
|
+
"@effect/sql-sqlite-bun@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
518
|
+
"@effect/sql-sqlite-do@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
519
|
+
"@effect/sql-sqlite-node@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
520
|
+
"@effect/sql-sqlite-react-native@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
521
|
+
"@effect/sql-sqlite-wasm@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
522
|
+
"@effect/tsgo@0.36.5>effect": "4.0.0-rc.109",
|
|
523
|
+
"@effect/vitest@4.0.0-rc.109>effect": "4.0.0-rc.109"
|
|
668
524
|
} }
|
|
669
525
|
}, {
|
|
670
526
|
"catalogs": {
|
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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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_redis@6.2.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.
|
|
@@ -431,239 +431,95 @@ function createHooks(base, manifest, name) {
|
|
|
431
431
|
const hooks = createHooks({
|
|
432
432
|
"catalogs": {
|
|
433
433
|
"effect": {
|
|
434
|
-
"@effect/ai-anthropic": "4.0.0-
|
|
435
|
-
"@effect/ai-openai": "4.0.0-
|
|
436
|
-
"@effect/ai-openai-compat": "4.0.0-
|
|
437
|
-
"@effect/ai-openrouter": "4.0.0-
|
|
438
|
-
"@effect/atom-react": "4.0.0-
|
|
439
|
-
"@effect/atom-solid": "4.0.0-
|
|
440
|
-
"@effect/atom-vue": "4.0.0-
|
|
441
|
-
"@effect/openapi-generator": "4.0.0-
|
|
442
|
-
"@effect/opentelemetry": "4.0.0-
|
|
443
|
-
"@effect/platform-browser": "4.0.0-
|
|
444
|
-
"@effect/platform-bun": "4.0.0-
|
|
445
|
-
"@effect/platform-node": "4.0.0-
|
|
446
|
-
"@effect/platform-node-shared": "4.0.0-
|
|
447
|
-
"@effect/sql-clickhouse": "4.0.0-
|
|
448
|
-
"@effect/sql-d1": "4.0.0-
|
|
449
|
-
"@effect/sql-libsql": "4.0.0-
|
|
450
|
-
"@effect/sql-mssql": "4.0.0-
|
|
451
|
-
"@effect/sql-mysql2": "4.0.0-
|
|
452
|
-
"@effect/sql-pg": "4.0.0-
|
|
453
|
-
"@effect/sql-pglite": "4.0.0-
|
|
454
|
-
"@effect/sql-sqlite-bun": "4.0.0-
|
|
455
|
-
"@effect/sql-sqlite-do": "4.0.0-
|
|
456
|
-
"@effect/sql-sqlite-node": "4.0.0-
|
|
457
|
-
"@effect/sql-sqlite-react-native": "4.0.0-
|
|
458
|
-
"@effect/sql-sqlite-wasm": "4.0.0-
|
|
459
|
-
"@effect/tsgo": "0.36.
|
|
460
|
-
"@effect/vitest": "4.0.0-
|
|
461
|
-
"effect": "4.0.0-
|
|
434
|
+
"@effect/ai-anthropic": "4.0.0-rc.109",
|
|
435
|
+
"@effect/ai-openai": "4.0.0-rc.109",
|
|
436
|
+
"@effect/ai-openai-compat": "4.0.0-rc.109",
|
|
437
|
+
"@effect/ai-openrouter": "4.0.0-rc.109",
|
|
438
|
+
"@effect/atom-react": "4.0.0-rc.109",
|
|
439
|
+
"@effect/atom-solid": "4.0.0-rc.109",
|
|
440
|
+
"@effect/atom-vue": "4.0.0-rc.109",
|
|
441
|
+
"@effect/openapi-generator": "4.0.0-rc.109",
|
|
442
|
+
"@effect/opentelemetry": "4.0.0-rc.109",
|
|
443
|
+
"@effect/platform-browser": "4.0.0-rc.109",
|
|
444
|
+
"@effect/platform-bun": "4.0.0-rc.109",
|
|
445
|
+
"@effect/platform-node": "4.0.0-rc.109",
|
|
446
|
+
"@effect/platform-node-shared": "4.0.0-rc.109",
|
|
447
|
+
"@effect/sql-clickhouse": "4.0.0-rc.109",
|
|
448
|
+
"@effect/sql-d1": "4.0.0-rc.109",
|
|
449
|
+
"@effect/sql-libsql": "4.0.0-rc.109",
|
|
450
|
+
"@effect/sql-mssql": "4.0.0-rc.109",
|
|
451
|
+
"@effect/sql-mysql2": "4.0.0-rc.109",
|
|
452
|
+
"@effect/sql-pg": "4.0.0-rc.109",
|
|
453
|
+
"@effect/sql-pglite": "4.0.0-rc.109",
|
|
454
|
+
"@effect/sql-sqlite-bun": "4.0.0-rc.109",
|
|
455
|
+
"@effect/sql-sqlite-do": "4.0.0-rc.109",
|
|
456
|
+
"@effect/sql-sqlite-node": "4.0.0-rc.109",
|
|
457
|
+
"@effect/sql-sqlite-react-native": "4.0.0-rc.109",
|
|
458
|
+
"@effect/sql-sqlite-wasm": "4.0.0-rc.109",
|
|
459
|
+
"@effect/tsgo": "0.36.5",
|
|
460
|
+
"@effect/vitest": "4.0.0-rc.109",
|
|
461
|
+
"effect": "4.0.0-rc.109"
|
|
462
462
|
},
|
|
463
463
|
"effect:peers": {
|
|
464
|
-
"@effect/ai-anthropic": "4.0.0-
|
|
465
|
-
"@effect/ai-openai": "4.0.0-
|
|
466
|
-
"@effect/ai-openai-compat": "4.0.0-
|
|
467
|
-
"@effect/ai-openrouter": "4.0.0-
|
|
468
|
-
"@effect/atom-react": "4.0.0-
|
|
469
|
-
"@effect/atom-solid": "4.0.0-
|
|
470
|
-
"@effect/atom-vue": "4.0.0-
|
|
471
|
-
"@effect/openapi-generator": "4.0.0-
|
|
472
|
-
"@effect/opentelemetry": "4.0.0-
|
|
473
|
-
"@effect/platform-browser": "4.0.0-
|
|
474
|
-
"@effect/platform-bun": "4.0.0-
|
|
475
|
-
"@effect/platform-node": "4.0.0-
|
|
476
|
-
"@effect/platform-node-shared": "4.0.0-
|
|
477
|
-
"@effect/sql-clickhouse": "4.0.0-
|
|
478
|
-
"@effect/sql-d1": "4.0.0-
|
|
479
|
-
"@effect/sql-libsql": "4.0.0-
|
|
480
|
-
"@effect/sql-mssql": "4.0.0-
|
|
481
|
-
"@effect/sql-mysql2": "4.0.0-
|
|
482
|
-
"@effect/sql-pg": "4.0.0-
|
|
483
|
-
"@effect/sql-pglite": "4.0.0-
|
|
484
|
-
"@effect/sql-sqlite-bun": "4.0.0-
|
|
485
|
-
"@effect/sql-sqlite-do": "4.0.0-
|
|
486
|
-
"@effect/sql-sqlite-node": "4.0.0-
|
|
487
|
-
"@effect/sql-sqlite-react-native": "4.0.0-
|
|
488
|
-
"@effect/sql-sqlite-wasm": "4.0.0-
|
|
489
|
-
"@effect/tsgo": "0.36.
|
|
490
|
-
"@effect/vitest": "4.0.0-
|
|
491
|
-
"effect": "4.0.0-
|
|
492
|
-
},
|
|
493
|
-
"effect3": {
|
|
494
|
-
"@effect/ai": "^0.36.0",
|
|
495
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
496
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
497
|
-
"@effect/ai-google": "^0.15.0",
|
|
498
|
-
"@effect/ai-openai": "^0.40.1",
|
|
499
|
-
"@effect/cli": "^0.75.2",
|
|
500
|
-
"@effect/cluster": "^0.59.0",
|
|
501
|
-
"@effect/experimental": "^0.60.0",
|
|
502
|
-
"@effect/language-service": "^0.86.6",
|
|
503
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
504
|
-
"@effect/platform": "^0.96.2",
|
|
505
|
-
"@effect/platform-browser": "^0.76.0",
|
|
506
|
-
"@effect/platform-bun": "^0.90.0",
|
|
507
|
-
"@effect/platform-node": "^0.107.0",
|
|
508
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
509
|
-
"@effect/printer": "^0.49.0",
|
|
510
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
511
|
-
"@effect/rpc": "^0.75.1",
|
|
512
|
-
"@effect/sql": "^0.51.1",
|
|
513
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
514
|
-
"@effect/sql-d1": "^0.49.0",
|
|
515
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
516
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
517
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
518
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
519
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
520
|
-
"@effect/sql-pg": "^0.52.1",
|
|
521
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
522
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
523
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
524
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
525
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
526
|
-
"@effect/typeclass": "^0.40.0",
|
|
527
|
-
"@effect/vitest": "^0.29.0",
|
|
528
|
-
"@effect/workflow": "^0.18.2",
|
|
529
|
-
"effect": "^3.21.4"
|
|
530
|
-
},
|
|
531
|
-
"effect3:peers": {
|
|
532
|
-
"@effect/ai": "^0.36.0",
|
|
533
|
-
"@effect/ai-amazon-bedrock": "^0.16.1",
|
|
534
|
-
"@effect/ai-anthropic": "^0.26.0",
|
|
535
|
-
"@effect/ai-google": "^0.15.0",
|
|
536
|
-
"@effect/ai-openai": "^0.40.1",
|
|
537
|
-
"@effect/cli": "^0.75.2",
|
|
538
|
-
"@effect/cluster": "^0.59.0",
|
|
539
|
-
"@effect/experimental": "^0.60.0",
|
|
540
|
-
"@effect/language-service": "^0.86.6",
|
|
541
|
-
"@effect/opentelemetry": "^0.63.0",
|
|
542
|
-
"@effect/platform": "^0.96.0",
|
|
543
|
-
"@effect/platform-browser": "^0.76.0",
|
|
544
|
-
"@effect/platform-bun": "^0.90.0",
|
|
545
|
-
"@effect/platform-node": "^0.107.0",
|
|
546
|
-
"@effect/platform-node-shared": "^0.60.0",
|
|
547
|
-
"@effect/printer": "^0.49.0",
|
|
548
|
-
"@effect/printer-ansi": "^0.49.0",
|
|
549
|
-
"@effect/rpc": "^0.75.1",
|
|
550
|
-
"@effect/sql": "^0.51.0",
|
|
551
|
-
"@effect/sql-clickhouse": "^0.49.0",
|
|
552
|
-
"@effect/sql-d1": "^0.49.0",
|
|
553
|
-
"@effect/sql-drizzle": "^0.50.0",
|
|
554
|
-
"@effect/sql-kysely": "^0.47.0",
|
|
555
|
-
"@effect/sql-libsql": "^0.41.0",
|
|
556
|
-
"@effect/sql-mssql": "^0.52.0",
|
|
557
|
-
"@effect/sql-mysql2": "^0.52.0",
|
|
558
|
-
"@effect/sql-pg": "^0.52.1",
|
|
559
|
-
"@effect/sql-sqlite-bun": "^0.52.0",
|
|
560
|
-
"@effect/sql-sqlite-do": "^0.29.0",
|
|
561
|
-
"@effect/sql-sqlite-node": "^0.52.0",
|
|
562
|
-
"@effect/sql-sqlite-react-native": "^0.54.0",
|
|
563
|
-
"@effect/sql-sqlite-wasm": "^0.52.0",
|
|
564
|
-
"@effect/typeclass": "^0.40.0",
|
|
565
|
-
"@effect/vitest": "^0.29.0",
|
|
566
|
-
"@effect/workflow": "^0.18.2",
|
|
567
|
-
"effect": "^3.21.0"
|
|
568
|
-
},
|
|
569
|
-
"effect3Peers": {
|
|
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.0",
|
|
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.0",
|
|
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/typeclass": "^0.40.0",
|
|
603
|
-
"@effect/vitest": "^0.29.0",
|
|
604
|
-
"@effect/workflow": "^0.18.2",
|
|
605
|
-
"effect": "^3.21.0"
|
|
606
|
-
},
|
|
607
|
-
"effectPeers": {
|
|
608
|
-
"@effect/ai-anthropic": "4.0.0-beta.107",
|
|
609
|
-
"@effect/ai-openai": "4.0.0-beta.107",
|
|
610
|
-
"@effect/ai-openai-compat": "4.0.0-beta.107",
|
|
611
|
-
"@effect/ai-openrouter": "4.0.0-beta.107",
|
|
612
|
-
"@effect/atom-react": "4.0.0-beta.107",
|
|
613
|
-
"@effect/atom-solid": "4.0.0-beta.107",
|
|
614
|
-
"@effect/atom-vue": "4.0.0-beta.107",
|
|
615
|
-
"@effect/openapi-generator": "4.0.0-beta.107",
|
|
616
|
-
"@effect/opentelemetry": "4.0.0-beta.107",
|
|
617
|
-
"@effect/platform-browser": "4.0.0-beta.107",
|
|
618
|
-
"@effect/platform-bun": "4.0.0-beta.107",
|
|
619
|
-
"@effect/platform-node": "4.0.0-beta.107",
|
|
620
|
-
"@effect/platform-node-shared": "4.0.0-beta.107",
|
|
621
|
-
"@effect/sql-clickhouse": "4.0.0-beta.107",
|
|
622
|
-
"@effect/sql-d1": "4.0.0-beta.107",
|
|
623
|
-
"@effect/sql-libsql": "4.0.0-beta.107",
|
|
624
|
-
"@effect/sql-mssql": "4.0.0-beta.107",
|
|
625
|
-
"@effect/sql-mysql2": "4.0.0-beta.107",
|
|
626
|
-
"@effect/sql-pg": "4.0.0-beta.107",
|
|
627
|
-
"@effect/sql-pglite": "4.0.0-beta.107",
|
|
628
|
-
"@effect/sql-sqlite-bun": "4.0.0-beta.107",
|
|
629
|
-
"@effect/sql-sqlite-do": "4.0.0-beta.107",
|
|
630
|
-
"@effect/sql-sqlite-node": "4.0.0-beta.107",
|
|
631
|
-
"@effect/sql-sqlite-react-native": "4.0.0-beta.107",
|
|
632
|
-
"@effect/sql-sqlite-wasm": "4.0.0-beta.107",
|
|
633
|
-
"@effect/tsgo": "0.36.4",
|
|
634
|
-
"@effect/vitest": "4.0.0-beta.107",
|
|
635
|
-
"effect": "4.0.0-beta.107"
|
|
464
|
+
"@effect/ai-anthropic": "4.0.0-rc.109",
|
|
465
|
+
"@effect/ai-openai": "4.0.0-rc.109",
|
|
466
|
+
"@effect/ai-openai-compat": "4.0.0-rc.109",
|
|
467
|
+
"@effect/ai-openrouter": "4.0.0-rc.109",
|
|
468
|
+
"@effect/atom-react": "4.0.0-rc.109",
|
|
469
|
+
"@effect/atom-solid": "4.0.0-rc.109",
|
|
470
|
+
"@effect/atom-vue": "4.0.0-rc.109",
|
|
471
|
+
"@effect/openapi-generator": "4.0.0-rc.109",
|
|
472
|
+
"@effect/opentelemetry": "4.0.0-rc.109",
|
|
473
|
+
"@effect/platform-browser": "4.0.0-rc.109",
|
|
474
|
+
"@effect/platform-bun": "4.0.0-rc.109",
|
|
475
|
+
"@effect/platform-node": "4.0.0-rc.109",
|
|
476
|
+
"@effect/platform-node-shared": "4.0.0-rc.109",
|
|
477
|
+
"@effect/sql-clickhouse": "4.0.0-rc.109",
|
|
478
|
+
"@effect/sql-d1": "4.0.0-rc.109",
|
|
479
|
+
"@effect/sql-libsql": "4.0.0-rc.109",
|
|
480
|
+
"@effect/sql-mssql": "4.0.0-rc.109",
|
|
481
|
+
"@effect/sql-mysql2": "4.0.0-rc.109",
|
|
482
|
+
"@effect/sql-pg": "4.0.0-rc.109",
|
|
483
|
+
"@effect/sql-pglite": "4.0.0-rc.109",
|
|
484
|
+
"@effect/sql-sqlite-bun": "4.0.0-rc.109",
|
|
485
|
+
"@effect/sql-sqlite-do": "4.0.0-rc.109",
|
|
486
|
+
"@effect/sql-sqlite-node": "4.0.0-rc.109",
|
|
487
|
+
"@effect/sql-sqlite-react-native": "4.0.0-rc.109",
|
|
488
|
+
"@effect/sql-sqlite-wasm": "4.0.0-rc.109",
|
|
489
|
+
"@effect/tsgo": "0.36.5",
|
|
490
|
+
"@effect/vitest": "4.0.0-rc.109",
|
|
491
|
+
"effect": "4.0.0-rc.109"
|
|
636
492
|
}
|
|
637
493
|
},
|
|
638
494
|
"minimumReleaseAgeExclude": ["@effect/tsgo-*"],
|
|
639
495
|
"peerDependencyRules": { "allowedVersions": {
|
|
640
|
-
"@effect/ai-anthropic@4.0.0-
|
|
641
|
-
"@effect/ai-openai-compat@4.0.0-
|
|
642
|
-
"@effect/ai-openai@4.0.0-
|
|
643
|
-
"@effect/ai-openrouter@4.0.0-
|
|
644
|
-
"@effect/atom-react@4.0.0-
|
|
645
|
-
"@effect/atom-solid@4.0.0-
|
|
646
|
-
"@effect/atom-vue@4.0.0-
|
|
647
|
-
"@effect/openapi-generator@4.0.0-
|
|
648
|
-
"@effect/opentelemetry@4.0.0-
|
|
649
|
-
"@effect/platform-browser@4.0.0-
|
|
650
|
-
"@effect/platform-bun@4.0.0-
|
|
651
|
-
"@effect/platform-node-shared@4.0.0-
|
|
652
|
-
"@effect/platform-node@4.0.0-
|
|
653
|
-
"@effect/sql-clickhouse@4.0.0-
|
|
654
|
-
"@effect/sql-d1@4.0.0-
|
|
655
|
-
"@effect/sql-libsql@4.0.0-
|
|
656
|
-
"@effect/sql-mssql@4.0.0-
|
|
657
|
-
"@effect/sql-mysql2@4.0.0-
|
|
658
|
-
"@effect/sql-pg@4.0.0-
|
|
659
|
-
"@effect/sql-pglite@4.0.0-
|
|
660
|
-
"@effect/sql-sqlite-bun@4.0.0-
|
|
661
|
-
"@effect/sql-sqlite-do@4.0.0-
|
|
662
|
-
"@effect/sql-sqlite-node@4.0.0-
|
|
663
|
-
"@effect/sql-sqlite-react-native@4.0.0-
|
|
664
|
-
"@effect/sql-sqlite-wasm@4.0.0-
|
|
665
|
-
"@effect/tsgo@0.36.
|
|
666
|
-
"@effect/vitest@4.0.0-
|
|
496
|
+
"@effect/ai-anthropic@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
497
|
+
"@effect/ai-openai-compat@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
498
|
+
"@effect/ai-openai@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
499
|
+
"@effect/ai-openrouter@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
500
|
+
"@effect/atom-react@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
501
|
+
"@effect/atom-solid@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
502
|
+
"@effect/atom-vue@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
503
|
+
"@effect/openapi-generator@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
504
|
+
"@effect/opentelemetry@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
505
|
+
"@effect/platform-browser@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
506
|
+
"@effect/platform-bun@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
507
|
+
"@effect/platform-node-shared@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
508
|
+
"@effect/platform-node@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
509
|
+
"@effect/sql-clickhouse@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
510
|
+
"@effect/sql-d1@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
511
|
+
"@effect/sql-libsql@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
512
|
+
"@effect/sql-mssql@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
513
|
+
"@effect/sql-mysql2@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
514
|
+
"@effect/sql-pg@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
515
|
+
"@effect/sql-pglite@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
516
|
+
"@effect/sql-sqlite-bun@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
517
|
+
"@effect/sql-sqlite-do@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
518
|
+
"@effect/sql-sqlite-node@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
519
|
+
"@effect/sql-sqlite-react-native@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
520
|
+
"@effect/sql-sqlite-wasm@4.0.0-rc.109>effect": "4.0.0-rc.109",
|
|
521
|
+
"@effect/tsgo@0.36.5>effect": "4.0.0-rc.109",
|
|
522
|
+
"@effect/vitest@4.0.0-rc.109>effect": "4.0.0-rc.109"
|
|
667
523
|
} }
|
|
668
524
|
}, {
|
|
669
525
|
"catalogs": {
|