{
  "name": "@cofhe/react",
  "version": "0.7.1",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./ui": {
      "types": "./dist/ui-base.d.ts",
      "import": "./dist/ui.js",
      "require": "./dist/ui.cjs"
    },
    "./styles.css": "./dist/styles.css"
  },
  "sideEffects": [
    "**/*.css"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/FhenixProtocol/cofhesdk.git",
    "directory": "packages/react"
  },
  "files": [
    "dist/**"
  ],
  "devDependencies": {
    "@svgr/core": "8.1.0",
    "@svgr/plugin-jsx": "8.1.0",
    "@types/react": "18.2.61",
    "@types/react-dom": "18.2.19",
    "eslint": "8.57.1",
    "eslint-plugin-react-hooks": "4.6.0",
    "nodemon": "3.1.11",
    "postcss-cli": "11.0.1",
    "postcss-import": "16.1.1",
    "react": "18.3.1",
    "react-dom": "18.3.1",
    "tailwindcss": "3.4.18",
    "ts-essentials": "10.1.1",
    "tsup": "8.5.0",
    "typescript": "5.5.4",
    "vitest": "3.2.4",
    "@cofhe/eslint-config": "0.2.1",
    "@cofhe/tsconfig": "0.1.2"
  },
  "dependencies": {
    "@fhenixprotocol/cofhe-errors": "1.0.2",
    "@radix-ui/react-dropdown-menu": "2.1.16",
    "@radix-ui/react-select": "2.2.6",
    "@tanstack/query-async-storage-persister": "5.90.22",
    "@tanstack/react-query": "5.90.7",
    "@tanstack/react-query-persist-client": "5.90.22",
    "bignumber.js": "9.3.1",
    "clsx": "2.1.1",
    "motion": "12.23.26",
    "react-icons": "5.5.0",
    "recharts": "3.7.0",
    "tailwind-merge": "2.6.0",
    "zod": "4.1.12",
    "zustand": "5.0.13",
    "@cofhe/abi": "0.7.1",
    "@cofhe/sdk": "0.7.1"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
    "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
    "viem": "^2.38.6"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsup && postcss ./src/styles.css -o ./dist/styles.css --minify && node ./scripts/create-ui-entry.mjs",
    "dev": "nodemon",
    "lint": "eslint \"src/**/*.ts*\"",
    "check:types": "tsc --noEmit",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}