{
  "name": "@xanderwaugh/chess-board",
  "version": "1.1.2",
  "description": "A modular, production-ready chess board system for Next.js v16 with React 19, Framer Motion, and chess.js",
  "keywords": [
    "chess",
    "chess-board",
    "react",
    "nextjs",
    "typescript",
    "chess.js",
    "framer-motion",
    "game",
    "ui-components"
  ],
  "homepage": "https://github.com/xanderwaugh/chess-board#readme",
  "bugs": {
    "url": "https://github.com/xanderwaugh/chess-board/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xanderwaugh/chess-board.git"
  },
  "license": "MIT",
  "author": "Xander Waugh (https://github.com/xanderwaugh)",
  "sideEffects": [
    "*.css"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./theme.css": "./dist/theme.css"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist",
    "src",
    "public/pieces",
    "public/audio",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@radix-ui/react-accordion": "^1.2.12",
    "@radix-ui/react-avatar": "^1.1.11",
    "@radix-ui/react-dialog": "^1.1.15",
    "@radix-ui/react-label": "^2.1.8",
    "@radix-ui/react-scroll-area": "^1.2.10",
    "@radix-ui/react-separator": "^1.1.8",
    "@radix-ui/react-slider": "^1.3.6",
    "@radix-ui/react-slot": "^1.2.4",
    "@radix-ui/react-switch": "^1.2.6",
    "@radix-ui/react-tooltip": "^1.2.8",
    "class-variance-authority": "^0.7.1",
    "clsx": "^2.1.1",
    "tailwind-merge": "^3.4.0"
  },
  "devDependencies": {
    "@hookform/resolvers": "^5.2.2",
    "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
    "@tailwindcss/postcss": "^4",
    "@types/chess.js": "^0.13.7",
    "@types/node": "^20",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "babel-plugin-react-compiler": "1.0.0",
    "chess.js": "^1.4.0",
    "cmdk": "^1.1.1",
    "eslint": "^9",
    "eslint-config-next": "16.0.3",
    "eslint-config-prettier": "^10.1.8",
    "lucide-react": "^0.554.0",
    "motion": "^12.23.24",
    "next": "16.0.3",
    "next-themes": "^0.4.6",
    "prettier": "3.6.2",
    "prettier-plugin-tailwindcss": "^0.7.1",
    "react": "19.2.0",
    "react-dom": "19.2.0",
    "react-hook-form": "^7.66.1",
    "semantic-release": "^25.0.2",
    "sonner": "^2.0.7",
    "tailwindcss": "^4",
    "tsup": "^8.5.1",
    "tw-animate-css": "^1.4.0",
    "typescript": "^5",
    "vaul": "^1.1.2",
    "zod": "^4.1.12"
  },
  "peerDependencies": {
    "chess.js": "^1.4.0",
    "lucide-react": ">=0.400.0",
    "motion": ">=12.0.0",
    "next": ">=15.0.0",
    "next-themes": ">=0.3.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "sonner": ">=2.0.0"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    },
    "next-themes": {
      "optional": true
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup && pnpm build:css",
    "build:css": "pnpx @tailwindcss/cli@latest -i ./src/styles/globals.css -o ./dist/theme.css --minify",
    "build:next": "next build",
    "dev": "next dev",
    "format": "prettier --write .",
    "lint": "eslint",
    "semantic-release": "semantic-release",
    "start": "next start",
    "typecheck": "tsc --noEmit",
    "ui-add": "npx shadcn@latest add"
  }
}