{
  "name": "@sentio/ethers-v6",
  "description": "🔌 TypeChain target for ethers-v6",
  "keywords": [
    "ethers",
    "ethersjs",
    "ethereum",
    "TypeChain",
    "TypeScript"
  ],
  "version": "1.0.29",
  "license": "MIT",
  "repository": "https://github.com/ethereum-ts/Typechain",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**",
    "static/**",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "ethers": "^6.0.0",
    "typescript": ">=4.3.0"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.139",
    "ethers": "^6.0.0",
    "test-utils": "1.0.0",
    "typechain": "^8.1.1",
    "typescript": ">=4.3.0",
    "@types/proxyquire": "^1.3.28",
    "proxyquire": "^2.1.3"
  },
  "dependencies": {
    "lodash": "^4.17.15",
    "ts-essentials": "^7.0.1"
  },
  "scripts": {
    "start": "ts-node -T ./src/index.ts",
    "build": "tsc --build ./tsconfig.build.json --verbose",
    "format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\" README.md",
    "format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\" README.md",
    "lint": "eslint --ext .ts src test",
    "lint:fix": "pnpm lint --fix",
    "typecheck": "tsc --noEmit --incremental false --composite false",
    "clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
    "test": "mocha --config ../../.mocharc.js",
    "test:fix": "pnpm lint:fix && pnpm format:fix && pnpm test && pnpm typecheck"
  }
}