{
  "name": "@unique-nft/solidity-interfaces",
  "version": "1.0.1",
  "license": "MIT",
  "description": "Solidity smart contracts and ethers.js/web3 wrappings for Unique network technologies",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/UniqueNetwork/solidity-interfaces"
  },
  "bugs": {
    "url": "https://github.com/UniqueNetwork/solidity-interfaces/issues"
  },
  "homepage": "https://github.com/UniqueNetwork/solidity-interfaces#readme",
  "scripts": {
    "clean": "rimraf dist && mkdirp dist",
    "build:compile": "yarn tsx downloadSolidityInterfaces.ts",
    "build:tsup": "yarn tsup --config configs/tsup.config.ts",
    "copy_files": "cpy ./package.json ./README.md ./dist",
    "build": "yarn clean && yarn build:compile && yarn build:tsup && yarn copy_files",
    "release": "npm run copy_files && cd dist && npm publish",
    "release:beta_as_is": "npm run copy_files && cd dist && npm publish --tag beta",
    "release:beta": "tsx bumper.mts --beta && npm run copy_files && cd dist && npm publish --tag beta",
    "release:patch": "tsx bumper.mts --patch && npm run copy_files && cd dist && npm publish"
  },
  "devDependencies": {
    "@typechain/ethers-v5": "^10.2.0",
    "@typechain/ethers-v6": "^0.5.1",
    "@typechain/web3-v1": "^6.0.2",
    "@types/node": "^18.11.17",
    "@types/semver": "^7.3.13",
    "commander": "^9.4.1",
    "cpy-cli": "^4.2.0",
    "dotenv": "^16.0.3",
    "dotenv-cli": "^6.0.0",
    "mkdirp": "^1.0.4",
    "pkg-versions": "^3.0.0",
    "release-it": "^15.5.1",
    "rimraf": "^3.0.2",
    "semver": "^7.5.2",
    "solc": "^0.8.17",
    "tsup": "^6.5.0",
    "tsx": "^3.12.1",
    "typechain": "^8.1.1",
    "typescript": "^4.9.4",
    "web3": "^1.10.4"
  },
  "keywords": [
    "Unique Network",
    "NFT",
    "RFT",
    "blockchain",
    "Solidity",
    "ABI",
    "Smart contracts",
    "ERC721",
    "ERC1633",
    "ERC20",
    "Polkadot",
    "Kusama"
  ],
  "dependencies": {
    "@unique-nft/utils": "^0.3.2",
    "ethers": "^6.9.0"
  },
  "exports": {
    ".": {
      "import": "./index.mjs",
      "require": "./index.js",
      "types": "./index.d.ts"
    },
    "./ethers": {
      "import": "./ethers/index.mjs",
      "require": "./ethers/index.js",
      "types": "./ethers/index.d.ts"
    },
    "./web3": {
      "import": "./web3/index.mjs",
      "require": "./web3/index.js",
      "types": "./web3/index.d.ts"
    },
    "./contracts/*": "./contracts/*",
    "./abi/*": "./abi/*"
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
