{
  "manifest": {
    "name": "core-js-compat",
    "version": "3.37.0",
    "type": "commonjs",
    "description": "core-js compat",
    "repository": {
      "type": "git",
      "url": "https://github.com/zloirock/core-js.git",
      "directory": "packages/core-js-compat"
    },
    "funding": {
      "type": "opencollective",
      "url": "https://opencollective.com/core-js"
    },
    "license": "MIT",
    "author": {
      "name": "Denis Pushkarev",
      "email": "zloirock@zloirock.ru",
      "url": "http://zloirock.ru"
    },
    "sideEffects": false,
    "main": "index.js",
    "types": "index.d.ts",
    "dependencies": {
      "browserslist": "^4.23.0"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-core-js-compat-3.37.0-d9570e544163779bb4dff1031c7972f44918dc73-integrity/node_modules/core-js-compat/package.json",
    "readmeFilename": "README.md",
    "readme": "![logo](https://user-images.githubusercontent.com/2213682/146607186-8e13ddef-26a4-4ebf-befd-5aac9d77c090.png)\n\n<div align=\"center\">\n\n[![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js-compat.svg)](https://www.npmjs.com/package/core-js-compat) [![core-js-compat downloads](https://img.shields.io/npm/dm/core-js-compat.svg?label=npm%20i%20core-js-compat)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18)\n\n</div>\n\n**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)**\n---\n\n[`core-js-compat` package](https://github.com/zloirock/core-js/tree/master/packages/core-js-compat) contains data about the necessity of [`core-js`](https://github.com/zloirock/core-js) modules and API for getting a list of required core-js modules by browserslist query.\n\n```js\nimport compat from 'core-js-compat';\n\nconst {\n  list,                       // array of required modules\n  targets,                    // object with targets for each module\n} = compat({\n  targets: '> 1%',            // browserslist query or object of minimum environment versions to support, see below\n  modules: [                  // optional list / filter of modules - regex, string or an array of them:\n    'core-js/actual',         // - an entry point\n    'esnext.array.unique-by', // - a module name (or just a start of a module name)\n    /^web\\./,                 // - regex that a module name must satisfy\n  ],\n  exclude: [                  // optional list / filter of modules to exclude, the signature is similar to `modules` option\n    'web.atob',\n  ],\n  version: '3.37',            // used `core-js` version, by default - the latest\n  inverse: false,             // inverse of the result - shows modules that are NOT required for the target environment\n});\n\nconsole.log(targets);\n/* =>\n{\n  'es.error.cause': { ios: '14.5-14.8' },\n  'es.aggregate-error.cause': { ios: '14.5-14.8' },\n  'es.array.at': { ios: '14.5-14.8' },\n  'es.array.find-last': { firefox: '100', ios: '14.5-14.8' },\n  'es.array.find-last-index': { firefox: '100', ios: '14.5-14.8' },\n  'es.array.includes': { firefox: '100' },\n  'es.array.push': { chrome: '100', edge: '101', ios: '14.5-14.8', safari: '15.4' },\n  'es.array.unshift': { ios: '14.5-14.8', safari: '15.4' },\n  'es.object.has-own': { ios: '14.5-14.8' },\n  'es.regexp.flags': { chrome: '100', edge: '101' },\n  'es.string.at-alternative': { ios: '14.5-14.8' },\n  'es.typed-array.at': { ios: '14.5-14.8' },\n  'es.typed-array.find-last': { firefox: '100', ios: '14.5-14.8' },\n  'es.typed-array.find-last-index': { firefox: '100', ios: '14.5-14.8' },\n  'esnext.array.group': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.group-by': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.group-by-to-map': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.group-to-map': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.to-reversed': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.to-sorted': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.to-spliced': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.unique-by': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.array.with': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.typed-array.to-reversed': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.typed-array.to-sorted': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.typed-array.to-spliced': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'esnext.typed-array.with': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'web.dom-exception.stack': { chrome: '100', edge: '101', ios: '14.5-14.8', safari: '15.4' },\n  'web.immediate': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' },\n  'web.structured-clone': { chrome: '100', edge: '101', firefox: '100', ios: '14.5-14.8', safari: '15.4' }\n}\n*/\n```\n\n### `targets` option\n`targets` could be [a `browserslist` query](https://github.com/browserslist/browserslist) or a targets object that specifies minimum environment versions to support:\n```js\n// browserslist query:\n'defaults, not IE 11, maintained node versions'\n// object (sure, all those fields optional):\n{\n  android: '4.0',         // Android WebView version\n  bun: '0.1.2',           // Bun version\n  chrome: '38',           // Chrome version\n  'chrome-android': '18', // Chrome for Android version\n  deno: '1.12',           // Deno version\n  edge: '13',             // Edge version\n  electron: '5.0',        // Electron framework version\n  firefox: '15',          // Firefox version\n  'firefox-android': '4', // Firefox for Android version\n  hermes: '0.11',         // Hermes version\n  ie: '8',                // Internet Explorer version\n  ios: '13.0',            // iOS Safari version\n  node: 'current',        // NodeJS version, you can use 'current' for set it to currently used\n  opera: '12',            // Opera version\n  'opera-android': '7',   // Opera for Android version\n  phantom: '1.9',         // PhantomJS headless browser version\n  quest: '5.0',           // Meta Quest Browser version\n  'react-native': '0.70', // React Native version (default Hermes engine)\n  rhino: '1.7.13',        // Rhino engine version\n  safari: '14.0',         // Safari version\n  samsung: '14.0',        // Samsung Internet version\n  esmodules: true,        // That option set target to minimum supporting ES Modules versions of all browsers\n  browsers: '> 0.25%',    // Browserslist query or object with target browsers\n}\n```\n\n### Additional API:\n\n```js\n// equals of of the method from the example above\nrequire('core-js-compat/compat')({ targets, modules, version }); // => { list: Array<ModuleName>, targets: { [ModuleName]: { [EngineName]: EngineVersion } } }\n// or\nrequire('core-js-compat').compat({ targets, modules, version }); // => { list: Array<ModuleName>, targets: { [ModuleName]: { [EngineName]: EngineVersion } } }\n\n// full compat data:\nrequire('core-js-compat/data'); // => { [ModuleName]: { [EngineName]: EngineVersion } }\n// or\nrequire('core-js-compat').data; // => { [ModuleName]: { [EngineName]: EngineVersion } }\n\n// map of modules by `core-js` entry points:\nrequire('core-js-compat/entries'); // => { [EntryPoint]: Array<ModuleName> }\n// or\nrequire('core-js-compat').entries; // => { [EntryPoint]: Array<ModuleName> }\n\n// full list of modules:\nrequire('core-js-compat/modules'); // => Array<ModuleName>\n// or\nrequire('core-js-compat').modules; // => Array<ModuleName>\n\n// the subset of modules which available in the passed `core-js` version:\nrequire('core-js-compat/get-modules-list-for-target-version')('3.37'); // => Array<ModuleName>\n// or\nrequire('core-js-compat').getModulesListForTargetVersion('3.37'); // => Array<ModuleName>\n```\n\nIf you wanna help to improve this data, you could take a look at the related section of [`CONTRIBUTING.md`](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#how-to-update-core-js-compat-data). The visualization of compatibility data and the browser tests runner is available [here](http://zloirock.github.io/core-js/compat/), the example:\n\n![compat-table](https://user-images.githubusercontent.com/2213682/217452234-ccdcfc5a-c7d3-40d1-ab3f-86902315b8c3.png)\n",
    "licenseText": "Copyright (c) 2014-2024 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.0.tgz#d9570e544163779bb4dff1031c7972f44918dc73",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.0.tgz",
    "hash": "d9570e544163779bb4dff1031c7972f44918dc73",
    "integrity": "sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==",
    "registry": "npm",
    "packageName": "core-js-compat",
    "cacheIntegrity": "sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA== sha1-2VcOVEFjd5u03/EDHHly9EkY3HM="
  },
  "registry": "npm",
  "hash": "d9570e544163779bb4dff1031c7972f44918dc73"
}