{
  "name": "interactive-surface-css",
  "version": "1.2.5",
  "description": "A framework-agnostic, accessible CSS interaction primitive for buttons, cards, and icon controls with token-driven theming.",
  "keywords": [
    "css",
    "ui",
    "design-system",
    "accessibility",
    "a11y",
    "framework-agnostic",
    "interaction-primitive",
    "theming",
    "design-tokens",
    "buttons",
    "cards",
    "icon-button"
  ],
  "license": "MIT",
  "author": "Kyle Foster",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Foscat/Interactive-Surface-CSS.git"
  },
  "bugs": {
    "url": "https://github.com/Foscat/Interactive-Surface-CSS/issues"
  },
  "homepage": "https://foscat.github.io/Interactive-Surface-CSS/",
  "type": "module",
  "main": "./index.cjs",
  "module": "./index.js",
  "style": "./interactive-surface.css",
  "unpkg": "./interactive-surface.css",
  "jsdelivr": "./interactive-surface.css",
  "exports": {
    ".": {
      "require": "./index.cjs",
      "import": "./index.js",
      "default": "./index.js",
      "style": "./interactive-surface.css"
    },
    "./interactive-surface.css": "./interactive-surface.css",
    "./index.html": "./index.html",
    "./index.cjs": "./index.cjs",
    "./package.json": "./package.json"
  },
  "sideEffects": [
    "./index.js",
    "./index.cjs",
    "*.css"
  ],
  "files": [
    "index.js",
    "index.cjs",
    "interactive-surface.css",
    "index.html",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "check:no-hex-colors": "node ./scripts/check-no-hex-colors.mjs",
    "lint:css": "stylelint interactive-surface.css",

    "pack:dry": "npm pack --dry-run --cache ./.npm-cache",

    "bundle": "node ./scripts/build.mjs bundle",
    "minify": "node ./scripts/build.mjs minify",
    "build": "node ./scripts/build.mjs",

    "test": "playwright test --config=./playwright.config.mjs",
    "test:chromium": "playwright test --config=./playwright.config.mjs --project=chromium",
    "test:install": "playwright install --with-deps chromium firefox webkit",
    "test:install:chromium": "playwright install chromium --with-deps --only-shell",

    "validate:publish": "npm run check:no-hex-colors && npm run lint:css && npm run build && npm run pack:dry",
    "validate:ci": "npm run validate:publish",
    "validate:browsers": "npm run validate:publish && npm run test:install:chromium && npm run test:chromium",
    "validate:full": "npm run validate:publish && npm run test:install && npm test",
    "validate": "npm run validate:ci",

    "prepublishOnly": "npm run validate:publish"
  },
  "devDependencies": {
    "@playwright/test": "^1.57.0",
    "clean-css": "~5.3.3",
    "stylelint": "^17.1.0",
    "stylelint-config-standard": "^40.0.0",
    "ui-style-kit-css": "2.0.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "directories": {
    "doc": "docs",
    "test": "tests"
  }
}
