-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
66 lines (66 loc) · 2.8 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
{
"name": "@safe-global/safe-modules-example-4337-gas-metering",
"version": "1.0.0",
"description": "Gas Metering Analysis for Safe with 4337 Module",
"homepage": "https://github.com/safe-global/safe-modules/4337-gas-metering",
"license": "LGPL-3.0-only",
"type": "module",
"private": true,
"scripts": {
"alchemy:account": "tsx ./alchemy/alchemy.ts account",
"alchemy:account:paymaster": "tsx ./alchemy/alchemy.ts account paymaster=true",
"alchemy:native-transfer": "tsx ./alchemy/alchemy.ts native-transfer",
"alchemy:native-transfer:paymaster": "tsx ./alchemy/alchemy.ts native-transfer paymaster=true",
"alchemy:erc20": "tsx ./alchemy/alchemy.ts erc20",
"alchemy:erc20:paymaster": "tsx ./alchemy/alchemy.ts erc20 paymaster=true",
"alchemy:erc721": "tsx ./alchemy/alchemy.ts erc721",
"alchemy:erc721:paymaster": "tsx ./alchemy/alchemy.ts erc721 paymaster=true",
"alchemy": "tsx ./alchemy/alchemy.ts",
"build": "rimraf dist && tsc",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint ./alchemy && eslint ./gelato && eslint ./pimlico && eslint ./utils",
"gelato:account:1balance": "tsx ./gelato/gelato.ts account",
"gelato:native-transfer:1balance": "tsx ./gelato/gelato.ts native-transfer",
"gelato:erc20:1balance": "tsx ./gelato/gelato.ts erc20",
"gelato:erc721:1balance": "tsx ./gelato/gelato.ts erc721",
"pimlico:account:erc20-paymaster": "tsx ./pimlico/pimlico.ts account",
"pimlico:account:verifying-paymaster": "tsx ./pimlico/pimlico.ts account verifyingPaymaster=true",
"pimlico:native-transfer:erc20-paymaster": "tsx ./pimlico/pimlico.ts native-transfer",
"pimlico:native-transfer:verifying-paymaster": "tsx ./pimlico/pimlico.ts native-transfer verifyingPaymaster=true",
"pimlico:erc20:erc20-paymaster": "tsx ./pimlico/pimlico.ts erc20",
"pimlico:erc20:verifying-paymaster": "tsx ./pimlico/pimlico.ts erc20 verifyingPaymaster=true",
"pimlico:erc721:erc20-paymaster": "tsx ./pimlico/pimlico.ts erc721",
"pimlico:erc721:verifying-paymaster": "tsx ./pimlico/pimlico.ts erc721 verifyingPaymaster=true"
},
"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"
},
"dependencies": {
"@alchemy/aa-accounts": "3.19.0",
"@alchemy/aa-alchemy": "3.19.0",
"@alchemy/aa-core": "3.19.0",
"@gelatonetwork/relay-sdk": "^5.5.6",
"alchemy-sdk": "3.5.0",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"permissionless": "0.1.45",
"viem": "2.21.54"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "4.19.2",
"typescript": "^5.7.2"
}
}