Skip to content

Commit 7b9c352

Browse files
committed
chore: update deps
1 parent e54071c commit 7b9c352

8 files changed

Lines changed: 3611 additions & 3488 deletions

File tree

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@
3232
"printWidth": 150
3333
},
3434
"devDependencies": {
35-
"@types/debug": "^4.1.8",
36-
"@types/jest": "^29.5.3",
37-
"@types/node": "^18.17.3",
35+
"@types/debug": "^4.1.12",
36+
"@types/jest": "^29.5.12",
37+
"@types/node": "^18.19.39",
3838
"codecov": "^3.8.3",
39-
"jest": "^29.6.2",
40-
"lerna": "^8.1.2",
39+
"jest": "^29.7.0",
40+
"lerna": "^8.1.6",
4141
"lerna-changelog": "^2.2.0",
4242
"npm-run-all": "^4.1.5",
43-
"prettier": "^3.2.5",
44-
"rimraf": "^5.0.5",
45-
"ts-jest": "^29.1.2",
43+
"prettier": "^3.3.2",
44+
"rimraf": "^5.0.8",
45+
"ts-jest": "^29.1.5",
4646
"typescript": "5.4.5"
4747
},
4848
"keywords": [

packages/client/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,34 +16,34 @@
1616
},
1717
"dependencies": {
1818
"@sphereon/oid4vci-common": "workspace:*",
19-
"@sphereon/ssi-types": "0.26.1-next.6",
19+
"@sphereon/ssi-types": "0.26.1-next.132",
2020
"cross-fetch": "^3.1.8",
21-
"debug": "^4.3.4"
21+
"debug": "^4.3.5"
2222
},
2323
"devDependencies": {
24-
"@sphereon/ssi-sdk-ext.key-utils": "^0.18.2",
24+
"@sphereon/ssi-sdk-ext.key-utils": "^0.22.0",
2525
"@transmute/did-key.js": "^0.3.0-unstable.10",
2626
"@trust/keyto": "^2.0.0-alpha1",
27-
"@types/jest": "^29.5.3",
28-
"@types/node": "^18.17.4",
29-
"@types/uuid": "^9.0.6",
27+
"@types/jest": "^29.5.12",
28+
"@types/node": "^18.19.39",
29+
"@types/uuid": "^9.0.8",
3030
"@typescript-eslint/eslint-plugin": "^5.62.0",
3131
"@typescript-eslint/parser": "^5.62.0",
3232
"codecov": "^3.8.3",
33-
"dotenv": "^16.3.1",
34-
"eslint": "^8.46.0",
35-
"eslint-config-prettier": "^9.0.0",
33+
"dotenv": "^16.4.5",
34+
"eslint": "^8.57.0",
35+
"eslint-config-prettier": "^9.1.0",
3636
"eslint-plugin-eslint-comments": "^3.2.0",
37-
"eslint-plugin-import": "^2.28.0",
38-
"jest": "^29.6.2",
37+
"eslint-plugin-import": "^2.29.1",
38+
"jest": "^29.7.0",
3939
"jest-junit": "^16.0.0",
40-
"jose": "^4.14.4",
41-
"nock": "^13.3.2",
40+
"jose": "^4.15.9",
41+
"nock": "^13.5.4",
4242
"npm-run-all": "^4.1.5",
4343
"open-cli": "^7.2.0",
44-
"ts-jest": "^29.1.1",
45-
"ts-node": "^10.9.1",
46-
"typescript": "5.3.3",
44+
"ts-jest": "^29.1.5",
45+
"ts-node": "^10.9.2",
46+
"typescript": "5.5.3",
4747
"uint8arrays": "3.1.1",
4848
"uuid": "^9.0.1"
4949
},

packages/common/lib/functions/CredentialOfferUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Debug from 'debug';
2-
import jwtDecode, { JwtPayload } from 'jwt-decode';
2+
import { jwtDecode, JwtPayload } from 'jwt-decode';
33

44
import { PRE_AUTH_CODE_LITERAL, PRE_AUTH_GRANT_LITERAL, VCI_LOG_COMMON } from '../index';
55
import {

packages/common/lib/functions/ProofUtil.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Debug from 'debug';
2-
import jwtDecode from 'jwt-decode';
2+
import { jwtDecode } from 'jwt-decode';
33

44
import { PoPMode, VCI_LOG_COMMON } from '..';
55
import {

packages/common/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"build:clean": "tsc --build --clean && tsc --build"
1111
},
1212
"dependencies": {
13-
"@sphereon/ssi-types": "0.26.1-next.6",
13+
"@sphereon/ssi-types": "0.26.1-next.132",
1414
"cross-fetch": "^3.1.8",
15-
"jwt-decode": "^3.1.2",
15+
"jwt-decode": "^4.0.0",
1616
"sha.js": "^2.4.11",
1717
"uint8arrays": "3.1.1"
1818
},
1919
"devDependencies": {
20-
"@types/jest": "^29.5.3",
20+
"@types/jest": "^29.5.12",
2121
"@types/sha.js": "^2.4.4",
2222
"typescript": "5.4.5"
2323
},

packages/issuer-rest/lib/__tests__/ClientIssuerIT.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ import {
1111
Jwt,
1212
JWTHeader,
1313
JWTPayload,
14-
OpenId4VCIVersion, PRE_AUTH_CODE_LITERAL,
15-
PRE_AUTH_GRANT_LITERAL
14+
OpenId4VCIVersion,
15+
PRE_AUTH_CODE_LITERAL,
16+
PRE_AUTH_GRANT_LITERAL,
1617
} from '@sphereon/oid4vci-common'
1718
import { VcIssuer } from '@sphereon/oid4vci-issuer/dist/VcIssuer'
1819
import { CredentialSupportedBuilderV1_13, VcIssuerBuilder } from '@sphereon/oid4vci-issuer/dist/builder'

packages/issuer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@sphereon/oid4vci-common": "workspace:*",
14-
"@sphereon/ssi-types": "0.26.1-next.6",
14+
"@sphereon/ssi-types": "0.26.1-next.132",
1515
"uuid": "^9.0.0"
1616
},
1717
"peerDependencies": {
@@ -27,9 +27,9 @@
2727
},
2828
"devDependencies": {
2929
"@sphereon/oid4vci-client": "workspace:*",
30-
"@types/jest": "^29.5.3",
31-
"@types/node": "^18.19.31",
32-
"@types/uuid": "^9.0.2",
30+
"@types/jest": "^29.5.12",
31+
"@types/node": "^18.19.39",
32+
"@types/uuid": "^9.0.8",
3333
"did-resolver": "^4.1.0",
3434
"typescript": "5.4.5"
3535
},

0 commit comments

Comments
 (0)