{
  "name": "@ryvora/react-slot",
  "version": "2.0.0",
  "license": "MIT",
  "source": "./src/index.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "files": [
    "dist",
    "README.md"
  ],
  "sideEffects": false,
  "dependencies": {
    "@ryvora/react-compose-refs": "2.0.0"
  },
  "devDependencies": {
    "@types/react": "^19.0.7",
    "eslint": "^9.18.0",
    "react": "^19.1.0",
    "typescript": "^5.7.3",
    "@repo/eslint-config": "2.0.0",
    "@repo/builder": "2.0.0",
    "@repo/typescript-config": "2.0.0"
  },
  "peerDependencies": {
    "@types/react": "*",
    "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    }
  },
  "homepage": "https:/npmjs.com/package/@ryvora/primitives",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ryvora/primitives.git"
  },
  "bugs": {
    "url": "https://github.com/ryvora/primitives/issues"
  },
  "description": "🎰 Slot utility for composable React components. Pass props down and unlock asChild magic!",
  "keywords": [
    "react",
    "slot",
    "asChild",
    "composable",
    "props",
    "component",
    "utility",
    "ryvora"
  ],
  "scripts": {
    "lint": "eslint --max-warnings 0 src",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "build": "pnpm exec ryvora-build"
  },
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  }
}