{
  "name": "xdeployer",
  "version": "3.1.25",
  "description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
  "author": "pcaversaccio <pascal.caversaccio@hotmail.ch>",
  "license": "MIT",
  "funding": "https://github.com/pcaversaccio/xdeployer/blob/main/.github/FUNDING.yml",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "deployment",
    "ethereum",
    "create2",
    "hardhat",
    "hardhat-plugin"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pcaversaccio/xdeployer.git"
  },
  "homepage": "https://github.com/pcaversaccio/xdeployer#readme",
  "bugs": {
    "url": "https://github.com/pcaversaccio/xdeployer/issues"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "files": [
    "dist/src/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@eslint/js": "10.0.1",
    "@nomicfoundation/hardhat-ethers": "3.1.3",
    "@types/chai": "4.3.20",
    "@types/fs-extra": "11.0.4",
    "@types/mocha": "10.0.10",
    "@types/node": "26.0.1",
    "chai": "4.5.0",
    "eslint": "10.6.0",
    "eslint-config-prettier": "10.1.8",
    "ethers": "6.17.0",
    "globals": "17.7.0",
    "hardhat": "2.28.6",
    "mocha": "11.7.6",
    "prettier": "3.8.5",
    "prettier-plugin-solidity": "2.3.1",
    "ts-node": "10.9.2",
    "typescript": "6.0.3",
    "typescript-eslint": "8.62.0"
  },
  "peerDependencies": {
    "@nomicfoundation/hardhat-ethers": "^3.1.3",
    "ethers": "^6.17.0",
    "hardhat": "^2.28.6"
  },
  "scripts": {
    "prettier:check": "prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
    "prettier:fix": "prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
    "lint:check": "pnpm prettier:check && eslint .",
    "lint:fix": "pnpm prettier:fix && eslint . --fix",
    "test": "mocha",
    "build": "tsc",
    "watch": "tsc -w"
  }
}