{
  "name": "@gnosis.pm/zodiac",
  "version": "4.0.3",
  "description": "Zodiac is a composable design philosophy and collection of standards for building DAO ecosystem tooling.",
  "author": "Auryn Macmillan <auryn@gnosisguild.org>",
  "license": "LGPL-3.0+",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js"
    }
  },
  "files": [
    "package.json",
    "LICENSE",
    "README.md",
    "dist",
    "contracts"
  ],
  "scripts": {
    "build": "hardhat compile",
    "build:sdk": "rm -rf dist && yarn generate:types && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
    "clean": "rm -rf dist build typechain-types",
    "deploy:factory": "hardhat singleton-deployment --network",
    "deploy": "hardhat deploy-replay --network",
    "test:sdk": "hardhat test ./sdk/factory/__tests__/index.spec.ts",
    "test": "hardhat test && yarn test:sdk",
    "coverage": "hardhat coverage",
    "lint": "yarn lint:sol && yarn lint:ts",
    "lint:sol": "solhint ./contracts/**/*.sol",
    "lint:ts": "eslint --max-warnings 0 .",
    "format": "yarn format:sol && yarn format:ts",
    "format:sol": "prettier --write --plugin=prettier-plugin-solidity ./contracts/**/*.sol",
    "format:ts": "prettier --write ./sdk/**/*.ts ./test/**/*.ts ./*.ts",
    "generate:types": "patch-package && rm -rf src/types && typechain --target ethers-v6 --out-dir sdk/types './sdk/abi/*.json'",
    "prepare": "yarn generate:types && yarn build",
    "prerelease": "yarn clean && yarn build && yarn build:sdk",
    "release": "yarn publish --access public",
    "verify": "yarn hardhat verify --network"
  },
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gnosis/zodiac.git"
  },
  "devDependencies": {
    "@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
    "@nomicfoundation/hardhat-ethers": "^3.0.0",
    "@nomicfoundation/hardhat-network-helpers": "^1.0.7",
    "@nomicfoundation/hardhat-toolbox": "^4.0.0",
    "@nomicfoundation/hardhat-verify": "^2.0.0",
    "@nomiclabs/hardhat-ethers": "^2.2.3",
    "@nomiclabs/hardhat-etherscan": "3.1.7",
    "@typechain/ethers-v6": "^0.5.1",
    "@typechain/hardhat": "^9.1.0",
    "@types/chai": "^4.3.3",
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.8.5",
    "@types/yargs": "^17.0.13",
    "@typescript-eslint/eslint-plugin": "^6.9.1",
    "@typescript-eslint/parser": "^6.9.1",
    "chai": "^4.3.7",
    "dotenv": "^16.0.3",
    "eslint": "^8.25.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-no-only-tests": "^3.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "hardhat": "^2.14.0",
    "hardhat-change-network": "^0.0.7",
    "hardhat-deploy": "^0.11.28",
    "hardhat-gas-reporter": "^1.0.9",
    "husky": "^8.0.1",
    "prettier": "^3.0.3",
    "prettier-plugin-solidity": "^1.1.3",
    "rimraf": "^5.0.1",
    "solhint": "^4.0.0",
    "solhint-plugin-prettier": "^0.1.0",
    "solidity-coverage": "^0.8.4",
    "ts-node": "^10.9.1",
    "typechain": "^8.3.2",
    "typescript": "^5.2.2",
    "yargs": "^17.6.0",
    "patch-package": "^8.0.0"
  },
  "dependencies": {
    "@gnosis.pm/mock-contract": "^4.0.0",
    "@gnosis.pm/safe-contracts": "1.3.0",
    "@openzeppelin/contracts": "^5.0.0",
    "@openzeppelin/contracts-upgradeable": "^5.0.0",
    "ethers": "^6.9.2"
  }
}
