{
  "name": "@synthetixio/synpress-metamask",
  "version": "0.0.14",
  "homepage": "https://synpress.io",
  "repository": {
    "type": "git",
    "url": "https://github.com/Synthetixio/synpress.git"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    "./cypress": {
      "types": "./types/cypress/index.d.ts",
      "default": "./dist/cypress/index.js"
    },
    "./cypress/support": {
      "types": "./types/cypress/support/index.d.ts",
      "default": "./dist/cypress/support/index.js"
    },
    "./playwright": {
      "types": "./types/playwright/index.d.ts",
      "default": "./dist/playwright/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./types/index.d.ts",
  "files": [
    "dist",
    "src",
    "types"
  ],
  "dependencies": {
    "@viem/anvil": "0.0.7",
    "fs-extra": "11.2.0",
    "zod": "3.22.4",
    "@synthetixio/synpress-cache": "0.0.14",
    "@synthetixio/synpress-core": "0.0.14"
  },
  "devDependencies": {
    "@synthetixio/synpress-tsconfig": "0.0.14",
    "@types/fs-extra": "11.0.4",
    "@types/node": "20.11.17",
    "@vitest/coverage-v8": "1.2.2",
    "cypress": "13.15.1",
    "rimraf": "5.0.5",
    "tsup": "8.0.2",
    "typescript": "5.3.3",
    "vitest": "1.2.2"
  },
  "peerDependencies": {
    "@playwright/test": "*"
  },
  "scripts": {
    "build": "pnpm run clean && pnpm run build:dist && pnpm run build:types",
    "build:cache": "synpress-cache test/playwright/wallet-setup",
    "build:cache:headless": "synpress-cache test/playwright/wallet-setup --headless",
    "build:cache:headless:force": "synpress-cache test/playwright/wallet-setup --headless --force",
    "build:dist": "tsup --tsconfig tsconfig.build.json",
    "build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
    "clean": "rimraf dist types",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:cypress:headful": "cypress run --browser chrome --headed",
    "test:cypress:headful:no-wallet": "cypress run --browser chrome --headed --config-file ./cypress-no-wallet.config.ts",
    "test:playwright:headful": "playwright test",
    "test:playwright:headless": "HEADLESS=true playwright test",
    "test:playwright:headless:ui": "HEADLESS=true playwright test --ui",
    "test:watch": "vitest watch",
    "types:check": "tsc --noEmit"
  }
}