-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "mpecdh",
"version": "0.0.1",
"description": "Safe seed generated via multi-party ECDH",
"main": "src/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "hardhat test",
"prettier": "prettier --write --plugin=prettier-plugin-solidity --config .prettierrc ./src"
},
"keywords": [
"Gnosis",
"Safe",
"secret",
"Multi-party",
"ECDH"
],
"author": "chiefbiiko",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"chai": "^4.3.10",
"hardhat": "^2.19.1",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0"
},
"dependencies": {
"@noble/curves": "^1.4.0",
"@safe-global/api-kit": "^2.2.0",
"@safe-global/protocol-kit": "^3.0.1",
"ethers": "^6.9.0",
"http": "npm:[email protected]",
"https": "npm:[email protected]",
"stream": "npm:[email protected]",
"zlib": "npm:[email protected]"
}
}