forked from mashharuki/erc-4337-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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": "erc-4337-examples",
"version": "1.0.0",
"description": "A collection of example scripts for working with ERC-4337.",
"repository": "[email protected]:stackup-wallet/erc-4337-examples.git",
"license": "MIT",
"scripts": {
"lint": "eslint . && tsc --noEmit",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check --ignore-path ./.eslintignore '**'",
"prettier:fix": "prettier --write --ignore-path ./.eslintignore '**'",
"init": "ts-node scripts/init.ts",
"barz": "ts-node scripts/barz/index.ts",
"kernel": "ts-node scripts/kernel/index.ts",
"simpleAccount": "ts-node scripts/simpleAccount/index.ts"
},
"dependencies": {
"@inquirer/prompts": "^2.0.0",
"axios": "^1.2.3",
"commander": "^10.0.0",
"ethers": "^5.7.2",
"userop": "^0.3.4"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}