@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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. 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
- [![Version](https://img.shields.io/badge/version-0.11.58-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.11.60-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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.11.59",
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
- "packageManager": "pnpm@10.3.0",
44
- "engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
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": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
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": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
65
+ "default": {
66
+ "types": "./dist/index.d.ts",
67
+ "default": "./dist/index.js"
68
+ }
61
69
  },
62
70
  ".": {
63
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
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": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
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": ["dist/**/*"],
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": { "@nx/devkit": "20.8.0", "untyped": "^1.5.2" },
197
+ "peerDependencies": {
198
+ "@nx/devkit": "20.8.0",
199
+ "untyped": "^1.5.2"
200
+ },
182
201
  "peerDependenciesMeta": {
183
- "@nx/devkit": { "optional": false },
184
- "untyped": { "optional": false }
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": { "access": "public" },
221
+ "publishConfig": {
222
+ "access": "public"
223
+ },
199
224
  "sideEffects": false
200
- }
225
+ }