{
  "name": "@unisat/wallet-api",
  "version": "1.2.0",
  "description": "UniSat wallet API client with comprehensive Bitcoin ecosystem support",
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*",
    "src/**/*",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "import": "./lib/index.mjs"
    },
    "./types": {
      "types": "./lib/types.d.ts",
      "require": "./lib/types.js",
      "import": "./lib/types.mjs"
    }
  },
  "keywords": [
    "bitcoin",
    "wallet",
    "api",
    "brc20",
    "runes",
    "inscriptions",
    "unisat"
  ],
  "author": "UniSat Team",
  "license": "MIT",
  "dependencies": {
    "@types/randomstring": "^1.3.0",
    "randomstring": "^1.3.1",
    "@unisat/wallet-shared": "0.3.0",
    "@unisat/wallet-storage": "0.2.2",
    "@unisat/wallet-types": "1.1.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "tsup": "^7.0.0",
    "typescript": "^5.0.0",
    "vitest": "^0.34.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:run": "cd ../.. && npx vitest run packages/api/test",
    "lint": "eslint src --ext .ts,.tsx",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf dist"
  }
}