-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "@safe-global/safe-singleton-factory",
"version": "1.0.36",
"description": "Singleton factory used by Safe related contracts",
"homepage": "https://github.com/safe-global/safe-singleton-factory/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"artifacts/",
"LICENSE",
"README.md"
],
"scripts": {
"compile": "ts-node scripts/compile.ts",
"compile:zk": "hardhat compile && hardhat deploy-zksync --script compile-zk.ts",
"verify": "ts-node scripts/verify.ts",
"status": "ts-node scripts/status.ts",
"submit": "ts-node scripts/submit.ts",
"estimate": "ts-node scripts/estimate.ts",
"estimate-compile": "ts-node scripts/estimate-compile.ts",
"build": "rimraf dist && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-singleton-factory.git"
},
"keywords": [
"Ethereum",
"Hardhat",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/safe-global/safe-singleton-factory/issues"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.1",
"@matterlabs/hardhat-zksync-solc": "^0.3.16",
"@matterlabs/zksync-contracts": "^0.6.1",
"@types/mocha": "^8.2.0",
"@types/node": "^20.14.15",
"@types/yargs": "^15.0.10",
"argv": "^0.0.2",
"axios": "^0.21.1",
"dotenv": "^8.0.0",
"ethers": "^5.7.0",
"hardhat": "^2.12.0",
"solc": "0.5.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"yargs": "^17.3.1",
"zksync-web3": "^0.14.3"
}
}