{
  "name": "@funkit/connect-core",
  "version": "8.2.0",
  "description": "Headless, platform-agnostic business logic shared by @funkit/connect (web) and @funkit/connect-rn (React Native). No DOM, vanilla-extract, or wagmi.",
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./clients/*": {
      "types": "./dist/clients/*.d.ts",
      "default": "./dist/clients/*.js"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "blockchain",
    "funkit"
  ],
  "author": "https://fun.xyz/",
  "license": "MIT",
  "dependencies": {
    "@fun-xyz/fiat-contract": "0.14.0",
    "@lifeomic/attempt": "3.1.0",
    "@solana/addresses": "^2.1.0",
    "dnum": "2.17.0",
    "uuid": "^11.1.1",
    "@funkit/api-base": "8.4.0",
    "@funkit/fun-relay": "3.0.1",
    "@funkit/utils": "5.0.0",
    "@funkit/chains": "2.4.0"
  },
  "peerDependencies": {
    "@statsig/react-bindings": ">=3.25",
    "@tanstack/react-query": ">=5.0.0",
    "i18next": ">=23",
    "react": ">=18",
    "viem": ">=2.22.14"
  },
  "devDependencies": {
    "@statsig/react-bindings": "3.25.4",
    "@tanstack/react-query": "5.76.1",
    "@types/react": "^19.2.2",
    "dotenv": "^17.2.3",
    "i18next": "25.6.2",
    "openapi-fetch": "^0.17.0",
    "openapi-typescript": "^7.13.0",
    "react": "^19.0.0",
    "test-renderer": "1.2.0",
    "tsc-alias": "1.8.16",
    "tsx": "^4.22.4",
    "viem": ">=2.22.14",
    "vitest": "^4.1.6",
    "zod": "3.25.76"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fun-xyz/funkit.git",
    "directory": "packages/connect-core"
  },
  "homepage": "https://github.com/fun-xyz/funkit/tree/main/packages/connect-core",
  "scripts": {
    "build": "node build.js && pnpm typecheck",
    "build:watch": "node build.js --watch",
    "dev": "pnpm build:watch & pnpm typegen:watch",
    "predev": "pnpm statsig:generate",
    "prebuild": "pnpm statsig:generate && pnpm typegen",
    "statsig:api-types": "openapi-typescript https://api.statsig.com/openapi/20240601.json -o scripts/statsig/api-types.ts",
    "statsig:generate": "tsx scripts/statsig/generate.ts",
    "typecheck": "pnpm tsc --noEmit",
    "typegen": "tsc --project tsconfig.build.json --emitDeclarationOnly && tsc-alias",
    "typegen:watch": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch & tsc-alias --project tsconfig.build.json --watch",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "test": "vitest"
  }
}