@effected/pnpm-plugin-effect 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,10 +6,10 @@
6
6
  [![TypeScript 7.0](https://img.shields.io/badge/TypeScript-7.0-3178c6.svg)](https://www.typescriptlang.org/)
7
7
  [![pnpm](https://img.shields.io/badge/pnpm-%3E%3D11-f69220.svg)](https://pnpm.io/)
8
8
 
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.
9
+ A pnpm [config dependency](https://pnpm.io/config-dependencies) that centralizes versioning for two package sets through four [pnpm catalogs](https://pnpm.io/catalogs). The `effect` pair covers `effect` and its `@effect/*` satellites on one [Effect v4](https://effect.website/blog/releases/effect/40-beta/) release, plus `@effect/tsgo` at its own independent pin; the `effected` pair covers every published `@effected/*` package except this one. Each pair has a catalog for the versions you depend on and a second one for the ranges you advertise as peers, so a library does not over-constrain the applications that install it. Install it once and all four 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 beta. Packages graduate to
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,9 +22,11 @@ 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 beta advances.
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
- 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.
27
+ The `@effected/*` kit has the same problem with a sharper edge. Every kit package is on `0.x`, where a caret does not cross a minor, so a hand-written `^0.14.0` stops resolving anything current the moment that package cuts `0.15.0`. Spread across a dozen manifests, those ranges rot quietly and independently, and nothing tells you a package has fallen two minors behind until an install refuses to give you anything current. `catalog:effected` replaces the ranges with a name, and upgrading the config dependency moves the whole kit surface at once.
28
+
29
+ The peer catalogs are 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` and `effected:peers` are that computation, done once. This is a convenience, not a requirement — it packages the way [effected](https://github.com/spencerbeggs/effected) pins its own 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
30
 
29
31
  ## Install
30
32
 
@@ -45,7 +47,7 @@ configDependencies:
45
47
 
46
48
  ## Usage
47
49
 
48
- Once installed, both catalogs are available to every package in the workspace. Reference them from `package.json` by name, in place of a version range. Which field they go in depends on whether you are building an application or a library.
50
+ Once installed, all four catalogs are available to every package in the workspace. Reference them from `package.json` by name, in place of a version range. Which field they go in depends on whether you are building an application or a library.
49
51
 
50
52
  Applications pin the versions directly, in `dependencies`:
51
53
 
@@ -53,54 +55,51 @@ Applications pin the versions directly, in `dependencies`:
53
55
  {
54
56
  "dependencies": {
55
57
  "effect": "catalog:effect",
56
- "@effect/ai-openai": "catalog:effect"
58
+ "@effect/ai-openai": "catalog:effect",
59
+ "@effected/workspaces": "catalog:effected"
57
60
  }
58
61
  }
59
62
  ```
60
63
 
61
- Libraries want both catalogs: the pinned versions to develop and test against, and the computed floor as the peer range consumers must satisfy.
64
+ Libraries want both halves of each pair: the pinned versions to develop and test against, and the computed floor as the peer range consumers must satisfy.
62
65
 
63
66
  ```json
64
67
  {
65
68
  "devDependencies": {
66
69
  "effect": "catalog:effect",
67
- "@effect/ai-openai": "catalog:effect"
70
+ "@effected/workspaces": "catalog:effected"
68
71
  },
69
72
  "peerDependencies": {
70
73
  "effect": "catalog:effect:peers",
71
- "@effect/ai-openai": "catalog:effect:peers"
74
+ "@effected/workspaces": "catalog:effected:peers"
72
75
  }
73
76
  }
74
77
  ```
75
78
 
76
79
  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
80
 
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
81
  ## What it ships
93
82
 
94
83
  | Catalog | Contents | Use it in |
95
84
  | ------- | -------- | --------- |
96
85
  | `catalog:effect` | Every `effect` and `@effect/*` package, pinned to one v4 release | `dependencies` for applications, `devDependencies` for libraries |
97
86
  | `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 |
87
+ | `catalog:effected` | Every published `@effected/*` package at its current release | `dependencies` for applications, `devDependencies` for libraries |
88
+ | `catalog:effected:peers` | The same package set at its minor-floored peer range | `peerDependencies` for libraries |
89
+
90
+ `@effected/pnpm-plugin-effect` itself is deliberately absent from the `effected` catalogs — it is the package the catalogs ship inside, and listing it would make every catalog rewrite bump the package that carries the catalog.
100
91
 
101
92
  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
93
 
103
- While the whole ecosystem is pinned to a single beta of Effect v4, 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.
94
+ The `effect` catalogs move when the Effect pin advances, which is a deliberate, human-run upgrade. The `effected` catalogs are rebuilt automatically as kit packages release, so each new version of this package carries the kit's current versions; upgrading the config dependency is how a consumer picks them up.
95
+
96
+ ```bash
97
+ pnpm update --config @effected/pnpm-plugin-effect
98
+ pnpm install
99
+ # every catalog: specifier in the workspace re-resolves to the new pins
100
+ ```
101
+
102
+ While the whole ecosystem is pinned to a single Effect v4 prerelease, the two `effect` 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. The `effected` pair diverges routinely, because a kit package's dependency entry tracks its exact release while its peer range is floored to the minor.
104
103
 
105
104
  ## License
106
105
 
package/index.js CHANGED
@@ -1,208 +1,126 @@
1
1
  //#region \0rolldown-pnpm-config/virtual/catalogs
2
2
  const catalogs = /* @__PURE__ */ new Map([
3
3
  ["effect", /* @__PURE__ */ new Map([
4
- ["@effect/ai-anthropic", "4.0.0-beta.107"],
5
- ["@effect/ai-openai", "4.0.0-beta.107"],
6
- ["@effect/ai-openai-compat", "4.0.0-beta.107"],
7
- ["@effect/ai-openrouter", "4.0.0-beta.107"],
8
- ["@effect/atom-react", "4.0.0-beta.107"],
9
- ["@effect/atom-solid", "4.0.0-beta.107"],
10
- ["@effect/atom-vue", "4.0.0-beta.107"],
11
- ["@effect/openapi-generator", "4.0.0-beta.107"],
12
- ["@effect/opentelemetry", "4.0.0-beta.107"],
13
- ["@effect/platform-browser", "4.0.0-beta.107"],
14
- ["@effect/platform-bun", "4.0.0-beta.107"],
15
- ["@effect/platform-node", "4.0.0-beta.107"],
16
- ["@effect/platform-node-shared", "4.0.0-beta.107"],
17
- ["@effect/sql-clickhouse", "4.0.0-beta.107"],
18
- ["@effect/sql-d1", "4.0.0-beta.107"],
19
- ["@effect/sql-libsql", "4.0.0-beta.107"],
20
- ["@effect/sql-mssql", "4.0.0-beta.107"],
21
- ["@effect/sql-mysql2", "4.0.0-beta.107"],
22
- ["@effect/sql-pg", "4.0.0-beta.107"],
23
- ["@effect/sql-pglite", "4.0.0-beta.107"],
24
- ["@effect/sql-sqlite-bun", "4.0.0-beta.107"],
25
- ["@effect/sql-sqlite-do", "4.0.0-beta.107"],
26
- ["@effect/sql-sqlite-node", "4.0.0-beta.107"],
27
- ["@effect/sql-sqlite-react-native", "4.0.0-beta.107"],
28
- ["@effect/sql-sqlite-wasm", "4.0.0-beta.107"],
29
- ["@effect/tsgo", "0.36.4"],
30
- ["@effect/vitest", "4.0.0-beta.107"],
31
- ["effect", "4.0.0-beta.107"]
4
+ ["@effect/ai-anthropic", "4.0.0-rc.109"],
5
+ ["@effect/ai-openai", "4.0.0-rc.109"],
6
+ ["@effect/ai-openai-compat", "4.0.0-rc.109"],
7
+ ["@effect/ai-openrouter", "4.0.0-rc.109"],
8
+ ["@effect/atom-react", "4.0.0-rc.109"],
9
+ ["@effect/atom-solid", "4.0.0-rc.109"],
10
+ ["@effect/atom-vue", "4.0.0-rc.109"],
11
+ ["@effect/openapi-generator", "4.0.0-rc.109"],
12
+ ["@effect/opentelemetry", "4.0.0-rc.109"],
13
+ ["@effect/platform-browser", "4.0.0-rc.109"],
14
+ ["@effect/platform-bun", "4.0.0-rc.109"],
15
+ ["@effect/platform-node", "4.0.0-rc.109"],
16
+ ["@effect/platform-node-shared", "4.0.0-rc.109"],
17
+ ["@effect/sql-clickhouse", "4.0.0-rc.109"],
18
+ ["@effect/sql-d1", "4.0.0-rc.109"],
19
+ ["@effect/sql-libsql", "4.0.0-rc.109"],
20
+ ["@effect/sql-mssql", "4.0.0-rc.109"],
21
+ ["@effect/sql-mysql2", "4.0.0-rc.109"],
22
+ ["@effect/sql-pg", "4.0.0-rc.109"],
23
+ ["@effect/sql-pglite", "4.0.0-rc.109"],
24
+ ["@effect/sql-sqlite-bun", "4.0.0-rc.109"],
25
+ ["@effect/sql-sqlite-do", "4.0.0-rc.109"],
26
+ ["@effect/sql-sqlite-node", "4.0.0-rc.109"],
27
+ ["@effect/sql-sqlite-react-native", "4.0.0-rc.109"],
28
+ ["@effect/sql-sqlite-wasm", "4.0.0-rc.109"],
29
+ ["@effect/tsgo", "0.36.5"],
30
+ ["@effect/vitest", "4.0.0-rc.109"],
31
+ ["effect", "4.0.0-rc.109"]
32
32
  ])],
33
33
  ["effect:peers", /* @__PURE__ */ new Map([
34
- ["@effect/ai-anthropic", "4.0.0-beta.107"],
35
- ["@effect/ai-openai", "4.0.0-beta.107"],
36
- ["@effect/ai-openai-compat", "4.0.0-beta.107"],
37
- ["@effect/ai-openrouter", "4.0.0-beta.107"],
38
- ["@effect/atom-react", "4.0.0-beta.107"],
39
- ["@effect/atom-solid", "4.0.0-beta.107"],
40
- ["@effect/atom-vue", "4.0.0-beta.107"],
41
- ["@effect/openapi-generator", "4.0.0-beta.107"],
42
- ["@effect/opentelemetry", "4.0.0-beta.107"],
43
- ["@effect/platform-browser", "4.0.0-beta.107"],
44
- ["@effect/platform-bun", "4.0.0-beta.107"],
45
- ["@effect/platform-node", "4.0.0-beta.107"],
46
- ["@effect/platform-node-shared", "4.0.0-beta.107"],
47
- ["@effect/sql-clickhouse", "4.0.0-beta.107"],
48
- ["@effect/sql-d1", "4.0.0-beta.107"],
49
- ["@effect/sql-libsql", "4.0.0-beta.107"],
50
- ["@effect/sql-mssql", "4.0.0-beta.107"],
51
- ["@effect/sql-mysql2", "4.0.0-beta.107"],
52
- ["@effect/sql-pg", "4.0.0-beta.107"],
53
- ["@effect/sql-pglite", "4.0.0-beta.107"],
54
- ["@effect/sql-sqlite-bun", "4.0.0-beta.107"],
55
- ["@effect/sql-sqlite-do", "4.0.0-beta.107"],
56
- ["@effect/sql-sqlite-node", "4.0.0-beta.107"],
57
- ["@effect/sql-sqlite-react-native", "4.0.0-beta.107"],
58
- ["@effect/sql-sqlite-wasm", "4.0.0-beta.107"],
59
- ["@effect/tsgo", "0.36.4"],
60
- ["@effect/vitest", "4.0.0-beta.107"],
61
- ["effect", "4.0.0-beta.107"]
34
+ ["@effect/ai-anthropic", "4.0.0-rc.109"],
35
+ ["@effect/ai-openai", "4.0.0-rc.109"],
36
+ ["@effect/ai-openai-compat", "4.0.0-rc.109"],
37
+ ["@effect/ai-openrouter", "4.0.0-rc.109"],
38
+ ["@effect/atom-react", "4.0.0-rc.109"],
39
+ ["@effect/atom-solid", "4.0.0-rc.109"],
40
+ ["@effect/atom-vue", "4.0.0-rc.109"],
41
+ ["@effect/openapi-generator", "4.0.0-rc.109"],
42
+ ["@effect/opentelemetry", "4.0.0-rc.109"],
43
+ ["@effect/platform-browser", "4.0.0-rc.109"],
44
+ ["@effect/platform-bun", "4.0.0-rc.109"],
45
+ ["@effect/platform-node", "4.0.0-rc.109"],
46
+ ["@effect/platform-node-shared", "4.0.0-rc.109"],
47
+ ["@effect/sql-clickhouse", "4.0.0-rc.109"],
48
+ ["@effect/sql-d1", "4.0.0-rc.109"],
49
+ ["@effect/sql-libsql", "4.0.0-rc.109"],
50
+ ["@effect/sql-mssql", "4.0.0-rc.109"],
51
+ ["@effect/sql-mysql2", "4.0.0-rc.109"],
52
+ ["@effect/sql-pg", "4.0.0-rc.109"],
53
+ ["@effect/sql-pglite", "4.0.0-rc.109"],
54
+ ["@effect/sql-sqlite-bun", "4.0.0-rc.109"],
55
+ ["@effect/sql-sqlite-do", "4.0.0-rc.109"],
56
+ ["@effect/sql-sqlite-node", "4.0.0-rc.109"],
57
+ ["@effect/sql-sqlite-react-native", "4.0.0-rc.109"],
58
+ ["@effect/sql-sqlite-wasm", "4.0.0-rc.109"],
59
+ ["@effect/tsgo", "0.36.5"],
60
+ ["@effect/vitest", "4.0.0-rc.109"],
61
+ ["effect", "4.0.0-rc.109"]
62
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"]
63
+ ["effected", /* @__PURE__ */ new Map([
64
+ ["@effected/app", "^0.11.1"],
65
+ ["@effected/cli", "^0.2.0"],
66
+ ["@effected/commands", "^0.5.0"],
67
+ ["@effected/config-file", "^0.5.0"],
68
+ ["@effected/git", "^0.9.0"],
69
+ ["@effected/github", "^0.7.0"],
70
+ ["@effected/github-actions", "^0.9.2"],
71
+ ["@effected/github-references", "^0.1.0"],
72
+ ["@effected/glob", "^0.4.0"],
73
+ ["@effected/jsonc", "^0.7.0"],
74
+ ["@effected/jsonl", "^0.3.0"],
75
+ ["@effected/lockfiles", "^0.6.2"],
76
+ ["@effected/markdown", "^0.6.0"],
77
+ ["@effected/memfs", "^0.5.0"],
78
+ ["@effected/npm", "^0.11.1"],
79
+ ["@effected/package-json", "^0.10.2"],
80
+ ["@effected/runtimes", "^0.4.3"],
81
+ ["@effected/sbom", "^0.4.1"],
82
+ ["@effected/schemastore", "^0.4.0"],
83
+ ["@effected/semver", "^0.5.0"],
84
+ ["@effected/spdx", "^0.4.0"],
85
+ ["@effected/store", "^0.4.0"],
86
+ ["@effected/templates", "^0.4.0"],
87
+ ["@effected/toml", "^0.5.0"],
88
+ ["@effected/tsconfig-json", "^0.6.0"],
89
+ ["@effected/walker", "^0.5.0"],
90
+ ["@effected/workspaces", "^0.17.1"],
91
+ ["@effected/xdg", "^0.3.0"],
92
+ ["@effected/yaml", "^0.10.0"]
100
93
  ])],
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"]
94
+ ["effected:peers", /* @__PURE__ */ new Map([
95
+ ["@effected/app", "^0.11.0"],
96
+ ["@effected/cli", "^0.2.0"],
97
+ ["@effected/commands", "^0.5.0"],
98
+ ["@effected/config-file", "^0.5.0"],
99
+ ["@effected/git", "^0.9.0"],
100
+ ["@effected/github", "^0.7.0"],
101
+ ["@effected/github-actions", "^0.9.0"],
102
+ ["@effected/github-references", "^0.1.0"],
103
+ ["@effected/glob", "^0.4.0"],
104
+ ["@effected/jsonc", "^0.7.0"],
105
+ ["@effected/jsonl", "^0.3.0"],
106
+ ["@effected/lockfiles", "^0.6.0"],
107
+ ["@effected/markdown", "^0.6.0"],
108
+ ["@effected/memfs", "^0.5.0"],
109
+ ["@effected/npm", "^0.11.0"],
110
+ ["@effected/package-json", "^0.10.0"],
111
+ ["@effected/runtimes", "^0.4.0"],
112
+ ["@effected/sbom", "^0.4.0"],
113
+ ["@effected/schemastore", "^0.4.0"],
114
+ ["@effected/semver", "^0.5.0"],
115
+ ["@effected/spdx", "^0.4.0"],
116
+ ["@effected/store", "^0.4.0"],
117
+ ["@effected/templates", "^0.4.0"],
118
+ ["@effected/toml", "^0.5.0"],
119
+ ["@effected/tsconfig-json", "^0.6.0"],
120
+ ["@effected/walker", "^0.5.0"],
121
+ ["@effected/workspaces", "^0.17.0"],
122
+ ["@effected/xdg", "^0.3.0"],
123
+ ["@effected/yaml", "^0.10.0"]
206
124
  ])]
207
125
  ]);
208
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effected/pnpm-plugin-effect",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "private": false,
5
5
  "description": "pnpm config dependency for centralized catalog management across the Effected ecosystem.",
6
6
  "keywords": [