{
  "name": "@qctrl/elements-css",
  "version": "9.1.2",
  "description": "Elements CSS is a collection of CSS variables that extend TailwindCSS theme with semantic variables for Elements Design System.",
  "author": "Q-CTRL <support@q-ctrl.com> (https://q-ctrl.com/)",
  "license": "UNLICENCED",
  "homepage": "https://github.com/qctrl/elements-css#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/qctrl/elements-css.git"
  },
  "bugs": {
    "url": "https://github.com/qctrl/elements-css/issues"
  },
  "type": "module",
  "files": [
    "dist"
  ],
  "exports": {
    ".": "./dist/main.css",
    "./*.css": "./dist/*.css",
    "./*.json": "./dist/*.json",
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=24",
    "pnpm": ">=10"
  },
  "prettier": "@qctrl/eslint-config/prettier.js",
  "devDependencies": {
    "@qctrl/eslint-config": "^10.2.2",
    "copyfiles": "^2.4.1",
    "dotenv": "^17.4.2",
    "eslint": "^10.8.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.3.0",
    "prettier": "^3.9.6",
    "prettier-plugin-tailwindcss": "^0.8.1",
    "rimraf": "^6.1.3",
    "tailwindcss": "^4.3.3",
    "tsx": "^4.23.5",
    "typescript": "^7.0.2"
  },
  "peerDependencies": {
    "tailwindcss": "^4.1.18"
  },
  "lint-staged": {
    "*.@(ts|tsx)": [
      "pnpm format",
      "pnpm lint"
    ]
  },
  "scripts": {
    "clean": "rimraf dist",
    "copy:css": "copyfiles -u 1 \"src/**/*.css\" dist",
    "copy:figma": "copyfiles -u 3 \"scripts/figma/json/**/*\" dist/figma",
    "build": "pnpm clean && pnpm copy:css && pnpm copy:figma",
    "publish:build": "pnpm install && pnpm build",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "figma:update-variables": "tsx ./scripts/figma/main.ts",
    "lint": "eslint . --max-warnings=0",
    "lint:fix": "eslint . --fix --max-warnings=0"
  }
}