-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
41 lines (41 loc) · 2.11 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
{
"name": "kinto-core",
"description": "Kinto Core Contracts",
"repository": "https://github.com/KintoXYZ/kinto-core.git",
"homepage": "https://github.com/KintoXYZ/kinto-core.git#readme",
"version": "0.1.0",
"devDependencies": {
"@dk1a/solidity-stringutils": "^0.3.3",
"@openzeppelin/merkle-tree": "^1.0.6",
"csv-parse": "^5.5.6",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"permissionless": "^0.1.24",
"viem": "^2.10.1"
},
"license": "MIT",
"scripts": {
"test": "source .env && forge test -vvv",
"test-fork": "source .env && FOUNDRY_PROFILE=fork forge test -vvv",
"coverage": "forge coverage",
"export-testnet": "source .env && node ./utils/export.js $TEST_NETWORK_ID",
"export-mainnet": "source .env && node ./utils/export.js $MAINNET_NETWORK_ID",
"export-arbitrum": "source .env && node ./utils/export.js 42161",
"export-base": "source .env && node ./utils/export.js 8453",
"export-eth-mainnet": "source .env && node ./utils/export.js 1"
},
"dependencies": {
"@pimlico/alto": "^0.0.4",
"account-abstraction": "https://github.com/KintoXYZ/account-abstraction.git#61f677923ad7ed0ed5b87d2c20100a7079dba63a",
"account-abstraction-0.7.0": "https://github.com/eth-infinitism/account-abstraction.git#7af70c8993a6f42973f520ae0752386a5032abe7",
"forge-std": "https://github.com/foundry-rs/forge-std.git#bb4ceea94d6f10eeb5b41dc2391c6c8bf8e734ef",
"nitro-contracts": "npm:@arbitrum/[email protected]",
"openzeppelin-contracts": "npm:@openzeppelin/[email protected]",
"openzeppelin-contracts-5.0.1": "npm:@openzeppelin/[email protected]",
"openzeppelin-contracts-upgradeable": "npm:@openzeppelin/[email protected]",
"openzeppelin-contracts-upgradeable-5.0.1": "npm:@openzeppelin/[email protected]",
"permit2": "https://github.com/Uniswap/permit2.git#cc56ad0f3439c502c246fc5cfcc3db92bb8b7219",
"solady": "https://github.com/vectorized/solady.git#9deb9ed36a27261a8745db5b7cd7f4cdc3b1cd4e",
"token-bridge-contracts": "https://github.com/OffchainLabs/token-bridge-contracts.git#b3894ecc8b6185b2d505c71c9a7851725f53df15"
}
}