-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "@safe-global/safe-recovery",
"version": "0.1.0",
"description": "Safe Module for Social Recovery by Candide Labs",
"homepage": "https://github.com/safe-global/safe-modules/tree/main/modules/recovery",
"license": "GPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"contracts",
"dist",
"build"
],
"scripts": {
"build": "pnpm run build:sol && npm run build:ts",
"build:sol": "rimraf build typechain-types && hardhat compile",
"build:ts": "rimraf dist && tsc",
"deploy-all": "hardhat deploy-contracts --network",
"deploy-custom": "rm -rf deployments/custom && npm run deploy custom",
"lint": "pnpm run lint:ts",
"lint:ts": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"fmt": "prettier --write ./src",
"prepare": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-modules.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe",
"Safe module"
],
"author": "@safe-global",
"bugs": {
"url": "https://github.com/safe-global/safe-modules/issues"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"hardhat": "^2.22.17",
"hardhat-deploy": "^0.12.4",
"solc": "0.8.20",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.6",
"@safe-global/safe-contracts": "1.4.1-2",
"candide-contracts": "github:5afe/CandideWalletContracts#113d3c059e039e332637e8f686d9cbd505f1e738"
}
}