@powerlines/plugin-crypto 0.10.161 → 0.10.163

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/package.json +5 -5
  2. package/README.md +0 -311
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-crypto",
3
- "version": "0.10.161",
3
+ "version": "0.10.163",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin that provides unique identifier generation capabilities at runtime by adding the `id` builtin module.",
6
6
  "repository": {
@@ -129,16 +129,16 @@
129
129
  "keywords": ["powerlines", "storm-software", "powerlines-plugin"],
130
130
  "dependencies": {
131
131
  "@noble/ciphers": "^2.1.1",
132
- "@powerlines/plugin-env": "^0.15.58",
132
+ "@powerlines/plugin-env": "^0.15.60",
133
133
  "@storm-software/config-tools": "^1.188.80",
134
134
  "@stryke/path": "^0.24.3",
135
135
  "defu": "^6.1.4",
136
- "powerlines": "^0.37.43"
136
+ "powerlines": "^0.37.45"
137
137
  },
138
138
  "devDependencies": {
139
- "@powerlines/plugin-plugin": "^0.12.121",
139
+ "@powerlines/plugin-plugin": "^0.12.123",
140
140
  "@types/node": "^24.10.9"
141
141
  },
142
142
  "publishConfig": { "access": "public" },
143
- "gitHead": "ee1fb99679ce04bafdcf774406486f344c0a6367"
143
+ "gitHead": "98320250bde7e4d99e3bfbb71b01b64392686868"
144
144
  }
