{
  "name": "erc-payable-token",
  "version": "7.4.0",
  "description": "ERC-1363 Payable Token Implementation",
  "files": [
    "contracts",
    "test"
  ],
  "scripts": {
    "console": "hardhat console",
    "compile": "hardhat compile",
    "test": "hardhat test",
    "coverage": "hardhat coverage",
    "clean": "hardhat clean && rimraf out build contracts/build coverage coverage.json",
    "profile": "npm run clean && npm run coverage && open coverage/index.html",
    "check:inheritance": "scripts/checks/inheritance-ordering.js artifacts/build-info/*",
    "lint": "npm run lint:js && npm run lint:sol",
    "lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
    "lint:js": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --check && eslint .",
    "lint:js:fix": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --write && eslint . --fix",
    "lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint --config solhint.config.js --noPoster '{contracts,test}/**/*.sol'",
    "lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write && solhint --config solhint.config.js --noPoster '{contracts,test}/**/*.sol'",
    "flat": "scripts/flat.sh",
    "analyze": "scripts/analyze.sh",
    "docs": "hardhat docgen",
    "pages:dev": "vitepress dev pages",
    "pages:build": "vitepress build pages",
    "pages:deploy": "vitepress build pages && sh pages/deploy/deploy.sh"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/vittominacori/erc1363-payable-token.git"
  },
  "keywords": [
    "solidity",
    "ethereum",
    "smart",
    "contracts",
    "token",
    "erc1363"
  ],
  "author": "Vittorio Minacori (https://github.com/vittominacori)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vittominacori/erc1363-payable-token/issues"
  },
  "homepage": "https://vittominacori.github.io/erc1363-payable-token",
  "dependencies": {
    "@openzeppelin/contracts": "5.7.0"
  },
  "devDependencies": {
    "@eslint/compat": "^2.1.0",
    "@eslint/eslintrc": "^3.3.6",
    "@eslint/js": "^10.0.1",
    "@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
    "@nomicfoundation/hardhat-foundry": "^1.2.1",
    "@nomiclabs/hardhat-truffle5": "^2.1.2",
    "@nomiclabs/hardhat-web3": "^2.1.2",
    "@openzeppelin/test-helpers": "^0.5.16",
    "eslint": "^10.8.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-mocha-no-only": "^1.2.0",
    "globals": "^17.11.0",
    "graphlib": "^2.1.8",
    "hardhat": "^2.29.0",
    "hardhat-exposed": "^0.3.19",
    "hardhat-gas-reporter": "^2.3.0",
    "prettier": "^3.9.6",
    "prettier-plugin-solidity": "^2.4.1",
    "rimraf": "^6.1.3",
    "sol2uml": "^2.5.26",
    "solhint": "^6.2.3",
    "solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
    "solidity-coverage": "^0.8.17",
    "solidity-docgen": "^0.6.0-beta.36",
    "surya": "^0.4.13",
    "vitepress": "^1.6.4",
    "yargs": "^18.1.0"
  }
}
