-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@etherspot/prime-contracts",
"version": "1.0.0",
"description": "Etherspot account abstraction contracts (eip-4337 compliant)",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run build:dist && npm run build:ts",
"build:dist": "hardhat build-dist",
"build:ts": "tsc --project ./tsconfig.build.json",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"test": "hardhat test",
"setup": "git submodule init && git submodule update && npm i && cd account-abstraction && yarn && npx hardhat compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etherspot/etherspot-prime-contracts.git"
},
"keywords": [
"ether",
"ethereum",
"blockchain",
"solidity",
"etherspot",
"account-abstraction",
"eip-4337"
],
"author": "Etherspot",
"license": "MIT",
"homepage": "https://etherspot.dev",
"bugs": {
"url": "https://github.com/etherspot/etherspot-prime-contracts/issues"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"dotenv": "^16.0.3",
"eslint": "8.33.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-with-typescript": "34.0.0",
"eslint-plugin": "1.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-standard": "5.0.0",
"promise": "8.3.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@ethereumjs/tx": "4.1.2",
"@nomicfoundation/hardhat-foundry": "^1.1.0",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@openzeppelin/contracts": "5.0.0",
"@openzeppelin/hardhat-upgrades": "1.22.1",
"@openzeppelin/test-helpers": "0.5.16",
"ethereumjs-util": "7.1.5",
"ethereumjs-wallet": "1.0.2",
"hardhat-deploy": "0.11.23",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-tracer": "^2.5.0",
"solady": "^0.0.168"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
}
}