@storm-software/untyped 0.8.2 → 0.8.4
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/{dist/chunk-GWEQOXW6.mjs → bin/chunk-65NJ2BNV.js} +16 -13
- package/bin/chunk-7LNAPF6J.js +7601 -0
- package/bin/chunk-BIBA7MGH.js +84 -0
- package/bin/chunk-MVPKPUE3.js +1120 -0
- package/bin/chunk-PRGAKNNV.js +765 -0
- package/bin/chunk-Q3AKY4XY.js +4054 -0
- package/bin/chunk-Q42ZDLPG.js +510 -0
- package/bin/chunk-RNYNEYJ5.js +451 -0
- package/bin/dist-SOH4ASEU.js +17570 -0
- package/bin/esm-SQV6ELTR.js +1716 -0
- package/bin/execa-4HBUJBFQ.js +2424 -0
- package/bin/json5-WTSMELC2.js +10 -0
- package/bin/jsonc-B7SFZJW2.js +15 -0
- package/bin/multipart-parser-TFNERLJV.js +187 -0
- package/bin/toml-MTE5VHET.js +10 -0
- package/bin/untyped.cjs +83925 -0
- package/bin/untyped.js +42339 -373
- package/bin/yaml-D6PQ2AEL.js +10 -0
- package/dist/{chunk-XSW3ZXMK.mjs → chunk-B5PWE2FK.js} +8 -3
- package/dist/{chunk-6HKRKQSU.js → chunk-BFSI6OL7.cjs} +12 -7
- package/dist/{chunk-LWMIR3BQ.js → chunk-CLGOYXO6.cjs} +13 -8
- package/dist/chunk-EIXSLKJ6.js +85 -0
- package/dist/{chunk-EBIRRCGB.mjs → chunk-ELSZYSKI.js} +8 -3
- package/dist/{chunk-6OB6EGVE.js → chunk-HUCZDWTY.cjs} +206 -175
- package/dist/chunk-KQOG5R22.cjs +6 -0
- package/dist/chunk-MW6UM5LZ.js +6 -0
- package/dist/chunk-S36U2TKG.js +7218 -0
- package/dist/{chunk-MNW76QG7.mjs → chunk-SF7VZOKX.js} +39 -8
- package/dist/{chunk-HSIBHFJE.mjs → chunk-TJ5YM7SW.js} +8 -3
- package/dist/{chunk-TJLW3KPU.js → chunk-UCWWPTWV.cjs} +11 -6
- package/dist/chunk-VCSZBLKU.cjs +85 -0
- package/dist/chunk-YU5YP27Q.cjs +7221 -0
- package/dist/generate.cjs +11 -0
- package/dist/{generate.d.mts → generate.d.cts} +1 -1
- package/dist/generate.d.ts +1 -1
- package/dist/generate.js +11 -10
- package/dist/index.cjs +32 -0
- package/dist/{index.d.mts → index.d.cts} +6 -6
- package/dist/index.d.ts +1 -1
- package/dist/index.js +32 -27
- package/dist/{types-CIJRaFHD.d.mts → types-pVnZG27e.d.cts} +362 -362
- package/dist/{types-CIJRaFHD.d.ts → types-pVnZG27e.d.ts} +362 -362
- package/dist/utilities.cjs +6 -0
- package/dist/utilities.js +6 -6
- package/package.json +44 -53
- package/bin/untyped.mjs +0 -7050
- package/dist/chunk-NYKCIVTC.js +0 -46
- package/dist/chunk-U4YLQDJK.js +0 -1
- package/dist/chunk-ZHPKHX4S.mjs +0 -0
- package/dist/generate.mjs +0 -10
- package/dist/index.mjs +0 -27
- package/dist/utilities.mjs +0 -6
- /package/bin/{untyped.d.mts → untyped.d.cts} +0 -0
- /package/dist/{utilities.d.mts → utilities.d.cts} +0 -0
package/dist/utilities.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
getOutputFile
|
|
3
|
+
} from "./chunk-EIXSLKJ6.js";
|
|
4
|
+
export {
|
|
5
|
+
getOutputFile
|
|
6
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/untyped",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "github",
|
|
@@ -42,39 +43,39 @@
|
|
|
42
43
|
"packageManager": "pnpm@9.15.2",
|
|
43
44
|
"engines": { "node": ">=22.4.0", "pnpm": ">=9.15.2" },
|
|
44
45
|
"bin": {
|
|
45
|
-
"storm-untyped": "./bin/storm-untyped.
|
|
46
|
-
"storm-untyped-cjs": "./bin/storm-untyped.
|
|
47
|
-
"storm-untyped-esm": "./bin/storm-untyped.
|
|
46
|
+
"storm-untyped": "./bin/storm-untyped.cjs",
|
|
47
|
+
"storm-untyped-cjs": "./bin/storm-untyped.cjs",
|
|
48
|
+
"storm-untyped-esm": "./bin/storm-untyped.js"
|
|
48
49
|
},
|
|
49
50
|
"main": "./dist/index.js",
|
|
50
|
-
"module": "./dist/index.
|
|
51
|
+
"module": "./dist/index.js",
|
|
51
52
|
"exports": {
|
|
52
53
|
"./package.json": "./package.json",
|
|
53
54
|
"./index": {
|
|
54
|
-
"import": {
|
|
55
|
-
|
|
56
|
-
"
|
|
55
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
56
|
+
"require": {
|
|
57
|
+
"types": "./dist/index.d.cts",
|
|
58
|
+
"default": "./dist/index.cjs"
|
|
57
59
|
},
|
|
58
|
-
"require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
59
60
|
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
60
61
|
},
|
|
61
62
|
".": {
|
|
62
|
-
"import": {
|
|
63
|
-
|
|
64
|
-
"
|
|
63
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
64
|
+
"require": {
|
|
65
|
+
"types": "./dist/index.d.cts",
|
|
66
|
+
"default": "./dist/index.cjs"
|
|
65
67
|
},
|
|
66
|
-
"require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
67
68
|
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
68
69
|
},
|
|
69
70
|
"./generate": {
|
|
70
71
|
"import": {
|
|
71
|
-
"types": "./dist/generate.d.mts",
|
|
72
|
-
"default": "./dist/generate.mjs"
|
|
73
|
-
},
|
|
74
|
-
"require": {
|
|
75
72
|
"types": "./dist/generate.d.ts",
|
|
76
73
|
"default": "./dist/generate.js"
|
|
77
74
|
},
|
|
75
|
+
"require": {
|
|
76
|
+
"types": "./dist/generate.d.cts",
|
|
77
|
+
"default": "./dist/generate.cjs"
|
|
78
|
+
},
|
|
78
79
|
"default": {
|
|
79
80
|
"types": "./dist/generate.d.ts",
|
|
80
81
|
"default": "./dist/generate.js"
|
|
@@ -82,13 +83,13 @@
|
|
|
82
83
|
},
|
|
83
84
|
"./utilities": {
|
|
84
85
|
"import": {
|
|
85
|
-
"types": "./dist/utilities.d.mts",
|
|
86
|
-
"default": "./dist/utilities.mjs"
|
|
87
|
-
},
|
|
88
|
-
"require": {
|
|
89
86
|
"types": "./dist/utilities.d.ts",
|
|
90
87
|
"default": "./dist/utilities.js"
|
|
91
88
|
},
|
|
89
|
+
"require": {
|
|
90
|
+
"types": "./dist/utilities.d.cts",
|
|
91
|
+
"default": "./dist/utilities.cjs"
|
|
92
|
+
},
|
|
92
93
|
"default": {
|
|
93
94
|
"types": "./dist/utilities.d.ts",
|
|
94
95
|
"default": "./dist/utilities.js"
|
|
@@ -96,13 +97,13 @@
|
|
|
96
97
|
},
|
|
97
98
|
"./generators/dts": {
|
|
98
99
|
"import": {
|
|
99
|
-
"types": "./dist/generators/dts.d.mts",
|
|
100
|
-
"default": "./dist/generators/dts.mjs"
|
|
101
|
-
},
|
|
102
|
-
"require": {
|
|
103
100
|
"types": "./dist/generators/dts.d.ts",
|
|
104
101
|
"default": "./dist/generators/dts.js"
|
|
105
102
|
},
|
|
103
|
+
"require": {
|
|
104
|
+
"types": "./dist/generators/dts.d.cts",
|
|
105
|
+
"default": "./dist/generators/dts.cjs"
|
|
106
|
+
},
|
|
106
107
|
"default": {
|
|
107
108
|
"types": "./dist/generators/dts.d.ts",
|
|
108
109
|
"default": "./dist/generators/dts.js"
|
|
@@ -110,13 +111,13 @@
|
|
|
110
111
|
},
|
|
111
112
|
"./generators/markdown": {
|
|
112
113
|
"import": {
|
|
113
|
-
"types": "./dist/generators/markdown.d.mts",
|
|
114
|
-
"default": "./dist/generators/markdown.mjs"
|
|
115
|
-
},
|
|
116
|
-
"require": {
|
|
117
114
|
"types": "./dist/generators/markdown.d.ts",
|
|
118
115
|
"default": "./dist/generators/markdown.js"
|
|
119
116
|
},
|
|
117
|
+
"require": {
|
|
118
|
+
"types": "./dist/generators/markdown.d.cts",
|
|
119
|
+
"default": "./dist/generators/markdown.cjs"
|
|
120
|
+
},
|
|
120
121
|
"default": {
|
|
121
122
|
"types": "./dist/generators/markdown.d.ts",
|
|
122
123
|
"default": "./dist/generators/markdown.js"
|
|
@@ -124,13 +125,13 @@
|
|
|
124
125
|
},
|
|
125
126
|
"./generators/json-schema": {
|
|
126
127
|
"import": {
|
|
127
|
-
"types": "./dist/generators/json-schema.d.mts",
|
|
128
|
-
"default": "./dist/generators/json-schema.mjs"
|
|
129
|
-
},
|
|
130
|
-
"require": {
|
|
131
128
|
"types": "./dist/generators/json-schema.d.ts",
|
|
132
129
|
"default": "./dist/generators/json-schema.js"
|
|
133
130
|
},
|
|
131
|
+
"require": {
|
|
132
|
+
"types": "./dist/generators/json-schema.d.cts",
|
|
133
|
+
"default": "./dist/generators/json-schema.cjs"
|
|
134
|
+
},
|
|
134
135
|
"default": {
|
|
135
136
|
"types": "./dist/generators/json-schema.d.ts",
|
|
136
137
|
"default": "./dist/generators/json-schema.js"
|
|
@@ -138,13 +139,13 @@
|
|
|
138
139
|
},
|
|
139
140
|
"./generators/index": {
|
|
140
141
|
"import": {
|
|
141
|
-
"types": "./dist/generators/index.d.mts",
|
|
142
|
-
"default": "./dist/generators/index.mjs"
|
|
143
|
-
},
|
|
144
|
-
"require": {
|
|
145
142
|
"types": "./dist/generators/index.d.ts",
|
|
146
143
|
"default": "./dist/generators/index.js"
|
|
147
144
|
},
|
|
145
|
+
"require": {
|
|
146
|
+
"types": "./dist/generators/index.d.cts",
|
|
147
|
+
"default": "./dist/generators/index.cjs"
|
|
148
|
+
},
|
|
148
149
|
"default": {
|
|
149
150
|
"types": "./dist/generators/index.d.ts",
|
|
150
151
|
"default": "./dist/generators/index.js"
|
|
@@ -152,20 +153,20 @@
|
|
|
152
153
|
},
|
|
153
154
|
"./generators": {
|
|
154
155
|
"import": {
|
|
155
|
-
"types": "./dist/generators/index.d.mts",
|
|
156
|
-
"default": "./dist/generators/index.mjs"
|
|
157
|
-
},
|
|
158
|
-
"require": {
|
|
159
156
|
"types": "./dist/generators/index.d.ts",
|
|
160
157
|
"default": "./dist/generators/index.js"
|
|
161
158
|
},
|
|
159
|
+
"require": {
|
|
160
|
+
"types": "./dist/generators/index.d.cts",
|
|
161
|
+
"default": "./dist/generators/index.cjs"
|
|
162
|
+
},
|
|
162
163
|
"default": {
|
|
163
164
|
"types": "./dist/generators/index.d.ts",
|
|
164
165
|
"default": "./dist/generators/index.js"
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
168
|
},
|
|
168
|
-
"types": "./dist/index.d.
|
|
169
|
+
"types": "./dist/index.d.cts",
|
|
169
170
|
"files": ["bin/**/*", "dist/**/*"],
|
|
170
171
|
"keywords": [
|
|
171
172
|
"acidic",
|
|
@@ -177,16 +178,9 @@
|
|
|
177
178
|
"storm-stack",
|
|
178
179
|
"sullivanpj"
|
|
179
180
|
],
|
|
180
|
-
"peerDependencies": {
|
|
181
|
-
"@nx/devkit": "^20.3.1",
|
|
182
|
-
"@storm-software/build-tools": "workspace:*",
|
|
183
|
-
"@storm-software/config-tools": "workspace:*",
|
|
184
|
-
"untyped": "^1.5.2"
|
|
185
|
-
},
|
|
181
|
+
"peerDependencies": { "@nx/devkit": "^20.3.1", "untyped": "^1.5.2" },
|
|
186
182
|
"peerDependenciesMeta": {
|
|
187
183
|
"@nx/devkit": { "optional": false },
|
|
188
|
-
"@storm-software/build-tools": { "optional": false },
|
|
189
|
-
"@storm-software/config-tools": { "optional": false },
|
|
190
184
|
"untyped": { "optional": false }
|
|
191
185
|
},
|
|
192
186
|
"dependencies": {
|
|
@@ -197,9 +191,6 @@
|
|
|
197
191
|
},
|
|
198
192
|
"devDependencies": {
|
|
199
193
|
"@nx/devkit": "^20.3.1",
|
|
200
|
-
"@storm-software/build-tools": "0.135.4",
|
|
201
|
-
"@storm-software/config": "1.98.2",
|
|
202
|
-
"@storm-software/config-tools": "1.141.4",
|
|
203
194
|
"@types/node": "^22.10.2",
|
|
204
195
|
"tsup": "8.3.5",
|
|
205
196
|
"untyped": "^1.5.2"
|