{
  "name": "postcss-selector-not",
  "description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors",
  "version": "6.0.1",
  "license": "MIT",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/csstools"
  },
  "engines": {
    "node": "^12 || ^14 || >=16"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.mjs"
    }
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "dist"
  ],
  "dependencies": {
    "postcss-selector-parser": "^6.0.10"
  },
  "peerDependencies": {
    "postcss": "^8.2"
  },
  "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-selector-not#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/csstools/postcss-plugins.git",
    "directory": "plugins/postcss-selector-not"
  },
  "csstools": {
    "cssdbId": "not-pseudo-class",
    "exportName": "postcssSelectorNot",
    "humanReadableName": "PostCSS Selector Not",
    "specUrl": "https://www.w3.org/TR/selectors-4/#negation-pseudo"
  },
  "volta": {
    "extends": "../../package.json"
  }
}