@sd-jwt/present 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 +6 -6
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%2Fpresent)
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 Present
9
+
10
+ ### About
11
+
12
+ Present 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/present
23
+
24
+ # using yarn
25
+ yarn add @sd-jwt/present
26
+
27
+ # using pnpm
28
+ pnpm install @sd-jwt/present
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/decode
40
+ - @sd-jwt/types
41
+ - @sd-jwt/utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-jwt/present",
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,12 +35,12 @@
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/decode": "0.3.2-next.63+fb2e533",
42
- "@sd-jwt/types": "0.3.2-next.63+fb2e533",
43
- "@sd-jwt/utils": "0.3.2-next.63+fb2e533"
41
+ "@sd-jwt/decode": "0.3.2-next.65+622c8dc",
42
+ "@sd-jwt/types": "0.3.2-next.65+622c8dc",
43
+ "@sd-jwt/utils": "0.3.2-next.65+622c8dc"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
@@ -58,5 +58,5 @@
58
58
  "esm"
59
59
  ]
60
60
  },
61
- "gitHead": "fb2e5336529e8ef8fb4bb17b5aba77202dd8e784"
61
+ "gitHead": "622c8dc2001c4ca6cc3e6da75f7516d4c70a73db"
62
62
  }