{"_attachments":{},"_id":"open","_rev":"5114-61f151d8b77ea98a749256e7","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Open stuff like URLs, files, executables. Cross-platform.","dist-tags":{"latest":"11.0.0"},"license":"MIT","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"name":"open","readme":"# open\n\n> Open stuff like URLs, files, executables. Cross-platform.\n\nThis is meant to be used in command-line tools and scripts, not in the browser.\n\nIf you need this for Electron, use [`shell.openPath()`](https://www.electronjs.org/docs/api/shell#shellopenpathpath) instead.\n\nThis package does not make any security guarantees. If you pass in untrusted input, it's up to you to properly sanitize it.\n\n#### Why?\n\n- Actively maintained.\n- Supports app arguments.\n- Safer as it uses `spawn` instead of `exec`.\n- Fixes most of the original `node-open` issues.\n- Includes the latest [`xdg-open` script](https://gitlab.freedesktop.org/xdg/xdg-utils/-/blob/master/scripts/xdg-open.in) for Linux.\n- Supports WSL paths to Windows apps.\n\n## Install\n\n```sh\nnpm install open\n```\n\n**Warning:** This package is native [ESM](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) and no longer provides a CommonJS export. If your project uses CommonJS, you will have to [convert to ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) or use the [dynamic `import()`](https://v8.dev/features/dynamic-import) function. Please don't open issues for questions regarding CommonJS / ESM.\n\n## Usage\n\n```js\nimport open, {openApp, apps} from 'open';\n\n// Opens the image in the default image viewer and waits for the opened app to quit.\nawait open('unicorn.png', {wait: true});\nconsole.log('The image viewer app quit');\n\n// Opens the URL in the default browser.\nawait open('https://sindresorhus.com');\n\n// Opens the URL in a specified browser.\nawait open('https://sindresorhus.com', {app: {name: 'firefox'}});\n\n// Specify app arguments.\nawait open('https://sindresorhus.com', {app: {name: 'google chrome', arguments: ['--incognito']}});\n\n// Opens the URL in the default browser in incognito mode.\nawait open('https://sindresorhus.com', {app: {name: apps.browserPrivate}});\n\n// Open an app.\nawait openApp('xcode');\n\n// Open an app with arguments.\nawait openApp(apps.chrome, {arguments: ['--incognito']});\n```\n\n## API\n\nIt uses the command `open` on macOS, `start` on Windows and `xdg-open` on other platforms.\n\n### open(target, options?)\n\nReturns a promise for the [spawned child process](https://nodejs.org/api/child_process.html#child_process_class_childprocess). You would normally not need to use this for anything, but it can be useful if you'd like to attach custom event listeners or perform other operations directly on the spawned process.\n\n#### target\n\nType: `string`\n\nThe thing you want to open. Can be a URL, file, or executable.\n\nOpens in the default app for the file type. For example, URLs opens in your default browser.\n\n#### options\n\nType: `object`\n\n##### wait\n\nType: `boolean`\\\nDefault: `false`\n\nWait for the opened app to exit before fulfilling the promise. If `false` it's fulfilled immediately when opening the app.\n\nNote that it waits for the app to exit, not just for the window to close.\n\nOn Windows, you have to explicitly specify an app for it to be able to wait.\n\n> [!WARNING]\n> When opening URLs in browsers while the browser is already running, the `wait` option will not work as expected. Browsers use a single-instance architecture where new URLs are passed to the existing process, causing the command to exit immediately. Use the `newInstance` option on macOS to force a new browser instance, or avoid using `wait` with browsers.\n\n##### background <sup>(macOS only)</sup>\n\nType: `boolean`\\\nDefault: `false`\n\nDo not bring the app to the foreground.\n\n##### newInstance <sup>(macOS only)</sup>\n\nType: `boolean`\\\nDefault: `false`\n\nOpen a new instance of the app even it's already running.\n\nA new instance is always opened on other platforms.\n\n##### app\n\nType: `{name: string | string[], arguments?: string[]} | Array<{name: string | string[], arguments: string[]}>`\n\nSpecify the `name` of the app to open the `target` with, and optionally, app `arguments`. `app` can be an array of apps to try to open and `name` can be an array of app names to try. If each app fails, the last error will be thrown.\n\nThe app name is platform dependent. Don't hard code it in reusable modules. For example, Chrome is `google chrome` on macOS, `google-chrome` on Linux and `chrome` on Windows. If possible, use [`apps`](#apps) which auto-detects the correct binary to use.\n\nYou may also pass in the app's full path. For example on WSL, this can be `/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe` for the Windows installation of Chrome.\n\nThe app `arguments` are app dependent. Check the app's documentation for what arguments it accepts.\n\n##### allowNonzeroExitCode\n\nType: `boolean`\\\nDefault: `false`\n\nAllow the opened app to exit with nonzero exit code when the `wait` option is `true`.\n\nWe do not recommend setting this option. The convention for success is exit code zero.\n\n### openApp(name, options?)\n\nOpen an app.\n\nReturns a promise for the [spawned child process](https://nodejs.org/api/child_process.html#child_process_class_childprocess). You would normally not need to use this for anything, but it can be useful if you'd like to attach custom event listeners or perform other operations directly on the spawned process.\n\n#### name\n\nType: `string`\n\nThe app name is platform dependent. Don't hard code it in reusable modules. For example, Chrome is `google chrome` on macOS, `google-chrome` on Linux and `chrome` on Windows. If possible, use [`apps`](#apps) which auto-detects the correct binary to use.\n\nYou may also pass in the app's full path. For example on WSL, this can be `/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe` for the Windows installation of Chrome.\n\n#### options\n\nType: `object`\n\nSame options as [`open`](#options) except `app` and with the following additions:\n\n##### arguments\n\nType: `string[]`\\\nDefault: `[]`\n\nArguments passed to the app.\n\nThese arguments are app dependent. Check the app's documentation for what arguments it accepts.\n\n### apps\n\nAn object containing auto-detected binary names for common apps. Useful to work around [cross-platform differences](#app).\n\n```js\nimport open, {apps} from 'open';\n\nawait open('https://google.com', {\n\tapp: {\n\t\tname: apps.chrome\n\t}\n});\n```\n\n`browser` and `browserPrivate` can also be used to access the user's default browser through [`default-browser`](https://github.com/sindresorhus/default-browser).\n\n#### Supported apps\n\n- [`chrome`](https://www.google.com/chrome) - Web browser\n- [`firefox`](https://www.mozilla.org/firefox) - Web browser\n- [`edge`](https://www.microsoft.com/edge) - Web browser\n- [`brave`](https://brave.com/) - Web browser\n- `browser` - Default web browser\n- `browserPrivate` - Default web browser in incognito mode\n\n`browser` and `browserPrivate` only supports `chrome`, `firefox`, `edge`, and `brave`.\n\n## WSL (Windows Subsystem for Linux)\n\nThe package automatically uses Windows integration (PowerShell) when available, and falls back to `xdg-open` if PowerShell is inaccessible (e.g., sandboxed environments).\n\nTo use Linux GUI apps instead:\n\n```javascript\nawait open('https://example.com', {app: {name: 'xdg-open'}});\n```\n\n## Related\n\n- [open-cli](https://github.com/sindresorhus/open-cli) - CLI for this module\n- [open-editor](https://github.com/sindresorhus/open-editor) - Open files in your editor at a specific line and column\n- [reveal-file](https://github.com/sindresorhus/reveal-file) - Reveal a file in the system file manager\n","time":{"created":"2022-01-26T13:51:20.755Z","modified":"2025-11-15T08:23:10.130Z","0.0.2":"2012-06-19T18:04:28.431Z","8.4.0":"2021-10-24T03:33:06.315Z","8.3.0":"2021-10-07T15:58:07.017Z","8.2.1":"2021-06-20T17:06:42.976Z","8.2.0":"2021-05-24T14:59:22.574Z","8.1.0":"2021-05-22T08:40:56.922Z","8.0.9":"2021-05-17T06:22:36.387Z","8.0.8":"2021-05-07T16:07:21.344Z","8.0.7":"2021-04-27T14:08:48.087Z","8.0.6":"2021-04-16T05:00:05.057Z","8.0.5":"2021-04-03T07:11:43.656Z","8.0.4":"2021-03-21T16:27:34.087Z","8.0.3":"2021-03-18T12:17:35.259Z","8.0.2":"2021-03-03T08:12:10.115Z","8.0.1":"2021-03-02T14:05:52.960Z","8.0.0":"2021-03-02T10:49:36.266Z","7.4.2":"2021-02-16T16:10:37.992Z","7.4.1":"2021-02-14T07:43:10.550Z","7.4.0":"2021-02-01T10:00:22.209Z","7.3.1":"2021-01-07T07:36:46.471Z","7.3.0":"2020-09-29T10:42:49.782Z","7.2.1":"2020-08-28T11:16:33.110Z","7.2.0":"2020-08-21T22:27:03.657Z","7.1.0":"2020-07-20T00:04:19.787Z","7.0.4":"2020-05-16T09:02:35.138Z","7.0.3":"2020-03-09T06:16:34.557Z","7.0.2":"2020-02-01T08:13:17.589Z","7.0.1":"2020-01-29T14:39:10.822Z","7.0.0":"2019-10-15T18:42:20.550Z","6.4.0":"2019-06-29T14:38:25.420Z","6.3.0":"2019-05-12T08:50:39.977Z","6.2.0":"2019-04-23T08:12:40.548Z","6.1.0":"2019-04-07T09:41:16.344Z","6.0.0":"2019-03-26T17:54:43.168Z","0.0.5":"2014-04-10T11:46:19.980Z","0.0.4":"2013-07-25T01:14:22.671Z","0.0.3":"2013-01-26T17:59:49.412Z","0.0.0":"2012-04-14T16:52:47.921Z","8.4.1":"2023-02-08T12:22:18.109Z","8.4.2":"2023-02-20T12:43:33.252Z","9.0.0":"2023-03-20T09:46:28.774Z","9.1.0":"2023-03-26T01:15:50.512Z","10.0.0":"2023-12-19T00:07:18.661Z","10.0.1":"2023-12-22T11:16:36.029Z","10.0.2":"2023-12-28T00:20:24.923Z","10.0.3":"2024-01-07T05:50:27.286Z","10.0.4":"2024-02-26T07:51:58.675Z","10.1.0":"2024-03-08T15:46:33.286Z","10.1.1":"2025-04-15T08:42:38.375Z","10.1.2":"2025-05-01T06:49:44.518Z","10.2.0":"2025-07-14T13:46:42.923Z","11.0.0":"2025-11-15T08:22:54.225Z"},"versions":{"0.0.2":{"author":{"name":"J Jordan","email":"jjrdn@styosis.com"},"name":"open","description":"open a file or uri with the users preferred application","version":"0.0.2","repository":{"type":"git","url":"git://github.com/jjrdn/node-open.git"},"main":"lib/open.js","keywords":["start","open","browser","editor","default"],"scripts":{"test":"mocha"},"dependencies":{},"devDependencies":{"mocha":"*"},"optionalDependencies":{},"engines":{"node":">= 0.6.0"},"_npmUser":{"name":"jjrdn","email":"jjrdn@styosis.com"},"_id":"open@0.0.2","_engineSupported":true,"_npmVersion":"1.1.24","_nodeVersion":"v0.6.19","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/open/-/open-0.0.2.tgz","shasum":"0a620ba2574464742f51e69f8ba8eccfd97b5dfc","size":5612,"noattachment":false,"integrity":"sha512-gnt725gcNKTaMSul17WNEz4I3rvgVotCq30TkU9thlEZaRJ7ivOV0vEoRupkGU/NJ2+qxqAmVbSK94rwuOWXnw=="},"maintainers":[{"name":"jjrdn","email":"jjrdn@styosis.com"}],"directories":{},"publish_time":1340129068431,"_hasShrinkwrap":false,"_cnpm_publish_time":1340129068431,"_cnpmcore_publish_time":"2021-12-13T14:28:25.221Z"},"8.4.0":{"name":"open","version":"8.4.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"7579417bbd3b3fc155b10f9b9b2eb71381e13e9a","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.4.0","_nodeVersion":"12.22.1","_npmVersion":"7.20.3","dist":{"shasum":"345321ae18f8138f82565a910fdc6b39e8c244f8","size":13020,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.4.0.tgz","integrity":"sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.4.0_1635046386127_0.6259313853552249"},"_hasShrinkwrap":false,"publish_time":1635046386315,"_cnpm_publish_time":1635046386315,"_cnpmcore_publish_time":"2021-12-13T14:28:06.395Z"},"8.3.0":{"name":"open","version":"8.3.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"7908a585fd0d85d7ad32d8f34d95a77f13d595d6","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.3.0","_nodeVersion":"16.10.0","_npmVersion":"7.20.3","dist":{"shasum":"fdef1cdfe405e60dec8ebd18889e7e812f39c59f","size":13008,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.3.0.tgz","integrity":"sha512-7INcPWb1UcOwSQxAXTnBJ+FxVV4MPs/X++FWWBtgY69/J5lc+tCteMt/oFK1MnkyHC4VILLa9ntmwKTwDR4Q9w=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.3.0_1633622286846_0.9087879499303659"},"_hasShrinkwrap":false,"publish_time":1633622287017,"_cnpm_publish_time":1633622287017,"_cnpmcore_publish_time":"2021-12-13T14:28:06.733Z"},"8.2.1":{"name":"open","version":"8.2.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"ce40e85de3f77515985f5971d293659ea4b30b83","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.2.1","_nodeVersion":"16.2.0","_npmVersion":"7.10.0","dist":{"shasum":"82de42da0ccbf429bc12d099dad2e0975e14e8af","size":12619,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.2.1.tgz","integrity":"sha512-rXILpcQlkF/QuFez2BJDf3GsqpjGKbkUUToAIGo9A0Q6ZkoSGogZJulrUdwRkrAsoQvoZsrjCYt8+zblOk7JQQ=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.2.1_1624208802861_0.546695768233771"},"_hasShrinkwrap":false,"publish_time":1624208802976,"_cnpm_publish_time":1624208802976,"_cnpmcore_publish_time":"2021-12-13T14:28:07.124Z"},"8.2.0":{"name":"open","version":"8.2.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"c209060c23d55e804b6780e47bca5a86bd309a01","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.2.0","_nodeVersion":"12.22.1","_npmVersion":"7.10.0","dist":{"shasum":"d6a4788b00009a9d60df471ecb89842a15fdcfc1","size":13464,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.2.0.tgz","integrity":"sha512-O8uInONB4asyY3qUcEytpgwxQG3O0fJ/hlssoUHsBboOIRVZzT6Wq+Rwj5nffbeUhOdMjpXeISpDDzHCMRDuOQ=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.2.0_1621868362411_0.6804200750373266"},"_hasShrinkwrap":false,"publish_time":1621868362574,"_cnpm_publish_time":1621868362574,"_cnpmcore_publish_time":"2021-12-13T14:28:07.451Z"},"8.1.0":{"name":"open","version":"8.1.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"0347d3bfd88566bc92a40b9c852d4c71e6e8a2e2","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.1.0","_nodeVersion":"12.22.1","_npmVersion":"7.10.0","dist":{"shasum":"d77e9d8edab7672d03633674eb182e1c376ee25f","size":13388,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.1.0.tgz","integrity":"sha512-jB5hAtsDOhCy/FNQJwQJOrGlxLUat482Yr14rbA5l2Zb1eOeoS+ccQPO036C1+z9VDBTmOZqzh1tBbI4myzIYw=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.1.0_1621672856730_0.7224356452461764"},"_hasShrinkwrap":false,"publish_time":1621672856922,"_cnpm_publish_time":1621672856922,"_cnpmcore_publish_time":"2021-12-13T14:28:07.853Z"},"8.0.9":{"name":"open","version":"8.0.9","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"18b9665afbdd5d49eafb1c0ef4e2444b0b8624a1","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.9","_nodeVersion":"14.16.1","_npmVersion":"7.10.0","dist":{"shasum":"a7a739fed91dfa3734094255badbeabd71116a12","size":13322,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.9.tgz","integrity":"sha512-vbCrqMav3K8mCCy8NdK4teUky0tpDrBbuiDLduCdVhc5oA9toJMip9rBkuwdwSI9E7NOkz4VkLWPi8DD2MP1gQ=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.9_1621232556275_0.7737760785798702"},"_hasShrinkwrap":false,"publish_time":1621232556387,"_cnpm_publish_time":1621232556387,"_cnpmcore_publish_time":"2021-12-13T14:28:08.201Z"},"8.0.8":{"name":"open","version":"8.0.8","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"8ba52b4dc6a2b74077e781866dd8bd31de1a8772","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.8","_nodeVersion":"12.22.1","_npmVersion":"7.10.0","dist":{"shasum":"0e286bb2df3c72e00cb2a0203d604abee002dbdc","size":13331,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.8.tgz","integrity":"sha512-3XmKIU8+H/TVr8wB8C4vj0z748+yBydSvtpzZVS6vQ1dKNHB6AiPbhaoG+89zb80717GPk9y/7OvK0R6FXkNmQ=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.8_1620403640938_0.45290670186628157"},"_hasShrinkwrap":false,"publish_time":1620403641344,"_cnpm_publish_time":1620403641344,"_cnpmcore_publish_time":"2021-12-13T14:28:08.534Z"},"8.0.7":{"name":"open","version":"8.0.7","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"gitHead":"ae885adf8915c2bf16cd08c1752eb8d51b5ac863","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.7","_nodeVersion":"16.0.0","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"5597eeff14b440f6ff78fb7ced9ede9f69b2122d","size":13376,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.7.tgz","integrity":"sha512-qoyG0kpdaWVoL5MiwTRQWujSdivwBOgfLadVEdpsZNHOK1+kBvmVtLYdgWr8G4cgBpG9zaxezn6jz6PPdQW5xg=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.7_1619532527929_0.23049240705241614"},"_hasShrinkwrap":false,"publish_time":1619532528087,"_cnpm_publish_time":1619532528087,"_cnpmcore_publish_time":"2021-12-13T14:28:08.860Z"},"8.0.6":{"name":"open","version":"8.0.6","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"01887ed979ded27a8c6f641485fea8c57e2d0972","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.6","_nodeVersion":"14.16.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"bdf94a80b4ef5685d8c7b58fb0fbbe5729b37204","size":13382,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.6.tgz","integrity":"sha512-vDOC0KwGabMPFtIpCO2QOnQeOz0N2rEkbuCuxICwLMUCrpv+A7NHrrzJ2dQReJmVluHhO4pYRh/Pn6s8t7Op6Q=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.6_1618549204902_0.3225928422898683"},"_hasShrinkwrap":false,"publish_time":1618549205057,"_cnpm_publish_time":1618549205057,"_cnpmcore_publish_time":"2021-12-13T14:28:09.221Z"},"8.0.5":{"name":"open","version":"8.0.5","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"45a3551a3264763b3df14dd975b6577254025aed","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.5","_nodeVersion":"12.20.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"92ee3faafef4ddbe78006f7881572f3e81430b8f","size":13373,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.5.tgz","integrity":"sha512-hkPXCz7gijWp2GoWqsQ4O/5p7F6d5pIQ/+9NyeWG1nABJ4zvLi9kJRv1a44kVf5p13wK0WMoiRA+Xey68yOytA=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.5_1617433903535_0.20095509490091734"},"_hasShrinkwrap":false,"publish_time":1617433903656,"_cnpm_publish_time":1617433903656,"_cnpmcore_publish_time":"2021-12-13T14:28:09.592Z"},"8.0.4":{"name":"open","version":"8.0.4","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"8881dab330e44cd0d62ed4fbb17f0c12bb17699e","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.4","_nodeVersion":"12.20.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2fb90debffcf20f4d7be537502ed3e3ee9e5dcbc","size":13380,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.4.tgz","integrity":"sha512-Txc9FOcvjrr5Kv+Zb3w89uKMKiP7wH8mLdYj1xJa+YnhhntEYhbB6cQHjS4O6P+jFwMEzEQVVcpfnu9WkKNuLQ=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.4_1616344053934_0.8925485503249042"},"_hasShrinkwrap":false,"publish_time":1616344054087,"_cnpm_publish_time":1616344054087,"_cnpmcore_publish_time":"2021-12-13T14:28:09.974Z"},"8.0.3":{"name":"open","version":"8.0.3","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"14daa34927403dddc003b2f456bf4c8dcbb90f77","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.3","_nodeVersion":"12.20.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"04f4406c950666c35041aad8a621700022116afd","size":13384,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.3.tgz","integrity":"sha512-7nsHNw3rOIPTwhF5iYkgE+LVM/oUHWC3cgrWNxPqa+W+Wl5Ekvo32qayB5PYX8zNjXzUkrTaJsWpaGmuw8Aspg=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.3_1616069855090_0.6850987391391479"},"_hasShrinkwrap":false,"publish_time":1616069855259,"_cnpm_publish_time":1616069855259,"_cnpmcore_publish_time":"2021-12-13T14:28:10.351Z"},"8.0.2":{"name":"open","version":"8.0.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"b7a5729ff0c8b4077a3a42899ee4bcd214fa1490","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"8c3e95cce93ba2fc8d99968ee8bfefecdb50b84f","size":13370,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.2.tgz","integrity":"sha512-NV5QmWJrTaNBLHABJyrb+nd5dXI5zfea/suWawBhkHzAbVhLLiJdrqMgxMypGK9Eznp2Ltoh7SAVkQ3XAucX7Q=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.2_1614759129876_0.1941393805750813"},"_hasShrinkwrap":false,"publish_time":1614759130115,"_cnpm_publish_time":1614759130115,"_cnpmcore_publish_time":"2021-12-13T14:28:10.753Z"},"8.0.1":{"name":"open","version":"8.0.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"180c2ab6c570e8b40ec2a972ecf8691334ff5507","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.1","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"81f88a8d57b8ce0ccdb4880dfaaee6481c8c146c","size":13361,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.1.tgz","integrity":"sha512-VfWbDBAay2Zbw2QrMMIxuo4H0SUe+TdHHT8qLkbBRF+TxdEhnbDxf7jWMV5Fbk5U4HX3abq2lvYH5v/xoo6CNg=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.1_1614693952768_0.4588848365059226"},"_hasShrinkwrap":false,"publish_time":1614693952960,"_cnpm_publish_time":1614693952960,"_cnpmcore_publish_time":"2021-12-13T14:28:11.177Z"},"8.0.0":{"name":"open","version":"8.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^14.14.27","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.37.1"},"gitHead":"48ea7036bf3768a1191bf15e80bfe7ed15f6ea25","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.0.0","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"ac5ef9ac7d2f937b29947f6e831393a59f40a723","size":13361,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-8.0.0.tgz","integrity":"sha512-Q+ucoe0HGwPFrzTDFuhCLG/Cqp9CtdOsKhLZxV8rujKkOqO6wyP+dM08bQVZPQFONVUxa6NLKaciEsY3JgyzBQ=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.0.0_1614682176020_0.3850304090701093"},"_hasShrinkwrap":false,"publish_time":1614682176266,"_cnpm_publish_time":1614682176266,"_cnpmcore_publish_time":"2021-12-13T14:28:11.592Z"},"7.4.2":{"name":"open","version":"7.4.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"a9babe05b371ca414ad1c4fe3ffe83bbf40b1c4a","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.4.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b8147e26dcf3e426316c730089fd71edd29c2321","size":12663,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.4.2.tgz","integrity":"sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.4.2_1613491837742_0.4274411654639172"},"_hasShrinkwrap":false,"publish_time":1613491837992,"_cnpm_publish_time":1613491837992,"_cnpmcore_publish_time":"2021-12-13T14:28:11.989Z"},"7.4.1":{"name":"open","version":"7.4.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"f0533c0219976bf4cbe80afa4b9a1012ed1773bd","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.4.1","_nodeVersion":"10.22.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"4ccedc11ca348d398378ffb39c71357df55fe6f7","size":12653,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.4.1.tgz","integrity":"sha512-Pxv+fKRsd/Ozflgn2Gjev1HZveJJeKR6hKKmdaImJMuEZ6htAvCTbcMABJo+qevlAelTLCrEK3YTKZ9fVTcSPw=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.4.1_1613288590310_0.18087497580428202"},"_hasShrinkwrap":false,"publish_time":1613288590550,"_cnpm_publish_time":1613288590550,"_cnpmcore_publish_time":"2021-12-13T14:28:12.434Z"},"7.4.0":{"name":"open","version":"7.4.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"5ce319c8482a2c6425e0514e0da1630dae85a986","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.4.0","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"ad95b98f871d9acb0ec8fecc557082cc9986626b","size":12299,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.4.0.tgz","integrity":"sha512-PGoBCX/lclIWlpS/R2PQuIR4NJoXh6X5AwVzE7WXnWRGvHg7+4TBCgsujUgiPpm0K1y4qvQeWnCWVTpTKZBtvA=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.4.0_1612173622029_0.07790807933990274"},"_hasShrinkwrap":false,"publish_time":1612173622209,"_cnpm_publish_time":1612173622209,"_cnpmcore_publish_time":"2021-12-13T14:28:12.878Z"},"7.3.1":{"name":"open","version":"7.3.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"3182c380bd16bc70c77537af7a86bbe6d3f38a90","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.3.1","_nodeVersion":"15.5.0","_npmVersion":"6.14.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"111119cb919ca1acd988f49685c4fdd0f4755356","size":12537,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.3.1.tgz","integrity":"sha512-f2wt9DCBKKjlFbjzGb8MOAW8LH8F0mrs1zc7KTjAJ9PZNQbfenzWbNP1VZJvw6ICMG9r14Ah6yfwPn7T7i646A=="},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.3.1_1610005006370_0.9763334441490346"},"_hasShrinkwrap":false,"publish_time":1610005006471,"_cnpm_publish_time":1610005006471,"_cnpmcore_publish_time":"2021-12-13T14:28:13.353Z"},"7.3.0":{"name":"open","version":"7.3.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"f3748e4f5a04a41e27034aff1eb08e8b86d01c1c","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.3.0","_nodeVersion":"14.11.0","_npmVersion":"6.14.8","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"45461fdee46444f3645b6e14eb3ca94b82e1be69","size":12534,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.3.0.tgz","integrity":"sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.3.0_1601376169678_0.11620673383692104"},"_hasShrinkwrap":false,"publish_time":1601376169782,"_cnpm_publish_time":1601376169782,"_cnpmcore_publish_time":"2021-12-13T14:28:13.924Z"},"7.2.1":{"name":"open","version":"7.2.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"45e50caaae4af8f78588bdef017fce3ba818f8f6","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.2.1","_nodeVersion":"12.18.2","_npmVersion":"6.14.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"07b0ade11a43f2a8ce718480bdf3d7563a095195","size":12401,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.2.1.tgz","integrity":"sha512-xbYCJib4spUdmcs0g/2mK1nKo/jO2T7INClWd/beL7PFkXRWgr8B23ssDHX/USPn2M2IjDR5UdpYs6I67SnTSA=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.2.1_1598613392939_0.5546220483764521"},"_hasShrinkwrap":false,"publish_time":1598613393110,"_cnpm_publish_time":1598613393110,"_cnpmcore_publish_time":"2021-12-13T14:28:14.463Z"},"7.2.0":{"name":"open","version":"7.2.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"1022f420261ecca34eeff2ba7d02c41b4a708f51","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.2.0","_nodeVersion":"12.18.2","_npmVersion":"6.14.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"212959bd7b0ce2e8e3676adc76e3cf2f0a2498b4","size":12394,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.2.0.tgz","integrity":"sha512-4HeyhxCvBTI5uBePsAdi55C5fmqnWZ2e2MlmvWi5KW5tdH5rxoiv/aMtbeVxKZc3eWkT1GymMnLG8XC4Rq4TDQ=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.2.0_1598048823414_0.7169592904019657"},"_hasShrinkwrap":false,"publish_time":1598048823657,"_cnpm_publish_time":1598048823657,"_cnpmcore_publish_time":"2021-12-13T14:28:15.022Z"},"7.1.0":{"name":"open","version":"7.1.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"ed14bbfb7350c3a54400d0bcbc4eefb6c8db2a7f","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.1.0","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"68865f7d3cb238520fa1225a63cf28bcf8368a1c","size":12495,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.1.0.tgz","integrity":"sha512-lLPI5KgOwEYCDKXf4np7y1PBEkj7HYIyP2DY8mVDRnx0VIIu6bNrRB0R66TuO7Mack6EnTNLm4uvcl1UoklTpA=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.1.0_1595203459663_0.595130035286243"},"_hasShrinkwrap":false,"publish_time":1595203459787,"_cnpm_publish_time":1595203459787,"_cnpmcore_publish_time":"2021-12-13T14:28:16.139Z"},"7.0.4":{"name":"open","version":"7.0.4","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"72d9ddbb5d34f26ae38dafc70b54e908d25ab976","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.0.4","_nodeVersion":"10.20.1","_npmVersion":"6.14.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"c28a9d315e5c98340bf979fdcb2e58664aa10d83","size":12396,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.0.4.tgz","integrity":"sha512-brSA+/yq+b08Hsr4c8fsEW2CRzk1BmfN3SAK/5VCHQ9bdoZJ4qa/+AfR0xHjlbbZUyPkUHs1b8x1RqdyZdkVqQ=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.0.4_1589619754905_0.45386272374711845"},"_hasShrinkwrap":false,"publish_time":1589619755138,"_cnpm_publish_time":1589619755138,"_cnpmcore_publish_time":"2021-12-13T14:28:16.676Z"},"7.0.3":{"name":"open","version":"7.0.3","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"cc7b781edbcee122836140a260a254aa5c64fb6a","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.0.3","_nodeVersion":"10.18.1","_npmVersion":"6.14.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"db551a1af9c7ab4c7af664139930826138531c48","size":12377,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.0.3.tgz","integrity":"sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.0.3_1583734594407_0.6643809701528305"},"_hasShrinkwrap":false,"publish_time":1583734594557,"_cnpm_publish_time":1583734594557,"_cnpmcore_publish_time":"2021-12-13T14:28:17.255Z"},"7.0.2":{"name":"open","version":"7.0.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"d8bf43e8435c00952bbe41cf5d40d52cf0b45242","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.0.2","_nodeVersion":"13.1.0","_npmVersion":"6.13.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"fb3681f11f157f2361d2392307548ca1792960e8","size":12346,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.0.2.tgz","integrity":"sha512-70E/pFTPr7nZ9nLDPNTcj3IVqnNvKuP4VsBmoKV9YGTnChe0mlS3C4qM7qKarhZ8rGaHKLfo+vBTHXDp6ZSyLQ=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.0.2_1580544797415_0.3206222834581336"},"_hasShrinkwrap":false,"publish_time":1580544797589,"_cnpm_publish_time":1580544797589,"_cnpmcore_publish_time":"2021-12-13T14:28:17.769Z"},"7.0.1":{"name":"open","version":"7.0.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-docker":"^2.0.0","is-wsl":"^2.1.1"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.11.0","xo":"^0.25.3"},"gitHead":"79a90bfb2cf0ff6e22eedce3e6c8bfa7c4ea7021","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.0.1","_nodeVersion":"13.1.0","_npmVersion":"6.12.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"259a6c2097da6b95c596a2734f2ed05643c432b8","size":12340,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.0.1.tgz","integrity":"sha512-/fVm742AZt6bZ3NpbmBzGpZksDiGbo+xz8RylegKSAnTCgT5u5tvJe0cre3QxICphqHhJHc0OFtFyvU7rNx8+Q=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.0.1_1580308750649_0.5905894351050964"},"_hasShrinkwrap":false,"publish_time":1580308750822,"_cnpm_publish_time":1580308750822,"_cnpmcore_publish_time":"2021-12-13T14:28:18.289Z"},"7.0.0":{"name":"open","version":"7.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^2.1.0"},"devDependencies":{"@types/node":"^12.7.5","ava":"^2.3.0","tsd":"^0.9.0","xo":"^0.25.3"},"gitHead":"ed757758dd556ae561b58b80ec7dee5e7c6ffddc","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@7.0.0","_nodeVersion":"10.16.3","_npmVersion":"6.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"7e52999b14eb73f90f0f0807fe93897c4ae73ec9","size":12292,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-7.0.0.tgz","integrity":"sha512-K6EKzYqnwQzk+/dzJAQSBORub3xlBTxMz+ntpZpH/LyCa1o6KjXhuN+2npAaI9jaSmU3R1Q8NWf4KUWcyytGsQ=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_7.0.0_1571164940433_0.04787258939201888"},"_hasShrinkwrap":false,"publish_time":1571164940550,"_cnpm_publish_time":1571164940550,"_cnpmcore_publish_time":"2021-12-13T14:28:18.921Z"},"6.4.0":{"name":"open","version":"6.4.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^1.1.0"},"devDependencies":{"@types/node":"^11.13.6","ava":"^1.4.0","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"37a769d6073862ab4a46c00b1a21b2ba814e68cf","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@6.4.0","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"5c13e96d0dc894686164f18965ecfe889ecfc8a9","size":10846,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-6.4.0.tgz","integrity":"sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_6.4.0_1561819105278_0.010991781535895528"},"_hasShrinkwrap":false,"publish_time":1561819105420,"_cnpm_publish_time":1561819105420,"_cnpmcore_publish_time":"2021-12-13T14:28:19.674Z"},"6.3.0":{"name":"open","version":"6.3.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^1.1.0"},"devDependencies":{"@types/node":"^11.13.6","ava":"^1.4.0","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"b73529feb8543f91381b246843a3d15ab9238e95","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@6.3.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"60d0b845ee38fae0631f5d739a21bd40e3d2a527","size":10498,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-6.3.0.tgz","integrity":"sha512-6AHdrJxPvAXIowO/aIaeHZ8CeMdDf7qCyRNq8NwJpinmCdXhz+NZR7ie1Too94lpciCDsG+qHGO9Mt0svA4OqA=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_6.3.0_1557651039851_0.7746317779507104"},"_hasShrinkwrap":false,"publish_time":1557651039977,"_cnpm_publish_time":1557651039977,"_cnpmcore_publish_time":"2021-12-13T14:28:20.343Z"},"6.2.0":{"name":"open","version":"6.2.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^1.1.0"},"devDependencies":{"@types/node":"^11.13.6","ava":"^1.4.0","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"27ac3c2bfda8aba058c753e9b0b7ed9b9eeba76c","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@6.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"7cf92cb961b5d8498b071e64098bf5e27f57230c","size":10430,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-6.2.0.tgz","integrity":"sha512-Vxf6HJkwrqmvh9UAID3MnMYXntbTxKLOSfOnO7LJdzPf3NE3KQYFNV0/Lcz2VAndbRFil58XVCyh8tiX11fiYw=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_6.2.0_1556007160345_0.13004161557012583"},"_hasShrinkwrap":false,"publish_time":1556007160548,"_cnpm_publish_time":1556007160548,"_cnpmcore_publish_time":"2021-12-13T14:28:21.010Z"},"6.1.0":{"name":"open","version":"6.1.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^1.1.0"},"devDependencies":{"ava":"^1.4.0","xo":"^0.24.0"},"gitHead":"48dfe3d209554584dfa448c1c19d919cfb3270f3","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@6.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"0e7e671b883976a4e5251b5d1ca905ab6f4be78f","size":10085,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-6.1.0.tgz","integrity":"sha512-Vqch7NFb/WsMujhqfq+B3u0xkssRjZlxh+NSsBSphpcgaFD7gfB0SUBfR91E9ygBlyNGNogXR2cUB8rRfoo2kQ=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_6.1.0_1554630076079_0.11965164174216758"},"_hasShrinkwrap":false,"publish_time":1554630076344,"_cnpm_publish_time":1554630076344,"_cnpmcore_publish_time":"2021-12-13T14:28:21.635Z"},"6.0.0":{"name":"open","version":"6.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"is-wsl":"^1.1.0"},"devDependencies":{"ava":"^1.4.0","xo":"^0.24.0"},"gitHead":"c3569171f477765d16349421fce1d3b2517a7b81","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@6.0.0","_nodeVersion":"8.15.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"cae5e2c1a3a1bfaee0d0acc8c4b7609374750346","size":10033,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-6.0.0.tgz","integrity":"sha512-/yb5mVZBz7mHLySMiSj2DcLtMBbFPJk5JBKEkHVZFxZAPzeg3L026O0T+lbdz1B2nyDnkClRSwRQJdeVUIF7zw=="},"maintainers":[{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_6.0.0_1553622883011_0.17607051667538376"},"_hasShrinkwrap":false,"publish_time":1553622883168,"_cnpm_publish_time":1553622883168,"_cnpmcore_publish_time":"2021-12-13T14:28:22.243Z"},"0.0.5":{"name":"open","version":"0.0.5","description":"open a file or url in the user's preferred application","keywords":["start","open","browser","editor","default"],"homepage":"https://github.com/jjrdn/node-open","author":{"name":"J Jordan","email":"jjrdn@styosis.com"},"license":"MIT","contributors":[{"name":"Victor Costan","email":"victor@costan.us","url":"http://www.costan.us"}],"repository":{"type":"git","url":"https://github.com/pwnall/node-open.git"},"bugs":{"url":"https://github.com/pwnall/node-open/issues"},"engines":{"node":">= 0.6.0"},"dependencies":{},"devDependencies":{"mocha":"*"},"optionalDependencies":{},"main":"lib/open.js","scripts":{"test":"node_modules/mocha/bin/mocha"},"_id":"open@0.0.5","dist":{"shasum":"42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc","size":7489,"noattachment":false,"tarball":"https://registry.npmmirror.com/open/-/open-0.0.5.tgz","integrity":"sha512-+X/dJYLapVO1VbC620DhtNZK9U4/kQVaTQp/Gh7cb6UTLYfGZzzU2ZXkWrOA/wBrf4UqAFwtLqXYTxe4tSnWQQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"pwnall","email":"costan@gmail.com"},"maintainers":[{"name":"jjrdn","email":"jjrdn@styosis.com"},{"name":"pwnall","email":"costan@gmail.com"}],"directories":{},"publish_time":1397130379980,"_hasShrinkwrap":false,"_cnpm_publish_time":1397130379980,"_cnpmcore_publish_time":"2021-12-13T14:28:22.896Z"},"0.0.4":{"name":"open","version":"0.0.4","description":"open a file or url in the user's preferred application","keywords":["start","open","browser","editor","default"],"homepage":"https://github.com/jjrdn/node-open","author":{"name":"J Jordan","email":"jjrdn@styosis.com"},"license":"MIT","contributors":[{"name":"Victor Costan","email":"victor@costan.us","url":"http://www.costan.us"}],"repository":{"type":"git","url":"https://github.com/pwnall/node-open.git"},"bugs":{"url":"https://github.com/pwnall/node-open/issues"},"engines":{"node":">= 0.6.0"},"dependencies":{},"devDependencies":{"mocha":"*"},"optionalDependencies":{},"main":"lib/open.js","scripts":{"test":"node_modules/mocha/bin/mocha"},"readmeFilename":"README.md","_id":"open@0.0.4","dist":{"tarball":"https://registry.npmmirror.com/open/-/open-0.0.4.tgz","shasum":"5de46a0858b9f49f9f211aa8f26628550657f262","size":8417,"noattachment":false,"integrity":"sha512-89TW6JswxDIlkXZ6gBscNCE7x+A3oN/J0OqGhiLNhFnWiphTVnXOMsi5ggo72DqpB5PzinTu9ZU508z7Af2TnA=="},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"pwnall","email":"costan@gmail.com"},"maintainers":[{"name":"jjrdn","email":"jjrdn@styosis.com"},{"name":"pwnall","email":"costan@gmail.com"}],"directories":{},"publish_time":1374714862671,"_hasShrinkwrap":false,"_cnpm_publish_time":1374714862671,"_cnpmcore_publish_time":"2021-12-13T14:28:23.637Z"},"0.0.3":{"name":"open","version":"0.0.3","description":"open a file or url in the user's preferred application","keywords":["start","open","browser","editor","default"],"homepage":"https://github.com/jjrdn/node-open","author":{"name":"J Jordan","email":"jjrdn@styosis.com"},"license":"MIT","contributors":[{"name":"Victor Costan","email":"victor@costan.us","url":"http://www.costan.us"}],"repository":{"type":"git","url":"https://github.com/jjrdn/node-open.git"},"bugs":{"url":"https://github.com/jjrdn/node-open/issues"},"engines":{"node":">= 0.6.0"},"dependencies":{},"devDependencies":{"mocha":"*"},"optionalDependencies":{},"main":"lib/open.js","scripts":{"test":"node_modules/mocha/bin/mocha"},"readmeFilename":"README.md","_id":"open@0.0.3","dist":{"tarball":"https://registry.npmmirror.com/open/-/open-0.0.3.tgz","shasum":"fa377f4ff308212d92a9b8e6395240854646a713","size":7366,"noattachment":false,"integrity":"sha512-Vm6nsJHcKV8kdOtHESAFAymOOf1VlKrttpwTqtLxvxRDIh8PSw4lWq5qk88QkAvNwnkv/1dNi2lvedhmam/ggw=="},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"pwnall","email":"costan@gmail.com"},"maintainers":[{"name":"jjrdn","email":"jjrdn@styosis.com"},{"name":"pwnall","email":"costan@gmail.com"}],"directories":{},"publish_time":1359223189412,"_hasShrinkwrap":false,"_cnpm_publish_time":1359223189412,"_cnpmcore_publish_time":"2021-12-13T14:28:24.474Z"},"0.0.0":{"author":{"name":"J. Jordan","email":"jordan@styosis.com"},"name":"open","version":"0.0.0","repository":{"type":"git","url":"git://github.com/fixedset/open.js.git"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_npmUser":{"name":"jjordan","email":"jordan@styosis.com"},"_id":"open@0.0.0","_engineSupported":true,"_npmVersion":"1.1.12","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/open/-/open-0.0.0.tgz","shasum":"7b5f1e7bc4f68effd4d6ba17de7ac852723b5186","size":270,"noattachment":false,"integrity":"sha512-tx0BlMx63kdQfgZiYpAxhNLMRo7xe4gJzRCqeqgd6/4eHa3vkGqldXVnCwAX4aIzHTl+FXb+a9NxS0c1bTI/GA=="},"maintainers":[{"name":"jjordan","email":"jordan@styosis.com"}],"directories":{},"publish_time":1334422367921,"_hasShrinkwrap":false,"_cnpm_publish_time":1334422367921,"_cnpmcore_publish_time":"2021-12-13T14:28:25.910Z"},"8.4.1":{"name":"open","version":"8.4.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"types":"./index.d.ts","gitHead":"27e4e3a193928fe0cfb43cee746292df339bb332","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.4.1","_nodeVersion":"14.21.1","_npmVersion":"9.2.0","dist":{"integrity":"sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==","shasum":"2ab3754c07f5d1f99a7a8d6a82737c95e3101cff","tarball":"https://registry.npmmirror.com/open/-/open-8.4.1.tgz","fileCount":6,"unpackedSize":45971,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAje/FH0+2VqCcSXMohgch4f9BKmqsb9NXQ5d8kabWTwIgU1SdPPulWnI4iyym0e/RUUIXB3u2L62ExnWEYHFmrLY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj45P6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo//w/+PH+Ka5oa0+Be2kIHjrbucQRTdECVUtPF7Xir5LSvLAUpc6Yf\r\n4yv4a3B9DmnwS53CSl+UF6Dk3MIkc+a00jWCeMvyH1+eNm1JQE7TYaj+0OuK\r\nxt/+i9DCg/jPqXh870NLuMt/099HEXUaFV2wIg/SCdxdvnVv+ZkHgjDuZ/9c\r\nDG/XrBo1EO5bQquBkpd4sRQIyjhb6XPf8Vv+V3MHgBAo1APxJ2b6rnRZ/rj1\r\nz+kmUF3S3ZhfpPwI+m9x5PDwFpo8Xqe0IIxl/yyMEWw3vV7pzl4o4m7SEOlk\r\nGRrU3a4Rx3Y8uRJwiwwVK1n7hwiduPM5mVnj2ql5yCxpJ6AajABDqZOB7w73\r\nhBO7M/2ax9yezhTB6+6Wg4LepA7767PeoCf8FdTKoiGTzKc+m2vRMvzrvTe4\r\nwRoceXcFjmROeQ2CVX/8mh1lOI0/M3RI5Q+ronWSlhB+OLzmwBY50sXctYE2\r\nEeSD3W8BQf5jeKSEGFPyCeFUKIdTbn5Qt6K7hcUtJbFsnUfUbEPaolYovpbL\r\nBtVvSNuyihUJiBb9qLHVaLP3NqcWICZp8Yg6cjHJ+RN2i5RAOXgQadYFZQH5\r\nwLLRknHrb8qapPXimWXIhP3+lPx543Pj5koB13wGRV/lSpo2q62vl/VT8OVQ\r\nyAqRbtImWS3hcNNd2fLeCzt6yfLvk1YytO4=\r\n=jVH8\r\n-----END PGP SIGNATURE-----\r\n","size":12780},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.4.1_1675858937925_0.19636978897891577"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-08T12:22:18.109Z","publish_time":1675858938109},"8.4.2":{"name":"open","version":"8.4.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"engines":{"node":">=12"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"define-lazy-prop":"^2.0.0","is-docker":"^2.1.1","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^15.0.0","ava":"^3.15.0","tsd":"^0.14.0","xo":"^0.39.1"},"types":"./index.d.ts","gitHead":"cbc008bab21f657475b54e33a823b2941737da6f","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@8.4.2","_nodeVersion":"16.16.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==","shasum":"5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9","tarball":"https://registry.npmmirror.com/open/-/open-8.4.2.tgz","fileCount":6,"unpackedSize":46288,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDcVoaKT8+8FHo7pUQ121zzffO+CQgvapaPRG/cLOFfxAiAsQDOqZWTDTpk+M3M47m/gYvcBmC/Bq1BmQP2f7j94Ag=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj82r1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDgw//YHKpnqxFvIFfRwslxaRL0+t8IAfJcZysqle/oR7Q1wJ0GgH6\r\nZKsplCvbp8bwNQI1FAUM+2vwZC0PUd3Y04J0kO2WMG//C65Nll/9Dz5cdSO7\r\nMEY7D3qAH/C1rF8twpySPDWbiaoENSpYb5Dt+BfJui7IbJAb6NSORk6fTo0D\r\nF8QJlq4ZdYJnHza3TSK79QjiFq8M6oTSt71RXJzuHRngJzXyfuhsoPV1yifw\r\ncXmEmbECAPO9h8D60zWlqVSk+JU0ezVtewZwO+A2HcqtoOGqGLlR7MuQdnqt\r\nJMLy/0tdoeuK3UqFYV5WvO63TooJl/k5cg4ShmviNowUTmRR5/PEO3UeDHpu\r\nuBwvCL1XURhCE8Ul3zxAauIsqV+99z+gu4PC8aW/53pBwWoo2FV5y/0T2t0W\r\nVYbBa6tWGIFtsIInzH+uLMgt/qzolb4zxxOY0NXhJCT7x581DzVtqpU7QSe7\r\n5VWy0PkHYVAPMquNg7KyGrV51qzAivDhfVlNKzmAp22QWELN5l7fjJmB1iXo\r\nupenV9ibsmcMl5k7zzn6M5BaGoAXJ9hoyzPDfcr0J2VmP1944DZ/V+gzosOK\r\n3LaV3aICGiZskK5/EAwQswSmD03VGbqVvAgaTnNwH+EbTHfgb6gcij8DyDJt\r\nSJTzVftkBdi3iYn2CbkqBynZu5grL7ry0oo=\r\n=Rzyz\r\n-----END PGP SIGNATURE-----\r\n","size":12898},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_8.4.2_1676897013073_0.44287481541481144"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-20T12:43:33.252Z","publish_time":1676897013252},"9.0.0":{"name":"open","version":"9.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"engines":{"node":">=14.16"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^3.1.0","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^18.15.3","ava":"^5.2.0","tsd":"^0.28.0","xo":"^0.53.1"},"types":"./index.d.ts","gitHead":"36c61af1e696ef4365fd12dcc733586877106f19","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@9.0.0","_nodeVersion":"14.21.3","_npmVersion":"9.2.0","dist":{"integrity":"sha512-yerrN5WPzgwuE3T6rxAkT1UuMLDzs4Szpug7hy9s4gru3iOTnaU0yKc1AYOVYrBzvykce5gUdr9RPNB4R+Zc/A==","shasum":"2cedd60ee6eb55659b20f9e7a5bd03eb7709ff00","tarball":"https://registry.npmmirror.com/open/-/open-9.0.0.tgz","fileCount":6,"unpackedSize":48493,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEjeKnMY55dBvRhpRcHyEIysBjZLCHKVrPS+3v4YH3sgAiEAtPL9ddL0U35c+Ez/CNUzD2xY61HN+MWhZmAlHamtXKY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGCt0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmos9Q//VY6Ew/dv239+D48bY3PZGoFwdSmyIWJxlOJ2yNqiBfAm3MB/\r\nOpvaTxRizqfv/g+BSQlSHYwLnR7o0Yj99AeILippU4jId07UDzfIKAlQgscc\r\n7yu5tufeY/Y1PJJZNQ6PbJyBJiTccQx0clWWZNQKfFf0bMz3Csw6qqAzpl8w\r\nV97XA1RrSIlo0ColhHbK27z5H2hX6N/9MrKivWY7ND2Z6xSqC0sCib1ucCNx\r\nGXniBu2wQm4P4Ny8IuMfNaRXenYUDYzX/X3ADMAaJjO1TKjPHLjGtohMMgM9\r\nX4oQyEr67o5e5EOwY24R/q6DSxtA7bJ50IvoxDieqdfPChPkloNE2D+1HM9t\r\nkbo2npuBtM2zEMwcG/aMQDXkGKdNwnR9ew5u6c3OpCSP81EEH3NyUOIUJVkA\r\n3qmxjddA8UsSV2bAQoFX9KVhIxShDq6uRK3QFXArwBXMxj54yaKRbHAUo/9T\r\nfxYrt1VO1QiwGNaQpCn4PCw4uSfuFHBSnjpgLz3T3uomzokSmyef7U1LSLt1\r\n+d7CmPj/2yCSNCr7RGp4fobpbu8Eq81M0uk2JLD9lTtFqup6vkqnDbFhcNtP\r\n1B6a7zadMUV8O++xOGwfQ2gMfcWBL4q7dMc7ZH6RAokxgHe72Py7NnLIxEk4\r\n5kLGAMl2+/HpeM6QxRsR292khLhf0qwURDY=\r\n=gdYi\r\n-----END PGP SIGNATURE-----\r\n","size":13429},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_9.0.0_1679305588631_0.5884917315127183"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-20T09:46:28.774Z","publish_time":1679305588774},"9.1.0":{"name":"open","version":"9.1.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"engines":{"node":">=14.16"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^4.0.0","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^2.2.0"},"devDependencies":{"@types/node":"^18.15.10","ava":"^5.2.0","tsd":"^0.28.0","xo":"^0.53.1"},"types":"./index.d.ts","gitHead":"accd304abffaec9016f180496d4d3de40145b3c9","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@9.1.0","_nodeVersion":"16.16.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==","shasum":"684934359c90ad25742f5a26151970ff8c6c80b6","tarball":"https://registry.npmmirror.com/open/-/open-9.1.0.tgz","fileCount":6,"unpackedSize":48494,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFaOQHRzgaieohv6RfGRgiCvG+DpFqH0t+w1P8wt39YdAiEA37xwDFLfH579/vOf2TygxFSKv8kPsILpPQnPdqsR6QA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkH5zGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrc5RAAgzoTWcRn3eqRsWesx3v38PmJCwD19Npf+NykH1g+74MtJ12J\r\nd60v7Bs72dN+9RjnjpaXBLbqIPq4Tg60951S//RCl56pgjgNY7uxgsZXXnnb\r\nrlf9BL/JxS7QFM01EbihZcDuOw0Wh3RLFRmIwjuQ33TiGiZ7j5ToQLunS/H9\r\nBNfXkp2htWmPrMm0ub+AWM87X3ilpqKEA2iQtz06CJnMxOIgDWcWvvUgvqTH\r\nIqiucpcD+u3mxNwurTq3IFCb13Nx/u7BN9kqx9g4dxSpfSlAbHNJ/Ugvf4Bv\r\n8etz/p5yKI3xvZRr7NBN9Di1C1xMUP1j2RsaLuf4hvFw0cJJZICTXa6YKjhm\r\npx3UbfD4+eVuaoRDaN7TxaU14jyq1WJGyKkb1+W1M40fvVbl2PqtWW+czZvq\r\np/i+ZI2rccv+ELY88QQPqvzL0Fc5IknBfTgHUxHlsmdJQ+pKHUIvPDUz3ZIg\r\nI1zXsZuz3sjP60aMXaxTof3oM6O6SN5mRfsQk4o4Iym8BWSb8aQhzyja0Mvo\r\nW3wAdhar9vGGCH72x9vEPlk/1+vIGbWjvN9kshF1Pz4mQ2IfJLhyj56QlOnj\r\nXsKzWvr7mN3aCXnOXBCZurIwE2Pwl8F4Hy9Z/IzcAO08mjxUvw2GvXAzvb8N\r\nJSQAj53kkeFjxHU2TaN5TiW7azc65Ynjrik=\r\n=oNSv\r\n-----END PGP SIGNATURE-----\r\n","size":13428},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_9.1.0_1679793350383_0.4690584074817816"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-26T01:15:50.512Z","publish_time":1679793350512},"10.0.0":{"name":"open","version":"10.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.0","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.0","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"2a8ec7046f7c1ce93dbfc6645786a2682c9def95","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.0.0","_nodeVersion":"18.19.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-WDekhGCZ7VHBw6sNDzCl42rVL315m/K/A1lYiZO2nHXn9T4yPBXxvrZKYkVPtsCahD815yhFNR9/Wq608PdIaA==","shasum":"60fead3e270fe5f9fd61d0c1844d06288ae30656","tarball":"https://registry.npmmirror.com/open/-/open-10.0.0.tgz","fileCount":6,"unpackedSize":37676,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFXfyFWUDrn/JZCmy3fN7ECWcwKi5xAiSuDYb3CtscIiAiBzuj+4R2xAKsHpgWcbHDAfehddE/ssa216jK/5I/pfcw=="}],"size":10907},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.0.0_1702944438430_0.687740590028054"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-19T00:07:18.661Z","publish_time":1702944438661,"_source_registry_name":"default"},"10.0.1":{"name":"open","version":"10.0.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.0","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.0","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"818946edd9a0554e852813773142330f9067ee64","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.0.1","_nodeVersion":"21.2.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-+BCGXjtXs4qlmImA8X1AhSU2XyBqD8tJC/PNgWYbcEvNphnw2nyCvNEhAXYk9V+55h1B8M64oXind989YcWANw==","shasum":"1883d6762935c75960284b66190f12f787e30622","tarball":"https://registry.npmmirror.com/open/-/open-10.0.1.tgz","fileCount":6,"unpackedSize":37715,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAfcyaStVEhPn1SgXkN82qMMUwMt2rDU7K4n8sohRT0HAiB+D97XguGTzxWD0gbmwopedC2PbLgNmypts2B5P/eFdw=="}],"size":10922},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.0.1_1703243795793_0.27055894613873677"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-22T11:16:36.029Z","publish_time":1703243796029,"_source_registry_name":"default"},"10.0.2":{"name":"open","version":"10.0.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"31da4c35f6213ceaf9529f3e147fa37041c80c54","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.0.2","_nodeVersion":"21.2.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-GnYLdE+E3K8NeSE23N0g67/9q9AXRph5oTUbz6IbIgElPigEnQ2aHuqRge3y0JUr67qoc84xME5kF03fDc3fcA==","shasum":"93b099c6194552b47afac969c9b83f874aee1ab8","tarball":"https://registry.npmmirror.com/open/-/open-10.0.2.tgz","fileCount":6,"unpackedSize":48475,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEjPHThnucO2R16iCz+BM+qIfX/jNmvcH6mTMYMHsIL3AiB/Bry6PcA2ZUhORh6stUsZpZQuQRZdygmArt05nuJ0Ag=="}],"size":13487},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.0.2_1703722824639_0.4806542654926671"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-28T00:20:24.923Z","publish_time":1703722824923,"_source_registry_name":"default"},"10.0.3":{"name":"open","version":"10.0.3","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"2d5e95978807503b917482786ac5058c16c5193d","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.0.3","_nodeVersion":"21.5.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==","shasum":"f60d8db49fa126c50aec751957fb5d7de3308d4f","tarball":"https://registry.npmmirror.com/open/-/open-10.0.3.tgz","fileCount":6,"unpackedSize":48512,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDL+ou+g2EkSyDyeS4UmE2axcnBXLLe/Xgd2nG2HULj1wIhAK5sEP5zK7HMM7NtW/hChX1fjmUi4yUWPUcYeP8RM1Qx"}],"size":13505},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.0.3_1704606627071_0.7351664090086318"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-01-07T05:50:27.286Z","publish_time":1704606627286,"_source_registry_name":"default"},"10.0.4":{"name":"open","version":"10.0.4","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"ee13d939ad1809a87110dc82aaba6878962159f9","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.0.4","_nodeVersion":"21.6.2","_npmVersion":"9.2.0","dist":{"integrity":"sha512-oujJ/FFr7ra6/7gJuQ4ZJJ8Gf2VHM0J3J/W7IvH++zaqEzacWVxzK++NiVY5NLHTTj7u/jNH5H3Ei9biL31Lng==","shasum":"4869d009dc5b706ae6585699e15d8ccc6cb73629","tarball":"https://registry.npmmirror.com/open/-/open-10.0.4.tgz","fileCount":6,"unpackedSize":48542,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBV6u6Cc5h+VQjlpy4Cny243Ft7Ywt0bxNE/wExc0EeqAiEAxZ3GVpw7y15wqQ6Nhs6A5ih+Ezdq7N1WsW1T99v1Zas="}],"size":13518},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.0.4_1708933918526_0.4760196414543685"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-26T07:51:58.675Z","publish_time":1708933918675,"_source_registry_name":"default"},"10.1.0":{"name":"open","version":"10.1.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"types":"./index.d.ts","gitHead":"2ea66da8e8b20880d235447cf4c94ba275da6a5a","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_id":"open@10.1.0","_nodeVersion":"18.19.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==","shasum":"a7795e6e5d519abe4286d9937bb24b51122598e1","tarball":"https://registry.npmmirror.com/open/-/open-10.1.0.tgz","fileCount":6,"unpackedSize":55180,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmyzfLokeXOjJZPLhz0kn7JVyzSQFnU5yYBWGts105eAIgCUylxLojzrSc0eUdh/TuffFQJ5Po9a5BrKmarvJQYvU="}],"size":15446},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/open_10.1.0_1709912793106_0.32230408785490927"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-03-08T15:46:33.286Z","publish_time":1709912793286,"_source_registry_name":"default"},"10.1.1":{"name":"open","version":"10.1.1","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"_id":"open@10.1.1","gitHead":"31b71c5f454690acb92d2dbcedf58cdfe746ea5a","types":"./index.d.ts","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_nodeVersion":"23.6.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==","shasum":"5fd814699e47ae3e1a09962d39f4f4441cae6c22","tarball":"https://registry.npmmirror.com/open/-/open-10.1.1.tgz","fileCount":6,"unpackedSize":55216,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIH2k2/3O7M1JHGpNxOuoO52hFh2c+XNzcsRS7EG3vwtjAiEAhZYUcUwlMWghmwGP6V9naNefNY+/MuzB1PQA87rXp3E="}],"size":15369},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/open_10.1.1_1744706558212_0.7616565020729962"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-15T08:42:38.375Z","publish_time":1744706558375,"_source_registry_name":"default"},"10.1.2":{"name":"open","version":"10.1.2","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","is-wsl":"^3.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.0.1","tsd":"^0.30.1","xo":"^0.56.0"},"_id":"open@10.1.2","gitHead":"8481ddf646a6b4bc32a059d8bd5685d88c1368a0","types":"./index.d.ts","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_nodeVersion":"23.6.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==","shasum":"d5df40984755c9a9c3c93df8156a12467e882925","tarball":"https://registry.npmmirror.com/open/-/open-10.1.2.tgz","fileCount":6,"unpackedSize":56489,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQC3gu3tSJRJlszhTR1KRDTSA76MuF/TtF0DTz5juhtv1QIgFt4+60Fc5kHF3aF8DRL4sPmRMFUq2TWud8e3YGYJoyw="}],"size":15727},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/open_10.1.2_1746082184302_0.9151816832495807"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-01T06:49:44.518Z","publish_time":1746082184518,"_source_registry_name":"default"},"10.2.0":{"name":"open","version":"10.2.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.2.1","define-lazy-prop":"^3.0.0","is-inside-container":"^1.0.0","wsl-utils":"^0.1.0"},"devDependencies":{"@types/node":"^20.10.5","ava":"^6.4.0","tsd":"^0.32.0","xo":"^1.1.1"},"_id":"open@10.2.0","gitHead":"dc4dc77f3eba6d3612c05ec15d97e89a2ca77dc9","types":"./index.d.ts","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_nodeVersion":"20.19.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==","shasum":"b9d855be007620e80b6fb05fac98141fe62db73c","tarball":"https://registry.npmmirror.com/open/-/open-10.2.0.tgz","fileCount":6,"unpackedSize":55605,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCPNVW8lGsUBocxcvbUrNiQaMKmQyDaygAKGD5x+njb9wIgEJzeyWoWfLlZqXB/fvyX9+J0E+RAdcQ4V1cJSJB23Qc="}],"size":15470},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/open_10.2.0_1752500802662_0.11442605626263713"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-07-14T13:46:42.923Z","publish_time":1752500802923,"_source_registry_name":"default"},"11.0.0":{"name":"open","version":"11.0.0","description":"Open stuff like URLs, files, executables. Cross-platform.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=20"},"scripts":{"test":"xo && tsd"},"keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"dependencies":{"default-browser":"^5.4.0","define-lazy-prop":"^3.0.0","is-in-ssh":"^1.0.0","is-inside-container":"^1.0.0","powershell-utils":"^0.1.0","wsl-utils":"^0.3.0"},"devDependencies":{"@types/node":"^24.10.1","ava":"^6.4.1","tsd":"^0.33.0","xo":"^1.2.3"},"gitHead":"88153308461c32974b146f29446837ee290f605b","types":"./index.d.ts","_id":"open@11.0.0","bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","_nodeVersion":"20.19.5","_npmVersion":"11.6.1","dist":{"integrity":"sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==","shasum":"897e6132f994d3554cbcf72e0df98f176a7e5f62","tarball":"https://registry.npmmirror.com/open/-/open-11.0.0.tgz","fileCount":6,"unpackedSize":58937,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGZs6KGtFLUat22BNcA7MmuS8J6yY4x4Am2/rJE/54ToAiEAnFkWApUjFJL3ROr6J/u87QM2DgH7wW9Gscr84eg3zz8="}],"size":16322},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/open_11.0.0_1763194974028_0.8986767685496568"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-11-15T08:22:54.225Z","publish_time":1763194974225,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/sindresorhus/open/issues"},"homepage":"https://github.com/sindresorhus/open#readme","keywords":["app","open","opener","opens","launch","start","xdg-open","xdg","default","cmd","browser","editor","executable","exe","url","urls","arguments","args","spawn","exec","child","process","website","file"],"repository":{"type":"git","url":"git+https://github.com/sindresorhus/open.git"},"_source_registry_name":"default"}