-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "allowance-module-tutorial",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"enable-module": "ts-node src/enableAllowanceModule.ts",
"set-allowance": "ts-node src/setAllowance.ts",
"spend-allowance": "ts-node src/spendAllowance.ts",
"get-allowance": "ts-node src/getAllowance.ts",
"format": "prettier --write .",
"lint": "eslint . ",
"lint:fix": "eslint . --fix "
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@safe-global/protocol-kit": "^5.1.1",
"@safe-global/safe-deployments": "^1.37.24",
"@safe-global/safe-modules-deployments": "^2.2.4",
"viem": "^2.22.10"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}