{
  "name": "@wallet-ui/react",
  "version": "4.3.0",
  "description": "React components for Wallet UI",
  "exports": {
    ".": {
      "edge-light": {
        "import": "./dist/index.node.mjs",
        "require": "./dist/index.node.cjs"
      },
      "workerd": {
        "import": "./dist/index.node.mjs",
        "require": "./dist/index.node.cjs"
      },
      "browser": {
        "import": "./dist/index.browser.mjs",
        "require": "./dist/index.browser.cjs"
      },
      "node": {
        "import": "./dist/index.node.mjs",
        "require": "./dist/index.node.cjs"
      },
      "react-native": "./dist/index.native.mjs",
      "types": "./dist/types/index.d.ts"
    }
  },
  "browser": {
    "./dist/index.node.cjs": "./dist/index.browser.cjs",
    "./dist/index.node.mjs": "./dist/index.browser.mjs"
  },
  "main": "./dist/index.node.cjs",
  "module": "./dist/index.node.mjs",
  "react-native": "./dist/index.native.mjs",
  "types": "./dist/types/index.d.ts",
  "type": "commonjs",
  "files": [
    "./dist/"
  ],
  "sideEffects": false,
  "keywords": [
    "blockchain",
    "solana",
    "web3"
  ],
  "author": "beeman <beeman@beeman.nl>",
  "homepage": "https://wallet-ui.dev",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/wallet-ui/wallet-ui"
  },
  "bugs": {
    "url": "https://github.com/wallet-ui/wallet-ui/issues"
  },
  "browserslist": [
    "supports bigint and not dead",
    "maintained node versions"
  ],
  "dependencies": {
    "@nanostores/react": "^1.1.0",
    "@solana/react": "6.1.0",
    "@solana/wallet-standard-features": "1.3.0",
    "@solana/wallet-standard-util": "1.1.2",
    "@wallet-standard/core": "1.1.1",
    "@wallet-standard/react": "1.0.1",
    "@wallet-standard/ui": "1.0.1",
    "@wallet-standard/ui-registry": "1.0.1",
    "@zag-js/dialog": "1.24.2",
    "@zag-js/menu": "1.24.2",
    "@zag-js/react": "1.24.2",
    "nanostores": "^1.2.0",
    "@wallet-ui/core": "4.3.0"
  },
  "peerDependencies": {
    "@solana/kit": "^6.1.0 || ^7.0.0",
    "react": ">=18"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "scripts": {
    "compile:js": "tsup --config build-scripts/tsup.config.package.ts",
    "compile:typedefs": "tsc -p ./tsconfig.declarations.json",
    "dev": "vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.mjs --root . --watch",
    "publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || (pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks && (([ -n \"${GITHUB_OUTPUT:-}\" ] && echo 'published=true' >> \"$GITHUB_OUTPUT\") || true) && (([ \"$PUBLISH_TAG\" != \"canary\" ] && ../build-scripts/maybe-tag-latest.ts --token \"$GITHUB_TOKEN\" $npm_package_name@$npm_package_version) || true))",
    "publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
    "test:treeshakability:browser": "true # agadoo dist/index.browser.mjs",
    "test:treeshakability:native": "true # agadoo dist/index.native.mjs",
    "test:treeshakability:node": "true # agadoo dist/index.node.mjs",
    "test:typecheck": "tsc --noEmit",
    "test:unit:browser": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.browser.mjs --root . --run --silent",
    "test:unit:node": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} vitest -c ../../node_modules/@wallet-ui/test-config/vitest.config.node.mjs --root . --run --silent"
  }
}