{
  "name": "@reactunity/material",
  "version": "0.25.0",
  "description": "Material Design components and utilities for React Unity",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "typings": "dist/index.d.ts",
  "sideEffects": [
    "./src/styles",
    "./src/styles/**/*.*",
    "./dist/src/styles",
    "./dist/src/styles/**/*.*",
    "**/*.css",
    "**/*.scss"
  ],
  "author": "Gokhan Kurt <krtgkn@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ReactUnity/core.git",
    "directory": "packages/material"
  },
  "keywords": [
    "react",
    "material",
    "material-design",
    "material-ui",
    "unity",
    "unity3d"
  ],
  "license": "MIT",
  "files": [
    "dist"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./styles": {
      "style": "./dist/src/styles/index.scss",
      "default": "./dist/src/styles/index.js"
    },
    "./*": "./dist/src/*/index.js"
  },
  "dependencies": {
    "clsx": "^2.1.1",
    "memoize-one": "^6.0.0"
  },
  "devDependencies": {
    "@reactunity/renderer": "^0.25.0",
    "@reactunity/scripts": "^0.25.0",
    "@types/react": "^19.2.18",
    "concurrently": "^10.0.5",
    "copyfiles": "^2.4.1",
    "onchange": "^7.1.0",
    "rimraf": "^6.1.3",
    "tsdown": "^0.22.14",
    "typescript": "^7.0.2"
  },
  "peerDependencies": {
    "@reactunity/renderer": "*",
    "react": "^19.1.0"
  },
  "bugs": {
    "url": "https://github.com/ReactUnity/core/issues"
  },
  "homepage": "https://github.com/ReactUnity/core/tree/main/packages/material#readme",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown && pnpm run copy-files",
    "typecheck": "tsc",
    "copy-files": "copyfiles -u 1 \"src/**/*.scss\" dist/src",
    "watch": "concurrently --kill-others \"pnpm run watch:build\" \"pnpm run watch:files\"",
    "watch:build": "tsdown --watch",
    "watch:files": "onchange -i \"src/**/*.scss\" -- pnpm run copy-files",
    "clean": "rimraf dist",
    "lint": "react-unity-scripts lint",
    "local": "yalc publish --push",
    "pack": "npm run pack"
  }
}