{"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"dist-tags":{"latest":"10.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use the :focus-within pseudo-selector in CSS","readme":"# PostCSS Focus Within [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[<img alt=\"npm version\" src=\"https://img.shields.io/npm/v/postcss-focus-within.svg\" height=\"20\">][npm-url]\n[<img alt=\"CSS Standard Status\" src=\"https://cssdb.org/badge/focus-within-pseudo-class.svg\" height=\"20\">][css-url]\n[<img alt=\"build status\" src=\"https://img.shields.io/travis/csstools/postcss-focus-within/master.svg\" height=\"20\">][cli-url]\n[<img alt=\"support chat\" src=\"https://img.shields.io/badge/support-chat-blue.svg\" height=\"20\">][git-url]\n\n[PostCSS Focus Within] lets you use the `:focus-within` pseudo-class in CSS,\nfollowing the [Selectors Level 4 specification].\n\nIt is the companion to the [focus-within polyfill].\n\n[!['Can I use' table](https://caniuse.bitsofco.de/image/css-focus-within.png)](https://caniuse.com/#feat=css-focus-within)\n\n```css\n.my-form-field:focus-within label {\n  background-color: yellow;\n}\n\n/* becomes */\n\n.my-form-field[focus-within] label {\n  background-color: yellow;\n}\n\n.my-form-field:focus-within label {\n  background-color: yellow;\n}\n```\n\n[PostCSS Focus Within] duplicates rules using the `:focus-within` pseudo-class\nwith a `[focus-within]` attribute selector, the same selector used by the\n[focus-within polyfill]. This replacement selector can be changed using the\n`replaceWith` option. Also, the preservation of the original `:focus-within`\nrule can be disabled using the `preserve` option.\n\n## Usage\n\nAdd [PostCSS Focus Within] to your project:\n\n```bash\nnpm install postcss-focus-within --save-dev\n```\n\nUse [PostCSS Focus Within] to process your CSS:\n\n```js\nconst postcssFocusWithin = require('postcss-focus-within');\n\npostcssFocusWithin.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssFocusWithin = require('postcss-focus-within');\n\npostcss([\n  postcssFocusWithin(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[PostCSS Focus Within] runs in all Node environments, with special\ninstructions for:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n## Options\n\n### preserve\n\nThe `preserve` option defines whether the original selector should remain. By\ndefault, the original selector is preserved.\n\n```js\nfocusWithin({ preserve: false });\n```\n\n```css\n.my-form-field:focus-within label {\n  background-color: yellow;\n}\n\n/* becomes */\n\n.my-form-field[focus-within] label {\n  background-color: yellow;\n}\n```\n\n### replaceWith\n\nThe `replaceWith` option defines the selector to replace `:focus-within`. By\ndefault, the replacement selector is `[focus-within]`.\n\n```js\nfocusWithin({ replaceWith: '.focus-within' });\n```\n\n```css\n.my-form-field:focus-within label {\n  background-color: yellow;\n}\n\n/* becomes */\n\n.my-form-field.focus-within label {\n  background-color: yellow;\n}\n\n.my-form-field:focus-within label {\n  background-color: yellow;\n}\n```\n\n[css-url]: https://cssdb.org/#focus-within-pseudo-class\n[cli-url]: https://travis-ci.org/csstools/postcss-focus-within\n[git-url]: https://gitter.im/postcss/postcss\n[npm-url]: https://www.npmjs.com/package/postcss-focus-within\n\n[focus-within polyfill]: https://github.com/jsxtools/focus-within\n[Gulp PostCSS]: https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS Focus Within]: https://github.com/csstools/postcss-focus-within\n[PostCSS Loader]: https://github.com/postcss/postcss-loader\n[Selectors Level 4 specification]: https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo\n","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-focus-within.git","directory":"plugins/postcss-focus-within"},"users":{},"bugs":{"url":"https://github.com/csstools/postcss-focus-within/issues"},"license":"CC0-1.0","versions":{"1.0.0":{"name":"postcss-focus-within","version":"1.0.0","description":"[![NPM Version][npm-img]][npm-url] [![Build Status][cli-img]][cli-url] [![Windows Build Status][win-img]][win-url] [![Gitter Chat][git-img]][git-url]","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-focus-within.git"},"homepage":"https://github.com/jonathantneal/postcss-focus-within#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-focus-within/issues"},"main":"index.bundle.js","module":"index.js","files":["index.js","index.bundle.js"],"scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=4.0.0"},"dependencies":{"postcss":"^6.0"},"devDependencies":{"babel-core":"^6.26","babel-eslint":"^8.2","babel-preset-env":"^1.6","echint":"^4.0","eslint":"^4.18","eslint-config-dev":"2.0","postcss-tape":"2.2","pre-commit":"^1.2","rollup":"^0.56","rollup-plugin-babel":"^3.0"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"gitHead":"ee63ee4246a8107b64f65afa4e13d047839c2593","_id":"postcss-focus-within@1.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"dbaa2e5c2f599cce6384d4afc0073414f2203546","size":5018,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-1.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-focus-within_1.0.0_1518910058056_0.7729713731156693"},"_hasShrinkwrap":false,"publish_time":1518910058113,"_cnpm_publish_time":1518910058113},"2.0.0":{"name":"postcss-focus-within","version":"2.0.0","description":"Ise the :focus-within pseudo-selector in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-focus-within.git"},"homepage":"https://github.com/jonathantneal/postcss-focus-within#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-focus-within/issues"},"main":"index.cjs.js","module":"index.es.js","files":["index.cjs.js","index.es.js"],"scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=4.0.0"},"dependencies":{"postcss":"^6.0.21"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.2.2","babel-preset-env":"^1.6.1","eslint":"^4.19.1","eslint-config-dev":"2.0.0","postcss-tape":"2.2.0","pre-commit":"^1.2.2","rollup":"^0.57.1","rollup-plugin-babel":"^3.0.3"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"gitHead":"1596182fbd0d23a936bcd6389b360f4e0afd5cef","_id":"postcss-focus-within@2.0.0","_npmVersion":"5.8.0","_nodeVersion":"9.11.1","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"7ff76ad8b5e9a000c0123d9690a76752c36c0c52","size":5215,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-2.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-focus-within_2.0.0_1523152522342_0.6922532908309977"},"_hasShrinkwrap":false,"publish_time":1523152522443,"_cnpm_publish_time":1523152522443},"3.0.0":{"name":"postcss-focus-within","version":"3.0.0","description":"Use the :focus-within pseudo-selector in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-focus-within.git"},"homepage":"https://github.com/jonathantneal/postcss-focus-within#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-focus-within/issues"},"main":"index.cjs.js","module":"index.es.mjs","scripts":{"prepublishOnly":"npm test","pretest":"rollup -c .rollup.js --silent","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:js":"eslint *.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.2"},"devDependencies":{"@babel/core":"^7.0.0","@babel/preset-env":"^7.0.0","babel-eslint":"^9.0.0","eslint":"^5.6.0","eslint-config-dev":"2.0.0","postcss-tape":"2.2.0","pre-commit":"^1.2.2","rollup":"^0.66.0","rollup-plugin-babel":"^4.0.1"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"gitHead":"382ed07404b3665e1d31bd795a0c028033bc8276","_id":"postcss-focus-within@3.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"763b8788596cee9b874c999201cdde80659ef680","size":5776,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-focus-within_3.0.0_1537242894675_0.266156652750438"},"_hasShrinkwrap":false,"publish_time":1537242894810,"_cnpm_publish_time":1537242894810},"4.0.0":{"name":"postcss-focus-within","version":"4.0.0","description":"Use the :focus-within pseudo-selector in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-focus-within.git"},"homepage":"https://github.com/csstools/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-focus-within/issues"},"main":"dist/index.cjs.js","module":"dist/index.esm.mjs","scripts":{"build":"npx rollup -c .rollup.js","build:watch":"npx rollup -c .rollup.js --watch","lint":"npx eslint --cache src","lint:fix":"npx eslint --cache --fix","pretest":"npm install && npm run build","test":"npm run lint && npm run tape","tape":"npx postcss-tape"},"engines":{"node":">=10.0.0"},"dependencies":{"postcss":"^7.0.27"},"devDependencies":{"@babel/core":"^7.9.0","@babel/preset-env":"^7.9.5","babel-eslint":"^10.1.0","eslint":"^6.8.0","postcss-tape":"5.0.2","pre-commit":"^1.2.2","rollup":"^2.6.1","rollup-plugin-babel":"^4.4.0"},"babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended","parser":"babel-eslint"},"rollup":{"input":"src/index.js","plugins":["rollup-plugin-babel"],"output":[{"file":"dist/index.cjs.js","format":"cjs"},{"file":"dist/index.esm.js","format":"esm"}]},"keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"gitHead":"d82b739c98fae042d2520c52643028f5be74bc26","_id":"postcss-focus-within@4.0.0","_nodeVersion":"13.12.0","_npmVersion":"6.14.4","dist":{"shasum":"c6b428e13403ba053704ce338514584b6cd880c3","size":5305,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-4.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-focus-within_4.0.0_1586785233377_0.8103446826494147"},"_hasShrinkwrap":false,"publish_time":1586785233531,"_cnpm_publish_time":1586785233531},"5.0.0":{"name":"postcss-focus-within","version":"5.0.0","keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-focus-within@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-focus-within/issues"},"dist":{"shasum":"6356b6e204b868f80613ad694bea5f5dac6bfd68","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-5.0.0.tgz","fileCount":3,"integrity":"sha512-JR/7QBImEtfOanMU/rZJrs4a+MLE7gzsQaTgLY7oVATj+YMJuTsHBLhceknCLTIj6xS4TkRJX8eaL3pr4PKN4g==","signatures":[{"sig":"MEUCIQC/UzpylvYfyXXmfC9YOZ2FYILCU6qNS7X4m4cqQF6LyQIgeSCCpkRto0S9UAGUpM9pQ0kDM3p44943QfxgOHTD3e0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12714},"main":"dist/index.cjs.js","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"module":"dist/index.esm.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs.js","format":"cjs","exports":"default"},{"file":"dist/index.esm.js","format":"esm"}],"plugins":["rollup-plugin-babel"]},"engines":{"node":">=12"},"gitHead":"40906659a2c651c0e2affdc6b1c4f411e875abb6","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-focus-within.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.6.1","eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","rollup-plugin-babel":"4.4.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_5.0.0_1631886064608_0.46239666550162184","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-focus-within","version":"5.0.1","keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-focus-within@5.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-focus-within/issues"},"dist":{"shasum":"615659122325d86e00bc8ed84ab6129d0b3a0f62","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-5.0.1.tgz","fileCount":6,"integrity":"sha512-50v1AZVlFSVzLTNdBQG521Aa54VABf/X1RkhR8Fm/9dDQby0W0XdwOnuo8Juvf0ZZXbKkxyTkyyQD0QaNVZVGg==","signatures":[{"sig":"MEUCIEjLHYKiWXI3EV9xKO7oGKjXJANw0OI0G1NboDZ24aL+AiEA9Ocy3lO27oESl2y+5cdNC7q/BXxtd2PtIJ0l56OayVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15405},"main":"dist/index.cjs","babel":{"presets":[["@babel/env",{"targets":"maintained node versions"}]]},"types":"./dist/index.d.ts","module":"dist/index.mjs","rollup":{"input":"src/index.js","output":[{"file":"dist/index.cjs","format":"cjs","exports":"default"},{"file":"dist/index.mjs","format":"esm"}],"plugins":["rollup-plugin-babel",["rollup-plugin-copy",{"targets":[{"src":"./src/index.d.ts","dest":"./dist"}]}]]},"engines":{"node":">=12"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"cd8eb6e4eb2d394c61056c85b426f99f6e21d1bf","scripts":{"lint":"npx eslint --cache src","tape":"npx postcss-tape","test":"npm run lint && npm run tape","build":"npx rollup -c .rollup.js","pretest":"npm install && npm run build","lint:fix":"npx eslint --cache --fix","build:watch":"npx rollup -c .rollup.js --watch","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-focus-within.git","type":"git"},"_npmVersion":"7.20.3","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.6.1","eslintConfig":{"env":{"es6":true,"node":true},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.57.0","postcss":"8.3.6","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","rollup-plugin-copy":"^3.4.0","rollup-plugin-babel":"4.4.0"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_5.0.1_1632319327532_0.5727158051188852","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"postcss-focus-within","version":"5.0.2","keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-focus-within@5.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"postcss-focus-within":"dist/cli.mjs"},"dist":{"shasum":"ba9229b68c03ad65aa4ead81ca29717b5b4dbf62","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-5.0.2.tgz","fileCount":12,"integrity":"sha512-0zm8gM/fpFZtWM8drbj5M6HKVztHgLqtHygCMB494SOkudtnePpq5nv0ie2Jx/BrD+A5nhj0uK3tuMnEpjKonA==","signatures":[{"sig":"MEUCIGDpTTvJ3C/x02OR+AryfpA8aPkEEYPiH+X6Y8ViOVMNAiEA1PQ6UDZn/YeQft7S0WTBSNEzjEHz63NolBmhhoqGc9s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtxOJCRA9TVsSAnZWagAAIiAP/RKoIhHQKcm5bQQ6TQEI\n0FmtDm9eVkj6qOLxNLvjkeBoWeCXLfZRPyN0fY7exwsutZq2UECKXVs7HDBm\naREZDO7nsEgtZtj7ZbFwe+VrbkT9/sZ1ZaRVLoi2uPcHFDunT/SIIz0S7T1P\ni7YWeiLwZU8pTehsABVfwpymGInfa6MyOvuJPt47i9H1dfuykDIL8Xlab2Kf\n1ypQ8wg9duH4UxcDJH11jIrfP/Rn2wORiGPehn4Mq5bmfXjzu1T0+hTwJwkN\nVEgxn+G+z5pMu2LLj0zP9t6ZYoTO0yVWOWKUR7RMgRioul2cRNc2GF0OKQUb\n5eNmNhEn/1lj5Sq/J7mBgVf70tGyX3V/AKkvY/TIynfVIADBtvZbIyhzPWzJ\nktQMAAQpXmXjv26H9IebVPWKZnd0NafP1/uYMD8KK3975mNrVgjCXYd5S+4/\nTSFTkL5x/Uv1bFEdCHJVQhjNBHvueFKx94SR93F5wdF8BhR7+LptpJiiB8+M\nC3qUaaAq+OxTor1MsUqf5ocpqY7QoLXyhdXUSErjHOh2MLcogMYPzUpYoBYB\n06Pte6r/u66GezJa3uVRIh8ogYOoGmkXiYCFu3QGMfYz2O0tnap1Y/7/rSRn\nCKYRCXsyPtZO51CNZYFe+9QKfAu7Q9gQ7VkdrGMDhpXxYpjYqmPgGJSPilzz\nLB53\r\n=eG24\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"74c36798aa03dbc1927fc2dd7e2f94e48db98fa4","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.0","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.0","dependencies":{"postcss-selector-parser":"^6.0.7"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_5.0.2_1639388041450_0.37313706969188876","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"postcss-focus-within","version":"5.0.3","keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-focus-within@5.0.3","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"0b0bf425f14a646bbfd973b463e2d20d85a3a841","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-5.0.3.tgz","fileCount":7,"integrity":"sha512-fk9y2uFS6/Kpp7/A9Hz9Z4rlFQ8+tzgBcQCXAFSrXFGAbKx+4ZZOmmfHuYjCOMegPWoz0pnC6fNzi8j7Xyqp5Q==","signatures":[{"sig":"MEUCIQDwu92B30gxx4aA/1XXKBLWcwOFPXCBJ8GG6Yks3e0S3AIgTyE1LIjzqxltRR+uO/eOkOYpxAgU8l8KVGtC3b1VeUI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15220,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0cbHCRA9TVsSAnZWagAAPOIQAJDuVW+QLHtTHyvfjL2V\nTHsqh2xwhA7qfk4KWgD+5uUhZWikAdB5rTgCrc/0YXR1a2YYx30Z4XTVlnf4\n6rN0QxeZP3pLcFJ4+r8J7HqzmrGR10i9jWdP2F2/sjBZ9AB67SXsjhPAWC9g\nwhPNNBdum1PqIj6zBGZ5hHx8vaumawugiOuVX45NDv9XryyY3tbex1nWwFGI\nxYdmr3C9gmDj7ctthp/0/y9gb+2ssv5BtjvYye69mLfL2NHpzofxKnthR2on\niaCTwHiWmrWGzEb39tDZMlga4y/wFLUouhhKl0XmD7w+cJe56Nyr5ODDlbaS\n+C0zSdn6DFNuIx7MJoqmJxlJHGkHKsbRSTtKreaGOjwHDiBFE5vkqfZCWYpT\ngmrBRyTUdFLOiIZH4gK2kVuIUW8YiIpaiHf9HhODPvHXDObLVFpiOhhpeQL2\nGDv+FWmZXtRqP8m8gnWoBdQTNefXFeLvKP8IHT+/pM1ehptTaEvso1ugjgI6\n3p+GGwu9K7E2L+SnIibcClXzImqt+Dz16BQMUWWm4oDWJftBMJQpAlr8UAYJ\ncuF2+DANh+8jWTOKF3E0ng+FDmNY60Z5sFozlG2Ml9z+nga+pHlf9vI/XWYf\nuEA9ffQNypTXpYC/UXw6nyzaqlxUU87SwgVLnRF96bCf/zlvCVCC+3tgJQfT\nTFA5\r\n=NctV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"gitHead":"efdb08fc17440a541431696f6d2587eabf4d352c","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.8"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_5.0.3_1641137863464_0.10671048966684782","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"postcss-focus-within","version":"5.0.4","keywords":["postcss","css","postcss-plugin","focus","within","polyfill","pseudos","selectors","accessibility","a11y","descendants","ancestors"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-focus-within@5.0.4","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5b1d2ec603195f3344b716c0b75f61e44e8d2e20","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz","fileCount":7,"integrity":"sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==","signatures":[{"sig":"MEUCIAPAZqbgYyNuOngxWS9o8ZMHSjhCeZcWy/GIudSZWF7YAiEAuMcjDE1lmm9yh2CMR3pCYRL1TaewSgpsQqdFNrmAkpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/q8RCRA9TVsSAnZWagAAlMMQAJ5LxXpJIUUC8yehxNYq\nBt6AXqtrLOmBIH4DADgZPlwcswvi1D5XTURDz3qfpYY/Dxu1oC6DZ1DL3BSc\nOMGAXc3RbCxBymRhzBJktMfelyefZX8FbiJzC4TAW+U+CHBFGC6/trEuJ7qK\nXRCu9futzQsi5R+IcT2Icr4Nd2q1TAFLHjIcFKjZY+BjEYw45eub+ATzBES2\ngjjiQxmH5C+DzI7m1HD2nPEI5aKstkMbRfMgDSY/l30jaxU9UAT9r59M5+dM\npLmN7e96cmdzzRwykrll+DcwZRB6VjJ7VS4n+5tqiXH/Ur/9LYDUzqJNwnLp\n2wHCUbyzaDTtpbv2UOxTqtww2gMqJAP0PlYe5kETZw1iTf8jjOglmaTS/5b8\nKc0SZLPrlIk9ia/ogJ9HrIv0fBGN/OcNN1JoiMGMFN7wsx9qBxs3yfp1RsPV\nBW5jNjY5pYiasUJfO9hgRkc6+W/0JS5mD/2gXK1bcHVWbXBRZz5a6w7XPAMz\nRsFgmd1zlyEBUAXuPOWzh6I0FR3qTU1yVgVMmE63qdfff0NGARbl2iOpYgN4\nuqW5A0/j780Kxq2gkTJRhnAWCPMwjn1XTYhRnDK55FsD0HI473mlONzDwXtA\ntT37ZIMQqp4UHH9yRUM1lF0XpEOXBXPT7NHZZ+XqdEo60nT5Zf9Ml2j4Mkhz\nWvbd\r\n=e77D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"}},"gitHead":"1a1a983df7404d906219cbeba5443ccb9c47b228","scripts":{"lint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test":"postcss-tape --ci && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","stryker":"stryker run --logLevel error","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.9"},"_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_5.0.4_1644080913220_0.6430127035303979","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-focus-within","version":"6.0.0","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@6.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"febeb6e500f0ff3a115c543c92d668d427c5ea88","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-6.0.0.tgz","fileCount":13,"integrity":"sha512-QqEKkWGrzw6/MO/D3zFf/biXWBgRIH9x/USrCvA2lUfwKG1IkF1UD+6hXe+Rpe9rW/+q7S07HZGlurLSIlyguA==","signatures":[{"sig":"MEUCID6o8vrrcDHBQFpmYTEjBpRFW/qfeuiFGUGS+5MaO45oAiEAjGiNmEdPoye1KcCYyR4cxPidd1AVXrSHHIGpp8OHmkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38828,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyGoYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpbkxAAjsHUNHxt3BLdeG+u3+uCVTwWPkpCRQU9fsYz2mDq1mI886Su\r\n/ERK3WhvEKmPWfZvLGQM32Mx53m3fSVDduH8p9EiozDTAytp18PtwP5rSBN6\r\ntboQ3KCD2flgdmNKu5shMcf3v2vb4kC2Jo0bkTHyZq3sliKYeP3jUdrrqOjA\r\n7UfvUrfLpYZrdlysVWZDo3DgGErivBezi+HRoAGE+1S36uThVeMrvm9HSoti\r\n+IST146/zb2/E0FzxERa0dEjMqzNEYiPNFon5/4rFYNe9HfFtN/BahKsFsWh\r\nc42Fb2/GZkVpgwul1DYs6kWkaANOAbNwAQe8n8gasYcuiDG8xxRC8d0BrxDb\r\nCRTLtr16hHhuq23MTrMuLrGI6oeIJRYwJtlQKLgis5elde7tOn5zgYgjLZW8\r\nxXrfxL8PbjJ8a4IMDj9cQCDdUuM+Rn46+qhWEHEREL11url4t/KidjRAHAap\r\nSrXb6xxZF17Y4wCpJMaQPRjUMgWlf3yKAFZsS7ijYtygjZPndgAk+ZR+1JFe\r\nWQXHBvj+Nw1Aj1itfHnbhlRvLJRRpBLMBZJt9vSYaNvg4enbhvakau9fEpKC\r\nCUD1nRZV8cTk68ReRTMAhfpbnDXyyVXiVZj7K+VJ72klD7eJqfeZvKMlxvro\r\nFPZk4qCz1yb4piuyGHwPaKC1jEJmsrDO7SE=\r\n=Ojad\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"f26252111c84461681875086fac5ca3e26532916","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_6.0.0_1657301528662_0.20077407114457602","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"postcss-focus-within","version":"6.1.0","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@6.1.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"12903d157700934aeff12b27dff95b97b61283c2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-6.1.0.tgz","fileCount":13,"integrity":"sha512-a9Ht56HcGKN9PxcBoiS3tkyIo85epX479fHqs38Eonnc4rKaJ/vJSg/NJWfkPsc92nAQxX+RTVO7eb7/3m0hEg==","signatures":[{"sig":"MEYCIQC1GWHKultGoghcjgoXz1I0t4NpGdfRTbTMuVVrMLgKeAIhAK0LRc1+0OanGIg0GpHpvKOd3HWvNAeMqgWQ4DPPn/+I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5WyzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMhw//fZj0faY3qh5sDTWNLzYPmkYvWWxaMqg6Sg/cS6NBs1VWPDLm\r\noU94EvmJpwcLiwdlIshpoLSvUBDwfYsyT6Ha4w7CIR0J2TEhV+/+ZwBTsvf7\r\neefX4OSNC+yInkVn16Pye+599I51vShp3sniqufbtK6FG4n9lqjCqSB2cVtY\r\niZIvp+QqKKXGFG33ntFkZ0yU+i6Tou8wBLLWMP4iSws3MIYKYlmIvzYuIXfM\r\nLzSWTR9xwbqXeR6uqgmmN3ADZe7bHU3BGXRYLc0SaETVVw8gZX3vfR4RcKtd\r\nlaN8E26EHZYRcA1CQdyVHCKdMGzoLZWKBH2Q9vr4SHmXJ7Fx3Ef5nPbVDE8T\r\nsv3jVeIe+addyihteF8S4Xv2fOabC66N9vOaqnbWlFLbPQITOtlUw8QFozNW\r\nCnTpxDr06uKgheu5KbnsB0e1eI+GRL2uP0nJHrEo46aUcY+7u8fukcMXmrIC\r\n4MWWuq3JBSphOqz7dZtdJI7IOTIv+WvXDswPaeKHKbxfAge8G+/dG6yVF/Eq\r\nNf0WR+OZg7hI23ikBKiHVMZ3D+RA0BqxRGu1hZSMZ8JwkUjVO9qrDg30lfxX\r\nlpkWNhx7BYCZV/yvXueHHfKKCGZ+c/68O9MVnfGI/MqeIiR7YBocprbM+1vh\r\n9vqgPcxQ4hictnqyCsqupOPNFlvlanVONoA=\r\n=Ywb6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"e18c674bdcfc55539f3103d1ce8ccf99f797a1f1","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_6.1.0_1659202739667_0.8482871245744938","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"postcss-focus-within","version":"6.1.1","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@6.1.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"93e412c4a5caa9843ede494f05be6f3e997006f7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-6.1.1.tgz","fileCount":13,"integrity":"sha512-3NwCIuP/VQMzKbGS7sxCN8tquUhZSeQg9GGS6krST9dF9R243OvP0+zRBTlO2KgWNotyO4HVB7bwNqWRXicr0Q==","signatures":[{"sig":"MEQCIEoIWbtbboY4jrCgCstbjx4DjN1n5t5um9r8LZrlgXzYAiBaC/y/DHrb1p5ByV5UfviR+8olr5mJFoXgCtyYILCRDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBT48ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqb2g/+NHgNU/9/J+RbXPdRV3vl2DJOjUd3lcgadP9MqXShT2sVk6Px\r\nSW/7NZal3ZEEGBiJiBmN1GMhf3RL0ityLIF9xbXGevinFVzgxztyPHTZw62V\r\ndolIykaJigthOY8TjASYElgowM0LBzpxJqG+ZxkwfyJYuWNBigz/IIL5wb2e\r\nj87fLv+ESY9G7tb4qASRheDh9K6gNu159FZOg0u1BFk5CssjiKARR1FTp7TT\r\nD1lYCdRiCxBM5caiuK1Qk31n7f3WtlPCZlffO1bTucmSLVOYa7gSK65SbipR\r\nDOTrqepX6E06d/1w+wxKjHAtsnJ9SxHmNeQMkNB7CqiJy8FMlzeu6CWNOE/k\r\nInDiYUzQEg1sgq0rDvAD/tbqtDzVKw6PYNk/lFFuL9cZogGGZkC/CJB50Gfo\r\nGeP+nX4uddSDcKCeTNdAC7suhiXyY6GBu3Y8GPNN8hD7NCShJby+z3uNFwx5\r\ne8XbR70xJbffeYubeikLnbB/szD1x/B3NDNSwl2bNtHH4znxywLKUUnPSYba\r\nlM1ypV+foh2zDclh2QxSint0bGJGfbiGgAMmSAcy4xbQHKpEeHG53l7UQNyX\r\n9yvyhnIijiqiQVrvrDgGiP26DyToGQeNW4tAHjmwiCWvhhDB1kDDOczFPLT2\r\niH7e6M5Lky6Bug18z1M9f5mtD+Qzh8Ekuv8=\r\n=3iX1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"4bd9b1702df3be672306bedefe7af3b2b877205d","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.js","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_6.1.1_1661287996623_0.1139467186155545","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-focus-within","version":"7.0.0","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@7.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"224c671a7e7d18d05135378943cf18ee0ce20d00","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-7.0.0.tgz","fileCount":13,"integrity":"sha512-DdIAwUY/7D981ROrWjxDuhCOTlbgjqbn2lCCuHWcGm+4s3m7thOCQzBGWBFc1heIx3MkiG1qF4Ew4logiPOxaQ==","signatures":[{"sig":"MEUCIAQdnAWym5v9j+FMTbtehsQgF9eDyf4fYgSGTm4LVZ+GAiEAkcG0lGk2BmrqovfyuP36HbQqOlYicgJmUKcJ53RJQ8U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz59QACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqhGg//UkC/04YZqEOgpv1wUYhCxJGOtw3TTHETFyAf6Sh++rtZqffG\r\nv+drkgLSV1SkGpsgfpfhTFrS0X8WPkXXLoP978BSvU7aPqWzCY+C1wjtAopo\r\nHAUAQMRGZz3o4TTNfxn42GctKbivFf1H0BHMGe77zgeY5yAIndUrN6PKu1e8\r\nQCAj4YUewvPp+LHR3TDWxZeHJ5tNMtLfzT9rcPFwX52tpFv4fKiERpyVvO59\r\n7B9EwJ38Wa1MDylHCFbCjQhxQvVJNrgJeyC3EZ1n6ZtAp29xPB/fQPq1oOSu\r\nXJ8kVQQO4Bo+Wn1fyC8vlVaF+wCDQrBWv+HvFzOUuC3vwAZ2yZksk276GPuw\r\nJnmIcGQHpPuNSrpJEL+GvI02LIpteYARt9RTFZbggQD2J9bf7x4VX9tiJn7a\r\ni0a+MZ/RPCrH/b4gQa65zGp0aB1bo27UB+iJXdgX+zmqcsbSVYqNQeAmHCRK\r\nRZxOf8YAAfc3uMAl0/IH49LPJjJn8KwAhVkSk9u54HHnvUOElKahbOfIeors\r\nLd+TU6ffYUDlEcrZ4C437sv15ECba542AJ22JhunOinBI3/NLQCzOwBFSyDk\r\noxf0kD7ruAJ4D4hvNWtRcba84YptVuaf00DxbxjApphdTQyzRlSeVtiTsE4a\r\n0yEXErPqL5WQiJGstoktLHqboloS1J9f6DY=\r\n=TpNP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"9418170068c0fa4f03283c1d4b8485b8cb9f143e","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.1.2","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"16.13.1","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_7.0.0_1674551120315_0.6027439688591743","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"postcss-focus-within","version":"7.0.1","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@7.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"4b91875d2ceba27e1deebb26f74e68bad6096e36","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-7.0.1.tgz","fileCount":13,"integrity":"sha512-iSpk018Yqn0xwltFR7NHjagyt+e/6u8w50uEnGOcFOddLay5zQFjpJBg6euEZu7wY5WDq83DPpdO99eL+8Er8g==","signatures":[{"sig":"MEUCIQCkqCKDNwOH5uaVWlnGp1e5jP7u5qa/fnFEMVmeP3qgrgIgM2W7ATbxIZNXqjlfffdWCkAxHMS/brwKHdpUmHsX214=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1NEYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOqA//cGflkupu8IErtk9YxO9SgwJbLJyYaXqJidA73ZV46R8J7N/N\r\nmgpx1zafIYg5gZ44yKWCHUvijCYr/zthHjYYgnL82WO2mkGlPdPZvaobW8Kt\r\na6Cakv1OXRbpZ0llMpxqjsLoEL6jlVelFbR7X5I8JrxBT76OO2dDH7WcoGPC\r\neB3guHVe8QbJW/hUK+Rw1Up5aKD3bsOpFrTrdTTp6UWUGHb9L1C6ESUoTDWo\r\nRjJiDAFQ/h5tuQTBKySnnJXPPfobfbK5utLHlCg6GkBFBnd5aJyh1VugzXp4\r\ns8LPNFRE8Q2+ouoTGQvuWiEZCkJWOxU1KTykfsXV2s0QJvw5LpNYpARLLzrZ\r\nori9EBeHdZt5IW2y65tOaFH1RjcDbJRy4Bg7IQgTy+gPZ77x4FY2H4dUzQxA\r\noVp6tQ9BBMFpeEZx5paVrryPkgKEHRachIGCCWQ2vJv9HGeSLKpJJQAc5ttc\r\nWRXJRj/4hWUc8VaUnPHpGL1/v3h9riRlLsYrdtPqnrJqhhMAbcW6RdwjI1UJ\r\n85Tj2AwJ6y+cykRjzdmGd3QBa7HjbPEfw4zuaSVkWfPQnApjVa2QHSpW/Qi5\r\nq/v4TiASPGucZhiE/TBO3CRceGrH8ZinL0s1MAk4URzyvKnCn1NaiSp5PfK3\r\nWbc01kwQnQCmnrn+Po5XD/F17wxawFbV8CU=\r\n=vYzX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"88b7d48b511ccbbb03520fe6c06ac44edb303ce1","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"8.18.0","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"18.8.0","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_7.0.1_1674891544147_0.762325336600675","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"postcss-focus-within","version":"7.0.2","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"CC0-1.0","_id":"postcss-focus-within@7.0.2","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"5d2c866030e66ed22b204c9506de640943310b1c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-7.0.2.tgz","fileCount":13,"integrity":"sha512-AHAJ89UQBcqBvFgQJE9XasGuwMNkKsGj4D/f9Uk60jFmEBHpAL14DrnSk3Rj+SwZTr/WUG+mh+Rvf8fid/346w==","signatures":[{"sig":"MEQCIFRxo1d3608GNOSQhdqGW4b3VTu+NIoEONAT1IF+jAyCAiAVimBT41+DG+eFvi53j9sNortNwUxDYpYNxrlT+EKVUg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj418VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqVRAAk5n3kW3OCjh/CIFyqrvEcacymP1ejPFAUIssFXAGadwUYd4T\r\n+NigwB3Hvs7WG/XzE8kPBzZGR3rxdjWWkeeHjvOa82ja6NUSgJqGKwTmfYCA\r\nY+sq6L2lHvvoEXQCu5K5pP1HiIXyrvlHFmkTpujzhJij2H+Pyq8AYIcXxF00\r\nUzxV5EafBcGL3ZQabWlpblt7HXrpMQIQj3STPNLd/0Xv5emfEErOvPP6qr6l\r\naTvqunBoT8OOVmy3/8F9U4BBt+wVPnZObqYZhK+6EZ7N2cXhI2oiYf0IC3sN\r\n6lCxQ+cR7SotTQkYm4RHipzXHWtSxCroO/qM/S3nP57CVe4yRyh98MVOfRZv\r\ntAtEn5ZNGavaT4kjWymCti2kPVIVK+BxEJKY/uYJ0a+sdCjAamUDBZQCpyQe\r\nQXpqN8s+ziCm3ncpwTfKajGm8RV7GG0NVL1nLWBVC9+7qPA/Tb7oWnFfcTTZ\r\nmCNc0H0Cpy6l40J1b4gCUbP2OTtvckPOmU5SiyC5kRLNHHQ2uxZ06T/1aR1J\r\n6EuvjriP0H0MooqRwPd2RQeOUfO16Db+Al63C1MxPmYy2Han72W+iatyxttf\r\nBDPu4lGds1iEHTC9SavrLDORp1AHlRd8EUmIqxlYwebOsKBi261B+s++47wU\r\nLEUgeyEmJetzVuZboJph2jQqLlH+XoVeOg4=\r\n=BDkH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":{"url":"https://opencollective.com/csstools","type":"opencollective"},"gitHead":"4f487af70e9abb9c15fd8a7c110995e8f01be88f","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"npm run lint:eslint && npm run lint:package-json","test":"node .tape.mjs && npm run test:exports","build":"rollup -c ../../rollup/default.mjs","clean":"node -e \"fs.rmSync('./dist', { recursive: true, force: true }); fs.mkdirSync('./dist');\"","prebuild":"npm run clean","lint:eslint":"eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern","test:browser":"node ./test/_browser.mjs","test:exports":"node ./test/_import.mjs && node ./test/_require.cjs","prepublishOnly":"npm run clean && npm run build && npm run test","lint:package-json":"node ../../.github/bin/format-package-json.mjs","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"9.4.1","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"18.13.0","dependencies":{"postcss-selector-parser":"^6.0.10"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_7.0.2_1675845397357_0.24708871793684595","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-focus-within","version":"8.0.0","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"MIT-0","_id":"postcss-focus-within@8.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"8304380dd2dadc1c2dcfa52816ff86be7736fc16","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-8.0.0.tgz","fileCount":13,"integrity":"sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==","signatures":[{"sig":"MEUCIErxhwBoQQp52v7g5c+HuVHLmWwOQqOvbblllByPKBq8AiEA/q65K0DhaSQYDPtdUlTHvREtMiwxr3wfRQlLnaVd/MQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36283},"main":"dist/index.cjs","types":"dist/index.d.ts","volta":{"extends":"../../package.json"},"module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"a3da57bde223f0b0a249e027764566824b599d67","scripts":{"docs":"node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs","lint":"node ../../.github/bin/format-package-json.mjs","test":"node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs","build":"rollup -c ../../rollup/default.mjs","test:browser":"node ./test/_browser.mjs","prepublishOnly":"npm run build && npm run test","test:rewrite-expects":"REWRITE_EXPECTS=true node .tape.mjs"},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"csstools":{"cssdbId":"focus-within-pseudo-class","specUrl":"https://www.w3.org/TR/selectors-4/#the-focus-within-pseudo","exportName":"postcssFocusWithin","humanReadableName":"PostCSS Focus Within"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"9.5.0","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"18.15.0","dependencies":{"postcss-selector-parser":"^6.0.13"},"_hasShrinkwrap":false,"devDependencies":{"@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_8.0.0_1688371989832_0.14929698426367555","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"postcss-focus-within","version":"8.0.1","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"MIT-0","_id":"postcss-focus-within@8.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"524af4c7eabae35cb1efa220a7903016fcc897fa","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz","fileCount":13,"integrity":"sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==","signatures":[{"sig":"MEYCIQCO7qRFO8MvnbI3fQTzXfCNIjKt+BWGrbUxQGaPNBPYEQIhAPzsyXfunG17TBK3LPu3GqiZivfmXpcvvWpVm93hV02W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33743},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":"^14 || ^16 || >=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"7f2f4543d45723e76e204969b6e7339d146359af","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"10.2.3","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"20.10.0","dependencies":{"postcss-selector-parser":"^6.0.13"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_8.0.1_1702682308881_0.09369632636930691","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"postcss-focus-within","version":"9.0.0","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"MIT-0","_id":"postcss-focus-within@9.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"cb281d1c700178bf21b9ae2f4f3a515f53b959b2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-9.0.0.tgz","fileCount":13,"integrity":"sha512-QwflAWUToNZvQLGbc4qJhrQO8yZ5617L6hSNzNWDoqRX4FoIh9fbJbEjy0nvFPciaaOoCaeqcxBwYPbFU0HvBw==","signatures":[{"sig":"MEQCICJHUz3JYFdbGDwukZdGuYJ0m/TJR9V3io8NM+ik+5UoAiAhs0is/+fklPhTWTD1njssllMvQHCACswAPQESqvmhcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32543},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"4455273169e977cc747b15ab17dd19e0f1980474","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"10.7.0","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-selector-parser":"^6.1.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_9.0.0_1722721011791_0.4313063116418525","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-focus-within","version":"9.0.1","keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"license":"MIT-0","_id":"postcss-focus-within@9.0.1","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"contributors":[{"url":"https://antonio.laguna.es","name":"Antonio Laguna","email":"antonio@laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ac01ce80d3f2e8b2b3eac4ff84f8e15cd0057bc7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-9.0.1.tgz","fileCount":13,"integrity":"sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==","signatures":[{"sig":"MEUCIQDeDN1vcyJIBmVteYwUvR2juqSa1fcB8Nlzd+CNsxefyAIgJBO/ZntrzWJYStxcL2hwz14lSsUFyiEHLfSWMHeRRiI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32540},"main":"dist/index.cjs","type":"module","types":"./dist/index.d.ts","module":"dist/index.mjs","engines":{"node":">=18"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"require":{"default":"./dist/index.cjs"}},"./browser":{"import":"./dist/browser.mjs","default":"./dist/browser.mjs","require":"./dist/browser.cjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"funding":[{"url":"https://github.com/sponsors/csstools","type":"github"},{"url":"https://opencollective.com/csstools","type":"opencollective"}],"gitHead":"c7fcd427bea3a5a4ecc80f4b6cc5f2f9f9783897","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/postcss-focus-within"},"_npmVersion":"10.7.0","description":"Use the :focus-within pseudo-selector in CSS","directories":{},"_nodeVersion":"22.1.0","dependencies":{"postcss-selector-parser":"^7.0.0"},"_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/postcss-focus-within_9.0.1_1729719887279_0.8969386849559657","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-focus-within","description":"Use the :focus-within pseudo-selector in CSS","version":"10.0.0","contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"license":"MIT-0","funding":[{"type":"github","url":"https://github.com/sponsors/csstools"},{"type":"opencollective","url":"https://opencollective.com/csstools"}],"engines":{"node":">=20.19.0"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.mjs"},"./browser":{"import":"./dist/browser.mjs","require":"./dist/browser.cjs","default":"./dist/browser.mjs"},"./browser-global":{"default":"./dist/browser-global.js"}},"dependencies":{"postcss-selector-parser":"^7.1.1"},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/postcss-focus-within"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["a11y","accessibility","ancestors","css","descendants","focus","polyfill","postcss","postcss-plugin","pseudos","selectors","within"],"gitHead":"eb6b96a46ca7c004814bd849135a6a294782852f","_id":"postcss-focus-within@10.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-dvql0fzUTG+gcJYp+KTbag5vAjuo94LDYZHkqDV1rnf5gPGer1v/SrmIZBdvKU8moep3HbcbujqGjzSb3DL53Q==","shasum":"191404859ad514c5af96d2af3d0840395db6d74c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-focus-within/-/postcss-focus-within-10.0.0.tgz","fileCount":12,"unpackedSize":30806,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDfrdzAabkr5Eg2VMlaecUdBIrm7C9w7QwWRivhY0CZZAIhAO+QTL2LSQI8eI4GikSFAFb+Vn3nKQBIh0mlA2Esx3Th"}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"romainmenke","email":"romainmenke@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-focus-within_10.0.0_1768375355027_0.9084112799977728"},"_hasShrinkwrap":false}},"name":"postcss-focus-within","time":{"created":"2018-02-17T23:27:38.113Z","modified":"2020-11-11T14:46:48.168Z","1.0.0":"2018-02-17T23:27:38.113Z","2.0.0":"2018-04-08T01:55:22.443Z","3.0.0":"2018-09-18T03:54:54.810Z","4.0.0":"2020-04-13T13:40:33.531Z","5.0.0":"2021-09-17T13:41:04.763Z","5.0.1":"2021-09-22T14:02:07.708Z","5.0.2":"2021-12-13T09:34:01.627Z","5.0.3":"2022-01-02T15:37:43.614Z","5.0.4":"2022-02-05T17:08:33.361Z","6.0.0":"2022-07-08T17:32:08.872Z","6.1.0":"2022-07-30T17:38:59.841Z","6.1.1":"2022-08-23T20:53:16.814Z","7.0.0":"2023-01-24T09:05:20.505Z","7.0.1":"2023-01-28T07:39:04.310Z","7.0.2":"2023-02-08T08:36:37.525Z","8.0.0":"2023-07-03T08:13:10.064Z","8.0.1":"2023-12-15T23:18:29.069Z","9.0.0":"2024-08-03T21:36:51.941Z","9.0.1":"2024-10-23T21:44:47.525Z","10.0.0":"2026-01-14T07:22:35.174Z"},"contributors":[{"name":"Antonio Laguna","email":"antonio@laguna.es","url":"https://antonio.laguna.es"},{"name":"Romain Menke","email":"romainmenke@gmail.com"},{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-focus-within#readme"}