Skip to content

Commit 19c60cb

Browse files
committed
upgrade dependencies
1 parent 261f586 commit 19c60cb

File tree

5 files changed

+4554
-2625
lines changed

5 files changed

+4554
-2625
lines changed

.yarnrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -39,31 +39,32 @@
3939
"devDependencies": {
4040
"@types/chai": "^4.3.1",
4141
"@types/lodash": "^4.14.182",
42-
"@types/mocha": "^9.1.1",
43-
"@types/node": "^17.0.35",
44-
"@typescript-eslint/eslint-plugin": "^5.26.0",
45-
"@typescript-eslint/parser": "^5.26.0",
42+
"@types/mocha": "^10.0.6",
43+
"@types/node": "^20.11.24",
44+
"@typescript-eslint/eslint-plugin": "^7.1.0",
45+
"@typescript-eslint/parser": "^7.1.0",
4646
"chai": "^4.3.6",
4747
"eslint": "^8.16.0",
4848
"eslint-config-airbnb-base": "^15.0.0",
49-
"eslint-config-prettier": "^8.5.0",
49+
"eslint-config-prettier": "^9.1.0",
5050
"eslint-plugin-import": "^2.26.0",
51-
"eslint-plugin-prettier": "^4.0.0",
51+
"eslint-plugin-prettier": "^5.1.3",
5252
"mocha": "^10.0.0",
53-
"prettier": "^2.6.2",
53+
"prettier": "^3.2.5",
5454
"stream-browserify": "^3.0.0",
5555
"terser-webpack-plugin": "^5.3.1",
5656
"ts-loader": "^9.3.0",
5757
"ts-mocha": "^10.0.0",
58-
"typedoc": "^0.22.15",
59-
"typescript": "^4.7.2",
58+
"typedoc": "^0.25.9",
59+
"typescript": "^5.3.3",
6060
"webpack": "^5.72.1",
61-
"webpack-cli": "^4.9.2"
61+
"webpack-cli": "^5.1.4"
6262
},
6363
"files": [
6464
"dist/**/*",
6565
"LICENSE",
6666
"README.md",
6767
"package.json"
68-
]
68+
],
69+
"packageManager": "[email protected]"
6970
}

src/internal-types.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ export type EncodedWithdrawals = Map<Buffer, BigNumber>;
5858
export type EncodedStakeCredential = [HashType, Buffer];
5959
export type EncodedStakeRegistrationCertificate = [
6060
CertificateType.STAKE_REGISTRATION,
61-
EncodedStakeCredential
61+
EncodedStakeCredential,
6262
];
6363
export type EncodedStakeDeRegistrationCertificate = [
6464
CertificateType.STAKE_DE_REGISTRATION,
65-
EncodedStakeCredential
65+
EncodedStakeCredential,
6666
];
6767
export type EncodedStakeDelegationCertificate = [
6868
CertificateType.STAKE_DELEGATION,
6969
EncodedStakeCredential,
70-
Buffer
70+
Buffer,
7171
];
7272
export type EncodedCertificate =
7373
| EncodedStakeRegistrationCertificate

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
"allowSyntheticDefaultImports": true,
1010
"esModuleInterop": true
1111
},
12-
"include": ["src"]
12+
"include": ["src"],
13+
"exclude": ["node_modules"]
1314
}

0 commit comments

Comments
 (0)