{
  "name": "react-hook-roulette",
  "version": "0.0.10",
  "description": "Minimal roulette wheel component. built with React Hooks.",
  "homepage": "https://github.com/camiha/React-Hook-Roulette",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "typings": "./dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "keywords": [
    "react",
    "react-hooks",
    "roulette",
    "wheel"
  ],
  "author": "Takumi Kamihara (camiha)",
  "license": "MIT",
  "dependencies": {
    "react": "^18"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.4.1",
    "@vitest/coverage-v8": "^1.0.1",
    "husky": "^8.0.3",
    "typescript": "^5.3.2",
    "unbuild": "^2.0.0",
    "vite": "^5.0.6",
    "vitest": "^1.0.1"
  },
  "peerDependencies": {
    "@types/react": "^18",
    "@types/react-dom": "^18"
  },
  "packageManager": "pnpm@8.11.0",
  "scripts": {
    "watch": "vitest",
    "coverage": "vitest run --coverage",
    "lint": "biome lint ./src",
    "check": "biome check ./src",
    "check:apply": "biome check:apply ./src",
    "check:ci": "biome ci ./src",
    "test": "biome ci ./src && vitest run",
    "test:ci": "vitest run",
    "build": "unbuild"
  }
}