-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 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
{
"name": "@biconomy/gas-estimations",
"version": "0.2.51",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/bcnmy/entry-point-gas-estimations",
"author": "Nikola Divić <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"format": "eslint 'src' --ext .ts --fix",
"build": "tsc",
"test": "jest --verbose --testPathIgnorePatterns smoke-test",
"test:smoke": "jest --verbose --silent=false -t smoke-test",
"test:coverage": "jest --collect-coverage --testPathIgnorePatterns smoke-test"
},
"dependencies": {
"dotenv": "^16.4.5",
"viem": "^2.21.49",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
},
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).ts"
],
"coveragePathIgnorePatterns": [
"dist",
"src/legacy",
"src/scripts",
"src/dont-commit"
]
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@biconomy/account": "^4.5.7",
"@biconomy/sdk": "^0.0.17",
"@rhinestone/module-sdk": "^0.1.28",
"@types/config": "^3.3.5",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-jest": "^29.7.0",
"config": "^3.3.12",
"eslint": "^8.25.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"typescript": "^5.3.3"
}
}