{
  "name": "@mysten/slush-wallet",
  "version": "1.0.5",
  "description": "Wallet adapter for Slush web wallet",
  "license": "Apache-2.0",
  "author": "Mysten Labs <build@mystenlabs.com>",
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    }
  },
  "sideEffects": false,
  "files": [
    "CHANGELOG.md",
    "dist",
    "docs",
    "experimental"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MystenLabs/ts-sdks.git"
  },
  "bugs": {
    "url": "https://github.com/mystenlabs/ts-sdks/issues"
  },
  "homepage": "https://github.com/MystenLabs/ts-sdks/tree/main/packages/slush-wallet#readme",
  "devDependencies": {
    "@types/node": "^25.0.8",
    "typescript": "^5.9.3",
    "vitest": "^4.0.17"
  },
  "dependencies": {
    "valibot": "^1.2.0",
    "@mysten/window-wallet-core": "^0.1.6",
    "@mysten/utils": "^0.3.3",
    "@mysten/wallet-standard": "^0.20.3"
  },
  "peerDependencies": {
    "@mysten/sui": "^2.16.2"
  },
  "scripts": {
    "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
    "build": "rm -rf dist && tsc --noEmit && tsdown",
    "build:docs": "node ../docs/scripts/build-docs.ts",
    "prettier:check": "prettier -c --ignore-unknown .",
    "prettier:fix": "prettier -w --ignore-unknown .",
    "oxlint:check": "oxlint  .",
    "oxlint:fix": "oxlint --fix",
    "lint": "pnpm run oxlint:check && pnpm run prettier:check",
    "lint:fix": "pnpm run oxlint:fix && pnpm run prettier:fix"
  }
}