forked from KintoXYZ/kinto-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 983 Bytes
/
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
{
"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": {
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"permissionless": "^0.1.24",
"viem": "^2.10.1"
},
"license": "MIT",
"scripts": {
"install": "forge install && cd lib/token-bridge-contracts && yarn",
"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"
}
}