Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed May 6, 2024
1 parent b3d303d commit e2cc2f8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .dnt.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { dirname as pathDirname } from "node:path";
import { transform, type TransformOutput } from "DNT/transform";
import { copy as fsCopy } from "STD/fs/copy";
import { emptyDir } from "STD/fs/empty-dir";
import { ensureDir } from "STD/fs/ensure-dir";
import { walk as readDir, type WalkEntry } from "STD/fs/walk";
import { dirname as pathDirname } from "node:path";
const pathsMain: WalkEntry[] = await Array.fromAsync(readDir("."));
const transformResult: TransformOutput = await transform({
entryPoints: ["mod.ts"],
Expand Down
36 changes: 11 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,37 +16,23 @@ An ES (JavaScript & TypeScript) module to provide an easier symmetric crypto.
|:--|:--|:--|:--|
| **[Bun](https://bun.sh/)** >= v1.1.0 | [✔️ `node_modules`](https://jsr.io/docs/npm-compatibility) | [✔️ Specifier `npm:`](https://bun.sh/docs/runtime/autoimport) ||
| **[Cloudflare Workers](https://workers.cloudflare.com/)** | [✔️ `node_modules`](https://jsr.io/docs/with/cloudflare-workers) | [✔️ `node_modules`](https://docs.npmjs.com/using-npm-packages-in-your-projects) ||
| **[Deno](https://deno.land/)** >= v1.43.0 | [✔️ Specifier `jsr:`](https://jsr.io/docs/with/deno) | [✔️ Specifier `npm:`](https://docs.deno.com/runtime/manual/node/npm_specifiers) | [✔️](https://docs.deno.com/runtime/manual/basics/modules/#remote-import) |
| **[Deno](https://deno.land/)** >= v1.42.0 | [✔️ Specifier `jsr:`](https://jsr.io/docs/with/deno) | [✔️ Specifier `npm:`](https://docs.deno.com/runtime/manual/node/npm_specifiers) | [✔️](https://docs.deno.com/runtime/manual/basics/modules/#remote-import) |
| **[NodeJS](https://nodejs.org/)** >= v16.13.0 | [✔️ `node_modules`](https://jsr.io/docs/with/node) | [✔️ `node_modules`](https://docs.npmjs.com/using-npm-packages-in-your-projects) ||

> **ℹ️ Note**
>
> It is possible to use this module in other ways which not listed in here, however it is not officially supported.
> It is possible to use this module in other methods/ways which not listed in here, however it is not officially supported.
### #️⃣ Registries Identifier

<table><tbody align="left">
<tr>
<th>JSR</th>
<td width="100%">

```
@hugoalh/symmetric-crypto
```

</td>
</tr>
<tr>
<th>NPM</th>
<td width="100%">

```
@hugoalh/symmetric-crypto
```

</td>
</tr>
</tbody></table>
- **JSR:**
```
@hugoalh/symmetric-crypto
```
- **NPM:**
```
@hugoalh/symmetric-crypto
```

> **ℹ️ Note**
>
Expand All @@ -55,7 +41,7 @@ An ES (JavaScript & TypeScript) module to provide an easier symmetric crypto.
### #️⃣ Remote Import Paths

- Via GitHub Raw (Require Tag)
- **GitHub Raw:** (Require Tag)
```
https://raw.githubusercontent.com/hugoalh-studio/symmetric-crypto-es/${Tag}/mod.ts
```
Expand Down

0 comments on commit e2cc2f8

Please sign in to comment.