@storm-software/config-tools 1.190.2 → 1.190.5
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 +1 -1
- package/package.json +55 -24
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.190.
|
|
3
|
+
"version": "1.190.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
|
|
6
6
|
"keywords": [
|
|
@@ -43,28 +43,46 @@
|
|
|
43
43
|
"exports": {
|
|
44
44
|
"./package.json": "./package.json",
|
|
45
45
|
"./types": {
|
|
46
|
-
"import": {
|
|
46
|
+
"import": {
|
|
47
|
+
"types": "./dist/types.d.ts",
|
|
48
|
+
"default": "./dist/types.js"
|
|
49
|
+
},
|
|
47
50
|
"require": {
|
|
48
51
|
"types": "./dist/types.d.cts",
|
|
49
52
|
"default": "./dist/types.cjs"
|
|
50
53
|
},
|
|
51
|
-
"default": {
|
|
54
|
+
"default": {
|
|
55
|
+
"types": "./dist/types.d.ts",
|
|
56
|
+
"default": "./dist/types.js"
|
|
57
|
+
}
|
|
52
58
|
},
|
|
53
59
|
"./index": {
|
|
54
|
-
"import": {
|
|
60
|
+
"import": {
|
|
61
|
+
"types": "./dist/index.d.ts",
|
|
62
|
+
"default": "./dist/index.js"
|
|
63
|
+
},
|
|
55
64
|
"require": {
|
|
56
65
|
"types": "./dist/index.d.cts",
|
|
57
66
|
"default": "./dist/index.cjs"
|
|
58
67
|
},
|
|
59
|
-
"default": {
|
|
68
|
+
"default": {
|
|
69
|
+
"types": "./dist/index.d.ts",
|
|
70
|
+
"default": "./dist/index.js"
|
|
71
|
+
}
|
|
60
72
|
},
|
|
61
73
|
".": {
|
|
62
|
-
"import": {
|
|
74
|
+
"import": {
|
|
75
|
+
"types": "./dist/index.d.ts",
|
|
76
|
+
"default": "./dist/index.js"
|
|
77
|
+
},
|
|
63
78
|
"require": {
|
|
64
79
|
"types": "./dist/index.d.cts",
|
|
65
80
|
"default": "./dist/index.cjs"
|
|
66
81
|
},
|
|
67
|
-
"default": {
|
|
82
|
+
"default": {
|
|
83
|
+
"types": "./dist/index.d.ts",
|
|
84
|
+
"default": "./dist/index.js"
|
|
85
|
+
}
|
|
68
86
|
},
|
|
69
87
|
"./create-storm-config": {
|
|
70
88
|
"import": {
|
|
@@ -137,12 +155,18 @@
|
|
|
137
155
|
}
|
|
138
156
|
},
|
|
139
157
|
"./env/*": {
|
|
140
|
-
"import": {
|
|
158
|
+
"import": {
|
|
159
|
+
"types": "./dist/env/*.d.ts",
|
|
160
|
+
"default": "./dist/env/*.js"
|
|
161
|
+
},
|
|
141
162
|
"require": {
|
|
142
163
|
"types": "./dist/env/*.d.cts",
|
|
143
164
|
"default": "./dist/env/*.cjs"
|
|
144
165
|
},
|
|
145
|
-
"default": {
|
|
166
|
+
"default": {
|
|
167
|
+
"types": "./dist/env/*.d.ts",
|
|
168
|
+
"default": "./dist/env/*.js"
|
|
169
|
+
}
|
|
146
170
|
},
|
|
147
171
|
"./logger": {
|
|
148
172
|
"import": {
|
|
@@ -211,24 +235,31 @@
|
|
|
211
235
|
},
|
|
212
236
|
"files": ["dist/**/*"],
|
|
213
237
|
"dependencies": {
|
|
214
|
-
"@ltd/j-toml": "
|
|
215
|
-
"@storm-software/config": "
|
|
216
|
-
"c12": "
|
|
217
|
-
"chalk": "
|
|
218
|
-
"commander": "
|
|
219
|
-
"date-fns": "
|
|
220
|
-
"defu": "
|
|
238
|
+
"@ltd/j-toml": "catalog:",
|
|
239
|
+
"@storm-software/config": "workspace:*",
|
|
240
|
+
"c12": "catalog:",
|
|
241
|
+
"chalk": "catalog:",
|
|
242
|
+
"commander": "catalog:",
|
|
243
|
+
"date-fns": "catalog:",
|
|
244
|
+
"defu": "catalog:",
|
|
221
245
|
"giget": "^1.2.5",
|
|
222
|
-
"jiti": "
|
|
246
|
+
"jiti": "catalog:",
|
|
223
247
|
"sqlite": "^5.1.1"
|
|
224
248
|
},
|
|
225
249
|
"devDependencies": {
|
|
226
|
-
"@types/node": "
|
|
227
|
-
"tsup": "
|
|
228
|
-
"zod": "
|
|
250
|
+
"@types/node": "catalog:",
|
|
251
|
+
"tsup": "catalog:",
|
|
252
|
+
"zod": "catalog:"
|
|
253
|
+
},
|
|
254
|
+
"peerDependencies": {
|
|
255
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
256
|
+
},
|
|
257
|
+
"peerDependenciesMeta": {
|
|
258
|
+
"zod": {
|
|
259
|
+
"optional": false
|
|
260
|
+
}
|
|
229
261
|
},
|
|
230
|
-
"
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
"gitHead": "0ee786bb6e727df540f3879591f8b4e7724ab615"
|
|
262
|
+
"publishConfig": {
|
|
263
|
+
"access": "public"
|
|
264
|
+
}
|
|
234
265
|
}
|