{
  "name": "css-if-polyfill",
  "version": "0.1.5",
  "type": "module",
  "description": "A JavaScript polyfill for CSS if() functionality with style(), media(), and supports() functions",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mfranzke/css-if-polyfill.git"
  },
  "homepage": "https://mfranzke.github.io/css-if-polyfill/",
  "bugs": {
    "url": "https://github.com/mfranzke/css-if-polyfill/issues"
  },
  "author": "Maximilian Franzke",
  "license": "MIT",
  "bin": {
    "css-if-polyfill": "bin/cli.js"
  },
  "main": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "module": "dist/index.modern.js",
  "exports": {
    ".": {
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.modern.js"
      }
    }
  },
  "files": [
    "bin/",
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "css",
    "polyfill",
    "conditional",
    "if",
    "media-query",
    "supports",
    "style"
  ],
  "devDependencies": {
    "@babel/core": "7.28.4",
    "@babel/preset-env": "7.28.3",
    "@vitest/coverage-v8": "3.2.4",
    "jsdom": "26.1.0",
    "microbundle": "0.15.1",
    "vite": "7.1.9",
    "vitest": "3.2.4",
    "xo": "1.2.2"
  },
  "source": "src/index.js",
  "umd:main": "dist/index.umd.js",
  "scripts": {
    "build": "microbundle",
    "dev": "microbundle watch",
    "postbuild": "cp dist/index.d.ts dist/index.d.cts",
    "pretest:vitest": "pnpm run build",
    "test": "pnpm run '/^test:[^:]*$/'",
    "test:vitest": "vitest run",
    "test:vitest:watch": "vitest"
  }
}