{
  "name": "@mesh-gradient/react",
  "version": "2.0.2",
  "description": "The SwiftUI Mesh Gradient abstraction for React",
  "keywords": [
    "mesh-gradient",
    "react"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mikhailmogilnikov/mesh-gradient.git",
    "directory": "packages/react"
  },
  "author": "Mikhail Mogilnikov",
  "license": "MIT",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "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"
      }
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "dependencies": {
    "@mesh-gradient/core": "2.0.2"
  },
  "devDependencies": {
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "eslint": "^9",
    "happy-dom": "^20.9.0",
    "react": "^19",
    "react-dom": "^19.1.1",
    "tsup": "^8",
    "turbo": "^2",
    "typescript": "^5",
    "vitest": "^3.2.4",
    "@repo/eslint-config": "1.0.0",
    "@repo/tsup-config": "1.0.0",
    "@repo/ts-config": "1.0.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "clean": "rm -rf dist",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "check-types": "tsc --noEmit --pretty",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}