@storm-software/untyped 0.11.59 → 0.12.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 +2 -1
- package/package.json +38 -13
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm ESBuild Package](#storm-esbuild-package)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/untyped",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -40,8 +40,10 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"
|
|
44
|
-
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=22.4.0",
|
|
45
|
+
"pnpm": ">=10.3.0"
|
|
46
|
+
},
|
|
45
47
|
"bin": {
|
|
46
48
|
"storm-untyped": "./bin/untyped.cjs",
|
|
47
49
|
"storm-untyped-cjs": "./bin/untyped.cjs",
|
|
@@ -52,20 +54,32 @@
|
|
|
52
54
|
"exports": {
|
|
53
55
|
"./package.json": "./package.json",
|
|
54
56
|
"./index": {
|
|
55
|
-
"import": {
|
|
57
|
+
"import": {
|
|
58
|
+
"types": "./dist/index.d.ts",
|
|
59
|
+
"default": "./dist/index.js"
|
|
60
|
+
},
|
|
56
61
|
"require": {
|
|
57
62
|
"types": "./dist/index.d.cts",
|
|
58
63
|
"default": "./dist/index.cjs"
|
|
59
64
|
},
|
|
60
|
-
"default": {
|
|
65
|
+
"default": {
|
|
66
|
+
"types": "./dist/index.d.ts",
|
|
67
|
+
"default": "./dist/index.js"
|
|
68
|
+
}
|
|
61
69
|
},
|
|
62
70
|
".": {
|
|
63
|
-
"import": {
|
|
71
|
+
"import": {
|
|
72
|
+
"types": "./dist/index.d.ts",
|
|
73
|
+
"default": "./dist/index.js"
|
|
74
|
+
},
|
|
64
75
|
"require": {
|
|
65
76
|
"types": "./dist/index.d.cts",
|
|
66
77
|
"default": "./dist/index.cjs"
|
|
67
78
|
},
|
|
68
|
-
"default": {
|
|
79
|
+
"default": {
|
|
80
|
+
"types": "./dist/index.d.ts",
|
|
81
|
+
"default": "./dist/index.js"
|
|
82
|
+
}
|
|
69
83
|
},
|
|
70
84
|
"./generate": {
|
|
71
85
|
"import": {
|
|
@@ -167,7 +181,9 @@
|
|
|
167
181
|
}
|
|
168
182
|
},
|
|
169
183
|
"types": "./dist/index.d.cts",
|
|
170
|
-
"files": [
|
|
184
|
+
"files": [
|
|
185
|
+
"dist/**/*"
|
|
186
|
+
],
|
|
171
187
|
"keywords": [
|
|
172
188
|
"acidic",
|
|
173
189
|
"cyclone-ui",
|
|
@@ -178,10 +194,17 @@
|
|
|
178
194
|
"storm-stack",
|
|
179
195
|
"sullivanpj"
|
|
180
196
|
],
|
|
181
|
-
"peerDependencies": {
|
|
197
|
+
"peerDependencies": {
|
|
198
|
+
"@nx/devkit": "20.8.0",
|
|
199
|
+
"untyped": "^1.5.2"
|
|
200
|
+
},
|
|
182
201
|
"peerDependenciesMeta": {
|
|
183
|
-
"@nx/devkit": {
|
|
184
|
-
|
|
202
|
+
"@nx/devkit": {
|
|
203
|
+
"optional": false
|
|
204
|
+
},
|
|
205
|
+
"untyped": {
|
|
206
|
+
"optional": false
|
|
207
|
+
}
|
|
185
208
|
},
|
|
186
209
|
"dependencies": {
|
|
187
210
|
"commander": "^12.1.0",
|
|
@@ -195,6 +218,8 @@
|
|
|
195
218
|
"tsup": "8.4.0",
|
|
196
219
|
"untyped": "^1.5.2"
|
|
197
220
|
},
|
|
198
|
-
"publishConfig": {
|
|
221
|
+
"publishConfig": {
|
|
222
|
+
"access": "public"
|
|
223
|
+
},
|
|
199
224
|
"sideEffects": false
|
|
200
|
-
}
|
|
225
|
+
}
|