@sphereon/ssi-sdk-ext.jwt-service 0.28.1-feature.oyd.cmsm.improv.21 → 0.28.1-next.54
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/dist/index.cjs +37739 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +278 -0
- package/dist/index.d.ts +273 -8
- package/dist/index.js +37709 -30
- package/dist/index.js.map +1 -1
- package/package.json +38 -23
- package/plugin.schema.json +35838 -4811
- package/src/agent/JwtService.ts +21 -18
- package/src/functions/JWE.ts +18 -14
- package/src/functions/index.ts +36 -21
- package/src/types/IJwtService.ts +4 -4
- package/dist/agent/JwtService.d.ts +0 -17
- package/dist/agent/JwtService.d.ts.map +0 -1
- package/dist/agent/JwtService.js +0 -137
- package/dist/agent/JwtService.js.map +0 -1
- package/dist/functions/JWE.d.ts +0 -75
- package/dist/functions/JWE.d.ts.map +0 -1
- package/dist/functions/JWE.js +0 -280
- package/dist/functions/JWE.js.map +0 -1
- package/dist/functions/index.d.ts +0 -35
- package/dist/functions/index.d.ts.map +0 -1
- package/dist/functions/index.js +0 -385
- package/dist/functions/index.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/types/IJwtService.d.ts +0 -222
- package/dist/types/IJwtService.d.ts.map +0 -1
- package/dist/types/IJwtService.js +0 -75
- package/dist/types/IJwtService.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,40 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk-ext.jwt-service",
|
|
3
|
-
"version": "0.28.1-
|
|
4
|
-
"source": "src/index.ts",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "0.28.1-next.54+59fa071",
|
|
4
|
+
"source": "./src/index.ts",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"react-native": "./dist/index.js",
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
7
20
|
"veramo": {
|
|
8
21
|
"pluginInterfaces": {
|
|
9
22
|
"IJwtService": "./src/types/IJwtService.ts"
|
|
10
23
|
}
|
|
11
24
|
},
|
|
12
25
|
"scripts": {
|
|
13
|
-
"build": "
|
|
14
|
-
"build:clean": "tsc --build --clean && tsc --build",
|
|
26
|
+
"build": "tsup --config ../../tsup.config.ts --tsconfig ../../tsconfig.tsup.json && sphereon dev generate-plugin-schema",
|
|
15
27
|
"generate-plugin-schema": "sphereon dev generate-plugin-schema"
|
|
16
28
|
},
|
|
17
29
|
"dependencies": {
|
|
18
|
-
"@sphereon/ssi-sdk-ext.did-utils": "0.28.1-
|
|
19
|
-
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.28.1-
|
|
20
|
-
"@sphereon/ssi-sdk-ext.key-manager": "0.28.1-
|
|
21
|
-
"@sphereon/ssi-sdk-ext.key-utils": "0.28.1-
|
|
22
|
-
"@sphereon/ssi-sdk-ext.x509-utils": "0.28.1-
|
|
23
|
-
"@sphereon/ssi-sdk.agent-config": "0.
|
|
24
|
-
"@sphereon/ssi-types": "0.
|
|
30
|
+
"@sphereon/ssi-sdk-ext.did-utils": "0.28.1-next.54+59fa071",
|
|
31
|
+
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.28.1-next.54+59fa071",
|
|
32
|
+
"@sphereon/ssi-sdk-ext.key-manager": "0.28.1-next.54+59fa071",
|
|
33
|
+
"@sphereon/ssi-sdk-ext.key-utils": "0.28.1-next.54+59fa071",
|
|
34
|
+
"@sphereon/ssi-sdk-ext.x509-utils": "0.28.1-next.54+59fa071",
|
|
35
|
+
"@sphereon/ssi-sdk.agent-config": "0.33.1-next.73",
|
|
36
|
+
"@sphereon/ssi-types": "0.33.1-next.73",
|
|
25
37
|
"@stablelib/random": "^1.0.2",
|
|
26
38
|
"@veramo/core": "4.2.0",
|
|
27
39
|
"@veramo/utils": "4.2.0",
|
|
28
40
|
"debug": "^4.3.4",
|
|
29
|
-
"jose": "^5.
|
|
41
|
+
"jose": "^5.10.0",
|
|
30
42
|
"jwt-decode": "^4.0.0",
|
|
31
|
-
"uint8arrays": "
|
|
43
|
+
"uint8arrays": "3.1.1"
|
|
32
44
|
},
|
|
33
45
|
"devDependencies": {
|
|
34
|
-
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.28.1-
|
|
35
|
-
"@sphereon/ssi-sdk-ext.did-
|
|
36
|
-
"@sphereon/ssi-sdk-ext.
|
|
37
|
-
"@sphereon/ssi-sdk.
|
|
46
|
+
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.28.1-next.54+59fa071",
|
|
47
|
+
"@sphereon/ssi-sdk-ext.did-provider-web": "0.28.1-next.54+59fa071",
|
|
48
|
+
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.28.1-next.54+59fa071",
|
|
49
|
+
"@sphereon/ssi-sdk-ext.kms-local": "0.28.1-next.54+59fa071",
|
|
50
|
+
"@sphereon/ssi-sdk.dev": "0.33.0",
|
|
38
51
|
"@veramo/data-store": "4.2.0",
|
|
39
52
|
"@veramo/did-manager": "4.2.0",
|
|
40
53
|
"@veramo/did-resolver": "4.2.0",
|
|
@@ -43,12 +56,14 @@
|
|
|
43
56
|
"@veramo/remote-client": "4.2.0",
|
|
44
57
|
"@veramo/remote-server": "4.2.0",
|
|
45
58
|
"did-resolver": "^4.1.0",
|
|
59
|
+
"express": "^4.21.2",
|
|
46
60
|
"js-crypto-key-utils": "^1.0.7",
|
|
47
|
-
"typeorm": "0.3.20"
|
|
61
|
+
"typeorm": "0.3.20",
|
|
62
|
+
"web-did-resolver": "^2.0.30"
|
|
48
63
|
},
|
|
49
64
|
"files": [
|
|
50
|
-
"dist
|
|
51
|
-
"src
|
|
65
|
+
"dist",
|
|
66
|
+
"src",
|
|
52
67
|
"plugin.schema.json",
|
|
53
68
|
"README.md",
|
|
54
69
|
"LICENSE"
|
|
@@ -68,5 +83,5 @@
|
|
|
68
83
|
"X.509 Certificates",
|
|
69
84
|
"ARF"
|
|
70
85
|
],
|
|
71
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "59fa0719e8d0094164182c3f2a31a5dc8954bade"
|
|
72
87
|
}
|