{
  "name": "@metaplex-foundation/mpl-hydra",
  "version": "1.0.1",
  "description": "JavaScript client for the Hydra program",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "/dist/src"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "homepage": "https://metaplex.com",
  "repository": "https://github.com/metaplex-foundation/mpl-candy-guard.git",
  "author": "Metaplex Maintainers <contact@metaplex.com>",
  "license": "Apache-2.0",
  "peerDependencies": {
    "@metaplex-foundation/umi": ">= 0.8.2 < 1"
  },
  "dependencies": {
    "@metaplex-foundation/mpl-toolbox": "^0.8.0"
  },
  "devDependencies": {
    "@ava/typescript": "^3.0.1",
    "@metaplex-foundation/umi": "^0.8.2",
    "@metaplex-foundation/umi-bundle-tests": "^0.8.2",
    "@solana/web3.js": "^1.73.0",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.46.1",
    "ava": "^5.1.0",
    "eslint": "^8.0.1",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "typedoc": "^0.23.16",
    "typedoc-plugin-expand-object-like-types": "^0.1.1",
    "typedoc-plugin-missing-exports": "^1.0.0",
    "typescript": "^4.6.2",
    "vercel": "^28.15.5"
  },
  "ava": {
    "typescript": {
      "compile": false,
      "rewritePaths": {
        "src/": "dist/src/",
        "test/": "dist/test/"
      }
    }
  },
  "packageManager": "pnpm@8.2.0",
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig.json",
    "build:docs": "typedoc",
    "test": "ava",
    "lint": "eslint --ext js,ts,tsx src",
    "lint:fix": "eslint --fix --ext js,ts,tsx src",
    "format": "prettier --check src test",
    "format:fix": "prettier --write src test"
  }
}