{
  "version": "0.1.0",
  "license": "MIT",
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "tsup src/index.ts --format cjs,esm --watch --external react",
    "build": "tsup src/index.ts --format cjs,esm --dts-resolve --external react",
    "typecheck": "tsc --noEmit --emitDeclarationOnly false",
    "lint": "eslint --ext .ts,.tsx,.js,.jsx .",
    "lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "release": "bumpp --commit --push --tag && pnpm publish",
    "prepublishOnly": "pnpm build"
  },
  "devDependencies": {
    "@storybook/addons": "6.4.19",
    "@storybook/client-api": "6.4.19",
    "@storybook/preview-web": "6.4.19",
    "@storybook/react": "6.4.19",
    "@storybook/testing-react": "1.2.3",
    "@types/react": "17.0.40",
    "bumpp": "7.1.1",
    "jest": "27.5.1",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-test-renderer": "17.0.2",
    "ts-jest": "27.1.3",
    "tsup": "5.12.1",
    "typescript": "4.6.2",
    "vitest": "0.6.3"
  },
  "peerDependencies": {
    "@storybook/addons": "^6.4.19",
    "@storybook/client-api": "^6.4.19",
    "@storybook/preview-web": "^6.4.19",
    "@storybook/react": "^6.4.19",
    "react": "^17.0.2 || >=18.0.0",
    "react-dom": "^17.0.2 || >=18.0.0"
  },
  "release": {
    "branches": [
      "+([0-9])?(.{+([0-9]),x}).x",
      "main",
      "next",
      "next-major",
      {
        "name": "beta",
        "prerelease": true
      },
      {
        "name": "alpha",
        "prerelease": true
      }
    ]
  }
}
