{"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"dist-tags":{"latest":"11.0.0"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Use light and dark color schemes in all browsers","readme":"# Prefers Color Scheme [<img src=\"https://jonathantneal.github.io/js-logo.svg\" alt=\"\" width=\"90\" height=\"90\" align=\"right\">][Prefers Color Scheme]\n\n[![NPM Version][npm-img]][npm-url]\n[![Build Status][cli-img]][cli-url]\n[![Support Chat][git-img]][git-url]\n\n[Prefers Color Scheme] lets you use light and dark color schemes in all\nbrowsers, following the [Media Queries] specification.\n\n## Usage\n\nFrom the command line, transform CSS files that use `prefers-color-scheme`\nmedia queries:\n\n```bash\nnpx css-prefers-color-scheme SOURCE.css TRANSFORMED.css\n```\n\nNext, use that transformed CSS with this script:\n\n```html\n<link rel=\"stylesheet\" href=\"TRANSFORMED.css\">\n<script src=\"https://unpkg.com/css-prefers-color-scheme/browser.min\"></script>\n<script>\ncolorScheme = initPrefersColorScheme('dark') // apply \"dark\" queries (you can change it afterward, too)\n</script>\n```\n\nDependencies got you down? Don’t worry, this script is only 537 bytes.\n\n## Usage\n\n- First, transform `prefers-color-scheme` queries using this\n  [PostCSS plugin](README-POSTCSS.md).\n- Next, apply light and dark color schemes everywhere using this\n  [browser script](README-BROWSER.md).\n\n---\n\n## How does it work?\n\n[Prefers Color Scheme] uses a [PostCSS plugin](README-POSTCSS.md) to transform\n`prefers-color-scheme` queries into `color-index` queries. This changes\n`prefers-color-scheme: dark` into `(color-index: 48)`,\n`prefers-color-scheme: light` into `(color-index: 70)`, and\n`prefers-color-scheme: no-preference` into `(color-index: 22)`.\n\nThe frontend receives these `color-index` queries, which are understood in all\nmajor browsers going back to Internet Explorer 9. However, since browsers only\napply `color-index` queries of `0`, our color scheme values are ignored.\n\n[Prefers Color Scheme] uses a [browser script](README-BROWSER.md) to change\n`(color-index: 48)` queries into `not all and (color-index: 48)` in order to\nactivate “dark mode” specific CSS, and it changes `(color-index: 70)` queries\ninto `not all and (color-index: 48)` to activate “light mode” specific CSS.\n\n```css\n@media (color-index: 70) { /* prefers-color-scheme: light */\n  body {\n    background-color: white;\n    color: black;\n  }\n}\n```\n\nSince these media queries are accessible to `document.styleSheet`, no CSS\nparsing is required.\n\n## Why does the fallback work this way?\n\nThe value of `48` is chosen for dark mode because it is the keycode for `0`,\nthe hexidecimal value of black. Likewise, `70` is chosen for light mode because\nit is the keycode for `f`, the hexidecimal value of white.\n\n[cli-img]: https://img.shields.io/travis/csstools/css-prefers-color-scheme.svg\n[cli-url]: https://travis-ci.org/csstools/css-prefers-color-scheme\n[git-img]: https://img.shields.io/badge/support-chat-blue.svg\n[git-url]: https://gitter.im/postcss/postcss\n[npm-img]: https://img.shields.io/npm/v/css-prefers-color-scheme.svg\n[npm-url]: https://www.npmjs.com/package/css-prefers-color-scheme\n\n[PostCSS]: https://github.com/postcss/postcss\n[Prefers Color Scheme]: https://github.com/csstools/css-prefers-color-scheme\n[Media Queries]: https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-color-scheme\n","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git","directory":"plugins/css-prefers-color-scheme"},"users":{},"bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"license":"CC0-1.0","versions":{"1.0.0":{"name":"css-prefers-color-scheme","version":"1.0.0","description":"Use a light or dark color theme in CSS CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"client.js","module":"client.mjs","scripts":{"build":"npm run build:client && npm run build:postcss","build:client":"rollup -c .rollup.client.js --silent","build:postcss":"rollup -c .rollup.postcss.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"echo 'Running tests...'; npm run test:js && npm run test:tape","test:js":"eslint src/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin=postcss.js"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.2"},"devDependencies":{"@babel/core":"^7.1.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.2","rollup-plugin-babel":"^4.0.1","uglify-js":"^3.4.9"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"fdfbf0788c9c8a0dff238addd607c55207394c2f","_id":"css-prefers-color-scheme@1.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"8559da9a71a5892353350f75ea821e92e45abf83","size":5765,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-1.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-prefers-color-scheme_1.0.0_1537846404987_0.2519455030897404"},"_hasShrinkwrap":false,"publish_time":1537846405157,"_cnpm_publish_time":1537846405157},"2.0.0":{"name":"css-prefers-color-scheme","version":"2.0.0","description":"Use light and dark color schemes in all browsers","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"index.js","module":"index.mjs","scripts":{"build":"npm run build:browser && npm run build:node && npm run build:postcss","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:browser:dist":"cross-env NODE_ENV=browser rollup -c .rollup.js --silent","build:browser:min":"cross-env NODE_ENV=browser:min rollup -c .rollup.js --silent","build:node":"rollup -c .rollup.js --silent","build:postcss":"cross-env NODE_ENV=postcss rollup -c .rollup.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"npm run test:js && npm run test:tape","test:js":"eslint src/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin=postcss.js"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.5"},"devDependencies":{"@babel/core":"^7.1.2","@babel/preset-env":"^7.1.0","babel-eslint":"^10.0.1","cross-env":"^5.2.0","eslint":"^5.8.0","eslint-config-dev":"^2.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.66.6","rollup-plugin-babel":"^4.0.3","rollup-plugin-terser":"^3.0.0","uglify-js":"^3.4.9"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"9b1357c30b1ec4b4747a14ac01770bc966489e40","_id":"css-prefers-color-scheme@2.0.0","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"f2d3cbf2294f65debee823c0bcb1017237330e33","size":8921,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-2.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-prefers-color-scheme_2.0.0_1541307834878_0.06863424417076391"},"_hasShrinkwrap":false,"publish_time":1541307835053,"_cnpm_publish_time":1541307835053},"3.0.0":{"name":"css-prefers-color-scheme","version":"3.0.0","description":"Use light and dark color schemes in all browsers","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"index.js","module":"index.mjs","scripts":{"build":"npm run build:browser && npm run build:node && npm run build:postcss","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:browser:dist":"cross-env NODE_ENV=browser rollup -c .rollup.js --silent","build:browser:min":"cross-env NODE_ENV=browser:min rollup -c .rollup.js --silent","build:node":"rollup -c .rollup.js --silent","build:postcss":"cross-env NODE_ENV=postcss rollup -c .rollup.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"npm run test:js && npm run test:tape","test:js":"eslint src/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin=postcss.js"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.5"},"devDependencies":{"@babel/core":"^7.1.2","@babel/preset-env":"^7.1.0","babel-eslint":"^10.0.1","cross-env":"^5.2.0","eslint":"^5.8.0","eslint-config-dev":"^2.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.66.6","rollup-plugin-babel":"^4.0.3","rollup-plugin-terser":"^3.0.0","uglify-js":"^3.4.9"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"9645af4169ef6933154e0591d042136fc254a5b0","_id":"css-prefers-color-scheme@3.0.0","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"690f1eef52bff570791940e57d61b68ba9ed6d2a","size":10095,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-3.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-prefers-color-scheme_3.0.0_1541349678730_0.9475619748681017"},"_hasShrinkwrap":false,"publish_time":1541349678891,"_cnpm_publish_time":1541349678891},"3.1.0":{"name":"css-prefers-color-scheme","version":"3.1.0","description":"Use light and dark color schemes in all browsers","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"index.js","module":"index.mjs","bin":{"css-prefers-color-scheme":"src/postcss-cli.js"},"scripts":{"build":"npm run build:browser && npm run build:node && npm run build:postcss","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:browser:dist":"cross-env NODE_ENV=browser rollup -c .rollup.js --silent","build:browser:min":"cross-env NODE_ENV=browser:min rollup -c .rollup.js --silent","build:node":"rollup -c .rollup.js --silent","build:postcss":"cross-env NODE_ENV=postcss rollup -c .rollup.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"npm run test:js && npm run test:tape","test:js":"eslint src/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin=postcss.js"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.5"},"devDependencies":{"@babel/core":"^7.1.5","@babel/preset-env":"^7.1.5","babel-eslint":"^10.0.1","cross-env":"^5.2.0","eslint":"^5.9.0","eslint-config-dev":"^2.0.0","get-stdin":"^6.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.67.0","rollup-plugin-babel":"^4.0.3","rollup-plugin-terser":"^3.0.0","uglify-js":"^3.4.9"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"01a507f314758792aac0d76364147ed29eee44c1","_id":"css-prefers-color-scheme@3.1.0","_npmVersion":"6.4.1","_nodeVersion":"11.1.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"41ae4bbc508ddea95a52d9b2891d6e2ca915d92a","size":9097,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-prefers-color-scheme_3.1.0_1541884503044_0.8958655404873956"},"_hasShrinkwrap":false,"publish_time":1541884503175,"_cnpm_publish_time":1541884503175},"3.1.1":{"name":"css-prefers-color-scheme","version":"3.1.1","description":"Use light and dark color schemes in all browsers","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"index.js","module":"index.mjs","bin":{"css-prefers-color-scheme":"cli.js"},"scripts":{"build":"npm run build:browser && npm run build:node && npm run build:postcss","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:browser:dist":"cross-env NODE_ENV=browser rollup -c .rollup.js --silent","build:browser:min":"cross-env NODE_ENV=browser:min rollup -c .rollup.js --silent","build:node":"rollup -c .rollup.js --silent","build:postcss":"cross-env NODE_ENV=postcss rollup -c .rollup.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"npm run test:js && npm run test:tape","test:js":"eslint src/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin=postcss.js"},"engines":{"node":">=6.0.0"},"dependencies":{"postcss":"^7.0.5"},"devDependencies":{"@babel/core":"^7.1.5","@babel/preset-env":"^7.1.5","babel-eslint":"^10.0.1","cross-env":"^5.2.0","eslint":"^5.9.0","eslint-config-dev":"^2.0.0","get-stdin":"^6.0.0","postcss-tape":"^2.2.0","pre-commit":"^1.2.2","rollup":"^0.67.0","rollup-plugin-babel":"^4.0.3","rollup-plugin-terser":"^3.0.0","uglify-js":"^3.4.9"},"eslintConfig":{"extends":"dev","parser":"babel-eslint"},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"ba8003a13b7ba82c060cc72cf2850ed37bf2544d","_id":"css-prefers-color-scheme@3.1.1","_npmVersion":"6.4.1","_nodeVersion":"11.1.0","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"6f830a2714199d4f0d0d0bb8a27916ed65cff1f4","size":10063,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/css-prefers-color-scheme_3.1.1_1541885520198_0.4801393316160205"},"_hasShrinkwrap":false,"publish_time":1541885520400,"_cnpm_publish_time":1541885520400},"4.0.0":{"name":"css-prefers-color-scheme","version":"4.0.0","description":"Use light and dark color schemes in all browsers","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/csstools/css-prefers-color-scheme.git"},"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"main":"index.js","module":"index.mjs","bin":{"css-prefers-color-scheme":"cli.js"},"scripts":{"build":"npm run build:browser && npm run build:node && npm run build:postcss","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:browser:dist":"cross-env NODE_ENV=browser rollup --config .rollup.js --silent","build:browser:min":"cross-env NODE_ENV=browser:min rollup --config .rollup.js --silent","build:node":"rollup --config .rollup.js --silent","build:postcss":"cross-env NODE_ENV=postcss rollup --config .rollup.js --silent","prepublishOnly":"npm test","pretest":"npm run build","test":"npm run test:js && npm run test:tape","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin postcss.js"},"engines":{"node":">=8.0.0"},"dependencies":{"postcss":"^7.0.16"},"devDependencies":{"@babel/core":"^7.4.5","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","cross-env":"^5.2.0","eslint":"^5.16.0","get-stdin":"^7.0.0","postcss-tape":"^5.0.0","pre-commit":"^1.2.2","rollup":"^1.12.3","rollup-plugin-babel":"^4.3.2","rollup-plugin-terser":"^5.0.0","uglify-js":"^3.5.15"},"eslintConfig":{"env":{"browser":true,"es6":true,"node":true},"extends":"eslint:recommended","parser":"babel-eslint","parserOptions":{"ecmaVersion":2018,"impliedStrict":true,"sourceType":"module"},"root":true},"keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"gitHead":"07de7b67a60c4cfd6cc7f77ddafd073e9ea96e0d","_id":"css-prefers-color-scheme@4.0.0","_nodeVersion":"12.1.0","_npmVersion":"6.9.0","dist":{"shasum":"76ad893393c8cde3014b7f897f3417c59a9be5b3","size":10239,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-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/css-prefers-color-scheme_4.0.0_1558735874318_0.23516844341702225"},"_hasShrinkwrap":false,"publish_time":1558735874421,"_cnpm_publish_time":1558735874421},"5.0.0":{"name":"css-prefers-color-scheme","version":"5.0.0","keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"css-prefers-color-scheme@5.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/css-prefers-color-scheme/issues"},"bin":{"css-prefers-color-scheme":"cli.js"},"dist":{"shasum":"a89bc1abfe946e77a1a1e12dbc25a1439705933f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-5.0.0.tgz","fileCount":13,"integrity":"sha512-XpzVrdwbppHm+Nnrzcb/hQb8eq1aKv4U8Oh59LsLfTsbIZZ6Fvn9razb66ihH2aTJ0VhO9n9sVm8piyKXJAZMA==","signatures":[{"sig":"MEYCIQCXSMDbixHaQkmRpxCza/5S0u1H5nLZ17P5hjLUFNJZEQIhAIQ8cx7mojlK0omWInkSgsa4WgzMcm1mf1BTlKCJg9yS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40933},"main":"index.js","module":"index.mjs","engines":{"node":">=12"},"gitHead":"fd89cdb1316984709009b3fa73716c96291810e1","scripts":{"test":"npm run test:js && npm run test:tape","build":"npm run build:browser && npm run build:node && npm run build:postcss","pretest":"npm run build","test:js":"eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape --plugin postcss.js","build:node":"rollup --config .rollup.js --silent","build:browser":"npm run build:browser:dist && npm run build:browser:min","build:postcss":"cross-env NODE_ENV=postcss rollup --config .rollup.js --silent","prepublishOnly":"npm test","build:browser:min":"cross-env NODE_ENV=browser:min rollup --config .rollup.js --silent","build:browser:dist":"cross-env NODE_ENV=browser rollup --config .rollup.js --silent"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/csstools/css-prefers-color-scheme.git","type":"git"},"_npmVersion":"7.20.3","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.6.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true},"root":true,"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":2020}},"_hasShrinkwrap":false,"devDependencies":{"eslint":"7.32.0","rollup":"2.56.3","postcss":"8.3.6","cross-env":"7.0.3","pre-commit":"1.2.2","@babel/core":"7.15.5","postcss-tape":"6.0.1","@babel/preset-env":"7.15.6","@rollup/plugin-babel":"5.3.0","rollup-plugin-terser":"7.0.2"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_5.0.0_1631885134487_0.7586600820077791","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"css-prefers-color-scheme","version":"6.0.0","keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"css-prefers-color-scheme@6.0.0","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"css-prefers-color-scheme":"dist/cli.mjs"},"dist":{"shasum":"f4742655bacfcb79503ee797b32a088e1bcaf4e9","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.0.tgz","fileCount":16,"integrity":"sha512-Ko2uKO81GbDgV1DG0OywofFy8Oz3/beGryi3ohmXAGo3duZI2HCz6MCQq85WdiKhWE7N3pMjUByIh137Xp5v6g==","signatures":[{"sig":"MEYCIQCa/n1s1EV8RA+Fjvd0eMR6t3LkjOPacCUsx0Hl21mXHAIhAKxuGqcUOM4Dd/ylr0fa3ooXxpnc9ZqVX5vCmdHzhl8r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtwYACRA9TVsSAnZWagAAkcYP/AwW3Lb25reo6AQRhzr6\n/I//yS4+d0SuGaJxIuxe8wiG2cu/zZWIvqoKYPN2dPy5FRvJ5gky0yMtMVF3\nzJMX4l/YcLSXzgdMkKVyEc+c24XTKH1FQ3BK6dNANA+Bzq8sX2kPOjEu1eZo\nEUFAuCzKYnK2f/tKeLP/mYZ5rT2p0PkFOQJQ37uxCicaihIAkPu0EylFXO3Q\ncNWt4Hfjs7ss5B7hxW6r4MAA7G7mgAYlMBzdinigF7Uo2UaoaCuY1iKGQDht\n6BDQ2MWkf7tPyhZRkeRp76GqEKH/5mFMcBDXBtFB9WetWWg1HBDGAK+iHQWy\n2mcIADYdE2fGANdpMS2N0YfyQoR73bPzHI9vSpXk4Lq3OHsyqFCwB8xOMUZT\n8SNhGQz39j3GZgMieJD9bU18jJNmg1Gq8OJJYOPEw6or0ywiQjcINU2f/UY7\nraJUVTwvbe1XCvWrbw6tWNuBpWjEQHauyfFD5YzES20tqCXC1Yn3xb9Qj7YG\nFFTKFr0eaLLpZsvuve8pSIZbJb6nyrkFtQ4KSFMvlfa++cTA0KILH3X9WQDZ\nz6RJTTsgEU5M+cJPxSm7IKE+f7fYTtjTLv3ZAtMvLgCCSScbkryFPVcYxba/\nw6+O1l/n2yswvPma4w7HMg4mp/XrQYwKf9z6QWaVuPoEOIoO5oJQG+MnVNLa\n0GoH\r\n=0rd4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","module":"dist/index.mjs","engines":{"node":"^12 || ^14 || >=16"},"exports":{".":{"import":"./dist/index.mjs","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./browser":{"default":"./dist/browser.js"},"./browser-global":{"default":"./dist/browser-global.js"}},"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 && npm run copy-browser-scripts-to-old-location","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","copy-browser-scripts-to-old-location":"node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js'); fs.copyFileSync('./dist/browser-global.js', './browser.min.js')\""},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"7.8.0","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"14.17.6","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_6.0.0_1639384576684_0.022118459085325837","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"css-prefers-color-scheme","version":"6.0.1","keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"css-prefers-color-scheme@6.0.1","maintainers":[{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"css-prefers-color-scheme":"dist/cli.mjs"},"dist":{"shasum":"8f56b336024259319d976146465b306b68975792","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.1.tgz","fileCount":18,"integrity":"sha512-mTPYV3Ie8f0bw2ajimr4MOUDu5n5iYzhMrIOGN0zcwldAPYgdZc+xRMsSGhqQaNBZVNoxnoDr0m5icnqEyTtrA==","signatures":[{"sig":"MEYCIQCi54hCXvZjQVbZhE9Elf2B1aqzuVr4aDzX2eici3WJJgIhALK1BPXKlQWwLf/S5U3eUfg7Pvwe/yOdKt6aC02MZ80D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":157382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyhs0CRA9TVsSAnZWagAAgjcQAIxfHwTVF0gL2LGSa5l/\nDcMkAVrPdAZhrUQqPjMcf6CHIV7QDaNxzobQsVKLRMU2plwI/VaACxjuQb1F\nIq5YcjpyOu6nOffldKWupLnpyZ3tUyud2ErSJ/aSDmShevc8y0Lc76NQNkCa\nFkJ58Ov15k9Wf0nVuJsBS2lbK/UrCZPOnU8JmDXDojirudQEgWQ6ro3Fpjvz\n6y/Ht/L4ZrC+Km8KlKUubZtoV2w2mqICj4eOeWXMd4v2Z1h1Q312abInzotB\nj/5vUGEjHCIIwD80VLLmD5dZ5I7tkaY0Xe/eWRxFU+M7Py71bSi5Td8igNDz\n3vNGTULPJm7n8xeqqVsg1jRLhZcubP+Dj0j06D0qStwCMkI3g4ZjIAVZxNKK\nbcnHd6zF45xbOxSG9utHBeezmuIn5+b+mlW6jnHIGbvibqaVxFbSPvJa5ar7\ne/M5IRsEY051YmkbTMqNumnx8akY0W6gxxYHV6alPJe5OnH7zuJcCfneSB1l\nLNmdcyJMyTs15jMWUDKX8zbohqDSKyjCF11zo+Wepnt++nMnETYyu7EBtG+/\nlaWffdsQGbK/wuSXoRjgJpqoLW/bw7niyBtBw5Bol41PMvtqfL+TelBPcGri\njhZRLRBNnWjU2UxkwhmDjtwgfUiWKoUdgBZhjfrxpLzKHpjCekaQlD7f+Cfc\nvonO\r\n=iH+2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","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"}},"gitHead":"e7d0a4ff8c49479e0e84441e0ed04082f6b3654c","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 && npm run copy-browser-scripts-to-old-location","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","copy-browser-scripts-to-old-location":"node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js'); fs.copyFileSync('./dist/browser-global.js', './browser.min.js')\""},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_6.0.1_1640635188717_0.6476353261727705","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"css-prefers-color-scheme","version":"6.0.2","keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"css-prefers-color-scheme@6.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"css-prefers-color-scheme":"dist/cli.cjs"},"dist":{"shasum":"d5c03a980caab92d8beeee176a8795d331e0c727","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.2.tgz","fileCount":15,"integrity":"sha512-gv0KQBEM+q/XdoKyznovq3KW7ocO7k+FhPP+hQR1MenJdu0uPGS6IZa9PzlbqBeS6XcZJNAoqoFxlAUW461CrA==","signatures":[{"sig":"MEQCIEqpqdXtmdjsfm1gYeD/wlyNi0t+F9itLZfMXEzE/KJ7AiAbKd60pMkm/x/8zFf0YR6j5w10xFAIgaC4mkDqaR5CJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":148601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0ckpCRA9TVsSAnZWagAAB8UP/3FGcvkqHaBX6REBZ5sb\n5muQHd7Ih21ioobnBcNYh9EiwL8xKwMSMrclmXvxqkZMe028gUOLzml0W8dL\nYo6BkutOQCUzaAgbiZo5gOKiZSEtKDyQlX1+6DUMWRKUFKHgDZymsgGpYYmi\nRZcrdYgpNF6MsEQ8M3gRXZhFbyRVyl1zOOWUINFkqVGnmQkHznXqiFqHJyVf\n7vuhAi20nshQrgVHx7In5m+LFIrVsVS2B/8TqlgyIRUkZ4SK5gg9/Q2t1DDL\n8cjfXUQVtmMzT6nNDmxAmrrbw/84vXRnZ0yT8N3zyDLkB1gyi7luQOSm2XpH\nRsl+/XqEK4Jk+hcCdByOPSFX7Af3RxyYIYMvJ2jPNvlWa9C5882Alumnkd/I\nRSdPXx27v9G/AARtCePkPRWdD68MGFM69tb/aP+gQolgyTcqMNPtECCsDXRi\nMwPwXwsyt66rPRyw0u5aX4Qe0LGOigRkiIDuFWM8qiyv8pnZw/7yNVmsQGiZ\nQk/qs+jwbgi9hm3RBPzStiJXUQcjo5bHKcaJSGQkCgl4ZmdApsnT+htuZPYs\nM5KkcE8xR2MoONpangfExItDcNASROHanRXO0xgdFCWfvbdP+Zx+DZLurAi0\nEX57jRw61sf2YW74OxZZjh6O86wB6GSt/WitpcEnMrGFIp7gWBPTp8q0eWO3\nVOYG\r\n=SCD1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","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"}},"gitHead":"97f3b8de91075e5bbc7c036523daf1ff57a84a01","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 && npm run copy-browser-scripts-to-old-location","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","copy-browser-scripts-to-old-location":"node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js'); fs.copyFileSync('./dist/browser-global.js', './browser.min.js')\""},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.3"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_6.0.2_1641138473052_0.26536601371457524","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"css-prefers-color-scheme","version":"6.0.3","keywords":["postcss","css","postcss-plugin","media","query","prefers","color","scheme","dark","light","no-preference","mode","queries","interface"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"css-prefers-color-scheme@6.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"bin":{"css-prefers-color-scheme":"dist/cli.cjs"},"dist":{"shasum":"ca8a22e5992c10a5b9d315155e7caee625903349","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz","fileCount":15,"integrity":"sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==","signatures":[{"sig":"MEQCIGEOWNU97uwbZO0yyBgwD0S529Q5+LFHiVLuJ9MJgSjkAiAAp+6zGW909pJ7rksmTPfJX85ZwF3ybY/iKVF5ePRH6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh95U4CRA9TVsSAnZWagAA4mEQAJFe7NLDU6FgSNPnZIgd\nfHvuaRk+ve6rualris9DGNtV+5vIFoa3+TjoNuE/DpQh7PTE9gOWrr+gd+rB\nAgUxE9Kk2NYxWmQPh3C3mjNjqkvAosFclV/+sJIHD8uU+lYMvWUGhUP1GPew\nwbO1d2xyg2WImXCT4nyaW3M8S9UB9CbgVeoGjvkNmjyvRmgo1hx3WJYcq7iR\noXq3chdVBE5l1lIdzqzVAApVT6/UmXpKQ7Hd/jh9pL8iDcILkfMmuXSwqjxn\nMPGgLS0mrxLKpIKkNaAEowcVjjJ6Asee0KXunl5Og3oah5T4+3q4fjMQF0Ne\nu9fULJzgqHF4DB4RvJNb9SApt6iYeac0fW6Gtv059nNkMOEZ/C2BR0tExCXR\nzWhv2KPOX9vXN/fJLryTNHGwKLfHGBiPhKd8DghEOlrzK+thXyffVUdS9am7\ngpjCLjcuTIOW4T0CYG4CT5uCyBC4VDhiMbbD9S6ssZNxfmi25ZegsJLzP6Dp\n9Nxe752nOLDm/vS7PgwysUViyGELnitw8cjoMRnrv556D1LloBSPKjAn9ulH\nqUhnUF77N9Z6VQ5zOmKXIf8SedWLl/so50wQlFIvAZ+7ClcC0uudb6LEMBmd\nSdCuDB6eQJ82t4PohyRDJu4iCaHHd2JcQLpkpugrDxQMGkEvzKPPtJ18QzCG\nSG0C\r\n=qvh1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","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"}},"gitHead":"818f26e640844cca4679c93d486e98a4b7ff3f99","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 && npm run copy-browser-scripts-to-old-location","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","copy-browser-scripts-to-old-location":"node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js'); fs.copyFileSync('./dist/browser-global.js', './browser.min.js')\""},"_npmUser":{"name":"alaguna","email":"sombragriselros@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"postcss":"^8.3.6","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_6.0.3_1643615544204_0.46707941099396755","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"css-prefers-color-scheme","version":"7.0.0","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"CC0-1.0","_id":"css-prefers-color-scheme@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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"85be79e03f16b3ba1ad450be9128e621ecbc8bf6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-7.0.0.tgz","fileCount":13,"integrity":"sha512-gD8bZ2+CDDd+p/YcvWGjTzbZ2t1Kn11aE+Sdzg4Z76LGpCeVrntFB4jr1bdOu686wG9vv2W8T+WUgQK4Zqe6mw==","signatures":[{"sig":"MEQCIDxB7rfBKrkVpRrwB7sOuUNFygS8UNsMyURetVuD236vAiBWwVFhJ8xDcOVLQQLAC4L7dfEMT/jVkueO9euCpm7ANQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyGmEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpI6RAAnLGqifSIdWTxImThgSlQ81hJfbZjJpKrezu2RYOn7bPcLQm3\r\ne7WjLu2sc1Yt9wr0czFyNaeiXc+8IUjVUUswCxtR3mWv9YPdQu1SYh3rmuKU\r\ntnxxX9D1oJBj3gDgFyhx80fKN85A24iHPzTdPBmZzhhjPlhgeqVdX/BjCVgQ\r\neZEAcJNQ0BWmxpDaq3FmFPtSzSlJ6qZ7WVVUsqCOxi1kpOoXLMMZvfO4bqJA\r\nfekxrztDx6n/ihQJmW2wlhdanKU+z7HOQa/kQi+kFlq7v6/Yx83f5Gf2rPrW\r\niexEoVkqTau64p2vqdnGWyiVVQq3GnxoKBPAEyM44iFydXTgEo9aQ/NavOPG\r\nVFeYE7Fscks5Y7BK1tegwHubuZ4fh7BUxNjr2U2mvIdN5TgRl8qeNLut+ThH\r\nj85K+CaYHT8pOUQJ2mTCdQzBHGzyEV/ArU+qGDtUZ4Y7i7q2116+qhxanzWS\r\n7NrgLcSQqViLzsPdet6F0Lty9Y+9maDKYdbsNcwLErhmcunSJJ8QEG5uMIr3\r\n9FBqll4xzGeILjB+GvLja1r+u9GwF0aokOkSYWWNNNUik2b+UTNyWtffEcsA\r\n+WGT/94lRLU8IuwXI/oKDYLYAMj1QvfcPPOo/rfARGg6i9RUtXaws6Nv0wgm\r\nF+bvlwNt8s5ua+PElXY1W5a2QymstUGE2JY=\r\n=Fx2W\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":"505f4bca30633914a87aee6c7ef1164f5087f637","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^15.1.1"},"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_7.0.0_1657301380711_0.07890565731854182","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"css-prefers-color-scheme","version":"7.0.1","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"CC0-1.0","_id":"css-prefers-color-scheme@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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"6224cfc0bf9d6c0c52ded7d2cea3ed18e82c8867","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-7.0.1.tgz","fileCount":13,"integrity":"sha512-vacLYKcuRVtNJyPzP7yL55D9glTNcBEuTR2+EuJaO1tCg81U7+fKHO6rI+EvPAmrYH0uaOM64pEj2Iau+Cf6Cg==","signatures":[{"sig":"MEYCIQDc/eHVeb9Nc/Ffoe8raN8gQlQwywLOayw9veQmSohi8AIhAIZvPY6Fd2JowLMWiZ/QiXE/r0OFLuQY6xLbwaFpU9wL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBT4QACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXcg//VY9QvweSYGuxd41UXADKf+kVfgzMjazv//qBLlKgoSgGtZYv\r\nKm3qvUNCvBKoGBDtyAVnXHJeOsJ67b3KyXEuPxrLKvXZVDJDVA/zQKthDZYi\r\nweKt/JcdDDAvYT9YHtZv2fYa3xTeWekH9lvJH7qmk26bwCEYkWHZdoe4K98y\r\nCLwIefZ3Pdu1rqyIShtIg74ZIzNQx51daOCK8jGodNh/m1vSPG8Xa88ps7cu\r\nn+JOvd9u/lBIgfekseyLqnDizZh6k/nPiB09nmlNKy5dz/vROUnJrNs4Ihwm\r\n6u3kx8Q0G8QE5QCfX+WXJtdgntP015T396mJZbX9j3KNg9MQEs6Ln2zPUW0K\r\nLUDhQX6121zS4vCE6OFPZwMMATC8ug43xiv/DSwcMohQuRepC1yyAE08m98a\r\nMPY+95/aYD7RWw1BqdNUE7Du5XZM3pONCw3RXIlhZV75BVZ398d9z4a+tglX\r\nk3KN8fAZuny9sxpKhNj+yxvLxrMeLGr2UVQuqXk8Q1oXEE1azqvj/1ylpst0\r\n2hJfsCzSGmq+J8RuzRVCX+rQfgcjPL6OVy3ylwADQ03chtunnwAohwTQhhqz\r\nrS4unSpCG25fKfB4Ee/bXddCqI205AQ311A/P1PtVb5dL6pk3UIxOm36kmOV\r\nLwLI6kKF6PK3YIYS0Zj/4VReJ+bSJCzmgeg=\r\n=YGTw\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":"2d5689c302ce06a7411c88daebb88cc9d3762beb","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^16.0.0"},"peerDependencies":{"postcss":"^8.2"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_7.0.1_1661287952779_0.742571379407335","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"css-prefers-color-scheme","version":"8.0.0","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"CC0-1.0","_id":"css-prefers-color-scheme@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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"e5db0bbaefc824b1606a5e8215925db6592dff60","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-8.0.0.tgz","fileCount":13,"integrity":"sha512-Fb6GOyJRTI3YZ1v0ySi/X+at+ImRGgySsHvAXYsFo62aTa+ClaMi8E9R/oQmJmD8WPpNHgZXQ1nhkXbCCCne3g==","signatures":[{"sig":"MEQCIA7u3cdx0oQ3HdExpR5LS/DOymXF4I8BiZQhUMnu9k8LAiBratFLV880DKsojT7PSskMZUEIvROLc7aTJuffHULdXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjz5qSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZWRAAi0zCPt/f7QHA3AfPIHYd5RhjRexUkXQD0ZvnInrlZ6Sk3Cn6\r\neHeUUqVU9Bp5wxa/tZ+5ck51b0FQgeDwigy5GBhBAyxoe1wvLfPcF7ll9U/z\r\nRhFa1O0Uv18xYM+HFA8kelJe7/akznW49fIUSiAhAUIS8wWrZR9XNE8yKu/I\r\nzRw/c/kLjOFNEwXGQGMdNp7Klxx0wegKe0L6VdwsHt/iH7tDwPTs9gW7CYh7\r\neuLqr56//C2vfVwAiS2TF5Pu7HAWCnn5XJmdw96psyxPwtB/DrGkesrsjcPJ\r\nNEaDXcv8m4+Ed0w1YPh1nG6livWRkeMtWHZ03rTaNApmy1ml1e2MhHZVMWnv\r\nwcUvXTxZdd/JbovCNWNbTw7SJ7X7GKNXpG9wczhyeaJttS8tF/bxnR9Hy5YA\r\nKgOqwZPnsUwuum7ORz3bZNCVKjO/MttrQPiHYDRdIotzdH0j1i/ZQY7yJzTe\r\nt6x0XH+yafvZtXiAWo78kjvExETzeTpYk4FQVljICEMQukECNmUDiTJHGSnN\r\ncBQvh24feEJSW2fNKmiI2VLJ80rFERrGX6pn4BfoLsUZPXA4NnIgiBbh0EPz\r\nvHTGnyDmxi4176MBnQxhY23iAP4qAm0U7JnM0pj+Q9Av3hErabJZ+m7EPJoZ\r\nSOir1KkVYhPBidt8GJsCt18kUzAaCObNH4o=\r\n=yu+1\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":"e94b860e8805b108404d46a34e8f22480e280565","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.1.2","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^19.5.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_8.0.0_1674549906598_0.05812765409243981","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"css-prefers-color-scheme","version":"8.0.1","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"CC0-1.0","_id":"css-prefers-color-scheme@8.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"fc7217734df3d8e5337d614921e1fa1d10b1fa38","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-8.0.1.tgz","fileCount":13,"integrity":"sha512-RPRyqJsk5KIjP2+WGhcGCaAJB8ojLbX1mVE8fG9127jQmnp1FNMfNMkERk/w6c4smgC/i5KxcY+Rtaa6/bMdKQ==","signatures":[{"sig":"MEUCIQD3g+5/660y1+ICR1immOEOV345/mESp82I2AmObswt2QIgRhgpVIoCXprGyMOxSZxf9hDmzqWtNjpYl63dp0D8MuM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1M6EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoINA/7BVzCtXTPd47o/xEejII58okM5hHMwM6Q16HQGxtRKUh+WH2Q\r\n/lZvNNBXe8UVSDuTO0nINouIW0HmzD98reWCwR9aUuV0KPEP59w2MtFB1pfU\r\nXkdWYJsXXulYcWo88NJeaXn7V7YjyCj0iHyENcT7iGedSZjc6Ofm/Ku5Fvvl\r\nhFPdMfKjdDz6+Jcm4FhxCA71mZvDHHzOXRWFZnvwAr6QpS5xMXKt+PpPrq5c\r\nImmVWoIMU26UWGXpfZggk/f6pERUM9fIlBzh9Vt0uyoaCK2I/f57Yi0zEJD+\r\nyJrRdOG6qrWQkkXrdJ+baBk8W32JdstMjVzKZ7Wbr8K0yJq8E2U/mHo2Sti6\r\nYFtD6VrZmqX8iUZWndYx+80CVoQZwsb7oOEbOmj4yo95g5ZYkTBCcPb+gnnd\r\nc7zAhHtwCkAALGZdK9OQBG/Im5dCOxU2jI7PWmHL+vqzuVuoLG57IBVzM9AK\r\nWQ6FBiIJtK3GN28yyGQ0gQVaG6PdEr0bJwwIBcrXxdaDq/UdyLW+rJqW0TW6\r\ngQ/AbWbAbV+dGGxjXer/qXiiwAq6OUkFmM7C4w/pNwEmNZGWaS9Oj8MMWmny\r\niq76kXUb6yEfMol5BMw5AixvqF+r/ZAZwerNXWProwubHdw8vAJCFbyMC0SX\r\n8bqdtttyO+2BVyTZQwjB5z4j6omL2hrbteA=\r\n=2APm\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":"877f7484279ebc8a80a3d4db2f21d71d436831f4","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"8.18.0","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^19.5.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_8.0.1_1674890884415_0.1689848490103154","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"css-prefers-color-scheme","version":"8.0.2","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"CC0-1.0","_id":"css-prefers-color-scheme@8.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"a0671f54eb19ed0d30b952574c0af11ec355fb6d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-8.0.2.tgz","fileCount":13,"integrity":"sha512-OvFghizHJ45x7nsJJUSYLyQNTzsCU8yWjxAc/nhPQg1pbs18LMoET8N3kOweFDPy0JV0OSXN2iqRFhPBHYOeMA==","signatures":[{"sig":"MEUCIGB3fazVqGHcNWTU1rsoU+odIF7UbHCDsUEwJuPFZ2/lAiEAsqcTmVZeL3xDYp5MzBbu0I60970gjIRB3oG7WqcpW3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47982,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4TY2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6CQ/+O8ZIsamiNZKl7FHSVINkEmbQXwQuWP8fNKZOum4wd6uGSRHF\r\n2meSZUCDHRyGfb/ksd7medNzftuABNzBKYGJwqufio4pr8x07d1UPwlCb6HB\r\nzw1XafSavLvsl0PO6wUzbyZt0DsIYgzsThsOzWyuSYVpvK+FVJ9e6p1RzF1G\r\nOZLVS7NjlgVcS5qgWs94gNdsnbILo3u74lqznC08BAQybnTz2xAniodD2RfZ\r\nuNCUL/xRt3hgHRBXAjMjo6JCnQugOxCJADQE2F8b+cV3mCcfXbxQjdw4JMoe\r\nggXDw4ibLMUKU/PhkibaKNbPPWQhFGo+tewzbtMwgOvJNKiLCm0JYPrCSN3B\r\n4W19+a0C1UqxUBex0ividW3fricXwLBwhW1mRQ18O4+oeUQj59wHvbrVPBdw\r\nRFEH9FiuD815QySTuHzhyml3hrJRJ80mBNh49joCGdNSeI9xvoiCqTGSvayV\r\nWtKCGLitP46ztwyG5Gn5Aa7imzv9zf0Ik9m7fY6gsRL9cU7YPlr95Oga+Fsz\r\nmJskZZL+wP7oxmeYOk4WcXbaghL3CTyT21VdNLsKVCMY4GQjsbmgawOkwxix\r\n/FF1pyhDJec0Ou+nM0IXDU14tS2PMIyV2T6oGKIK/WrhWd8eL4sSq/ivmCwY\r\nDkPW+qd1zGoMV9HRXn9IXO4XZ5h0Rsi0NBg=\r\n=3ALV\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":"c9754f4664cfd84610ed1835614bd48135467c3e","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"9.4.1","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"18.13.0","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^19.5.2"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_8.0.2_1675703862705_0.8017598343025807","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"css-prefers-color-scheme","version":"9.0.0","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"MIT-0","_id":"css-prefers-color-scheme@9.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"7e9b74062655ea15490e359cb456a3b9f4c93327","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.0.tgz","fileCount":13,"integrity":"sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g==","signatures":[{"sig":"MEUCIQDP9MbYK+Yhl0qhCAzpCWDZ3JfI8UHTWFEXKigQNsRi4AIgUQmUojBtdyHg1/tTRBQt74hbwLR1SyLXvp8eeU2kE1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42124},"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":"d196833c7d267767c234a1e8d324fbc4d47b6d2d","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":"prefers-color-scheme-query","specUrl":"https://www.w3.org/TR/mediaqueries-5/#prefers-color-scheme","exportName":"prefersColorScheme","humanReadableName":"Prefers Color Scheme"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"9.5.0","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"devDependencies":{"puppeteer":"^20.7.4","@csstools/postcss-tape":"*"},"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_9.0.0_1688371817521_0.6117295895275972","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"css-prefers-color-scheme","version":"9.0.1","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"MIT-0","_id":"css-prefers-color-scheme@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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"30fcb94cc38b639b66fb99e1882ffd97f741feaa","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz","fileCount":13,"integrity":"sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==","signatures":[{"sig":"MEUCIF2pk5g/F4fiyZJxQQGn1rcbzgsywZfLnN1LfgGMrlYSAiEAyCQNSVYXGckAuVQgy9R92QXRGulPv+6Fnw6PHyC07n4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37591},"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":"8f9a004f35f997eddbcdce1ae79418912d9c3aef","_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"10.2.3","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"20.10.0","_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_9.0.1_1702682260773_0.30422127241477703","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"css-prefers-color-scheme","version":"10.0.0","keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"license":"MIT-0","_id":"css-prefers-color-scheme@10.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/css-prefers-color-scheme#readme","bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"dist":{"shasum":"ba001b99b8105b8896ca26fc38309ddb2278bd3c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz","fileCount":13,"integrity":"sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==","signatures":[{"sig":"MEUCIQCwKimnJ8kGG7cN85ouYyiZbZRWgfCkBusaHcjaBCvkkwIgeSvj3j499LhdHM6E673luOLKm630cZbdTlxKSz1HVu0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36574},"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":"b9a3855dd920af5c3c8508ec5e16baa5fcfb630c","scripts":{},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/csstools/postcss-plugins.git","type":"git","directory":"plugins/css-prefers-color-scheme"},"_npmVersion":"10.7.0","description":"Use light and dark color schemes in all browsers","directories":{},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"peerDependencies":{"postcss":"^8.4"},"_npmOperationalInternal":{"tmp":"tmp/css-prefers-color-scheme_10.0.0_1722720949057_0.26597715751453177","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"css-prefers-color-scheme","description":"Use light and dark color schemes in all browsers","version":"11.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"}},"peerDependencies":{"postcss":"^8.4"},"scripts":{},"homepage":"https://github.com/csstools/postcss-plugins/tree/main/plugins/css-prefers-color-scheme#readme","repository":{"type":"git","url":"git+https://github.com/csstools/postcss-plugins.git","directory":"plugins/css-prefers-color-scheme"},"bugs":{"url":"https://github.com/csstools/postcss-plugins/issues"},"keywords":["color","css","dark","interface","light","media","mode","no-preference","postcss","postcss-plugin","prefers","queries","query","scheme"],"gitHead":"9ca71e1701def4ffc05d02760c5928929cc2c3c3","_id":"css-prefers-color-scheme@11.0.0","_nodeVersion":"25.1.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-fv0mgtwUhh2m9iio3Kxc2CkrogjIaRdMFaaqyzSFdii17JF4cfPyMNX72B15ZW2Nrr/NZUpxI4dec1VMHYJvdw==","shasum":"e8d5651a89765ffc1dd35bf8c30c698ad865f211","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/css-prefers-color-scheme/-/css-prefers-color-scheme-11.0.0.tgz","fileCount":12,"unpackedSize":36226,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIFWFDI3m4Gw1oOmQpMLYO/C8ienZv0aXSRCha5OXjKUIAiEAmyLv8WSLk7MWIBaGkvEaifbLQ9jGOqMkJYjq1YkJ4DA="}]},"_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/css-prefers-color-scheme_11.0.0_1768375281532_0.10058322628014515"},"_hasShrinkwrap":false}},"name":"css-prefers-color-scheme","time":{"created":"2018-09-25T03:33:25.157Z","modified":"2020-11-11T14:46:44.117Z","1.0.0":"2018-09-25T03:33:25.157Z","2.0.0":"2018-11-04T05:03:55.053Z","3.0.0":"2018-11-04T16:41:18.891Z","3.1.0":"2018-11-10T21:15:03.175Z","3.1.1":"2018-11-10T21:32:00.400Z","4.0.0":"2019-05-24T22:11:14.421Z","5.0.0":"2021-09-17T13:25:34.647Z","6.0.0":"2021-12-13T08:36:16.841Z","6.0.1":"2021-12-27T19:59:48.883Z","6.0.2":"2022-01-02T15:47:53.345Z","6.0.3":"2022-01-31T07:52:24.340Z","7.0.0":"2022-07-08T17:29:40.876Z","7.0.1":"2022-08-23T20:52:32.916Z","8.0.0":"2023-01-24T08:45:06.744Z","8.0.1":"2023-01-28T07:28:04.607Z","8.0.2":"2023-02-06T17:17:42.925Z","9.0.0":"2023-07-03T08:10:17.911Z","9.0.1":"2023-12-15T23:17:41.016Z","10.0.0":"2024-08-03T21:35:49.198Z","11.0.0":"2026-01-14T07:21:21.672Z"},"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/css-prefers-color-scheme#readme"}