package/README.md DELETED
@@ -1,311 +0,0 @@
1
- <!-- START header -->
2
- <!-- prettier-ignore-start -->
3
- <!-- markdownlint-disable -->
4
-
5
-
6
- <div align="center">
7
- <picture>
8
- <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/powerlines/banner-1280x640-dark.gif">
9
- <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/powerlines/banner-1280x640-light.gif">
10
- <img src="https://public.storm-cdn.com/powerlines/banner-1280x640-dark.gif" width="100%" alt="Powerlines" />
11
- </picture>
12
- </div>
13
- <br />
14
-
15
- <div align="center">
16
- <b>
17
- <a href="https://stormsoftware.com" target="_blank">Website</a> •
18
- <a href="https://github.com/storm-software/powerlines" target="_blank">GitHub</a> •
19
- <a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://stormstack.github.io/stormstack/" target="_blank">Docs</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> •
20
- <a href="https://github.com/storm-software/powerlines/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a>
21
- </b>
22
- </div>
23
-
24
- <br />
25
- This package is part of the 🔌 <b>Powerlines</b> monorepo. Powerlines packages include CLI utility applications, tools, and various libraries used to create modern, scalable web applications.
26
- <br />
27
-
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
-
30
- [![Version](https://img.shields.io/badge/version-0.2.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&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;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/powerlines/release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
-
32
- <!-- prettier-ignore-start -->
33
- <!-- markdownlint-disable -->
34
-
35
- > [!IMPORTANT]
36
- > This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be available through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
37
-
38
- <!-- markdownlint-restore -->
39
- <!-- prettier-ignore-end -->
40
-
41
- <div align="center">
42
- <a href="https://github.com/storm-software/powerlines" target="_blank"><b>Be sure to ⭐ this repository on GitHub so you can keep up to date with it's progress!</b></a>
43
- </div>
44
-
45
- <br />
46
-
47
- <!-- markdownlint-restore -->
48
- <!-- prettier-ignore-end -->
49
-
50
- <!-- END header -->
51
-
52
- # Powerlines - Cryptography Plugin
53
-
54
- A Powerlines plugin that provides cryptography capabilities at runtime by adding the `crypto` builtin module.
55
-
56
- Since cryptography is such a complex and nuanced topic, this plugin relies on the noble cryptography packages since they are audited for security and written in pure TypeScript.
57
-
58
- The noble packages used can be found below:
59
-
60
- - [`@noble/ciphers`](https://www.npmjs.com/package/@noble/ciphers)
61
- - [`@noble/hashes`](https://www.npmjs.com/package/@noble/hashes)
62
-
63
- <!-- START doctoc -->
64
- <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
65
- ## Table of Contents
66
-
67
- - [Powerlines - Cryptography Plugin](#powerlines---cryptography-plugin)
68
- - [Table of Contents](#table-of-contents)
69
- - [Installing](#installing)
70
- - [Reduced Package Size](#reduced-package-size)
71
- - [Development](#development)
72
- - [Building](#building)
73
- - [Running unit tests](#running-unit-tests)
74
- - [Linting](#linting)
75
- - [Storm Workspaces](#storm-workspaces)
76
- - [Roadmap](#roadmap)
77
- - [Support](#support)
78
- - [License](#license)
79
- - [Changelog](#changelog)
80
- - [Contributing](#contributing)
81
- - [Contributors](#contributors)
82
-
83
- <!-- END doctoc -->
84
-
85
- ## Installing
86
-
87
- Using [pnpm](http://pnpm.io):
88
-
89
- ```bash
90
- pnpm add @powerlines/plugin-crypto
91
- ```
92
-
93
- <details>
94
- <summary>Using npm</summary>
95
-
96
- ```bash
97
- npm install @powerlines/plugin-crypto
98
- ```
99
-
100
- </details>
101
-
102
- <details>
103
- <summary>Using yarn</summary>
104
-
105
- ```bash
106
- yarn add @powerlines/plugin-crypto
107
- ```
108
-
109
- </details>
110
-
111
- ## Reduced Package Size
112
-
113
- This project uses [tsup](https://tsup.egoist.dev/) to package the source code
114
- due to its ability to remove unused code and ship smaller javascript files
115
- thanks to code splitting. This helps to greatly reduce the size of the package
116
- and to make it easier to use in other projects.
117
-
118
- ## Development
119
-
120
- This project is built using [Nx](https://nx.dev). As a result, many of the usual
121
- commands are available to assist in development.
122
-
123
- ### Building
124
-
125
- Run `nx build plugin-crypto` to build the library.
126
-
127
- ### Running unit tests
128
-
129
- Run `nx test plugin-crypto` to execute the unit tests via
130
- [Jest](https://jestjs.io).
131
-
132
- ### Linting
133
-
134
- Run `nx lint plugin-crypto` to run
135
- [ESLint](https://eslint.org/) on the package.
136
-
137
- <!-- START footer -->
138
- <!-- prettier-ignore-start -->
139
- <!-- markdownlint-disable -->
140
-
141
-
142
- ## Storm Workspaces
143
-
144
- Storm workspaces are built using
145
- <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools
146
- for monorepos, which helps you develop like Google, Facebook, and Microsoft.
147
- Building on top of Nx, the Open System provides a set of tools and patterns that
148
- help you scale your monorepo to many teams while keeping the codebase
149
- maintainable.
150
-
151
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
152
- <br />
153
-
154
- ## Roadmap
155
-
156
- See the [open issues](https://github.com/storm-software/powerlines/issues) for
157
- a list of proposed features (and known issues).
158
-
159
- - [Top Feature Requests](https://github.com/storm-software/powerlines/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
160
- (Add your votes using the 👍 reaction)
161
- - [Top Bugs](https://github.com/storm-software/powerlines/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc)
162
- (Add your votes using the 👍 reaction)
163
- - [Newest Bugs](https://github.com/storm-software/powerlines/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
164
-
165
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
166
- <br />
167
-
168
- ## Support
169
-
170
- Reach out to the maintainer at one of the following places:
171
-
172
- - [Contact](https://stormsoftware.com/contact)
173
- - [GitHub discussions](https://github.com/storm-software/powerlines/discussions)
174
- - <support@stormsoftware.com>
175
-
176
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
177
- <br />
178
-
179
- ## License
180
-
181
- This project is licensed under the **Apache License 2.0**. Feel free to edit and
182
- distribute this template as you like.
183
-
184
- See [LICENSE](LICENSE) for more information.
185
-
186
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
187
- <br />
188
-
189
- ## Changelog
190
-
191
- This project adheres to
192
- [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along
193
- with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md)
194
- file
195
-
196
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
197
- <br />
198
-
199
- ## Contributing
200
-
201
- First off, thanks for taking the time to contribute! Contributions are what
202
- makes the open-source community such an amazing place to learn, inspire, and
203
- create. Any contributions you make will benefit everybody else and are **greatly
204
- appreciated**.
205
-
206
- Please try to create bug reports that are:
207
-
208
- - _Reproducible._ Include steps to reproduce the problem.
209
- - _Specific._ Include as much detail as possible: which version, what
210
- environment, etc.
211
- - _Unique._ Do not duplicate existing opened issues.
212
- - _Scoped to a Single Bug._ One bug per report.
213
-
214
- Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
215
-
216
- You can use
217
- [markdownlint-cli](https://github.com/storm-software/powerlines/markdownlint-cli)
218
- to check for common markdown style inconsistency.
219
-
220
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
221
- <br />
222
-
223
- ## Contributors
224
-
225
- Thanks goes to these wonderful people
226
- ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
227
-
228
- <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
229
-
230
- <table>
231
- <tbody>
232
- <tr>
233
- <td align="center" valign="top" width="14.28%"><a href="http://www.sullypat.com/"><img src="https://avatars.githubusercontent.com/u/99053093?v=4?s=100" width="100px;" alt="Patrick Sullivan"/><br /><sub><b>Patrick Sullivan</b></sub></a><br /><a href="#design-sullivanpj" title="Design">🎨</a> <a href="https://github.com/storm-software/powerlines/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/storm-software/powerlines/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/storm-software/powerlines/commits?author=sullivanpj" title="Tests">⚠️</a></td>
234
- <td align="center" valign="top" width="14.28%"><a href="https://tylerbenning.com/"><img src="https://avatars.githubusercontent.com/u/7265547?v=4?s=100" width="100px;" alt="Tyler Benning"/><br /><sub><b>Tyler Benning</b></sub></a><br /><a href="#design-tbenning" title="Design">🎨</a></td>
235
- <td align="center" valign="top" width="14.28%"><a href="http://stormsoftware.com"><img src="https://avatars.githubusercontent.com/u/149802440?v=4?s=100" width="100px;" alt="Stormie"/><br /><sub><b>Stormie</b></sub></a><br /><a href="#maintenance-stormie-bot" title="Maintenance">🚧</a></td>
236
- </tr>
237
- </tbody>
238
- <tfoot>
239
- <tr>
240
- <td align="center" size="13px" colspan="7">
241
- <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg" alt="All Contributors">
242
- <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
243
- </img>
244
- </td>
245
- </tr>
246
- </tfoot>
247
- </table>
248
-
249
- <!-- ALL-CONTRIBUTORS-LIST:END -->
250
-
251
- This project follows the
252
- [all-contributors](https://github.com/all-contributors/all-contributors)
253
- specification. Contributions of any kind welcome!
254
-
255
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
256
- <br />
257
-
258
- <hr />
259
- <br />
260
-
261
- <div align="center">
262
- <picture>
263
- <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp">
264
- <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light.webp">
265
- <img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp" width="100%" alt="Storm Software" />
266
- </picture>
267
- </div>
268
- <br />
269
-
270
- <div align="center">
271
- <a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
272
- </div>
273
-
274
- <div align="center">
275
- <b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D
276
- </div>
277
- <br />
278
-
279
- Storm Software is an open source software development organization and creator
280
- of Acidic, StormStack and StormCloud.
281
-
282
- Our mission is to make software development more accessible. Our ideal future is
283
- one where anyone can create software without years of prior development
284
- experience serving as a barrier to entry. We hope to achieve this via LLMs,
285
- Generative AI, and intuitive, high-level data modeling/programming languages.
286
-
287
- Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,
288
- receive release notifications, ask questions, and get involved.
289
-
290
- If this sounds interesting, and you would like to help us in creating the next
291
- generation of development tools, please reach out on our
292
- [website](https://stormsoftware.com/contact) or join our
293
- [Slack channel](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)!
294
-
295
- <br />
296
-
297
- <div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://public.storm-cdn.com/icon-fill.png" alt="Storm Software" width="200px"/></a></div>
298
- <br />
299
- <div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://public.storm-cdn.com/visit-us-text.svg" alt="Visit us at stormsoftware.com" height="90px"/></a></div>
300
-
301
- <br />
302
-
303
- <div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
304
- <br />
305
- <br />
306
-
307
-
308
- <!-- markdownlint-restore -->
309
- <!-- prettier-ignore-end -->
310
-
311
- <!-- END footer -->