@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 +25 -26
- package/index.js +116 -198
- package/package.json +1 -1
- package/pnpmfile.cjs +153 -235
- package/pnpmfile.mjs +153 -235
- package/tsdoc-metadata.json +1 -1
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
[](https://www.typescriptlang.org/)
|
|
7
7
|
[](https://pnpm.io/)
|
|
8
8
|
|
|
9
|
-
A pnpm [config dependency](https://pnpm.io/config-dependencies) that centralizes
|
|
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
|
|
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
|
|
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
|
|
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,
|
|
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
|
|
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
|
-
"@
|
|
70
|
+
"@effected/workspaces": "catalog:effected"
|
|
68
71
|
},
|
|
69
72
|
"peerDependencies": {
|
|
70
73
|
"effect": "catalog:effect:peers",
|
|
71
|
-
"@
|
|
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:
|
|
99
|
-
| `catalog:
|
|
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
|
-
|
|
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-
|
|
5
|
-
["@effect/ai-openai", "4.0.0-
|
|
6
|
-
["@effect/ai-openai-compat", "4.0.0-
|
|
7
|
-
["@effect/ai-openrouter", "4.0.0-
|
|
8
|
-
["@effect/atom-react", "4.0.0-
|
|
9
|
-
["@effect/atom-solid", "4.0.0-
|
|
10
|
-
["@effect/atom-vue", "4.0.0-
|
|
11
|
-
["@effect/openapi-generator", "4.0.0-
|
|
12
|
-
["@effect/opentelemetry", "4.0.0-
|
|
13
|
-
["@effect/platform-browser", "4.0.0-
|
|
14
|
-
["@effect/platform-bun", "4.0.0-
|
|
15
|
-
["@effect/platform-node", "4.0.0-
|
|
16
|
-
["@effect/platform-node-shared", "4.0.0-
|
|
17
|
-
["@effect/sql-clickhouse", "4.0.0-
|
|
18
|
-
["@effect/sql-d1", "4.0.0-
|
|
19
|
-
["@effect/sql-libsql", "4.0.0-
|
|
20
|
-
["@effect/sql-mssql", "4.0.0-
|
|
21
|
-
["@effect/sql-mysql2", "4.0.0-
|
|
22
|
-
["@effect/sql-pg", "4.0.0-
|
|
23
|
-
["@effect/sql-pglite", "4.0.0-
|
|
24
|
-
["@effect/sql-sqlite-bun", "4.0.0-
|
|
25
|
-
["@effect/sql-sqlite-do", "4.0.0-
|
|
26
|
-
["@effect/sql-sqlite-node", "4.0.0-
|
|
27
|
-
["@effect/sql-sqlite-react-native", "4.0.0-
|
|
28
|
-
["@effect/sql-sqlite-wasm", "4.0.0-
|
|
29
|
-
["@effect/tsgo", "0.36.
|
|
30
|
-
["@effect/vitest", "4.0.0-
|
|
31
|
-
["effect", "4.0.0-
|
|
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-
|
|
35
|
-
["@effect/ai-openai", "4.0.0-
|
|
36
|
-
["@effect/ai-openai-compat", "4.0.0-
|
|
37
|
-
["@effect/ai-openrouter", "4.0.0-
|
|
38
|
-
["@effect/atom-react", "4.0.0-
|
|
39
|
-
["@effect/atom-solid", "4.0.0-
|
|
40
|
-
["@effect/atom-vue", "4.0.0-
|
|
41
|
-
["@effect/openapi-generator", "4.0.0-
|
|
42
|
-
["@effect/opentelemetry", "4.0.0-
|
|
43
|
-
["@effect/platform-browser", "4.0.0-
|
|
44
|
-
["@effect/platform-bun", "4.0.0-
|
|
45
|
-
["@effect/platform-node", "4.0.0-
|
|
46
|
-
["@effect/platform-node-shared", "4.0.0-
|
|
47
|
-
["@effect/sql-clickhouse", "4.0.0-
|
|
48
|
-
["@effect/sql-d1", "4.0.0-
|
|
49
|
-
["@effect/sql-libsql", "4.0.0-
|
|
50
|
-
["@effect/sql-mssql", "4.0.0-
|
|
51
|
-
["@effect/sql-mysql2", "4.0.0-
|
|
52
|
-
["@effect/sql-pg", "4.0.0-
|
|
53
|
-
["@effect/sql-pglite", "4.0.0-
|
|
54
|
-
["@effect/sql-sqlite-bun", "4.0.0-
|
|
55
|
-
["@effect/sql-sqlite-do", "4.0.0-
|
|
56
|
-
["@effect/sql-sqlite-node", "4.0.0-
|
|
57
|
-
["@effect/sql-sqlite-react-native", "4.0.0-
|
|
58
|
-
["@effect/sql-sqlite-wasm", "4.0.0-
|
|
59
|
-
["@effect/tsgo", "0.36.
|
|
60
|
-
["@effect/vitest", "4.0.0-
|
|
61
|
-
["effect", "4.0.0-
|
|
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
|
-
["
|
|
64
|
-
["@
|
|
65
|
-
["@
|
|
66
|
-
["@
|
|
67
|
-
["@
|
|
68
|
-
["@
|
|
69
|
-
["@
|
|
70
|
-
["@
|
|
71
|
-
["@
|
|
72
|
-
["@
|
|
73
|
-
["@
|
|
74
|
-
["@
|
|
75
|
-
["@
|
|
76
|
-
["@
|
|
77
|
-
["@
|
|
78
|
-
["@
|
|
79
|
-
["@
|
|
80
|
-
["@
|
|
81
|
-
["@
|
|
82
|
-
["@
|
|
83
|
-
["@
|
|
84
|
-
["@
|
|
85
|
-
["@
|
|
86
|
-
["@
|
|
87
|
-
["@
|
|
88
|
-
["@
|
|
89
|
-
["@
|
|
90
|
-
["@
|
|
91
|
-
["@
|
|
92
|
-
["@
|
|
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
|
-
["
|
|
102
|
-
["@
|
|
103
|
-
["@
|
|
104
|
-
["@
|
|
105
|
-
["@
|
|
106
|
-
["@
|
|
107
|
-
["@
|
|
108
|
-
["@
|
|
109
|
-
["@
|
|
110
|
-
["@
|
|
111
|
-
["@
|
|
112
|
-
["@
|
|
113
|
-
["@
|
|
114
|
-
["@
|
|
115
|
-
["@
|
|
116
|
-
["@
|
|
117
|
-
["@
|
|
118
|
-
["@
|
|
119
|
-
["@
|
|
120
|
-
["@
|
|
121
|
-
["@
|
|
122
|
-
["@
|
|
123
|
-
["@
|
|
124
|
-
["@
|
|
125
|
-
["@
|
|
126
|
-
["@
|
|
127
|
-
["@
|
|
128
|
-
["@
|
|
129
|
-
["@
|
|
130
|
-
["@
|
|
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
|
|