{
  "name": "@sei-js/react",
  "version": "3.2.0",
  "description": "React library for front end integrations with Sei",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "yarn build:types && yarn build:cjs && yarn build:esm && yarn build:prettier",
    "build:types": "tsc --project tsconfig.declarations.json",
    "build:cjs": "BABEL_ENV=cjs babel src --out-dir dist/cjs --extensions '.js,.jsx,.ts,.tsx' --source-maps --copy-files --no-copy-ignored",
    "build:esm": "BABEL_ENV=esm babel src --out-dir dist/esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --copy-files --no-copy-ignored",
    "build:prettier": "prettier --write 'dist/**/*.js'",
    "test": "jest"
  },
  "homepage": "https://github.com/sei-protocol/sei-js#readme",
  "keywords": [
    "sei",
    "javascript",
    "typescript",
    "react"
  ],
  "repository": "git@github.com:sei-protocol/sei-js.git",
  "license": "MIT",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@react-icons/all-files": "^4.1.0",
    "@sei-js/core": "^3.1.1",
    "buffer": "^6.0.3",
    "process": "^0.11.10",
    "styled-components": "^6.1.1"
  },
  "peerDependencies": {
    "react": "^17.0.0 || ^18.0.0",
    "react-dom": "^17.0.0 || ^18.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.23.0",
    "@babel/plugin-transform-runtime": "^7.22.15",
    "@babel/preset-env": "^7.22.20",
    "@babel/preset-react": "^7.22.15",
    "@babel/preset-typescript": "^7.22.15",
    "@testing-library/jest-dom": "^6.1.3",
    "@testing-library/react": "^14.0.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/jest": "^29.5.5",
    "@types/react": "^18.2.25",
    "@types/react-dom": "^18.2.10",
    "jest": "^29.7.0",
    "prettier": "^3.0.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "ts-jest": "^29.1.1",
    "typescript": "5.2.2"
  },
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    }
  }
}
