harb/onchain/package.json

20 lines
578 B
JSON
Raw Permalink Normal View History

2025-09-23 14:18:04 +02:00
{
"dependencies": {
"@uniswap/universal-router": "^2.0.0"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"solhint": "^6.0.1"
},
"scripts": {
"lint:sol": "solhint 'src/**/*.sol' 'script/**/*.sol' 'test/**/*.sol'",
"lint:sol:fix": "solhint --fix 'src/**/*.sol' 'script/**/*.sol' 'test/**/*.sol'",
"format:sol": "forge fmt",
"format:sol:check": "forge fmt --check",
"lint": "npm run lint:sol && npm run format:sol:check",
"lint:fix": "npm run lint:sol:fix && npm run format:sol",
"prepare": "husky"
2025-09-23 14:18:04 +02:00
}
}