@sd-jwt/core 0.6.2-next.2 → 0.6.2-next.3
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.
- package/README.md +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -32,11 +32,12 @@ Ensure you have Node.js installed as a prerequisite.
|
|
|
32
32
|
|
|
33
33
|
### Usage
|
|
34
34
|
|
|
35
|
-
The library can be used to create sd-jwt based credentials. To be compliant with the
|
|
35
|
+
The library can be used to create sd-jwt based credentials. To be compliant with the `sd-jwt-vc` standard, you can use the `@sd-jwt/sd-jwt-vc` that is implementing this spec.
|
|
36
36
|
If you want to use the pure sd-jwt class or implement your own sd-jwt credential approach, you can use this library.
|
|
37
37
|
|
|
38
38
|
### Dependencies
|
|
39
39
|
|
|
40
40
|
- @sd-jwt/decode
|
|
41
|
+
- @sd-jwt/present
|
|
41
42
|
- @sd-jwt/types
|
|
42
43
|
- @sd-jwt/utils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-jwt/core",
|
|
3
|
-
"version": "0.6.2-next.
|
|
3
|
+
"version": "0.6.2-next.3+30a3253",
|
|
4
4
|
"description": "sd-jwt draft 7 implementation in typescript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"license": "Apache-2.0",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@sd-jwt/crypto-nodejs": "0.6.2-next.
|
|
41
|
+
"@sd-jwt/crypto-nodejs": "0.6.2-next.3+30a3253"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@sd-jwt/decode": "0.6.2-next.
|
|
45
|
-
"@sd-jwt/present": "0.6.2-next.
|
|
46
|
-
"@sd-jwt/types": "0.6.2-next.
|
|
47
|
-
"@sd-jwt/utils": "0.6.2-next.
|
|
44
|
+
"@sd-jwt/decode": "0.6.2-next.3+30a3253",
|
|
45
|
+
"@sd-jwt/present": "0.6.2-next.3+30a3253",
|
|
46
|
+
"@sd-jwt/types": "0.6.2-next.3+30a3253",
|
|
47
|
+
"@sd-jwt/utils": "0.6.2-next.3+30a3253"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"esm"
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "30a3253d88e08ee106ede1e819d431e44499ab6b"
|
|
66
66
|
}
|