{
  "name": "@imaginarylabs/assemble-sdk",
  "version": "0.1.4",
  "description": "TypeScript SDK for the Assemble Protocol - decentralized event management with social coordination",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./react": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "keywords": [
    "ethereum",
    "web3",
    "events",
    "tickets",
    "blockchain",
    "social",
    "sdk",
    "typescript",
    "viem",
    "assemble"
  ],
  "author": "Assemble Protocol",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/taayyohh/assemble-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/taayyohh/assemble-sdk/issues"
  },
  "homepage": "https://github.com/taayyohh/assemble-sdk#readme",
  "peerDependencies": {
    "@tanstack/react-query": "^5.0.0",
    "react": "^18.0.0",
    "viem": "^2.0.0"
  },
  "peerDependenciesMeta": {
    "@tanstack/react-query": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "dependencies": {
    "abitype": "^1.0.0",
    "viem": "^2.30.0",
    "zod": "^3.25.0"
  },
  "devDependencies": {
    "@types/react": "^18.3.0",
    "@types/react-dom": "^18.3.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "@vitest/coverage-v8": "^3.1.4",
    "@vitest/ui": "^3.1.4",
    "eslint": "^8.57.0",
    "tsup": "^8.5.0",
    "typescript": "^5.8.0",
    "vitest": "^3.1.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:unit": "vitest run test/unit/SDK.test.ts test/integration/build-validation.test.ts",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "test:anvil": "vitest run test/**/*.test.ts",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix"
  }
}