{
  "name": "@metaplex-foundation/mpl-bubblegum",
  "version": "5.0.2",
  "description": "Create and interact with compressed Metaplex NFTs",
  "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-bubblegum",
  "author": "Metaplex Maintainers <contact@metaplex.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "@metaplex-foundation/digital-asset-standard-api": "^2.0.0",
    "@metaplex-foundation/mpl-account-compression": "^0.0.1",
    "@metaplex-foundation/mpl-token-metadata": "3.2.1",
    "@metaplex-foundation/mpl-toolbox": "^0.10.0",
    "@metaplex-foundation/spl-account-compression": "^0.0.1",
    "@noble/hashes": "^1.3.1",
    "merkletreejs": "^0.3.11"
  },
  "peerDependencies": {
    "@metaplex-foundation/umi": ">= 0.8.9 <= 2.0.0"
  },
  "devDependencies": {
    "@ava/typescript": "^3.0.1",
    "@metaplex-foundation/mpl-core": "^1.4.0",
    "@metaplex-foundation/umi": "^1.2.0",
    "@metaplex-foundation/umi-bundle-tests": "^1.0.0",
    "@metaplex-foundation/umi-rpc-web3js": "^1.2.0",
    "@solana/web3.js": "^1.73.0",
    "@typescript-eslint/eslint-plugin": "^5.13.0",
    "@typescript-eslint/parser": "^5.46.1",
    "ava": "^5.1.0",
    "dotenv": "^16.3.1",
    "eslint": "^8.2.0",
    "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": "^39.3.0"
  },
  "ava": {
    "typescript": {
      "compile": false,
      "rewritePaths": {
        "src/": "dist/src/",
        "test/": "dist/test/"
      }
    },
    "require": [
      "dotenv/config"
    ]
  },
  "packageManager": "pnpm@8.15.9",
  "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"
  }
}