{
  "name": "@arbitrum/nitro-mocks",
  "version": "0.3.0",
  "description": "Solidity implementations of Arbitrum's precompiled contracts for local testing",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "nitro-mocks-deploy": "dist/cli.js"
  },
  "scripts": {
    "build": "hardhat compile && hardhat typechain",
    "build:typechain": "tsc -p build-config/tsconfig.typechain.json",
    "build:cli": "tsc -p build-config/tsconfig.cli.json && mv dist/deployer/* dist/ && rm -rf dist/deployer dist/typechain-types dist/test",
    "clean": "hardhat clean && rm -rf artifacts typechain-types cache dist",
    "format": "npm run format:sol && npm run format:ts",
    "format:check": "npm run format:sol:check && npm run format:ts:check",
    "format:sol": "forge fmt",
    "format:sol:check": "forge fmt --check",
    "format:ts": "prettier --write '**/*.{ts,tsx}' --ignore-path .prettierignore",
    "format:ts:check": "prettier --check '**/*.{ts,tsx}' --ignore-path .prettierignore",
    "lint": "npm run lint:sol && npm run lint:ts",
    "lint:fix": "npm run lint:sol:fix && npm run lint:ts:fix",
    "lint:sol": "solhint 'contracts/**/*.sol'",
    "lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
    "lint:ts": "eslint . --ext .ts,.tsx",
    "lint:ts:fix": "eslint . --ext .ts,.tsx --fix",
    "test": "hardhat test",
    "setup:dev": "./setup-dev.sh",
    "prepublishOnly": "npm run build && npm run build:typechain && npm run build:cli"
  },
  "files": [
    "dist/",
    "typechain-types/"
  ],
  "keywords": [
    "arbitrum",
    "ethereum",
    "blockchain",
    "testing",
    "mocks",
    "precompiles"
  ],
  "author": "Offchain Labs",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OffchainLabs/nitro-mocks.git"
  },
  "bugs": {
    "url": "https://github.com/OffchainLabs/nitro-mocks/issues"
  },
  "homepage": "https://github.com/OffchainLabs/nitro-mocks#readme",
  "devDependencies": {
    "@nomicfoundation/hardhat-ethers": "^3.0.0",
    "@typechain/ethers-v6": "^0.5.0",
    "@typechain/hardhat": "^9.1.0",
    "@types/chai": "^4.3.5",
    "@types/mocha": "^10.0.1",
    "@types/node": "^24.0.12",
    "@typescript-eslint/eslint-plugin": "^8.39.0",
    "@typescript-eslint/parser": "^8.39.0",
    "chai": "^4.3.8",
    "eslint": "^9.32.0",
    "eslint-config-prettier": "^10.1.8",
    "hardhat": "^2.25.0",
    "hardhat-preprocessor": "^0.1.5",
    "solhint": "^6.0.0",
    "ts-node": "^10.9.2",
    "typechain": "^8.3.2",
    "typescript": "^5.8.3",
    "glob": "^11.0.3"
  },
  "dependencies": {
    "commander": "^14.0.0",
    "ethers": "^6.13.0"
  }
}
