forked from ssvlabs/ssv-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ssv-keys",
"version": "1.1.0",
"description": "Tool for splitting a validator key into a predefined threshold of shares via Shamir-Secret-Sharing (SSS), and encrypt them with a set of operator keys.",
"author": "SSV.Network",
"repository": "https://github.com/bloxapp/ssv-keys",
"license": "MIT",
"keywords": [
"ssv",
"ssv.network",
"keystore",
"shares"
],
"main": "./dist/tsc/src/main.js",
"types": "./dist/tsc/src/main.d.ts",
"bin": {
"ssv-keys": "./dist/tsc/src/cli.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"dev:cli": "ts-node src/cli.ts",
"dev:icli": "ts-node src/cli-interactive.ts",
"icli": "node ./dist/tsc/src/cli-interactive.js",
"cli": "node ./dist/tsc/src/cli.js",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build && yarn esbuild",
"esbuild": "node ./esbuild.js",
"pre-commit": "yarn test && yarn lint && yarn build-all",
"package-linux": "pkg dist/tsc/src/cli-interactive.js --targets node14-linux-x64 --output bin/linux/ssv-keys-lin --compress GZip",
"package-macos": "pkg dist/tsc/src/cli-interactive.js --targets node14-macos-x64 --output bin/macos/ssv-keys-mac --compress GZip",
"package-win": "pkg dist/tsc/src/cli-interactive.js --targets node14-win-x64 --output bin/win/ssv-keys.exe --compress GZip",
"package-all": "yarn package-linux && yarn package-macos && yarn package-win"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@types/argparse": "^2.0.15",
"@types/atob": "^2.1.4",
"@types/btoa": "^1.2.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"esbuild-node-externals": "^1.13.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-environment-uint8array": "^1.0.0",
"jest-watch-typeahead": "2.2.2",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"pkg": "^5.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.11",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/figlet": "^1.5.8",
"@types/underscore": "^1.11.15",
"@types/yargs": "^17.0.32",
"argparse": "^2.0.1",
"assert": "^2.1.0",
"atob": "^2.1.2",
"bls-eth-wasm": "^1.2.1",
"bls-signatures": "^2.0.2",
"btoa": "^1.2.1",
"class-validator": "^0.14.1",
"colors": "^1.4.0",
"crypto": "^1.0.1",
"eth2-keystore-js": "^1.0.8",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^6.11.1",
"events": "^3.3.0",
"figlet": "^1.7.0",
"js-base64": "^3.7.7",
"jsencrypt": "3.3.2",
"minimist": "^1.2.6",
"moment": "^2.30.1",
"node-jsencrypt": "^1.0.0",
"prompts": "https://github.com/meshin-blox/prompts.git",
"scrypt-js": "^3.0.1",
"semver": "^7.6.0",
"stream": "^0.0.2",
"underscore": "^1.13.4",
"web3": "4.6.0",
"yargs": "^17.5.1"
},
"licenses": [
{
"MIT": "SEE LICENSE IN LICENCE FILE"
}
]
}