the-moby-effect 1.48.1 → 1.48.3
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/Callbacks/package.json +2 -2
- package/DindEngine/package.json +2 -2
- package/DockerComposeEngine/package.json +2 -2
- package/DockerEngine/package.json +2 -2
- package/MobyConnection/package.json +2 -2
- package/MobyConvey/package.json +2 -2
- package/MobyDemux/package.json +2 -2
- package/MobyEndpoints/package.json +2 -2
- package/MobyPlatforms/package.json +2 -2
- package/MobySchemas/package.json +2 -2
- package/PodmanEngine/package.json +2 -2
- package/Promises/package.json +2 -2
- package/index/package.json +6 -0
- package/package.json +30 -11
package/Callbacks/package.json
CHANGED
package/DindEngine/package.json
CHANGED
package/MobyConvey/package.json
CHANGED
package/MobyDemux/package.json
CHANGED
package/MobySchemas/package.json
CHANGED
package/Promises/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "the-moby-effect",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.3",
|
|
4
4
|
"description": "Moby/Docker API client built using effect-ts",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -11,20 +11,31 @@
|
|
|
11
11
|
"author": "Leo Conforti <leo@leoconforti.us> (https://leoconforti.us)",
|
|
12
12
|
"homepage": "https://github.com/leonitousconforti/the-moby-effect",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"eftar": "0.0.
|
|
14
|
+
"eftar": "0.0.56"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@effect/cluster": "0.
|
|
18
|
-
"@effect/experimental": "0.44.
|
|
19
|
-
"@effect/platform": "0.80.
|
|
20
|
-
"@effect/
|
|
21
|
-
"@effect/
|
|
22
|
-
"effect": "
|
|
17
|
+
"@effect/cluster": "0.30.2",
|
|
18
|
+
"@effect/experimental": "0.44.14",
|
|
19
|
+
"@effect/platform": "0.80.14",
|
|
20
|
+
"@effect/platform-browser": "0.60.5",
|
|
21
|
+
"@effect/platform-bun": "0.61.2",
|
|
22
|
+
"@effect/platform-node": "0.77.2",
|
|
23
|
+
"@effect/rpc": "0.56.2",
|
|
24
|
+
"@effect/sql": "0.33.14",
|
|
25
|
+
"effect": "3.14.14"
|
|
26
|
+
},
|
|
27
|
+
"peerDependenciesMeta": {
|
|
28
|
+
"@effect/platform-browser": {
|
|
29
|
+
"optional": true
|
|
30
|
+
},
|
|
31
|
+
"@effect/platform-bun": {
|
|
32
|
+
"optional": true
|
|
33
|
+
},
|
|
34
|
+
"@effect/platform-node": {
|
|
35
|
+
"optional": true
|
|
36
|
+
}
|
|
23
37
|
},
|
|
24
38
|
"optionalDependencies": {
|
|
25
|
-
"@effect/platform-browser": "0.60.0",
|
|
26
|
-
"@effect/platform-bun": "0.60.18",
|
|
27
|
-
"@effect/platform-node": "0.76.18",
|
|
28
39
|
"ssh2": "^1.16.0",
|
|
29
40
|
"undici": "^7.7.0",
|
|
30
41
|
"ws": "^8.18.1"
|
|
@@ -111,6 +122,11 @@
|
|
|
111
122
|
"types": "./dist/dts/Promises.d.ts",
|
|
112
123
|
"import": "./dist/esm/Promises.js",
|
|
113
124
|
"default": "./dist/cjs/Promises.js"
|
|
125
|
+
},
|
|
126
|
+
"./index": {
|
|
127
|
+
"types": "./dist/dts/index.d.ts",
|
|
128
|
+
"import": "./dist/esm/index.js",
|
|
129
|
+
"default": "./dist/cjs/index.js"
|
|
114
130
|
}
|
|
115
131
|
},
|
|
116
132
|
"typesVersions": {
|
|
@@ -150,6 +166,9 @@
|
|
|
150
166
|
],
|
|
151
167
|
"Promises": [
|
|
152
168
|
"./dist/dts/Promises.d.ts"
|
|
169
|
+
],
|
|
170
|
+
"index": [
|
|
171
|
+
"./dist/dts/index.d.ts"
|
|
153
172
|
]
|
|
154
173
|
}
|
|
155
174
|
}
|