{
  "name": "@thednp/dommatrix",
  "version": "2.0.12",
  "description": "TypeScript shim for DOMMatrix",
  "homepage": "https://thednp.github.io/dommatrix/",
  "author": "thednp",
  "license": "MIT",
  "source": "./src/index.ts",
  "main": "./dist/dommatrix.js",
  "module": "./dist/dommatrix.mjs",
  "exports": {
    ".": {
      "types": "./dist/dommatrix.d.ts",
      "require": "./dist/dommatrix.cjs",
      "import": "./dist/dommatrix.mjs"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thednp/dommatrix.git"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "keywords": [
    "dommatrix",
    "cssmatrix",
    "shim",
    "polyfill",
    "nodejs",
    "dom",
    "css",
    "transform",
    "typescript"
  ],
  "bugs": {
    "url": "https://github.com/thednp/dommatrix/issues"
  },
  "devDependencies": {
    "@vitest/browser": "^3.1.4",
    "@vitest/coverage-istanbul": "^3.1.4",
    "@vitest/ui": "^3.1.4",
    "playwright": "^1.52.0",
    "typescript": "^5.8.3",
    "vite": "^6.3.5",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^3.1.4"
  },
  "packageManager": "pnpm@8.6.12",
  "engines": {
    "node": ">=20",
    "pnpm": ">=8.6.0"
  },
  "scripts": {
    "pre-test": "pnpm clean-coverage",
    "test": "pnpm pre-test && vitest --config vitest.config.mts",
    "test-ui": "pnpm pre-test && vitest --config vitest.config-ui.mts --browser=chromium",
    "clean-coverage": "rm -rf coverage .nyc_output",
    "badges": "npx -p dependency-version-badge update-badge typescript vitest vite",
    "format": "deno fmt src",
    "lint": "pnpm lint:ts && pnpm check:ts",
    "lint:ts": "deno lint src",
    "check:ts": "tsc --noEmit",
    "fix:ts": "deno lint src --fix",
    "build": "vite build && pnpm copy-docs",
    "copy-docs": "cp dist/dommatrix.js docs/dommatrix.js && cp dist/dommatrix.js.map docs/dommatrix.js.map"
  }
}