@xylabs/crypto 5.0.95 → 5.0.96

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 +41 -61
  2. package/package.json +7 -9
package/README.md CHANGED
@@ -1,40 +1,54 @@
1
1
  # @xylabs/crypto
2
2
 
3
- [![logo][]](https://xylabs.com)
3
+ [![npm][npm-badge]][npm-link]
4
+ [![license][license-badge]][license-link]
4
5
 
5
- [![main-build][]][main-build-link]
6
- [![npm-badge][]][npm-link]
7
- [![npm-downloads-badge][]][npm-link]
8
- [![jsdelivr-badge][]][jsdelivr-link]
9
- [![npm-license-badge][]](LICENSE)
10
- [![codacy-badge][]][codacy-link]
11
- [![codeclimate-badge][]][codeclimate-link]
12
- [![snyk-badge][]][snyk-link]
13
- [![socket-badge][]][socket-link]
6
+ > Base functionality used throughout XY Labs TypeScript/JavaScript libraries
14
7
 
8
+ ## Install
15
9
 
16
- Base functionality used throughout XY Labs TypeScript/JavaScript libraries
10
+ Using npm:
17
11
 
12
+ ```sh
13
+ npm install {{name}}
14
+ ```
18
15
 
16
+ Using yarn:
19
17
 
20
- ## Reference
18
+ ```sh
19
+ yarn add {{name}}
20
+ ```
21
21
 
22
- **@xylabs/crypto**
22
+ Using pnpm:
23
23
 
24
- ***
24
+ ```sh
25
+ pnpm add {{name}}
26
+ ```
27
+
28
+ Using bun:
29
+
30
+ ```sh
31
+ bun add {{name}}
32
+ ```
33
+
34
+
35
+ ## License
36
+
37
+ See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
38
+
39
+ ## Reference
25
40
 
26
- ## Modules
41
+ ### packages
27
42
 
28
- | Module | Description |
29
- | ------ | ------ |
30
- | [index-browser](#index-browser/README) | - |
31
- | [index-node](#index-node/README) | - |
43
+ ### crypto
32
44
 
33
- ### index-browser
45
+ ### .temp-typedoc
34
46
 
35
- ### functions
47
+ ### index-browser
36
48
 
37
- ### <a id="cryptoPolyfill"></a>cryptoPolyfill
49
+ ### functions
50
+
51
+ ### <a id="cryptoPolyfill"></a>cryptoPolyfill
38
52
 
39
53
  [**@xylabs/crypto**](#../../README)
40
54
 
@@ -50,11 +64,11 @@ Polyfills `globalThis.Crypto` with the crypto-js implementation for browser envi
50
64
 
51
65
  `void`
52
66
 
53
- ### index-node
67
+ ### index-node
54
68
 
55
- ### functions
69
+ ### functions
56
70
 
57
- ### <a id="cryptoPolyfill"></a>cryptoPolyfill
71
+ ### <a id="cryptoPolyfill"></a>cryptoPolyfill
58
72
 
59
73
  [**@xylabs/crypto**](#../../README)
60
74
 
@@ -71,41 +85,7 @@ No-op polyfill for Node.js, where the crypto module is already available globall
71
85
  `void`
72
86
 
73
87
 
74
- Part of [sdk-js](https://www.npmjs.com/package/@xyo-network/sdk-js)
75
-
76
- ## Maintainers
77
-
78
- - [Arie Trouw](https://github.com/arietrouw) ([arietrouw.com](https://arietrouw.com))
79
- - [Matt Jones](https://github.com/jonesmac)
80
- - [Joel Carter](https://github.com/JoelBCarter)
81
- - [Jordan Trouw](https://github.com/jordantrouw)
82
-
83
- ## License
84
-
85
- > See the [LICENSE](LICENSE) file for license details
86
-
87
- ## Credits
88
-
89
- [Made with 🔥 and ❄️ by XYLabs](https://xylabs.com)
90
-
91
- [logo]: https://cdn.xy.company/img/brand/XYPersistentCompany_Logo_Icon_Colored.svg
92
-
93
- [main-build]: https://github.com/xylabs/sdk-js/actions/workflows/build.yml/badge.svg
94
- [main-build-link]: https://github.com/xylabs/sdk-js/actions/workflows/build.yml
95
88
  [npm-badge]: https://img.shields.io/npm/v/@xylabs/crypto.svg
96
89
  [npm-link]: https://www.npmjs.com/package/@xylabs/crypto
97
- [codacy-badge]: https://app.codacy.com/project/badge/Grade/c8e15e14f37741c18cfb47ac7245c698
98
- [codacy-link]: https://www.codacy.com/gh/xylabs/sdk-js/dashboard?utm_source=github.com&utm_medium=referral&utm_content=xylabs/sdk-js&utm_campaign=Badge_Grade
99
- [codeclimate-badge]: https://api.codeclimate.com/v1/badges/c5eb068f806f0b047ea7/maintainability
100
- [codeclimate-link]: https://codeclimate.com/github/xylabs/sdk-js/maintainability
101
- [snyk-badge]: https://snyk.io/test/github/xylabs/sdk-js/badge.svg?targetFile=package.json
102
- [snyk-link]: https://snyk.io/test/github/xylabs/sdk-js?targetFile=package.json
103
-
104
- [npm-downloads-badge]: https://img.shields.io/npm/dw/@xylabs/crypto
105
- [npm-license-badge]: https://img.shields.io/npm/l/@xylabs/crypto
106
-
107
- [jsdelivr-badge]: https://data.jsdelivr.com/v1/package/npm/@xylabs/crypto/badge
108
- [jsdelivr-link]: https://www.jsdelivr.com/package/npm/@xylabs/crypto
109
-
110
- [socket-badge]: https://socket.dev/api/badge/npm/package/@xylabs/crypto
111
- [socket-link]: https://socket.dev/npm/package/@xylabs/crypto
90
+ [license-badge]: https://img.shields.io/npm/l/@xylabs/crypto.svg
91
+ [license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/crypto",
3
- "version": "5.0.95",
3
+ "version": "5.0.96",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "crypto",
@@ -33,12 +33,10 @@
33
33
  "types": "./dist/browser/index-browser.d.ts",
34
34
  "default": "./dist/browser/index-browser.mjs"
35
35
  },
36
- "import": "./dist/node/index-node.mjs",
37
36
  "default": "./dist/node/index-node.mjs"
38
37
  },
39
38
  "./package.json": "./package.json"
40
39
  },
41
- "types": "./dist/node/index-node.d.ts",
42
40
  "files": [
43
41
  "dist",
44
42
  "!**/*.bench.*",
@@ -51,14 +49,14 @@
51
49
  },
52
50
  "devDependencies": {
53
51
  "@types/crypto-js": "~4.2.2",
54
- "@types/node": "^25.5.2",
55
- "@xylabs/ts-scripts-common": "~7.8.4",
56
- "@xylabs/ts-scripts-pnpm": "~7.8.4",
57
- "@xylabs/tsconfig-dom": "~7.8.4",
52
+ "@types/node": "^25.6.0",
53
+ "@xylabs/toolchain": "~7.10.4",
54
+ "@xylabs/tsconfig": "~7.10.4",
55
+ "@xylabs/tsconfig-dom": "~7.10.4",
58
56
  "esbuild": "^0.28.0",
59
57
  "typescript": "^5",
60
- "vite": "^8.0.5",
61
- "vitest": "^4.1.2"
58
+ "vite": "^8.0.8",
59
+ "vitest": "^4.1.4"
62
60
  },
63
61
  "engines": {
64
62
  "node": ">=18"