-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "lattice-eth2-utils",
"version": "0.5.1",
"description": "ETH2 utils for use with the Lattice1 hardware wallet",
"repository": "git@github.com:alex-miller-0/lattice-eth2-utils.git",
"author": "Alex Miller <asmiller1989@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist build",
"test-bls-credential-change": "vitest src/__test__/blsToExecutionChange.test.ts",
"test-deposit-data": "vitest src/__test__/depositData.test.ts",
"test": "npm run test-deposit-data && npm run test-bls-credential-change",
"prerelease": "npm run build && npm run clean && npm run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@chainsafe/bls-keystore": "^3.0.0",
"@noble/bls12-381": "^1.4.0",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"bip39": "^3.0.4",
"bls12-381-keygen": "^0.2.1",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"hash.js": "^1.1.7",
"jsonc": "^2.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.0",
"readline-sync": "^1.4.10",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vitest": "^0.25.8"
},
"dependencies": {
"@chainsafe/ssz": "^0.9.2",
"@ethersproject/abi": "^5.7.0",
"@noble/hashes": "^1.1.4",
"bn.js": "^5.2.1",
"gridplus-sdk": "^2.4.0"
}
}