{
  "name": "igniteui-theming",
  "version": "26.0.1",
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "bin": {
    "igniteui-theming-mcp": "./dist/mcp/index.js"
  },
  "scripts": {
    "build": "npm run clean && npm run build:tailwind && npm run build:json && npm run build:mcp && npm run build:e2e",
    "build:json": "node .scripts/buildJSON.mjs && node .scripts/buildComponentDocs.mjs && node .scripts/buildBarrel.mjs",
    "build:tailwind": "npm run clean:tailwind && node .scripts/buildTailwind.mjs",
    "build:mcp": "npm run build --prefix ../mcp && shx cp -r ../mcp/dist ./dist/mcp",
    "build:docs": "npm run clean:docs && npm run build:docs:en:production",
    "build:docs:en:production": "set NODE_ENV=production && npx sassdoc ./sass -d docs",
    "build:docs:en:staging": "set NODE_ENV=staging && npx sassdoc ./sass -d docs",
    "build:e2e": "sass --quiet ./tests/e2e/theme.scss ./tests/e2e/theme.css",
    "clean": "npm run clean:json && npm run clean:tailwind && npm run clean:mcp && npm run clean:docs",
    "clean:json": "shx rm -rf dist/json",
    "clean:tailwind": "shx rm -rf dist/tailwind",
    "clean:mcp": "shx rm -rf dist/mcp",
    "clean:docs": "shx rm -rf docs",
    "preview:palette": "node .scripts/previewPalette.mjs",
    "serve:docs": "npx serve ./docs",
    "lint": "npm run lint:styles && npm run lint:prettier && npm run lint:sassdoc",
    "lint:styles": "stylelint ./sass/**/*.scss --fix",
    "lint:prettier": "prettier \"./sass/**/*.scss\" --check --ignore-path .gitignore",
    "lint:sassdoc": "ast-grep scan --error",
    "fix:sassdoc": "node .scripts/fixSassdoc.mjs",
    "format": "stylelint \"./sass/**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .gitignore && prettier \"./sass/**/*.{scss,css}\" --write --ignore-path .gitignore",
    "prepack": "shx cp ../../README.md README.md && shx cp ../../LICENSE LICENSE",
    "postpack": "shx rm -f README.md LICENSE",
    "prepare": "node .scripts/setup-grammars.mjs",
    "test": "vitest run"
  },
  "lint-staged": {
    "*.{js,ts,cjs,mjs,jsx,tsx}": [
      "biome check --fix --no-errors-on-unmatched"
    ],
    "sass/**/*.{scss,css}": [
      "npm run format",
      "npm run lint:sassdoc"
    ]
  },
  "files": [
    "sass/",
    "dist/",
    "_index.scss"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/IgniteUI/igniteui-theming.git",
    "directory": "packages/theming"
  },
  "keywords": [
    "sass",
    "scss",
    "Ignite",
    "UI",
    "theming",
    "palettes",
    "elevations",
    "typography",
    "design systems",
    "model context protocol",
    "mcp"
  ],
  "author": "Infragistics",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/IgniteUI/igniteui-theming/issues"
  },
  "homepage": "https://github.com/IgniteUI/igniteui-theming#readme",
  "exports": {
    ".": {
      "sass": "./_index.scss",
      "tailwind": "./dist/tailwind/theme.css",
      "node": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json",
    "./sass/**/*.*": "./sass/**/*.*",
    "./tailwind/*": "./dist/tailwind/*",
    "./json/colors/meta/multipliers.json": "./dist/json/colors/meta/multipliers.json",
    "./json/colors/meta/palette.json": "./dist/json/colors/meta/palette.json",
    "./json/colors/presets/palettes.json": "./dist/json/colors/presets/palettes.json",
    "./json/components/themes.json": "./dist/json/components/themes.json",
    "./json/elevations/indigo.json": "./dist/json/elevations/indigo.json",
    "./json/elevations/material.json": "./dist/json/elevations/material.json",
    "./json/typography/presets/typescales.json": "./dist/json/typography/presets/typescales.json",
    "./mcp": {
      "import": "./dist/mcp/index.js"
    }
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.28.0",
    "sass-embedded": "~1.92.1",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@ast-grep/cli": "^0.42.0",
    "@types/postcss-safe-parser": "^5.0.4",
    "igniteui-sassdoc-theme": "^1.1.6",
    "lunr": "^2.3.9",
    "postcss": "^8.4.35",
    "postcss-safe-parser": "^7.0.0",
    "sass-true": "^9.0.0",
    "sassdoc": "^2.7.4",
    "sassdoc-plugin-localization": "^2.0.0",
    "stylelint": "^17.5.0",
    "stylelint-config-standard-scss": "^17.0.0",
    "stylelint-scss": "^7.0.0"
  },
  "treeSitterGrammars": {
    "tree-sitter-scss": "v0.2.0",
    "tree-sitter-sassdoc": "v0.1.0"
  }
}
