{
  "name": "@clerk/elements",
  "version": "0.24.13",
  "description": "Clerk Elements",
  "keywords": [
    "clerk",
    "typescript",
    "auth",
    "authentication",
    "passwordless",
    "session",
    "jwt",
    "elements",
    "radix"
  ],
  "homepage": "https://clerk.com/",
  "bugs": {
    "url": "https://github.com/clerk/javascript/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/clerk/javascript.git",
    "directory": "packages/elements"
  },
  "license": "MIT",
  "author": "Clerk",
  "sideEffects": false,
  "exports": {
    "./*": {
      "import": {
        "types": "./dist/react/*/index.d.mts",
        "default": "./dist/react/*/index.mjs"
      },
      "require": {
        "types": "./dist/react/*/index.d.ts",
        "default": "./dist/react/*/index.js"
      }
    },
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@radix-ui/primitive": "^1.1.3",
    "@radix-ui/react-form": "^0.1.8",
    "@radix-ui/react-slot": "^1.2.3",
    "@xstate/react": "^6.0.0",
    "client-only": "^0.0.1",
    "tslib": "2.8.1",
    "type-fest": "^4.41.0",
    "xstate": "^5.20.2",
    "@clerk/clerk-react": "^5.61.3",
    "@clerk/shared": "^3.47.2",
    "@clerk/types": "^4.101.20"
  },
  "devDependencies": {
    "@statelyai/inspect": "^0.4.0",
    "concurrently": "^9.2.1",
    "next": "14.2.33"
  },
  "peerDependencies": {
    "next": "^13.5.7 || ^14.2.25 || ^15.2.3 || ^16",
    "react": "^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0",
    "react-dom": "^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.17.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "app:build": "(cd examples/nextjs && pnpm build)",
    "app:dev": "(cd examples/nextjs && pnpm dev)",
    "app:dev:debug": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG=true pnpm dev)",
    "app:dev:debug:server": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG=true CLERK_ELEMENTS_DEBUG_SERVER=true pnpm dev)",
    "app:dev:debug:ui": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG_UI=true pnpm dev)",
    "app:e2e": "(cd examples/nextjs && pnpm e2e)",
    "app:lint": "(cd examples/nextjs && pnpm lint)",
    "build": "tsup --env.NODE_ENV production",
    "build:analyze": "tsup --env.NODE_ENV production --metafile; open https://esbuild.github.io/analyze/",
    "build:declarations": "tsc -p tsconfig.declarations.json",
    "dev": "tsup --env.NODE_ENV development --watch",
    "dev:example": "concurrently \"pnpm dev\" \"pnpm app:dev\"",
    "format": "node ../../scripts/format-package.mjs",
    "format:check": "node ../../scripts/format-package.mjs --check",
    "lint": "eslint src",
    "lint:attw": "attw --pack . --profile node16",
    "lint:publint": "publint",
    "test": "jest",
    "test:cache:clear": "jest --clearCache --useStderr"
  }
}