forked from stackup-wallet/userop.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "userop",
"version": "0.3.7",
"description": "A simple JS library for building ERC-4337 UserOperations.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": "[email protected]:stackup-wallet/userop.js.git",
"author": "stackup-wallet",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "rimraf dist",
"gen:types": "typechain --target=ethers-v5 --out-dir=src/typechain 'abi/*.json'",
"build": "yarn clean && yarn gen:types && tsc",
"test": "jest",
"lint": "eslint . --ignore-path .eslintignore && tsc --noEmit",
"lint:fix": "eslint . --ignore-path .eslintignore --fix",
"prettier": "prettier --check --ignore-path .eslintignore '**'",
"prettier:fix": "prettier --write --ignore-path .eslintignore '**'"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@typechain/ethers-v5": "^11.0.0",
"@types/elliptic": "^6.4.16",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typechain": "^8.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"elliptic": "^6.5.4",
"ethers": "^5.7.2",
"js-base64": "^3.7.5"
}
}