-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 861 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 861 Bytes
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
{
"name": "liq",
"version": "1.0.0",
"description": "**Zero-fee, gas-optimized USDC flash loans for arbitrage and liquidation bots.**",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "forge test -vvv",
"test:fork": "forge test --fork-url https://ethereum-rpc.publicnode.com -vvv",
"build": "forge build",
"fmt": "forge fmt",
"fmt:check": "forge fmt --check",
"deploy": "npx tsx script/deploy.ts",
"deploy:dry": "npx tsx script/deploy.ts --dry-run",
"arb:scan": "npx tsx script/arb-scanner.ts",
"arb:watch": "npx tsx script/arb-scanner.ts --watch",
"flashloan:test": "npx tsx script/test-flashloan.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"viem": "^2.43.5"
},
"devDependencies": {
"tsx": "^4.7.0"
}
}