From f4318b1f81f4c673ec29c8516f003ada6faded4d Mon Sep 17 00:00:00 2001 From: Pablo Gomes de Oliveira Date: Thu, 6 Nov 2025 15:10:42 +0300 Subject: [PATCH] Update package.json --- package.json | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index b3cb5d8..0f8ea08 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,15 @@ { "name": "hypervisor", "version": "1.0.0", - "description": "", + "private": true, + "description": "Uniswap V2–like fungible-liquidity interface on Uniswap V3", "scripts": { "compile": "hardhat compile", "test": "bash ./scripts/test.sh", "flatten": "bash ./scripts/flatten.sh", - "prettier": "prettier --write contracts/*.sol", - "lint": "solhint contracts/*.sol" + "format": "prettier --plugin=prettier-plugin-solidity --write \"contracts/**/*.sol\"", + "prettier": "prettier --plugin=prettier-plugin-solidity --check \"contracts/**/*.sol\"", + "lint": "solhint -f table \"contracts/**/*.sol\"" }, "dependencies": { "@chainlink/contracts": "^0.1.9", @@ -16,9 +18,10 @@ "@uniswap/v3-core": "*", "@uniswap/v3-periphery": "*", "bignumber.js": "^9.0.1", - "prettier": "^2.2.1", - "prettier-plugin-solidity": "^1.0.0-beta.10", - "solhint-plugin-prettier": "0.0.5" + "decimal.js": "^10.2.1", + "dotenv": "^8.2.0", + "ethers": "^5.1.3", + "fs-extra": "^9.0.0" }, "devDependencies": { "@nomiclabs/hardhat-ethers": "^2.0.2", @@ -31,18 +34,14 @@ "@types/fs-extra": "^9.0.11", "@types/mocha": "^8.2.2", "chai": "^4.3.4", - "decimal.js": "^10.2.1", - "dotenv": "^8.2.0", "ethereum-waffle": "^3.3.0", - "ethers": "^5.1.3", - "fs-extra": "^7.0.1", "hardhat": "^2.2.0", "hardhat-gas-reporter": "^1.0.8", "hardhat-typechain": "^0.3.5", "hardhat-watcher": "^2.1.1", "mocha": "^7.2.0", "prettier": "^2.2.1", - "prettier-plugin-solidity": "*", + "prettier-plugin-solidity": "^1.0.0-beta.10", "solc-0.7": "npm:solc@^0.7.6", "solhint": "^3.3.4", "solhint-plugin-prettier": "^0.0.5", @@ -50,5 +49,8 @@ "ts-node": "^8.10.2", "typechain": "^5.0.0", "typescript": "^4.2.4" + }, + "engines": { + "node": ">=12 <14 || ^12" } }