{
  "name": "yi-wallet",
  "description": "Yi Wallet SDK",
  "license": "MIT",
  "version": "0.0.2-canary.0",
  "main": "./_cjs/index.js",
  "module": "./_esm/index.js",
  "types": "./_types/index.d.ts",
  "typings": "./_types/index.d.ts",
  "sideEffects": false,
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "workspaces": [
    "."
  ],
  "files": [
    "_esm",
    "_cjs",
    "_types",
    "src"
  ],
  "scripts": {
    "build": "bun run clean && bun run build:cjs && bun run build:esm && bun run build:types",
    "build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./_cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./_cjs/package.json",
    "build:esm": "tsc --project ./tsconfig.build.json --module es2015 --outDir ./_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./_esm/package.json",
    "build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./_types --emitDeclarationOnly --declaration --declarationMap",
    "clean": "rm -rf _esm _cjs _types",
    "format": "biome format . --write",
    "lint": "biome check .",
    "lint:fix": "biome check . --apply",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "changeset": "changeset",
    "changeset:release": "bash remove-type.sh && bun run build && changeset publish && bash restore-type.sh && bun run format",
    "changeset:version": "changeset version && bun install --lockfile-only",
    "changeset:canary": "changeset pre enter canary && changeset version && bash remove-type.sh && bun run build && changeset pre exit && changeset publish --tag canary && bash restore-type.sh && bun run format"
  },
  "exports": {
    ".": {
      "types": "./_types/index.d.ts",
      "import": "./_esm/index.js",
      "default": "./_cjs/index.js"
    }
  },
  "devDependencies": {
    "@biomejs/biome": "1.4.1",
    "@changesets/changelog-git": "^0.2.0",
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.10",
    "bun-types": "latest",
    "dotenv": "^16.4.5",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "viem": "^2.21.40",
    "wagmi": "^2.15.1"
  },
  "keywords": [],
  "dependencies": {
    "@zerodev/ecdsa-validator": "^5.4.8",
    "@zerodev/passkey-validator": "^5.5.4",
    "@zerodev/sdk": "^5.4.30",
    "eventemitter3": "^5.0.1"
  }
}
