{
  "name": "@stratakit/mui",
  "type": "module",
  "version": "0.5.0",
  "license": "MIT",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "@stratakit/source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "development": "./dist/DEV/index.js",
      "default": "./dist/index.js"
    },
    "./types.d.ts": {
      "@stratakit/source": "./src/types.d.ts",
      "types": "./dist/types.d.ts",
      "default": "./dist/types.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "LICENSE.md"
  ],
  "description": "StrataKit theme for Material UI",
  "author": "Bentley Systems",
  "homepage": "https://github.com/iTwin/stratakit",
  "repository": {
    "type": "git",
    "url": "https://github.com/iTwin/stratakit.git",
    "directory": "packages/mui"
  },
  "keywords": [
    "frontend",
    "itwin",
    "itwinui",
    "strata",
    "stratakit",
    "react",
    "react-component",
    "mui",
    "material-ui",
    "design system"
  ],
  "dependencies": {
    "@ariakit/react": "^0.4.29",
    "@emotion/cache": "^11.14.0",
    "@emotion/react": "^11.14.0",
    "@emotion/styled": "^11.14.1",
    "@stratakit/foundations": "^0.4.9",
    "@stratakit/icons": "^0.4.0",
    "classnames": "^2.5.1",
    "react-compiler-runtime": "^1.0.0"
  },
  "devDependencies": {
    "@types/react": "^19.2.16",
    "@types/react-dom": "^19.2.3",
    "esbuild": "^0.28.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "typescript": "~6.0.3"
  },
  "peerDependencies": {
    "@mui/material": "^9.0.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "wireit": {
    "build": {
      "dependencies": [
        "build:js",
        "build:DEV",
        "build:types",
        "../foundations:build"
      ]
    },
    "build:js": {
      "command": "node scripts/build.js",
      "files": [
        "src",
        "scripts",
        "../../internal"
      ],
      "output": [
        "dist/**/*.js",
        "!dist/DEV"
      ]
    },
    "build:DEV": {
      "command": "node scripts/build.js",
      "files": [
        "src",
        "scripts",
        "../../internal"
      ],
      "output": [
        "dist/DEV/**/*.js"
      ],
      "env": {
        "NODE_ENV": "development"
      }
    },
    "build:types": {
      "command": "tsc --outDir dist",
      "files": [
        "src"
      ],
      "output": [
        "dist/**/*.d.ts"
      ],
      "dependencies": [
        "../foundations:build:types"
      ]
    },
    "dev": {
      "command": "tsc --watch --outDir dist",
      "files": [
        "src"
      ],
      "service": true
    }
  },
  "scripts": {
    "build": "wireit",
    "dev": "wireit"
  }
}