forked from gnosispay/account-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.59 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.59 KB
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
67
68
69
70
71
72
{
"name": "@gnosispay/account-kit",
"version": "4.7.0",
"author": "cristovao.honorato@gnosis.io",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"package.json",
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"clean": "rm -rf dist build typechain-types",
"build": "hardhat compile && yarn patchTypechain && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"test": "hardhat test",
"lint": "tsc --noEmit && eslint '{src,test,scripts}/**/*.ts' --max-warnings 0 --fix",
"lint:check": "tsc --noEmit && eslint '{src,test,scripts}/**/*.ts'",
"format": "prettier '{src,test,scripts}/**/*.ts' --write && prettier 'contracts/**/*.sol' --write",
"format:check": "prettier '{src,test,scripts}/**/*.ts' --check",
"interfaces": "ts-node ./scripts/generateInterfaces.ts",
"patchTypechain": "ts-node ./scripts/patchTypechainBug.ts",
"prepublishOnly": "yarn run clean && yarn run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gnosispay/account-kit"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.0.2",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.1",
"@openzeppelin/contracts": "^5.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/mocha": "10.0.6",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"abi-to-sol": "^0.8.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.0.0",
"hardhat": "2.19.2",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "1.3.0",
"@gnosis.pm/zodiac": "^3.4.2",
"@safe-global/safe-deployments": "1.28.0",
"@safe-global/safe-singleton-factory": "1.0.16",
"ethers": "^6.9.0",
"typescript": "5.3.2"
},
"resolutions": {
"elliptic": "^6.6.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}