@sd-jwt/utils 0.3.2-next.63 → 0.3.2-next.65

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 -0
  2. package/package.json +4 -4
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ ![License](https://img.shields.io/github/license/openwallet-foundation-labs/sd-jwt-js.svg)
2
+ ![NPM](https://img.shields.io/npm/v/%40sd-jwt%2Futils)
3
+ ![Release](https://img.shields.io/github/v/release/openwallet-foundation-labs/sd-jwt-js)
4
+ ![Stars](https://img.shields.io/github/stars/openwallet-foundation-labs/sd-jwt-js)
5
+
6
+ # SD-JWT Implementation in JavaScript (TypeScript)
7
+
8
+ ## SD-JWT Utils
9
+
10
+ ### About
11
+
12
+ Utility functions for SD JWT
13
+
14
+ Check the detail description in our github [repo](https://github.com/openwallet-foundation-labs/sd-jwt-js).
15
+
16
+ ### Installation
17
+
18
+ To install this project, run the following command:
19
+
20
+ ```bash
21
+ # using npm
22
+ npm install @sd-jwt/utils
23
+
24
+ # using yarn
25
+ yarn add @sd-jwt/utils
26
+
27
+ # using pnpm
28
+ pnpm install @sd-jwt/utils
29
+ ```
30
+
31
+ Ensure you have Node.js installed as a prerequisite.
32
+
33
+ ### Usage
34
+
35
+ Check out more details in our [documentation](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/docs) or [examples](https://github.com/openwallet-foundation-labs/sd-jwt-js/tree/next/examples)
36
+
37
+ ### Dependencies
38
+
39
+ - @sd-jwt/types
40
+ - "js-base64": "^3.7.6"
41
+ - pure js base64 implementation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-jwt/utils",
3
- "version": "0.3.2-next.63+fb2e533",
3
+ "version": "0.3.2-next.65+622c8dc",
4
4
  "description": "sd-jwt draft 7 implementation in typescript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -35,10 +35,10 @@
35
35
  },
36
36
  "license": "Apache-2.0",
37
37
  "devDependencies": {
38
- "@sd-jwt/crypto-nodejs": "0.3.2-next.63+fb2e533"
38
+ "@sd-jwt/crypto-nodejs": "0.3.2-next.65+622c8dc"
39
39
  },
40
40
  "dependencies": {
41
- "@sd-jwt/types": "0.3.2-next.63+fb2e533",
41
+ "@sd-jwt/types": "0.3.2-next.65+622c8dc",
42
42
  "js-base64": "^3.7.6"
43
43
  },
44
44
  "publishConfig": {
@@ -57,5 +57,5 @@
57
57
  "esm"
58
58
  ]
59
59
  },
60
- "gitHead": "fb2e5336529e8ef8fb4bb17b5aba77202dd8e784"
60
+ "gitHead": "622c8dc2001c4ca6cc3e6da75f7516d4c70a73db"
61
61
  }