{
  "name": "postcss-calc",
  "version": "11.2.1",
  "type": "module",
  "description": "PostCSS plugin to reduce calc()",
  "keywords": [
    "css",
    "postcss",
    "postcss-plugin",
    "calculation",
    "calc"
  ],
  "homepage": "https://github.com/postcss/postcss-calc",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/postcss/postcss-calc.git"
  },
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "default": "./src/index.js"
    },
    "./reduce": {
      "types": "./types/reduce.d.ts",
      "default": "./src/reduce.js"
    }
  },
  "files": [
    "src",
    "types",
    "LICENSE"
  ],
  "author": "Andy Jansson",
  "license": "MIT",
  "engines": {
    "node": "^22.22.3 || ^24.15 || >=26.0"
  },
  "devEngines": {
    "packageManager": {
      "name": "pnpm",
      "version": "12.4.2"
    }
  },
  "devDependencies": {
    "@csstools/css-calc": "^3.4.0",
    "@types/node": "^26.6.1",
    "fast-check": "^4.10.1",
    "oxfmt": "^0.68.0",
    "oxlint": "^1.83.0",
    "postcss": "^8.5.28",
    "typescript": "~7.0.2"
  },
  "dependencies": {
    "@csstools/css-tokenizer": "^4.0.1"
  },
  "peerDependencies": {
    "postcss": "^8.5.28"
  },
  "scripts": {
    "lint": "oxlint . && tsc && oxfmt --check",
    "fmt": "oxfmt",
    "benchmark:arithmetic-chains": "node scripts/benchmark-arithmetic-chains.js",
    "benchmark:nested-fallbacks": "node scripts/benchmark-nested-fallbacks.js",
    "benchmark:corpus": "node scripts/benchmark.js",
    "benchmark:serialization": "node scripts/benchmark-serialization.js",
    "test:benchmark": "node --test 'test/unit/benchmark-*.test.js' test/unit/compare-parser-benchmarks.test.js test/unit/corpus-benchmark.test.js",
    "test:benchmark:simulation": "node test/benchmark/statistical-simulation.js",
    "benchmark:reanalyze": "node scripts/compare-parser-benchmarks.js",
    "test": "node --test --test-reporter=dot 'test/**/*.test.js' 'test/**/*.test.cjs'",
    "test:mutation:corpus": "node test/mutation/corpus-selection.js",
    "test:corpus:full": "POSTCSS_CALC_FULL_CORPUS=1 node --test test/conformance/corpus.test.js"
  }
}