@storm-stack/unique-identifier
Advanced tools
Comparing version 1.17.2 to 1.18.0
@@ -1,178 +0,4 @@ | ||
/** | ||
* Generate a random CUID | ||
* | ||
* @example | ||
* ```typescript | ||
* | ||
* // Generate a random CUID | ||
* const id = cuid(); | ||
* ``` | ||
* | ||
* @returns A random CUID string | ||
*/ | ||
declare function cuid(): string; | ||
export { cuid } | ||
export { cuid as cuid_alias_1 } | ||
/** | ||
* A deconstructed snowflake and the details around it's creation. | ||
*/ | ||
declare interface DeconstructedSnowflake { | ||
/** | ||
* Snowflake deconstructed from | ||
*/ | ||
snowflake: SnowflakeResolvable; | ||
/** | ||
* The timestamp the snowflake was generated | ||
*/ | ||
timestamp: number; | ||
/** | ||
* The shard_id used when generating | ||
*/ | ||
shard_id: number; | ||
/** | ||
* The increment of this snowflake | ||
*/ | ||
sequence: number; | ||
/** | ||
* The 64Bit snowflake binary string | ||
*/ | ||
binary: string; | ||
} | ||
export { DeconstructedSnowflake } | ||
export { DeconstructedSnowflake as DeconstructedSnowflake_alias_1 } | ||
/** | ||
* Deconstruct a snowflake to its values using the `epoch`. | ||
* | ||
* @param snowflake - Snowflake to deconstruct | ||
* @returns Either the DeconstructedSnowflake object | ||
*/ | ||
declare function deconstructSnowflake(snowflake: SnowflakeResolvable): DeconstructedSnowflake; | ||
export { deconstructSnowflake } | ||
export { deconstructSnowflake as deconstructSnowflake_alias_1 } | ||
/** | ||
* Create a hash from a string. | ||
* | ||
* @param input - String to hash | ||
* @returns The hashed string | ||
*/ | ||
declare function hash(input: string | object): string; | ||
export { hash } | ||
export { hash as hash_alias_1 } | ||
/** | ||
* Options passed to the `generate` function to create a snowflake identifier. | ||
*/ | ||
declare interface ISnowflakeGeneratorOptions { | ||
/** | ||
* The id of the shard running this generator. | ||
* | ||
* @default 1 | ||
*/ | ||
shardId: number; | ||
/** | ||
* The epoch to use for the snowflake. | ||
* | ||
* @remarks | ||
* This is the time in milliseconds since 1 January 1970 00:00:00 UTC. | ||
* | ||
* @default 1420070400000 (Date.UTC(1970, 0, 1).valueOf()) | ||
*/ | ||
epoch: number; | ||
/** | ||
* The current timestamp to use for the snowflake. | ||
* | ||
* @default Date.now() | ||
*/ | ||
timestamp: number | Date; | ||
} | ||
export { ISnowflakeGeneratorOptions } | ||
export { ISnowflakeGeneratorOptions as ISnowflakeGeneratorOptions_alias_1 } | ||
/** | ||
* Check if a snowflake string Id is valid. | ||
* | ||
* @param snowflake - Snowflake to check | ||
* @returns Whether the snowflake is valid | ||
*/ | ||
declare function isValidSnowflake(snowflake: string): boolean; | ||
export { isValidSnowflake } | ||
export { isValidSnowflake as isValidSnowflake_alias_1 } | ||
/** | ||
* Generate a random integer | ||
* | ||
* @param maximum The maximum value (inclusive) | ||
* @param minimum The minimum value (inclusive) | ||
* @returns A random integer | ||
*/ | ||
declare const randomInteger: (maximum: number, minimum?: number) => number; | ||
export { randomInteger } | ||
export { randomInteger as randomInteger_alias_1 } | ||
/** | ||
* Generate a random letter | ||
* | ||
* @param random The random number generator | ||
* @returns A random letter | ||
*/ | ||
declare const randomLetter: (random?: () => number) => string | undefined; | ||
export { randomLetter } | ||
export { randomLetter as randomLetter_alias_1 } | ||
/** | ||
* Generate a snowflake identifier. | ||
* | ||
* @remarks | ||
* Snowflakes are 64-bit unsigned integers that are roughly time-ordered. | ||
* | ||
* @example | ||
* ```typescript | ||
* | ||
* // Generate a snowflake with the default options | ||
* const id1 = snowflake(); | ||
* | ||
* // Generate a snowflake with a custom shard id | ||
* const id2 = snowflake({ shardId: 2 }); | ||
* | ||
* // Generate a snowflake with a custom shard id and timestamp | ||
* const id3 = snowflake({ shardId: 3, timestamp: new Date("2021-01-01") }); | ||
* | ||
* ``` | ||
* | ||
* @param timestamp - The timestamp to use | ||
* @param shardId - The shard id to use | ||
* @returns A snowflake | ||
*/ | ||
declare function snowflake({ shardId, epoch, timestamp }?: ISnowflakeGeneratorOptions): string; | ||
export { snowflake } | ||
export { snowflake as snowflake_alias_1 } | ||
/** | ||
* Resolvable value types for a valid Snowflake: | ||
* * string | ||
* * number | ||
* * bigint | ||
* | ||
* @type {SnowflakeResolvable} | ||
*/ | ||
declare type SnowflakeResolvable = string; | ||
export { SnowflakeResolvable } | ||
export { SnowflakeResolvable as SnowflakeResolvable_alias_1 } | ||
declare const uuid: { | ||
(value: string | any[] | ArrayLike<number>, namespace: string | any[] | ArrayLike<number>, buf: { | ||
[x: string]: number | undefined; | ||
}, offset: number): string | { | ||
[x: string]: number | undefined; | ||
}; | ||
name: string; | ||
DNS: string; | ||
URL: string; | ||
}; | ||
export { uuid } | ||
export { uuid as uuid_alias_1 } | ||
export { } | ||
export * from "./cuid"; | ||
export * from "./random"; | ||
export * from "./snowflake"; | ||
export * from "./uuid"; |
102
package.json
{ | ||
"name": "@storm-stack/unique-identifier", | ||
"version": "1.17.2", | ||
"private": false, | ||
"version": "1.18.0", | ||
"type": "module", | ||
"description": "This package provides a simple way to generate various types of unique identifiers.", | ||
@@ -11,24 +11,9 @@ "repository": { | ||
}, | ||
"type": "module", | ||
"dependencies": { "@noble/hashes": "1.3.2" }, | ||
"publishConfig": { "access": "public" }, | ||
"exports": { | ||
".": { | ||
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, | ||
"require": { | ||
"types": "./dist/index.d.cts", | ||
"default": "./dist/index.cjs" | ||
}, | ||
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } | ||
}, | ||
"./package.json": "./package.json", | ||
"./index": { | ||
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, | ||
"require": { | ||
"types": "./dist/index.d.cts", | ||
"default": "./dist/index.cjs" | ||
}, | ||
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } | ||
} | ||
"private": false, | ||
"dependencies": { | ||
"@noble/hashes": "1.5.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"sideEffects": false, | ||
@@ -39,20 +24,11 @@ "funding": { | ||
}, | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"typescript": { "definition": "dist/index.d.ts" }, | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.js", | ||
"browser": "dist/index.global.js", | ||
"files": ["dist/**/*"], | ||
"homepage": "https://stormsoftware.org", | ||
"files": [ | ||
"dist/**/*" | ||
], | ||
"homepage": "https://stormsoftware.com", | ||
"bugs": { | ||
"url": "https://stormsoftware.org/support", | ||
"email": "support@stormsoftware.org" | ||
"url": "https://stormsoftware.com/support", | ||
"email": "support@stormsoftware.com" | ||
}, | ||
"author": { | ||
"name": "Storm Software", | ||
"email": "contact@stormsoftware.org", | ||
"url": "https://stormsoftware.org" | ||
}, | ||
"license": "Apache License 2.0", | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
@@ -67,12 +43,48 @@ "storm-stack", | ||
"acidic-model", | ||
"impact", | ||
"cyclone-ui", | ||
"nextjs", | ||
"prisma", | ||
"zenstack", | ||
"hasura", | ||
"strapi", | ||
"graphql", | ||
"sullivanpj", | ||
"monorepo" | ||
] | ||
} | ||
], | ||
"author": { | ||
"name": "Storm Software", | ||
"email": "contact@stormsoftware.com", | ||
"url": "https://stormsoftware.com" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Storm Software", | ||
"email": "contact@stormsoftware.com", | ||
"url": "https://stormsoftware.com" | ||
} | ||
], | ||
"exports": { | ||
"./uuid": { | ||
"import": "./dist/uuid.mjs", | ||
"require": "./dist/uuid.cjs", | ||
"types": "./dist/uuid.d.ts" | ||
}, | ||
"./snowflake": { | ||
"import": "./dist/snowflake.mjs", | ||
"require": "./dist/snowflake.cjs", | ||
"types": "./dist/snowflake.d.ts" | ||
}, | ||
"./random": { | ||
"import": "./dist/random.mjs", | ||
"require": "./dist/random.cjs", | ||
"types": "./dist/random.d.ts" | ||
}, | ||
"./index": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./cuid": { | ||
"import": "./dist/cuid.mjs", | ||
"require": "./dist/cuid.cjs", | ||
"types": "./dist/cuid.d.ts" | ||
} | ||
} | ||
} |
203
README.md
@@ -6,24 +6,62 @@ <!-- START header --> | ||
<div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/storm-banner.gif" width="100%" altText="Storm Software" /></div> | ||
<div align="center"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/storm-banner.gif" width="100%" alt="Storm Software" /></div> | ||
<br /> | ||
<br /> | ||
<div align="center"> | ||
<a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/contact" target="_blank">Contact</a> | <a href="https://github.com/storm-software/storm-stack" target="_blank">Repository</a> | <a href="https://storm-software.github.io/storm-stack/" target="_blank">Documentation</a> | <a href="https://github.com/storm-software/storm-stack/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | <a href="https://github.com/storm-software/storm-stack/issues/new?assignees=&labels=enhancement&template=feature-request.yml&title=Feature Request%3A+">Request a Feature</a> | <a href="https://github.com/storm-software/storm-stack/discussions">Ask a Question</a> | ||
<b> | ||
<a href="https://stormsoftware.com" target="_blank">Website</a> • | ||
<a href="https://github.com/storm-software/storm-stack" target="_blank">GitHub</a> • | ||
<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> • | ||
<a href="https://github.com/storm-software/storm-stack/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a> | ||
</b> | ||
</div> | ||
<br /> | ||
This package is part of the <b>⚡storm-stack</b> monorepo. The storm-stack packages include CLI utility applications, tools, and various libraries used to create modern, scalable web applications. | ||
This package is part of the ⚡<b>Storm Stack</b> monorepo. Storm Stack packages include CLI utility applications, tools, and various libraries used to create modern, scalable web applications. | ||
<br /> | ||
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br /> | ||
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br /> | ||
[![Version](https://img.shields.io/badge/version-1.16.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/) | ||
[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/) [![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/) [![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/) ![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) [![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/) ![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) | ||
[![Version](https://img.shields.io/badge/version-1.18.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/) [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/) [![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/) [![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/) ![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) [![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/) ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-stack/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6) | ||
> [!IMPORTANT] | ||
<!-- prettier-ignore-start --> | ||
<!-- markdownlint-disable --> | ||
> [!IMPORTANT] | ||
> 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 availible 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. | ||
<!-- markdownlint-restore --> | ||
<!-- prettier-ignore-end --> | ||
<div align="center"> | ||
<b>Be sure to ⭐ this repository on <a href="https://github.com/storm-software/storm-stack" target="_blank">GitHub</a> so you can keep up to date on any daily progress!</b> | ||
</div> | ||
<br /> | ||
<!-- START doctoc --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
## Table of Contents | ||
- [Storm Unique Identifier Package](#storm-unique-identifier-package) | ||
- [Table of Contents](#table-of-contents) | ||
- [Installing](#installing) | ||
- [Available Identifiers](#available-identifiers) | ||
- [Reduced Package Size](#reduced-package-size) | ||
- [Development](#development) | ||
- [Building](#building) | ||
- [Running unit tests](#running-unit-tests) | ||
- [Linting](#linting) | ||
- [Storm Workspaces](#storm-workspaces) | ||
- [Roadmap](#roadmap) | ||
- [Support](#support) | ||
- [License](#license) | ||
- [Changelog](#changelog) | ||
- [Contributing](#contributing) | ||
- [Contributors](#contributors) | ||
<!-- END doctoc --> | ||
<br /> | ||
<!-- markdownlint-restore --> | ||
@@ -36,5 +74,26 @@ <!-- prettier-ignore-end --> | ||
This package provides a simple way to generate various types of unique identifiers. It is designed to be used in a browser or NodeJS environment. | ||
This package provides a simple way to generate various types of unique | ||
identifiers. It is designed to be used in a browser or NodeJS environment. | ||
<!-- START doctoc --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
## Table of Contents | ||
- [Installing](#installing) | ||
- [Available Identifiers](#available-identifiers) | ||
- [Reduced Package Size](#reduced-package-size) | ||
- [Development](#development) | ||
- [Building](#building) | ||
- [Running unit tests](#running-unit-tests) | ||
- [Linting](#linting) | ||
- [Storm Workspaces](#storm-workspaces) | ||
- [Roadmap](#roadmap) | ||
- [Support](#support) | ||
- [License](#license) | ||
- [Changelog](#changelog) | ||
- [Contributing](#contributing) | ||
- [Contributors](#contributors) | ||
- [💻 Visit stormsoftware.org to stay up to date with this developer](#-visit-stormsoftwareorg-to-stay-up-to-date-with-this-developer) | ||
<!-- END doctoc --> | ||
@@ -83,7 +142,11 @@ | ||
This project uses [tsup](https://tsup.egoist.dev/) to package the source code due to its ability to remove unused code and ship smaller javascript files thanks to code splitting. This helps to greatly reduce the size of the package and to make it easier to use in other projects. | ||
This project uses [tsup](https://tsup.egoist.dev/) to package the source code | ||
due to its ability to remove unused code and ship smaller javascript files | ||
thanks to code splitting. This helps to greatly reduce the size of the package | ||
and to make it easier to use in other projects. | ||
## Development | ||
This project is built using [Nx](https://nx.dev). As a result, many of the usual commands are available to assist in development. | ||
This project is built using [Nx](https://nx.dev). As a result, many of the usual | ||
commands are available to assist in development. | ||
@@ -96,7 +159,9 @@ ### Building | ||
Run `nx test unique-identifier` to execute the unit tests via [Jest](https://jestjs.io). | ||
Run `nx test unique-identifier` to execute the unit tests via | ||
[Jest](https://jestjs.io). | ||
### Linting | ||
Run `nx lint unique-identifier` to run [ESLint](https://eslint.org/) on the package. | ||
Run `nx lint unique-identifier` to run [ESLint](https://eslint.org/) on the | ||
package. | ||
@@ -110,12 +175,26 @@ <!-- START footer --> | ||
Storm workspaces are built using <a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable. | ||
Storm workspaces are built using | ||
<a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools | ||
for monorepos, which helps you develop like Google, Facebook, and Microsoft. | ||
Building on top of Nx, the Open System provides a set of tools and patterns that | ||
help you scale your monorepo to many teams while keeping the codebase | ||
maintainable. | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## Roadmap | ||
See the [open issues](https://github.com/storm-software/storm-stack/issues) for a list of proposed features (and known issues). | ||
See the [open issues](https://github.com/storm-software/storm-stack/issues) for a | ||
list of proposed features (and known issues). | ||
- [Top Feature Requests](https://github.com/storm-software/storm-stack/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction) | ||
- [Top Bugs](https://github.com/storm-software/storm-stack/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) (Add your votes using the 👍 reaction) | ||
- [Top Feature Requests](https://github.com/storm-software/storm-stack/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc) | ||
(Add your votes using the 👍 reaction) | ||
- [Top Bugs](https://github.com/storm-software/storm-stack/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc) | ||
(Add your votes using the 👍 reaction) | ||
- [Newest Bugs](https://github.com/storm-software/storm-stack/issues?q=is%3Aopen+is%3Aissue+label%3Abug) | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## Support | ||
@@ -125,19 +204,35 @@ | ||
- [Contact](https://stormsoftware.org/contact) | ||
- [Contact](https://stormsoftware.com/contact) | ||
- [GitHub discussions](https://github.com/storm-software/storm-stack/discussions) | ||
- <support@stormsoftware.org> | ||
- <support@stormsoftware.com> | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## License | ||
This project is licensed under the **Apache License 2.0**. Feel free to edit and distribute this template as you like. | ||
This project is licensed under the **Apache License 2.0**. Feel free to edit and | ||
distribute this template as you like. | ||
See [LICENSE](LICENSE) for more information. | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## Changelog | ||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md) file | ||
This project adheres to | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along | ||
with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md) | ||
file | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## Contributing | ||
First off, thanks for taking the time to contribute! Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are **greatly appreciated**. | ||
First off, thanks for taking the time to contribute! Contributions are what | ||
makes the open-source community such an amazing place to learn, inspire, and | ||
create. Any contributions you make will benefit everybody else and are **greatly | ||
appreciated**. | ||
@@ -147,3 +242,4 @@ Please try to create bug reports that are: | ||
- _Reproducible._ Include steps to reproduce the problem. | ||
- _Specific._ Include as much detail as possible: which version, what environment, etc. | ||
- _Specific._ Include as much detail as possible: which version, what | ||
environment, etc. | ||
- _Unique._ Do not duplicate existing opened issues. | ||
@@ -154,7 +250,13 @@ - _Scoped to a Single Bug._ One bug per report. | ||
You can use [markdownlint-cli](https://github.com/storm-software/storm-stack/markdownlint-cli) to check for common markdown style inconsistency. | ||
You can use | ||
[markdownlint-cli](https://github.com/storm-software/storm-stack/markdownlint-cli) | ||
to check for common markdown style inconsistency. | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
## Contributors | ||
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): | ||
Thanks goes to these wonderful people | ||
([emoji key](https://allcontributors.org/docs/en/emoji-key)): | ||
@@ -166,5 +268,5 @@ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> | ||
<tr> | ||
<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/storm-ops/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/storm-software/storm-ops/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/storm-software/storm-ops/commits?author=sullivanpj" title="Tests">⚠️</a></td> | ||
<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/storm-stack/commits?author=sullivanpj" title="Code">💻</a> <a href="#tool-sullivanpj" title="Tools">🔧</a> <a href="https://github.com/storm-software/storm-stack/commits?author=sullivanpj" title="Documentation">📖</a> <a href="https://github.com/storm-software/storm-stack/commits?author=sullivanpj" title="Tests">⚠️</a></td> | ||
<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> | ||
<td align="center" valign="top" width="14.28%"><a href="http://stormsoftware.org"><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> | ||
<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> | ||
</tr> | ||
@@ -175,3 +277,3 @@ </tbody> | ||
<td align="center" size="13px" colspan="7"> | ||
<img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg"> | ||
<img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg" alt="All Contributors"> | ||
<a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a> | ||
@@ -186,24 +288,55 @@ </img> | ||
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! | ||
This project follows the | ||
[all-contributors](https://github.com/all-contributors/all-contributors) | ||
specification. Contributions of any kind welcome! | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
<hr /> | ||
<br /> | ||
<div align="center"> | ||
<img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" altText="Storm Software" /> | ||
<img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/logo-banner.png" width="100%" alt="Storm Software" /> | ||
</div> | ||
<br /> | ||
<div align="center"> | ||
<a href="https://stormsoftware.org" target="_blank">Website</a> | <a href="https://stormsoftware.org/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> | ||
<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> | ||
</div> | ||
<div align="center"> | ||
<p><b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D</p> | ||
<b>Fingerprint:</b> 1BD2 7192 7770 2549 F4C9 F238 E6AD C420 DA5C 4C2D | ||
</div> | ||
<br /> | ||
Storm Software is an open source software development organization and creator of Acidic, StormStack and StormCloud. Our mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languagues. | ||
Storm Software is an open source software development organization and creator | ||
of Acidic, StormStack and StormCloud. | ||
If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our website! | ||
Our mission is to make software development more accessible. Our ideal future is | ||
one where anyone can create software without years of prior development | ||
experience serving as a barrier to entry. We hope to achieve this via LLMs, | ||
Generative AI, and intuitive, high-level data modeling/programming languages. | ||
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br /><br /> | ||
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, | ||
receive release notifications, ask questions, and get involved. | ||
If this sounds interesting, and you would like to help us in creating the next | ||
generation of development tools, please reach out on our | ||
[website](https://stormsoftware.com/contact) or join our | ||
[Slack channel](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)! | ||
<br /> | ||
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-fill.png" alt="Storm Software" width="200px"/></a></div> | ||
<br /> | ||
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/visit-us-text.svg" alt="Visit us at stormsoftware.com" height="90px"/></a></div> | ||
<br /> | ||
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div> | ||
<br /> | ||
<br /> | ||
<!-- markdownlint-restore --> | ||
@@ -210,0 +343,0 @@ <!-- prettier-ignore-end --> |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
18
0
0
335
42863
442
1
+ Added@noble/hashes@1.5.0(transitive)
- Removed@noble/hashes@1.3.2(transitive)
Updated@noble/hashes@1.5.0