From a881a6d51e504d30ccacebc340a9595fbede3045 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Mon, 21 Aug 2023 16:24:17 +0500 Subject: [PATCH] web: use new types from core --- .../web/__e2e__/models/reminder-item.model.ts | 2 +- .../__e2e__/models/reminders-view.model.ts | 2 +- apps/web/__e2e__/models/utils.ts | 2 +- apps/web/__e2e__/reminders.test.ts | 2 +- apps/web/package-lock.json | 21103 +++++++++++++++- apps/web/package.json | 1 + apps/web/src/app-effects.tsx | 2 +- apps/web/src/bootstrap.tsx | 4 +- apps/web/src/common/attachments.ts | 25 +- apps/web/src/common/constants.ts | 14 +- apps/web/src/common/db.ts | 14 +- apps/web/src/common/dialog-controller.tsx | 54 +- apps/web/src/common/export.ts | 37 +- apps/web/src/common/index.ts | 4 +- apps/web/src/common/multi-select.ts | 5 +- apps/web/src/common/notices.ts | 12 +- apps/web/src/common/toolbar-config.ts | 4 +- apps/web/src/components/attachment/index.tsx | 6 +- apps/web/src/components/editor/header.tsx | 33 +- apps/web/src/components/editor/index.tsx | 28 +- apps/web/src/components/editor/picker.ts | 16 +- .../web/src/components/group-header/index.tsx | 13 +- .../src/components/list-container/index.tsx | 58 +- .../list-container/list-profiles.tsx | 145 +- .../src/components/list-container/types.ts | 28 +- apps/web/src/components/list-item/index.tsx | 2 +- .../src/components/navigation-menu/index.tsx | 8 +- apps/web/src/components/note/index.tsx | 123 +- apps/web/src/components/notebook/index.tsx | 32 +- apps/web/src/components/properties/index.jsx | 11 +- apps/web/src/components/reminder/index.tsx | 11 +- apps/web/src/components/status-bar/index.tsx | 8 +- apps/web/src/components/tag/index.tsx | 20 +- apps/web/src/components/topic/index.tsx | 24 +- apps/web/src/components/trash-item/index.tsx | 8 +- apps/web/src/components/unlock/index.tsx | 4 +- apps/web/src/dialogs/add-notebook-dialog.jsx | 5 +- apps/web/src/dialogs/add-reminder-dialog.tsx | 8 +- apps/web/src/dialogs/add-tags-dialog.tsx | 28 +- apps/web/src/dialogs/attachments-dialog.tsx | 4 +- .../web/src/dialogs/buy-dialog/buy-dialog.tsx | 3 +- apps/web/src/dialogs/email-change-dialog.tsx | 8 +- apps/web/src/dialogs/issue-dialog.tsx | 4 +- .../src/dialogs/mfa/multi-factor-dialog.tsx | 3 +- .../src/dialogs/mfa/recovery-code-dialog.tsx | 2 +- apps/web/src/dialogs/mfa/steps.tsx | 16 +- apps/web/src/dialogs/mfa/types.ts | 3 +- apps/web/src/dialogs/migration-dialog.tsx | 2 +- apps/web/src/dialogs/move-note-dialog.tsx | 41 +- .../src/dialogs/reminder-preview-dialog.tsx | 11 +- .../web/src/dialogs/settings/auth-settings.ts | 5 +- .../settings/components/accent-colors.tsx | 39 - .../settings/components/billing-history.tsx | 35 +- .../settings/components/customize-toolbar.tsx | 2 +- .../components/subscription-status.tsx | 6 +- .../src/dialogs/settings/privacy-settings.ts | 2 +- .../src/dialogs/settings/profile-settings.ts | 6 +- .../dialogs/settings/subscription-settings.ts | 2 +- .../src/dialogs/settings/vault-settings.tsx | 2 +- apps/web/src/hooks/use-is-user-premium.ts | 7 +- apps/web/src/interfaces/fs.ts | 132 +- apps/web/src/interfaces/storage.ts | 7 +- apps/web/src/navigation/routes.tsx | 14 +- apps/web/src/stores/announcement-store.js | 2 +- apps/web/src/stores/editor-store.js | 49 +- apps/web/src/stores/note-store.js | 21 +- apps/web/src/stores/notebook-store.js | 2 +- .../src/stores/{tag-store.js => tag-store.ts} | 10 +- apps/web/src/stores/user-store.js | 2 +- apps/web/src/utils/compressor.ts | 10 +- apps/web/src/utils/importer.ts | 22 +- apps/web/src/utils/logger.ts | 8 +- .../src/utils/streams/attachment-stream.ts | 20 +- apps/web/src/utils/streams/export-stream.ts | 10 +- apps/web/src/utils/web-extension-server.ts | 32 +- apps/web/src/views/all-notes.tsx | 3 +- apps/web/src/views/auth.tsx | 13 +- apps/web/src/views/notebooks.tsx | 3 +- apps/web/src/views/notes.tsx | 15 +- apps/web/src/views/recovery.tsx | 19 +- apps/web/src/views/reminders.tsx | 3 +- apps/web/src/views/search.jsx | 4 +- apps/web/src/views/tags.tsx | 3 +- apps/web/src/views/topics.jsx | 5 +- apps/web/src/views/trash.tsx | 3 +- 85 files changed, 21768 insertions(+), 753 deletions(-) delete mode 100644 apps/web/src/dialogs/settings/components/accent-colors.tsx rename apps/web/src/stores/{tag-store.js => tag-store.ts} (87%) diff --git a/apps/web/__e2e__/models/reminder-item.model.ts b/apps/web/__e2e__/models/reminder-item.model.ts index 1a327a253..aa2391507 100644 --- a/apps/web/__e2e__/models/reminder-item.model.ts +++ b/apps/web/__e2e__/models/reminder-item.model.ts @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { Reminder } from "@notesnook/core/dist/collections/reminders"; +import { Reminder } from "@notesnook/core/dist/types"; import { Locator } from "@playwright/test"; import { getTestId } from "../utils"; import { BaseItemModel } from "./base-item.model"; diff --git a/apps/web/__e2e__/models/reminders-view.model.ts b/apps/web/__e2e__/models/reminders-view.model.ts index baa0bba65..cdb85dc55 100644 --- a/apps/web/__e2e__/models/reminders-view.model.ts +++ b/apps/web/__e2e__/models/reminders-view.model.ts @@ -21,7 +21,7 @@ import { Locator, Page } from "@playwright/test"; import { getTestId } from "../utils"; import { BaseViewModel } from "./base-view.model"; import { ReminderItemModel } from "./reminder-item.model"; -import { Reminder } from "@notesnook/core/dist/collections/reminders"; +import { Reminder } from "@notesnook/core/dist/types"; import { fillReminderDialog } from "./utils"; export class RemindersViewModel extends BaseViewModel { diff --git a/apps/web/__e2e__/models/utils.ts b/apps/web/__e2e__/models/utils.ts index 204abf596..4ea1ab11d 100644 --- a/apps/web/__e2e__/models/utils.ts +++ b/apps/web/__e2e__/models/utils.ts @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { Reminder } from "@notesnook/core/dist/collections/reminders"; +import { Reminder } from "@notesnook/core/dist/types"; import { Locator, Page } from "@playwright/test"; import { getTestId } from "../utils"; import { Item, Notebook } from "./types"; diff --git a/apps/web/__e2e__/reminders.test.ts b/apps/web/__e2e__/reminders.test.ts index 2d44a1cf7..99f69dd48 100644 --- a/apps/web/__e2e__/reminders.test.ts +++ b/apps/web/__e2e__/reminders.test.ts @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { Reminder } from "@notesnook/core/dist/collections/reminders"; +import { Reminder } from "@notesnook/core/dist/types"; import { test, expect } from "@playwright/test"; import { AppModel } from "./models/app.model"; diff --git a/apps/web/package-lock.json b/apps/web/package-lock.json index 0676d4016..38df0cd09 100644 --- a/apps/web/package-lock.json +++ b/apps/web/package-lock.json @@ -79,6 +79,7 @@ "@swc/core": "1.3.61", "@trpc/server": "10.38.3", "@types/babel__core": "^7.20.1", + "@types/event-source-polyfill": "^1.0.1", "@types/file-saver": "^2.0.5", "@types/marked": "^4.0.7", "@types/node-fetch": "^2.5.10", @@ -189,6 +190,19388 @@ "webpack-dev-server": "^4.7.4" } }, + "../../extensions/web-clipper/node_modules/@ampproject/remapping": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/code-frame": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/compat-data": { + "version": "7.17.10", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/core": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.12", + "@babel/helper-compilation-targets": "^7.17.10", + "@babel/helper-module-transforms": "^7.17.12", + "@babel/helpers": "^7.17.9", + "@babel/parser": "^7.17.12", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.12", + "@babel/types": "^7.17.12", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser": { + "version": "7.17.0", + "license": "MIT", + "dependencies": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/generator": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.17.12", + "@jridgewell/gen-mapping": "^0.3.0", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-compilation-targets": { + "version": "7.17.10", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.17.10", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.20.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-member-expression-to-functions": "^7.17.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^5.0.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-function-name": { + "version": "7.17.9", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.16.7", + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-hoist-variables": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.17.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-module-imports": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-module-transforms": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.12", + "@babel/types": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-optimise-call-expression": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-plugin-utils": { + "version": "7.17.12", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.16.8", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-replace-supers": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-simple-access": { + "version": "7.17.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-validator-identifier": { + "version": "7.16.7", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-validator-option": { + "version": "7.16.7", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-wrap-function": { + "version": "7.16.8", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helpers": { + "version": "7.17.9", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.9", + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/highlight": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/parser": { + "version": "7.17.12", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-decorators": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/plugin-syntax-decorators": "^7.17.12", + "charcodes": "^0.2.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.17.10", + "@babel/helper-compilation-targets": "^7.17.10", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-decorators": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-flow": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-typescript": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-remap-async-to-generator": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-classes": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-destructuring": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-flow": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-for-of": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-function-name": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-literals": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-simple-access": "^7.17.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-validator-identifier": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-new-target": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-object-super": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-parameters": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-property-literals": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-jsx": "^7.17.12", + "@babel/types": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-regenerator": { + "version": "7.17.9", + "license": "MIT", + "dependencies": { + "regenerator-transform": "^0.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-runtime": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.17.12", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-spread": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-template-literals": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-typescript": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.12", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/plugin-syntax-typescript": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-env": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.17.10", + "@babel/helper-compilation-targets": "^7.17.10", + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.17.12", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.17.12", + "@babel/plugin-proposal-async-generator-functions": "^7.17.12", + "@babel/plugin-proposal-class-properties": "^7.17.12", + "@babel/plugin-proposal-class-static-block": "^7.17.12", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.17.12", + "@babel/plugin-proposal-json-strings": "^7.17.12", + "@babel/plugin-proposal-logical-assignment-operators": "^7.17.12", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.17.12", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.17.12", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.17.12", + "@babel/plugin-proposal-private-methods": "^7.17.12", + "@babel/plugin-proposal-private-property-in-object": "^7.17.12", + "@babel/plugin-proposal-unicode-property-regex": "^7.17.12", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.17.12", + "@babel/plugin-transform-async-to-generator": "^7.17.12", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.17.12", + "@babel/plugin-transform-classes": "^7.17.12", + "@babel/plugin-transform-computed-properties": "^7.17.12", + "@babel/plugin-transform-destructuring": "^7.17.12", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.17.12", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.17.12", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.17.12", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.17.12", + "@babel/plugin-transform-modules-commonjs": "^7.17.12", + "@babel/plugin-transform-modules-systemjs": "^7.17.12", + "@babel/plugin-transform-modules-umd": "^7.17.12", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.17.12", + "@babel/plugin-transform-new-target": "^7.17.12", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.17.12", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.17.9", + "@babel/plugin-transform-reserved-words": "^7.17.12", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.17.12", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.17.12", + "@babel/plugin-transform-typeof-symbol": "^7.17.12", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.17.12", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.22.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-modules": { + "version": "0.1.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-react": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-react-display-name": "^7.16.7", + "@babel/plugin-transform-react-jsx": "^7.17.12", + "@babel/plugin-transform-react-jsx-development": "^7.16.7", + "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-typescript": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.17.12", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-typescript": "^7.17.12" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/runtime": { + "version": "7.20.0", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/runtime-corejs3": { + "version": "7.17.9", + "license": "MIT", + "dependencies": { + "core-js-pure": "^3.20.2", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/template": { + "version": "7.16.7", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/traverse": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.12", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.17.9", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.12", + "@babel/types": "^7.17.12", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/types": { + "version": "7.17.12", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-color-function": { + "version": "1.1.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.4", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^1.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-unset-value": { + "version": "1.0.1", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/selector-specificity": { + "version": "1.0.0", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3", + "postcss-selector-parser": "^6.0.10" + } + }, + "../../extensions/web-clipper/node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/cache": { + "version": "11.11.0", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/hash": { + "version": "0.9.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/memoize": { + "version": "0.8.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/react": { + "version": "11.11.1", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@emotion/serialize": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/sheet": { + "version": "1.2.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/unitless": { + "version": "0.8.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/utils": { + "version": "1.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@eslint/eslintrc": { + "version": "1.2.3", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.3.2", + "globals": "^13.9.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.15.0", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@gar/promisify": { + "version": "1.1.3", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@hot-loader/react-dom": { + "version": "17.0.2+4.13.0", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@humanwhocodes/config-array": { + "version": "0.9.5", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/schemas": { + "version": "28.0.2", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.23.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/source-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/resolve-uri": { + "version": "3.0.7", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/set-array": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.13", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.13", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "../../extensions/web-clipper/node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@mdi/js": { + "version": "6.9.96", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/@mdi/react": { + "version": "1.6.0", + "license": "MIT", + "dependencies": { + "prop-types": "^15.7.2" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@notesnook/clipper": { + "resolved": "../../packages/clipper", + "link": true + }, + "../../extensions/web-clipper/node_modules/@notesnook/theme": { + "resolved": "../../packages/theme", + "link": true + }, + "../../extensions/web-clipper/node_modules/@npmcli/fs": { + "version": "2.1.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.3.8", + "devOptional": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@npmcli/move-file": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "devOptional": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@npmcli/move-file/node_modules/rimraf": { + "version": "3.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.6", + "license": "MIT", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.8.1", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <3.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/path-exists": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.3", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@rushstack/eslint-patch": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@sinclair/typebox": { + "version": "0.23.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@sinonjs/commons": { + "version": "1.8.3", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "../../extensions/web-clipper/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/background": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/border": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/color": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/core": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/css": { + "version": "5.1.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@styled-system/flexbox": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/grid": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/layout": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/position": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/shadow": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/should-forward-prop": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@emotion/is-prop-valid": "^0.8.1", + "@emotion/memoize": "^0.7.1", + "styled-system": "^5.1.5" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@styled-system/space": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/typography": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/variant": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2", + "@styled-system/css": "^5.1.5" + } + }, + "../../extensions/web-clipper/node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "license": "Apache-2.0", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/core": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/core/node_modules/cosmiconfig": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/webpack": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/components": { + "version": "0.14.7", + "license": "MIT", + "dependencies": { + "@styled-system/color": "^5.1.2", + "@styled-system/should-forward-prop": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@theme-ui/css": "0.14.7", + "@types/styled-system": "^5.1.13" + }, + "peerDependencies": { + "@emotion/react": "^11", + "react": ">16" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/core": { + "version": "0.14.7", + "license": "MIT", + "dependencies": { + "@theme-ui/css": "0.14.7", + "@theme-ui/parse-props": "0.14.7", + "deepmerge": "^4.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11", + "react": ">16" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/css": { + "version": "0.14.7", + "license": "MIT", + "dependencies": { + "csstype": "^3.0.10" + }, + "peerDependencies": { + "@emotion/react": "^11" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/parse-props": { + "version": "0.14.7", + "license": "MIT", + "dependencies": { + "@theme-ui/css": "0.14.7" + }, + "peerDependencies": { + "@emotion/react": "^11", + "react": ">16" + } + }, + "../../extensions/web-clipper/node_modules/@tootallnate/once": { + "version": "2.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/@trysound/sax": { + "version": "0.2.0", + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__core": { + "version": "7.1.19", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__generator": { + "version": "7.6.4", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__template": { + "version": "7.4.1", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__traverse": { + "version": "7.17.1", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/body-parser": { + "version": "1.19.2", + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/bonjour": { + "version": "3.5.10", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/cheerio": { + "version": "0.22.31", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/chrome": { + "version": "0.0.180", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/filesystem": "*", + "@types/har-format": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/connect": { + "version": "3.4.35", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/eslint": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/eslint-scope": { + "version": "3.7.3", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/estree": { + "version": "0.0.51", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/express": { + "version": "4.17.13", + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/express-serve-static-core": { + "version": "4.17.28", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/filesystem": { + "version": "0.0.32", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/filewriter": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/filewriter": { + "version": "0.0.29", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/firefox-webext-browser": { + "version": "94.0.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/glob": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/graceful-fs": { + "version": "4.1.5", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/har-format": { + "version": "1.2.8", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/http-proxy": { + "version": "1.17.9", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/inline-css": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/cheerio": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/jest": { + "version": "26.0.24", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/json-schema": { + "version": "7.0.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/json5": { + "version": "0.0.29", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/mime": { + "version": "1.3.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/minimatch": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/minimist": { + "version": "1.2.2", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/node": { + "version": "12.20.52", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/parse-json": { + "version": "4.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/postlight__mercury-parser": { + "version": "2.2.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/prettier": { + "version": "2.6.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/prop-types": { + "version": "15.7.5", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/q": { + "version": "1.5.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/qs": { + "version": "6.9.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/range-parser": { + "version": "1.2.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/react": { + "version": "17.0.45", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@types/react-dom": { + "version": "17.0.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "^17" + } + }, + "../../extensions/web-clipper/node_modules/@types/react-modal": { + "version": "3.13.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/resolve": { + "version": "1.17.1", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/retry": { + "version": "0.12.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/sanitize-html": { + "version": "2.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "htmlparser2": "^6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/scheduler": { + "version": "0.16.2", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/serve-index": { + "version": "1.9.1", + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/serve-static": { + "version": "1.13.10", + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/sockjs": { + "version": "0.3.33", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/stack-utils": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/styled-system": { + "version": "5.1.15", + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@types/trusted-types": { + "version": "2.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/webextension-polyfill": { + "version": "0.8.3", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/ws": { + "version": "8.5.3", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/yargs": { + "version": "15.0.14", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/yargs-parser": { + "version": "21.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "5.25.0", + "@typescript-eslint/type-utils": "5.25.0", + "@typescript-eslint/utils": "5.25.0", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/experimental-utils": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "5.25.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/parser": { + "version": "5.25.0", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.25.0", + "@typescript-eslint/types": "5.25.0", + "@typescript-eslint/typescript-estree": "5.25.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/scope-manager": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.25.0", + "@typescript-eslint/visitor-keys": "5.25.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/type-utils": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "5.25.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/types": { + "version": "5.25.0", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.25.0", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.25.0", + "@typescript-eslint/visitor-keys": "5.25.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.25.0", + "@typescript-eslint/types": "5.25.0", + "@typescript-eslint/typescript-estree": "5.25.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.25.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.25.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/configtest": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/info": { + "version": "1.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/serve": { + "version": "1.6.1", + "dev": true, + "license": "MIT", + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/@xtuc/long": { + "version": "4.2.2", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/abab": { + "version": "2.0.6", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/abbrev": { + "version": "1.1.1", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/accepts": { + "version": "1.3.8", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/acorn": { + "version": "8.7.1", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-globals": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "../../extensions/web-clipper/node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "../../extensions/web-clipper/node_modules/acorn-jsx": { + "version": "5.3.2", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-node": { + "version": "1.8.2", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "../../extensions/web-clipper/node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-walk": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/address": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "../../extensions/web-clipper/node_modules/agent-base": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/agentkeepalive": { + "version": "4.2.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/agentkeepalive/node_modules/depd": { + "version": "1.1.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/aggregate-error": { + "version": "3.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/ajv": { + "version": "6.12.6", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ajv-keywords": { + "version": "3.5.2", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "../../extensions/web-clipper/node_modules/ansi-escapes": { + "version": "4.3.2", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/ansi-html-community": { + "version": "0.0.8", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "../../extensions/web-clipper/node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/anymatch": { + "version": "3.1.2", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/aproba": { + "version": "2.0.0", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/are-we-there-yet": { + "version": "3.0.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/arg": { + "version": "5.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "../../extensions/web-clipper/node_modules/aria-query": { + "version": "4.2.2", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "../../extensions/web-clipper/node_modules/array-flatten": { + "version": "2.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/array-includes": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array-union": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/array-uniq": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.flat": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.flatmap": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/arrify": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/asap": { + "version": "2.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ast-types-flow": { + "version": "0.0.7", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/async": { + "version": "3.2.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/async-foreach": { + "version": "0.1.3", + "devOptional": true, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/asynckit": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/at-least-node": { + "version": "1.0.0", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/atob": { + "version": "2.1.2", + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "../../extensions/web-clipper/node_modules/autoprefixer": { + "version": "10.4.7", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.20.3", + "caniuse-lite": "^1.0.30001335", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/axe-core": { + "version": "4.4.2", + "license": "MPL-2.0", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/axobject-query": { + "version": "2.2.0", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/babel-eslint": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/babel-loader": { + "version": "8.2.5", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "license": "MIT", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-preset-jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-preset-react-app": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "../../extensions/web-clipper/node_modules/balanced-match": { + "version": "1.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/batch": { + "version": "0.6.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/bfj": { + "version": "7.0.2", + "license": "MIT", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/big.js": { + "version": "5.2.2", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/binary-extensions": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/bluebird": { + "version": "3.7.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/body-parser": { + "version": "1.20.0", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/qs": { + "version": "6.10.3", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/bonjour-service": { + "version": "1.0.12", + "license": "MIT", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.4" + } + }, + "../../extensions/web-clipper/node_modules/boolbase": { + "version": "1.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/brace-expansion": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../../extensions/web-clipper/node_modules/braces": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/browser-process-hrtime": { + "version": "1.0.0", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/browserslist": { + "version": "4.20.3", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001332", + "electron-to-chromium": "^1.4.118", + "escalade": "^3.1.1", + "node-releases": "^2.0.3", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "../../extensions/web-clipper/node_modules/bser": { + "version": "2.1.1", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/builtin-modules": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/bytes": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/cacache": { + "version": "16.1.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/glob": { + "version": "8.0.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/lru-cache": { + "version": "7.14.1", + "devOptional": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/minimatch": { + "version": "5.1.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "devOptional": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/p-map": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/rimraf": { + "version": "3.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "devOptional": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/cacache/node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/call-bind": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/callsites": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/camel-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/camelcase": { + "version": "5.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/camelcase-css": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/camelcase-keys": { + "version": "6.2.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/caniuse-api": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "../../extensions/web-clipper/node_modules/caniuse-lite": { + "version": "1.0.30001341", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ], + "license": "CC-BY-4.0" + }, + "../../extensions/web-clipper/node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/char-regex": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/charcodes": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/check-types": { + "version": "11.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/chokidar": { + "version": "3.5.3", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/chownr": { + "version": "2.0.0", + "devOptional": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/chrome-trace-event": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "../../extensions/web-clipper/node_modules/ci-info": { + "version": "3.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cjs-module-lexer": { + "version": "1.2.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/clean-css": { + "version": "5.3.0", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "../../extensions/web-clipper/node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/clean-stack": { + "version": "2.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/clean-webpack-plugin": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "del": "^4.1.1" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": ">=4.0.0 <6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/cliui": { + "version": "7.0.4", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/clone-deep": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/co": { + "version": "4.6.0", + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "../../extensions/web-clipper/node_modules/coa": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "../../extensions/web-clipper/node_modules/collect-v8-coverage": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "../../extensions/web-clipper/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/color-support": { + "version": "1.1.3", + "devOptional": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/colord": { + "version": "2.9.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/colorette": { + "version": "2.0.16", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/combined-stream": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/comlink": { + "version": "4.3.1", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/commander": { + "version": "8.3.0", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/common-path-prefix": { + "version": "3.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/common-tags": { + "version": "1.8.2", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/commondir": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/compressible": { + "version": "2.0.18", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/compression": { + "version": "1.7.4", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/confusing-browser-globals": { + "version": "1.0.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/console-control-strings": { + "version": "1.1.0", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/content-disposition": { + "version": "0.5.4", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/content-type": { + "version": "1.0.4", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/convert-source-map": { + "version": "1.8.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "../../extensions/web-clipper/node_modules/cookie": { + "version": "0.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/cookie-signature": { + "version": "1.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/copy-webpack-plugin": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.2.4", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/core-js": { + "version": "3.22.5", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-js-compat": { + "version": "3.22.5", + "license": "MIT", + "dependencies": { + "browserslist": "^4.20.3", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../../extensions/web-clipper/node_modules/core-js-pure": { + "version": "3.22.5", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-util-is": { + "version": "1.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cosmiconfig": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/cross-spawn": { + "version": "7.0.3", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/crypto-random-string": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/css": { + "version": "2.2.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "../../extensions/web-clipper/node_modules/css-blank-pseudo": { + "version": "3.0.3", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-declaration-sorter": { + "version": "6.2.2", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "../../extensions/web-clipper/node_modules/css-has-pseudo": { + "version": "3.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-loader": { + "version": "6.7.1", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/css-loader/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "license": "MIT", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "license": "CC0-1.0", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-select-base-adapter": { + "version": "0.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/css/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/cssdb": { + "version": "6.6.1", + "license": "CC0-1.0", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, + "../../extensions/web-clipper/node_modules/cssesc": { + "version": "3.0.0", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/cssnano": { + "version": "5.1.8", + "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^5.2.8", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/cssnano-preset-default": { + "version": "5.2.8", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^6.2.2", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.1", + "postcss-discard-comments": "^5.1.1", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.4", + "postcss-merge-rules": "^5.1.1", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.0", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.0", + "postcss-normalize-repeat-style": "^5.1.0", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.1", + "postcss-reduce-initial": "^5.1.0", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/cssnano-utils": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/csso": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/cssstyle": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/csstype": { + "version": "3.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/damerau-levenshtein": { + "version": "1.0.8", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/debug": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/decamelize": { + "version": "1.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/decamelize-keys": { + "version": "1.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/decimal.js": { + "version": "10.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/decode-uri-component": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/dedent": { + "version": "0.7.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/deep-is": { + "version": "0.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/deepmerge": { + "version": "4.2.2", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/default-gateway": { + "version": "6.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/define-lazy-prop": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/define-properties": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/defined": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/del": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/globby": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/delayed-stream": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/delegates": { + "version": "1.0.0", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/depd": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/destroy": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "../../extensions/web-clipper/node_modules/detect-newline": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/detect-node": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/detect-port-alt": { + "version": "1.1.6", + "license": "MIT", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "../../extensions/web-clipper/node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/detective": { + "version": "5.2.0", + "license": "MIT", + "dependencies": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/didyoumean": { + "version": "1.2.2", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/diff-sequences": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/dir-glob": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/dlv": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/dns-equal": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/dns-packet": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/doctrine": { + "version": "3.0.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/dom-converter": { + "version": "0.2.0", + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "../../extensions/web-clipper/node_modules/dom-serializer": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/dom-walk": { + "version": "0.1.2" + }, + "../../extensions/web-clipper/node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/domhandler": { + "version": "4.3.1", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/domutils": { + "version": "2.8.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/dot-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/dotenv": { + "version": "10.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/dotenv-expand": { + "version": "5.1.0", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/duplexer": { + "version": "0.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ee-first": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ejs": { + "version": "3.1.8", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/electron-to-chromium": { + "version": "1.4.137", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/emittery": { + "version": "0.8.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/emojis-list": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/encodeurl": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/encoding": { + "version": "0.1.13", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "../../extensions/web-clipper/node_modules/enhanced-resolve": { + "version": "5.9.3", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/entities": { + "version": "2.2.0", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/env-paths": { + "version": "2.2.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/envinfo": { + "version": "7.8.1", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/err-code": { + "version": "2.0.3", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/error-ex": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../extensions/web-clipper/node_modules/error-stack-parser": { + "version": "2.0.7", + "license": "MIT", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "../../extensions/web-clipper/node_modules/es-abstract": { + "version": "1.20.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/es-module-lexer": { + "version": "0.9.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/es-shim-unscopables": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + } + }, + "../../extensions/web-clipper/node_modules/es-to-primitive": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/escalade": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/escape-html": { + "version": "1.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/escape-string-regexp": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/escodegen": { + "version": "2.0.0", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint": { + "version": "8.15.0", + "license": "MIT", + "dependencies": { + "@eslint/eslintrc": "^1.2.3", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.2", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/eslint-config-react-app": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/eslint-module-utils": { + "version": "2.7.3", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import": { + "version": "2.26.0", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.3", + "has": "^1.0.3", + "is-core-module": "^2.8.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.5", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react": { + "version": "7.29.4", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react-hooks": { + "version": "4.5.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.3", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-testing-library": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^5.13.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-scope": { + "version": "7.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-utils": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "../../extensions/web-clipper/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.28.2", + "jest-worker": "^27.3.1", + "micromatch": "^4.0.4", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/globals": { + "version": "13.15.0", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/espree": { + "version": "9.3.2", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.7.1", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/esprima": { + "version": "4.0.1", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/esquery": { + "version": "1.4.0", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/esrecurse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/estraverse": { + "version": "5.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/estree-walker": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/esutils": { + "version": "2.0.3", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/etag": { + "version": "1.8.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/eventemitter3": { + "version": "4.0.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/events": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "../../extensions/web-clipper/node_modules/execa": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/exenv": { + "version": "1.2.2", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/exit": { + "version": "0.1.2", + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/expect": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/express": { + "version": "4.18.1", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/express/node_modules/qs": { + "version": "6.10.3", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-deep-equal": { + "version": "3.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-glob": { + "version": "3.2.11", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "../../extensions/web-clipper/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-levenshtein": { + "version": "2.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fastest-levenshtein": { + "version": "1.0.12", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fastq": { + "version": "1.13.0", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "../../extensions/web-clipper/node_modules/faye-websocket": { + "version": "0.11.4", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/fb-watchman": { + "version": "2.0.1", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/file-entry-cache": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "../../extensions/web-clipper/node_modules/file-loader": { + "version": "6.2.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/filelist": { + "version": "1.0.4", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "../../extensions/web-clipper/node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/filelist/node_modules/minimatch": { + "version": "5.1.0", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/filesize": { + "version": "8.0.7", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/fill-range": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/find-cache-dir": { + "version": "3.3.2", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/find-root": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/find-up": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/flat-cache": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "../../extensions/web-clipper/node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/flatted": { + "version": "3.2.5", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/follow-redirects": { + "version": "1.15.0", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.2", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/forwarded": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/fraction.js": { + "version": "4.2.0", + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "../../extensions/web-clipper/node_modules/fresh": { + "version": "0.5.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/fs-extra": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/fs-minipass": { + "version": "2.1.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/fs-monkey": { + "version": "1.0.3", + "license": "Unlicense" + }, + "../../extensions/web-clipper/node_modules/fs.realpath": { + "version": "1.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/function-bind": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/function.prototype.name": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/functional-red-black-tree": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/functions-have-names": { + "version": "1.2.3", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/gauge": { + "version": "4.0.4", + "devOptional": true, + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/gaze": { + "version": "1.1.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "globule": "^1.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/gensync": { + "version": "1.0.0-beta.2", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "../../extensions/web-clipper/node_modules/get-intrinsic": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/get-package-type": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/get-stdin": { + "version": "4.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/get-stream": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/get-symbol-description": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/glob": { + "version": "7.2.3", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/glob-parent": { + "version": "5.1.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/glob-to-regexp": { + "version": "0.4.1", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/global": { + "version": "4.4.0", + "license": "MIT", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "../../extensions/web-clipper/node_modules/global-modules": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/global-prefix": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "../../extensions/web-clipper/node_modules/globals": { + "version": "11.12.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/globby": { + "version": "11.1.0", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/globule": { + "version": "1.3.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "glob": "~7.1.1", + "lodash": "~4.17.10", + "minimatch": "~3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "devOptional": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "devOptional": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/graceful-fs": { + "version": "4.2.10", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/gzip-size": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/handle-thing": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/hard-rejection": { + "version": "2.1.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/harmony-reflect": { + "version": "1.6.2", + "license": "(Apache-2.0 OR MPL-1.1)" + }, + "../../extensions/web-clipper/node_modules/has": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/has-bigints": { + "version": "1.0.2", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/has-property-descriptors": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-symbols": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-tostringtag": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-unicode": { + "version": "2.0.1", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "../../extensions/web-clipper/node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "../../extensions/web-clipper/node_modules/hoopy": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/hosted-git-info": { + "version": "4.1.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/hpack.js": { + "version": "2.1.6", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "../../extensions/web-clipper/node_modules/html-entities": { + "version": "2.3.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/html-escaper": { + "version": "2.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/html-loader": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "html-minifier-terser": "^6.0.2", + "parse5": "^6.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/html-minifier-terser": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/html-webpack-plugin": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "../../extensions/web-clipper/node_modules/htmlparser2": { + "version": "6.1.0", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/http-cache-semantics": { + "version": "4.1.0", + "devOptional": true, + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/http-deceiver": { + "version": "1.2.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/http-errors": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/http-parser-js": { + "version": "0.5.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/http-proxy": { + "version": "1.18.1", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/http-proxy-agent": { + "version": "5.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/http-proxy-middleware": { + "version": "2.0.6", + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/https-proxy-agent": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/human-signals": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "../../extensions/web-clipper/node_modules/humanize-ms": { + "version": "1.2.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/hyperapp": { + "version": "2.0.22", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/iconv-lite": { + "version": "0.6.3", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/icss-utils": { + "version": "5.1.0", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/idb": { + "version": "6.1.5", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/identity-obj-proxy": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/ignore": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/immer": { + "version": "9.0.14", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "../../extensions/web-clipper/node_modules/import-fresh": { + "version": "3.3.0", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/import-local": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/imurmurhash": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "../../extensions/web-clipper/node_modules/indent-string": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/infer-owner": { + "version": "1.0.4", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/inflight": { + "version": "1.0.6", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "../../extensions/web-clipper/node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/ini": { + "version": "1.3.8", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/internal-slot": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/interpret": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/ip": { + "version": "2.0.0", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ipaddr.js": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/is-arrayish": { + "version": "0.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-bigint": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-binary-path": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-boolean-object": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-callable": { + "version": "1.2.4", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-core-module": { + "version": "2.9.0", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-date-object": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-docker": { + "version": "2.2.1", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-extglob": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-generator-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-glob": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-lambda": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-module": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-negative-zero": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-number": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../extensions/web-clipper/node_modules/is-number-object": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-obj": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-path-cwd": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-path-in-cwd": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-path-inside": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-plain-obj": { + "version": "1.1.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-regex": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-regexp": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-root": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-stream": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-string": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-symbol": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-typedarray": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-weakref": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-wsl": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report": { + "version": "3.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-reports": { + "version": "3.1.4", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jake": { + "version": "10.8.5", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-config": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-docblock": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/@tootallnate/once": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/cssom": { + "version": "0.4.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/data-urls": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/domexception": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/form-data": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/http-proxy-agent": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/jsdom": { + "version": "16.7.0", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/tr46": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/webidl-conversions": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10.4" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/whatwg-encoding": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/whatwg-mimetype": { + "version": "2.3.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/whatwg-url": { + "version": "8.7.0", + "license": "MIT", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/ws": { + "version": "7.5.7", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/xml-name-validator": { + "version": "3.0.0", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/jest-environment-node": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-get-type": { + "version": "26.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/diff-sequences": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/jest-diff": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-regex-util": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-serializer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.0", + "jest-util": "^28.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/console": "^28.1.0", + "@jest/types": "^28.1.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.0.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.10", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^28.1.0", + "@jest/types": "^28.1.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.0", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.0.2", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "16.0.4", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/js-base64": { + "version": "2.6.4", + "devOptional": true, + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/js-tokens": { + "version": "4.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/jsesc": { + "version": "2.5.2", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-schema": { + "version": "0.4.0", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "../../extensions/web-clipper/node_modules/json-schema-traverse": { + "version": "0.4.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json5": { + "version": "2.2.1", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../../extensions/web-clipper/node_modules/jsonpointer": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/jsx-ast-utils": { + "version": "3.3.0", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.4", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/kind-of": { + "version": "6.0.3", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/kleur": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/klona": { + "version": "2.0.5", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/language-subtag-registry": { + "version": "0.3.21", + "license": "ODC-By-1.0" + }, + "../../extensions/web-clipper/node_modules/language-tags": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "../../extensions/web-clipper/node_modules/leven": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/levn": { + "version": "0.4.1", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/lilconfig": { + "version": "2.0.5", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/lines-and-columns": { + "version": "1.2.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/loader-runner": { + "version": "4.3.0", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "../../extensions/web-clipper/node_modules/loader-utils": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "../../extensions/web-clipper/node_modules/locate-path": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.debounce": { + "version": "4.0.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.memoize": { + "version": "4.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.merge": { + "version": "4.6.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.sortby": { + "version": "4.7.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.uniq": { + "version": "4.5.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/loose-envify": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/lower-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/mac-scrollbar": { + "version": "0.10.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/magic-string": { + "version": "0.25.9", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "../../extensions/web-clipper/node_modules/make-dir": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/make-fetch-happen": { + "version": "10.2.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.14.1", + "devOptional": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/makeerror": { + "version": "1.0.12", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "../../extensions/web-clipper/node_modules/map-obj": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/mdn-data": { + "version": "2.0.4", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/media-typer": { + "version": "0.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/memfs": { + "version": "3.4.3", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/meow": { + "version": "9.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/merge-descriptors": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/merge-stream": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/merge2": { + "version": "1.4.1", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/methods": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/micromatch": { + "version": "4.0.5", + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "../../extensions/web-clipper/node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/mime-types": { + "version": "2.1.35", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/mimic-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/min-document": { + "version": "2.19.0", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "../../extensions/web-clipper/node_modules/min-indent": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin": { + "version": "2.6.0", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/minimalistic-assert": { + "version": "1.0.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/minimatch": { + "version": "3.1.2", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/minimist": { + "version": "1.2.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/minimist-options": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/minipass": { + "version": "3.3.6", + "devOptional": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/minipass-collect": { + "version": "1.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/minipass-fetch": { + "version": "2.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "../../extensions/web-clipper/node_modules/minipass-flush": { + "version": "1.0.5", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/minipass-pipeline": { + "version": "1.2.4", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/minipass-sized": { + "version": "1.0.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/minizlib": { + "version": "2.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/mkdirp": { + "version": "0.5.6", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "../../extensions/web-clipper/node_modules/ms": { + "version": "2.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/multicast-dns": { + "version": "7.2.5", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/nan": { + "version": "2.17.0", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/nanoid": { + "version": "3.3.4", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../extensions/web-clipper/node_modules/natural-compare": { + "version": "1.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/negotiator": { + "version": "0.6.3", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/neo-async": { + "version": "2.6.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/no-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/node-forge": { + "version": "1.3.1", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp": { + "version": "8.4.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/@npmcli/fs": { + "version": "1.1.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/@npmcli/move-file": { + "version": "1.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/@tootallnate/once": { + "version": "1.1.2", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/cacache": { + "version": "15.3.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/http-proxy-agent": { + "version": "4.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/make-fetch-happen": { + "version": "9.1.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/minipass-fetch": { + "version": "1.4.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/mkdirp": { + "version": "1.0.4", + "devOptional": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/p-map": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/rimraf": { + "version": "3.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/semver": { + "version": "7.3.8", + "devOptional": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/socks-proxy-agent": { + "version": "6.2.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/ssri": { + "version": "8.0.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/unique-filename": { + "version": "1.1.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/node-gyp/node_modules/unique-slug": { + "version": "2.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "../../extensions/web-clipper/node_modules/node-int64": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/node-releases": { + "version": "2.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/node-sass": { + "version": "8.0.0", + "devOptional": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "make-fetch-happen": "^10.0.4", + "meow": "^9.0.0", + "nan": "^2.17.0", + "node-gyp": "^8.4.1", + "sass-graph": "^4.0.1", + "stdout-stream": "^1.4.0", + "true-case-path": "^2.2.1" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/ansi-styles": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/chalk": { + "version": "4.1.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/color-convert": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/color-name": { + "version": "1.1.4", + "devOptional": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/has-flag": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/node-sass/node_modules/supports-color": { + "version": "7.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/nopt": { + "version": "5.0.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/normalize-package-data": { + "version": "3.0.3", + "devOptional": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/normalize-package-data/node_modules/semver": { + "version": "7.3.7", + "devOptional": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/normalize-path": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/normalize-range": { + "version": "0.1.2", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/normalize-url": { + "version": "6.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/npm-run-path": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/npmlog": { + "version": "6.0.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/nth-check": { + "version": "1.0.2", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/nwsapi": { + "version": "2.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/object-assign": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/object-hash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/object-inspect": { + "version": "1.12.0", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/object.assign": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.entries": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/object.fromentries": { + "version": "2.0.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.hasown": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.values": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/obuf": { + "version": "1.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/on-finished": { + "version": "2.4.1", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/on-headers": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/once": { + "version": "1.4.0", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "../../extensions/web-clipper/node_modules/onetime": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/open": { + "version": "8.4.0", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/optionator": { + "version": "0.9.1", + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/p-limit": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/p-locate": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/p-locate/node_modules/p-limit": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/p-locate/node_modules/p-try": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/p-map": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/p-retry": { + "version": "4.6.2", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/p-try": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/param-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/parent-module": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/parse-json": { + "version": "5.2.0", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/parse5": { + "version": "6.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/parseurl": { + "version": "1.3.3", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/pascal-case": { + "version": "3.1.2", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/path-exists": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/path-is-absolute": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/path-is-inside": { + "version": "1.0.2", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "../../extensions/web-clipper/node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/path-parse": { + "version": "1.0.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/path-to-regexp": { + "version": "0.1.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/path-type": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/performance-now": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/picocolors": { + "version": "1.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/picomatch": { + "version": "2.3.1", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../../extensions/web-clipper/node_modules/pify": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pinkie": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/pinkie-promise": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/pirates": { + "version": "4.0.5", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/path-exists": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/postcss": { + "version": "8.4.14", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../extensions/web-clipper/node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.2" + }, + "peerDependencies": { + "postcss": "^8.0.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-browser-comments": { + "version": "4.0.0", + "license": "CC0-1.0", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-calc": { + "version": "8.2.4", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-clamp": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-functional-notation": { + "version": "4.2.2", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-hex-alpha": { + "version": "8.0.3", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-rebeccapurple": { + "version": "7.0.2", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-colormin": { + "version": "5.3.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-convert-values": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.20.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-media": { + "version": "8.0.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-properties": { + "version": "12.1.7", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-selectors": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-dir-pseudo-class": { + "version": "6.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-comments": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-empty": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-double-position-gradients": { + "version": "3.1.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-env-function": { + "version": "4.0.6", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-visible": { + "version": "6.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-within": { + "version": "5.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-font-variant": { + "version": "5.0.0", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-gap-properties": { + "version": "3.0.3", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-image-set-function": { + "version": "4.0.6", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-initial": { + "version": "4.0.1", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-js": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-lab-function": { + "version": "4.2.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-load-config": { + "version": "3.1.4", + "license": "MIT", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/postcss-loader": { + "version": "6.2.1", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-loader/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-logical": { + "version": "5.0.4", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-media-minmax": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-merge-longhand": { + "version": "5.1.4", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-merge-rules": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-params": { + "version": "5.1.3", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-selectors": { + "version": "5.2.0", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-scope": { + "version": "3.0.0", + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-values": { + "version": "4.0.0", + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nested": { + "version": "5.0.6", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nesting": { + "version": "10.1.6", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "1.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize": { + "version": "10.0.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-positions": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-repeat-style": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-string": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-unicode": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-url": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-opacity-percentage": { + "version": "1.1.2", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "../../extensions/web-clipper/node_modules/postcss-ordered-values": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-overflow-shorthand": { + "version": "3.0.3", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-page-break": { + "version": "3.0.4", + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-place": { + "version": "7.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-preset-env": { + "version": "7.5.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-color-function": "^1.1.0", + "@csstools/postcss-font-format-keywords": "^1.0.0", + "@csstools/postcss-hwb-function": "^1.0.0", + "@csstools/postcss-ic-unit": "^1.0.0", + "@csstools/postcss-is-pseudo-class": "^2.0.2", + "@csstools/postcss-normalize-display-values": "^1.0.0", + "@csstools/postcss-oklab-function": "^1.1.0", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.0", + "@csstools/postcss-unset-value": "^1.0.0", + "autoprefixer": "^10.4.6", + "browserslist": "^4.20.3", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^6.6.1", + "postcss-attribute-case-insensitive": "^5.0.0", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.2", + "postcss-color-hex-alpha": "^8.0.3", + "postcss-color-rebeccapurple": "^7.0.2", + "postcss-custom-media": "^8.0.0", + "postcss-custom-properties": "^12.1.7", + "postcss-custom-selectors": "^6.0.0", + "postcss-dir-pseudo-class": "^6.0.4", + "postcss-double-position-gradients": "^3.1.1", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.3", + "postcss-image-set-function": "^4.0.6", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.0", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.1.4", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.3", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.4", + "postcss-pseudo-class-any-link": "^7.1.2", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^5.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-reduce-initial": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-selector-not": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-selector-parser": { + "version": "6.0.10", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/css-select": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/css-what": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/nth-check": { + "version": "2.0.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-value-parser": { + "version": "4.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/prelude-ls": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/prettier": { + "version": "2.6.2", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/pretty-bytes": { + "version": "5.6.0", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pretty-error": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/process": { + "version": "0.11.10", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "../../extensions/web-clipper/node_modules/process-nextick-args": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/promise": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "../../extensions/web-clipper/node_modules/promise-inflight": { + "version": "1.0.1", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/promise-retry": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/promise-retry/node_modules/retry": { + "version": "0.12.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/prompts": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/prop-types": { + "version": "15.8.1", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "../../extensions/web-clipper/node_modules/proxy-addr": { + "version": "2.0.7", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/psl": { + "version": "1.8.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/punycode": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/q": { + "version": "1.5.1", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "../../extensions/web-clipper/node_modules/queue-microtask": { + "version": "1.2.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/quick-lru": { + "version": "4.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/raf": { + "version": "3.4.1", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/ramda": { + "version": "0.21.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/randombytes": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/range-parser": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/raw-body": { + "version": "2.5.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react": { + "version": "17.0.2", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react-app-polyfill": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils": { + "version": "12.0.1", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/path-exists": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/react-dom": { + "version": "17.0.2", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "../../extensions/web-clipper/node_modules/react-error-overlay": { + "version": "6.0.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-frame-component": { + "version": "5.2.2", + "license": "MIT", + "peerDependencies": { + "prop-types": "^15.5.9", + "react": ">= 16.3", + "react-dom": ">= 16.3" + } + }, + "../../extensions/web-clipper/node_modules/react-hot-loader": { + "version": "4.13.0", + "license": "MIT", + "dependencies": { + "fast-levenshtein": "^2.0.6", + "global": "^4.3.0", + "hoist-non-react-statics": "^3.3.0", + "loader-utils": "^1.1.0", + "prop-types": "^15.6.1", + "react-lifecycles-compat": "^3.0.4", + "shallowequal": "^1.1.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "@types/react": "^15.0.0 || ^16.0.0 || ^17.0.0 ", + "react": "^15.0.0 || ^16.0.0 || ^17.0.0 ", + "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 " + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/react-hot-loader/node_modules/json5": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/react-hot-loader/node_modules/loader-utils": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/react-hot-loader/node_modules/source-map": { + "version": "0.7.3", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/react-is": { + "version": "16.13.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-modal": { + "version": "3.15.1", + "license": "MIT", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" + } + }, + "../../extensions/web-clipper/node_modules/react-refresh": { + "version": "0.11.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react-scripts": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.0", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.0", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/react-scripts/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/react-scripts/node_modules/sass-loader": { + "version": "12.6.0", + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/react-scripts/node_modules/semver": { + "version": "7.3.7", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg": { + "version": "5.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up": { + "version": "7.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/path-exists": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "devOptional": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "devOptional": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "../../extensions/web-clipper/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "devOptional": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/readable-stream": { + "version": "2.3.7", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "../../extensions/web-clipper/node_modules/readdirp": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../extensions/web-clipper/node_modules/rechoir": { + "version": "0.7.1", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/recursive-readdir": { + "version": "2.2.2", + "license": "MIT", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/recursive-readdir/node_modules/minimatch": { + "version": "3.0.4", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/redent": { + "version": "3.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/regenerate": { + "version": "1.4.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regenerate-unicode-properties": { + "version": "10.0.1", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/regenerator-runtime": { + "version": "0.13.10", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regenerator-transform": { + "version": "0.15.0", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "../../extensions/web-clipper/node_modules/regex-parser": { + "version": "2.2.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/regexpp": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "../../extensions/web-clipper/node_modules/regexpu-core": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/regjsgen": { + "version": "0.6.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regjsparser": { + "version": "0.8.4", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "../../extensions/web-clipper/node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "../../extensions/web-clipper/node_modules/relateurl": { + "version": "0.2.7", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/renderkid": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/css-what": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/nth-check": { + "version": "2.0.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/require-from-string": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/resolve": { + "version": "1.22.0", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/resolve-cwd": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/resolve-from": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/resolve-url": { + "version": "0.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/resolve.exports": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/retry": { + "version": "0.13.1", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/reusify": { + "version": "1.0.4", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/rimraf": { + "version": "2.7.1", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/rollup": { + "version": "2.73.0", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/run-parallel": { + "version": "1.2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "../../extensions/web-clipper/node_modules/rx": { + "version": "4.1.0", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/sanitize.css": { + "version": "13.0.0", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/sass-graph": { + "version": "4.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "glob": "^7.0.0", + "lodash": "^4.17.11", + "scss-tokenizer": "^0.4.3", + "yargs": "^17.2.1" + }, + "bin": { + "sassgraph": "bin/sassgraph" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/sass-graph/node_modules/cliui": { + "version": "8.0.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/sass-graph/node_modules/yargs": { + "version": "17.6.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/sass-graph/node_modules/yargs-parser": { + "version": "21.1.1", + "devOptional": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/sass-loader": { + "version": "13.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/saxes": { + "version": "5.0.1", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/scheduler": { + "version": "0.20.2", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "../../extensions/web-clipper/node_modules/schema-utils": { + "version": "2.7.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/scss-tokenizer": { + "version": "0.4.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "js-base64": "^2.4.9", + "source-map": "^0.7.3" + } + }, + "../../extensions/web-clipper/node_modules/scss-tokenizer/node_modules/source-map": { + "version": "0.7.4", + "devOptional": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/select-hose": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/selfsigned": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/semver": { + "version": "6.3.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../../extensions/web-clipper/node_modules/send": { + "version": "0.18.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/send/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/send/node_modules/mime": { + "version": "1.6.0", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/send/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/serialize-javascript": { + "version": "5.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/serve-index": { + "version": "1.9.1", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-static": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/set-blocking": { + "version": "2.0.0", + "devOptional": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/setprototypeof": { + "version": "1.2.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/shallow-clone": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shallowequal": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/shebang-command": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shebang-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shell-quote": { + "version": "1.7.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/side-channel": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/signal-exit": { + "version": "3.0.7", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/sisteransi": { + "version": "1.0.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/smart-buffer": { + "version": "4.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/sockjs": { + "version": "0.3.24", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "../../extensions/web-clipper/node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "../../extensions/web-clipper/node_modules/socks": { + "version": "2.7.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/source-list-map": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/source-map": { + "version": "0.5.7", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-js": { + "version": "1.0.2", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-loader": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-resolve": { + "version": "0.5.3", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-support": { + "version": "0.5.21", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-url": { + "version": "0.4.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/sourcemap-codec": { + "version": "1.4.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/spdx-correct": { + "version": "3.1.1", + "devOptional": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/spdx-exceptions": { + "version": "2.3.0", + "devOptional": true, + "license": "CC-BY-3.0" + }, + "../../extensions/web-clipper/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/spdx-license-ids": { + "version": "3.0.11", + "devOptional": true, + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/spdy": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/spdy-transport": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "../../extensions/web-clipper/node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/sprintf-js": { + "version": "1.0.3", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/ssri": { + "version": "9.0.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/stable": { + "version": "0.1.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/stack-utils": { + "version": "2.0.5", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/stackframe": { + "version": "1.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/statuses": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/stdout-stream": { + "version": "1.4.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "../../extensions/web-clipper/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/string-length": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/string-natural-compare": { + "version": "3.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/string.prototype.matchall": { + "version": "4.0.7", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.trimend": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.trimstart": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/stringify-object": { + "version": "3.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-bom": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-comments": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/strip-final-newline": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/strip-indent": { + "version": "3.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-json-comments": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/style-loader": { + "version": "3.3.1", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/styled-system": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/background": "^5.1.2", + "@styled-system/border": "^5.1.5", + "@styled-system/color": "^5.1.2", + "@styled-system/core": "^5.1.2", + "@styled-system/flexbox": "^5.1.2", + "@styled-system/grid": "^5.1.2", + "@styled-system/layout": "^5.1.2", + "@styled-system/position": "^5.1.2", + "@styled-system/shadow": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@styled-system/typography": "^5.1.2", + "@styled-system/variant": "^5.1.5", + "object-assign": "^4.1.1" + } + }, + "../../extensions/web-clipper/node_modules/stylehacks": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.6", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/stylis": { + "version": "4.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/supports-hyperlinks": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/svg-parser": { + "version": "2.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/svg-react-loader": { + "version": "0.4.6", + "license": "MIT", + "dependencies": { + "css": "2.2.4", + "loader-utils": "1.1.0", + "ramda": "0.21.0", + "rx": "4.1.0", + "traverse": "0.6.6", + "xml2js": "0.4.17" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/big.js": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/emojis-list": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/json5": { + "version": "0.5.1", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/loader-utils": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/js-yaml": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/symbol-tree": { + "version": "3.2.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tailwindcss": { + "version": "3.0.24", + "license": "MIT", + "dependencies": { + "arg": "^5.0.1", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.12", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.10", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/quick-lru": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/tapable": { + "version": "2.2.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/tar": { + "version": "6.1.12", + "devOptional": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "devOptional": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/temp-dir": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/tempy": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/terminal-link": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/terser": { + "version": "5.13.1", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map": "~0.8.0-beta.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/source-map": { + "version": "0.8.0-beta.0", + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/tr46": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/whatwg-url": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "../../extensions/web-clipper/node_modules/test-exclude": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/text-table": { + "version": "0.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/throat": { + "version": "6.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/thunky": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tmpl": { + "version": "1.0.5", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/to-fast-properties": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/to-regex-range": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "../../extensions/web-clipper/node_modules/toidentifier": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "../../extensions/web-clipper/node_modules/tough-cookie": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/tough-cookie/node_modules/universalify": { + "version": "0.1.2", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/traverse": { + "version": "0.6.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/trim-newlines": { + "version": "3.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/true-case-path": { + "version": "2.2.1", + "devOptional": true, + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/tryer": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ts-loader": { + "version": "9.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/semver": { + "version": "7.3.7", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/tslib": { + "version": "2.4.0", + "license": "0BSD" + }, + "../../extensions/web-clipper/node_modules/tsutils": { + "version": "3.21.0", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "../../extensions/web-clipper/node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "license": "0BSD" + }, + "../../extensions/web-clipper/node_modules/type-check": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/type-detect": { + "version": "4.0.8", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/type-fest": { + "version": "0.18.1", + "devOptional": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/type-is": { + "version": "1.6.18", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unbox-primitive": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unique-filename": { + "version": "2.0.1", + "devOptional": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unique-slug": { + "version": "3.0.0", + "devOptional": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unique-string": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unpipe": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/unquote": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/upath": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "../../extensions/web-clipper/node_modules/uri-js": { + "version": "4.4.1", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/urix": { + "version": "0.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/use-sync-external-store": { + "version": "1.2.0", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "../../extensions/web-clipper/node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/util.promisify": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/utila": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/utils-merge": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/v8-compile-cache": { + "version": "2.3.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "../../extensions/web-clipper/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "devOptional": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/vary": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/w3c-hr-time": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/walker": { + "version": "1.0.8", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "../../extensions/web-clipper/node_modules/warning": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/watchpack": { + "version": "2.3.1", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/wbuf": { + "version": "1.7.3", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webextension-polyfill-ts": { + "version": "0.26.0", + "license": "Zlib", + "dependencies": { + "webextension-polyfill": "^0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/webextension-polyfill-ts/node_modules/webextension-polyfill": { + "version": "0.8.0", + "license": "MPL-2.0" + }, + "../../extensions/web-clipper/node_modules/webpack": { + "version": "5.72.1", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-cli": { + "version": "4.9.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.1", + "@webpack-cli/info": "^1.4.1", + "@webpack-cli/serve": "^1.6.1", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server": { + "version": "4.9.0", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "license": "MIT", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-merge": { + "version": "5.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-sources": { + "version": "3.2.3", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/websocket-driver": { + "version": "0.7.4", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/websocket-extensions": { + "version": "0.1.4", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/whatwg-fetch": { + "version": "3.6.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/which": { + "version": "2.0.2", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/which-boxed-primitive": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/wide-align": { + "version": "1.1.5", + "devOptional": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "../../extensions/web-clipper/node_modules/wildcard": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/word-wrap": { + "version": "1.2.3", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-background-sync": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-broadcast-update": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.3", + "workbox-broadcast-update": "6.5.3", + "workbox-cacheable-response": "6.5.3", + "workbox-core": "6.5.3", + "workbox-expiration": "6.5.3", + "workbox-google-analytics": "6.5.3", + "workbox-navigation-preload": "6.5.3", + "workbox-precaching": "6.5.3", + "workbox-range-requests": "6.5.3", + "workbox-recipes": "6.5.3", + "workbox-routing": "6.5.3", + "workbox-strategies": "6.5.3", + "workbox-streams": "6.5.3", + "workbox-sw": "6.5.3", + "workbox-window": "6.5.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.3", + "license": "MIT", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/ajv": { + "version": "8.11.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "../../extensions/web-clipper/node_modules/workbox-cacheable-response": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-core": { + "version": "6.5.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-expiration": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-google-analytics": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "6.5.3", + "workbox-core": "6.5.3", + "workbox-routing": "6.5.3", + "workbox-strategies": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-navigation-preload": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-precaching": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3", + "workbox-routing": "6.5.3", + "workbox-strategies": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-range-requests": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-recipes": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-cacheable-response": "6.5.3", + "workbox-core": "6.5.3", + "workbox-expiration": "6.5.3", + "workbox-precaching": "6.5.3", + "workbox-routing": "6.5.3", + "workbox-strategies": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-routing": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-strategies": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-streams": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "workbox-core": "6.5.3", + "workbox-routing": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/workbox-sw": { + "version": "6.5.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.3" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "../../extensions/web-clipper/node_modules/workbox-window": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.3" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/write-file-atomic": { + "version": "3.0.3", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "../../extensions/web-clipper/node_modules/ws": { + "version": "8.6.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/xml2js": { + "version": "0.4.17", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "^4.1.0" + } + }, + "../../extensions/web-clipper/node_modules/xmlbuilder": { + "version": "4.2.1", + "license": "MIT", + "dependencies": { + "lodash": "^4.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/xmlchars": { + "version": "2.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/xtend": { + "version": "4.0.2", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "../../extensions/web-clipper/node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/yaml": { + "version": "1.10.2", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/yargs": { + "version": "16.2.0", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yargs-parser": { + "version": "20.2.9", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yocto-queue": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/zustand": { + "version": "4.1.3", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.0" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "immer": ">=9.0", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + }, + "../../packages/clipper": { + "name": "@notesnook/clipper", + "version": "1.0.0", + "hasInstallScript": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@mozilla/readability": "^0.4.2", + "css-what": "6.1.0", + "hyperapp": "^2.0.22", + "specificity": "^0.4.1" + }, + "devDependencies": { + "@playwright/test": "^1.27.1", + "slugify": "^1.6.5", + "webpack": "^5.88.2", + "webpack-cli": "^5.1.4" + } + }, + "../../packages/clipper/node_modules/@mozilla/readability": { + "version": "0.4.2", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0.0" + } + }, + "../../packages/clipper/node_modules/@playwright/test": { + "version": "1.27.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "playwright-core": "1.27.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "../../packages/clipper/node_modules/@types/node": { + "version": "18.7.21", + "dev": true, + "license": "MIT" + }, + "../../packages/clipper/node_modules/css-what": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/clipper/node_modules/hyperapp": { + "version": "2.0.22", + "license": "MIT" + }, + "../../packages/clipper/node_modules/playwright-core": { + "version": "1.27.1", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "../../packages/clipper/node_modules/slugify": { + "version": "1.6.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../packages/clipper/node_modules/specificity": { + "version": "0.4.1", + "license": "MIT", + "bin": { + "specificity": "bin/specificity" + } + }, "../../packages/common": { "name": "@notesnook/common", "version": "1.0.0", @@ -228,14 +19611,18 @@ "mime-db": "1.52.0", "prismjs": "^1.29.0", "qclone": "^1.2.0", + "rfdc": "^1.3.0", "spark-md5": "^3.0.2" }, "devDependencies": { "@notesnook/crypto": "file:../crypto", + "@types/event-source-polyfill": "^1.0.1", "@types/html-to-text": "^9.0.0", - "@types/katex": "^0.16.1", + "@types/katex": "^0.16.2", "@types/prismjs": "^1.26.0", + "@types/spark-md5": "^3.0.2", "@types/streetwriters__showdown": "npm:@types/showdown@^2.0.6", + "@types/ws": "^8.5.5", "@vitest/coverage-v8": "^0.34.1", "abortcontroller-polyfill": "^1.7.3", "cross-env": "^7.0.3", @@ -249,12 +19636,622 @@ "otplib": "^12.0.1", "refractor": "^4.8.1", "vitest": "^0.34.1", - "vitest-fetch-mock": "^0.2.2" + "vitest-fetch-mock": "^0.2.2", + "ws": "^8.13.0" + } + }, + "../../packages/core/node_modules/@microsoft/signalr": { + "version": "6.0.11", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "eventsource": "^1.0.7", + "fetch-cookie": "^0.11.0", + "node-fetch": "^2.6.7", + "ws": "^7.4.5" + } + }, + "../../packages/core/node_modules/@microsoft/signalr-protocol-msgpack": { + "version": "6.0.11", + "license": "MIT", + "dependencies": { + "@microsoft/signalr": ">=6.0.11", + "@msgpack/msgpack": "^2.7.0" + } + }, + "../../packages/core/node_modules/@microsoft/signalr/node_modules/eventsource": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../packages/core/node_modules/@msgpack/msgpack": { + "version": "2.8.0", + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "../../packages/core/node_modules/@notesnook/crypto": { + "resolved": "../../packages/crypto", + "link": true + }, + "../../packages/core/node_modules/@notesnook/logger": { + "resolved": "../../packages/logger", + "link": true + }, + "../../packages/core/node_modules/@otplib/core": { + "version": "12.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@otplib/plugin-crypto": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1" + } + }, + "../../packages/core/node_modules/@otplib/plugin-thirty-two": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "thirty-two": "^1.0.2" + } + }, + "../../packages/core/node_modules/@otplib/preset-default": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/plugin-crypto": "^12.0.1", + "@otplib/plugin-thirty-two": "^12.0.1" + } + }, + "../../packages/core/node_modules/@otplib/preset-v11": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/plugin-crypto": "^12.0.1", + "@otplib/plugin-thirty-two": "^12.0.1" + } + }, + "../../packages/core/node_modules/@selderee/plugin-htmlparser2": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "selderee": "^0.11.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/@streetwriters/showdown": { + "version": "3.0.1-alpha.2", + "license": "MIT", + "bin": { + "showdown": "bin/showdown.js" + }, + "funding": { + "type": "individual", + "url": "https://www.paypal.me/tiviesantos" + } + }, + "../../packages/core/node_modules/@types/html-to-text": { + "version": "9.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/katex": { + "version": "0.16.1", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/prismjs": { + "version": "1.26.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "../../packages/core/node_modules/abortcontroller-polyfill": { + "version": "1.7.5", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/async-mutex": { + "version": "0.3.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.3.1" + } + }, + "../../packages/core/node_modules/boolbase": { + "version": "1.0.0", + "license": "ISC" + }, + "../../packages/core/node_modules/css-select": { + "version": "5.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/core/node_modules/css-what": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/core/node_modules/cssom": { + "version": "0.5.0", + "license": "MIT" + }, + "../../packages/core/node_modules/dayjs": { + "version": "1.11.6", + "license": "MIT" + }, + "../../packages/core/node_modules/deepmerge": { + "version": "4.3.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/core/node_modules/discontinuous-range": { + "version": "1.0.0", + "license": "MIT" + }, + "../../packages/core/node_modules/dom-serializer": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../packages/core/node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "../../packages/core/node_modules/domhandler": { + "version": "5.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../packages/core/node_modules/domutils": { + "version": "3.0.1", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../packages/core/node_modules/dotenv": { + "version": "16.0.3", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "../../packages/core/node_modules/entities": { + "version": "4.4.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/core/node_modules/event-target-shim": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/eventsource": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/core/node_modules/fetch-cookie": { + "version": "0.11.0", + "license": "Unlicense", + "dependencies": { + "tough-cookie": "^2.3.3 || ^3.0.1 || ^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/html-to-text": { + "version": "9.0.5", + "license": "MIT", + "dependencies": { + "@selderee/plugin-htmlparser2": "^0.11.0", + "deepmerge": "^4.3.1", + "dom-serializer": "^2.0.0", + "htmlparser2": "^8.0.2", + "selderee": "^0.11.0" + }, + "engines": { + "node": ">=14" + } + }, + "../../packages/core/node_modules/htmlparser2": { + "version": "8.0.1", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "entities": "^4.3.0" + } + }, + "../../packages/core/node_modules/katex": { + "version": "0.16.8", + "funding": [ + "https://opencollective.com/katex", + "https://github.com/sponsors/katex" + ], + "license": "MIT", + "dependencies": { + "commander": "^8.3.0" + }, + "bin": { + "katex": "cli.js" + } + }, + "../../packages/core/node_modules/katex/node_modules/commander": { + "version": "8.3.0", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../packages/core/node_modules/leac": { + "version": "0.6.0", + "license": "MIT", + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/linkedom": { + "version": "0.14.20", + "license": "ISC", + "dependencies": { + "css-select": "^5.1.0", + "cssom": "^0.5.0", + "html-escaper": "^3.0.3", + "htmlparser2": "^8.0.1", + "uhyphen": "^0.1.0" + } + }, + "../../packages/core/node_modules/linkedom/node_modules/html-escaper": { + "version": "3.0.3", + "license": "MIT" + }, + "../../packages/core/node_modules/liqe": { + "version": "1.13.0", + "license": "BSD-3-Clause", + "dependencies": { + "nearley": "^2.20.1", + "ts-error": "^1.0.6" + }, + "engines": { + "node": ">=12.0" + } + }, + "../../packages/core/node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../packages/core/node_modules/mockdate": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/moo": { + "version": "0.5.2", + "license": "BSD-3-Clause" + }, + "../../packages/core/node_modules/nearley": { + "version": "2.20.1", + "license": "MIT", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "../../packages/core/node_modules/nearley/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "../../packages/core/node_modules/node-fetch": { + "version": "2.6.7", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "../../packages/core/node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "../../packages/core/node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "../../packages/core/node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "../../packages/core/node_modules/nth-check": { + "version": "2.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../packages/core/node_modules/otplib": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/preset-default": "^12.0.1", + "@otplib/preset-v11": "^12.0.1" + } + }, + "../../packages/core/node_modules/parseley": { + "version": "0.12.0", + "license": "MIT", + "dependencies": { + "leac": "^0.6.0", + "peberminta": "^0.9.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/peberminta": { + "version": "0.9.0", + "license": "MIT", + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/prismjs": { + "version": "1.29.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/psl": { + "version": "1.9.0", + "license": "MIT" + }, + "../../packages/core/node_modules/punycode": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/qclone": { + "version": "1.2.0", + "license": "MIT" + }, + "../../packages/core/node_modules/querystringify": { + "version": "2.2.0", + "license": "MIT" + }, + "../../packages/core/node_modules/railroad-diagrams": { + "version": "1.0.0", + "license": "CC0-1.0" + }, + "../../packages/core/node_modules/randexp": { + "version": "0.4.6", + "license": "MIT", + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + }, + "engines": { + "node": ">=0.12" + } + }, + "../../packages/core/node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "../../packages/core/node_modules/ret": { + "version": "0.1.15", + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "../../packages/core/node_modules/selderee": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "parseley": "^0.12.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/spark-md5": { + "version": "3.0.2", + "license": "(WTFPL OR MIT)" + }, + "../../packages/core/node_modules/thirty-two": { + "version": "1.0.2", + "dev": true, + "engines": { + "node": ">=0.2.6" + } + }, + "../../packages/core/node_modules/tough-cookie": { + "version": "4.1.2", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/ts-error": { + "version": "1.0.6", + "license": "MIT" + }, + "../../packages/core/node_modules/tslib": { + "version": "2.4.1", + "license": "0BSD" + }, + "../../packages/core/node_modules/uhyphen": { + "version": "0.1.0", + "license": "ISC" + }, + "../../packages/core/node_modules/universalify": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../packages/core/node_modules/url-parse": { + "version": "1.5.10", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "../../packages/core/node_modules/ws": { + "version": "7.5.9", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, "../../packages/crypto": { "name": "@notesnook/crypto", "version": "1.1.1", + "dev": true, "license": "GPL-3.0-or-later", "dependencies": { "@notesnook/sodium": "file:../sodium" @@ -2391,6 +22388,27 @@ "react": ">=16.8.0" } }, + "node_modules/@electron/get": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", + "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", + "peer": true, + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" + } + }, "node_modules/@emotion/babel-plugin": { "version": "11.11.0", "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", @@ -3540,6 +23558,18 @@ "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, "node_modules/@standardnotes/auth": { "version": "3.19.4", "resolved": "https://registry.npmjs.org/@standardnotes/auth/-/auth-3.19.4.tgz", @@ -4220,6 +24250,18 @@ "node": ">=10" } }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "peer": true, + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@tanstack/query-core": { "version": "4.36.1", "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.36.1.tgz", @@ -4347,7 +24389,6 @@ "version": "10.38.3", "resolved": "https://registry.npmjs.org/@trpc/server/-/server-10.38.3.tgz", "integrity": "sha512-9s8/kwo2IDB5hwB2SKZZrfevRhdb1f9fdXtIYd3lbQuf2jQaC/LyQuHaIQjDQoUx9updBfsHXcFFPiCP1DL6pg==", - "dev": true, "funding": [ "https://trpc.io/sponsor" ] @@ -4393,6 +24434,18 @@ "@babel/types": "^7.20.7" } }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "peer": true, + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, "node_modules/@types/chai": { "version": "4.3.10", "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.10.tgz", @@ -4416,12 +24469,40 @@ "@types/ms": "*" } }, + "node_modules/@types/eslint": { + "version": "8.44.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", + "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "dev": true, + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, "node_modules/@types/estree": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "dev": true }, + "node_modules/@types/event-source-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/event-source-polyfill/-/event-source-polyfill-1.0.1.tgz", + "integrity": "sha512-dls8b0lUgJ/miRApF0efboQ9QZnAm7ofTO6P1ILu8bRPxUFKDxVwFf8+TeuuErmNui6blpltyr7+eV72dbQXlQ==", + "dev": true + }, "node_modules/@types/file-saver": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.7.tgz", @@ -4436,6 +24517,12 @@ "@types/unist": "^2" } }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "peer": true + }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", @@ -4447,6 +24534,15 @@ "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz", "integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==" }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/marked": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/@types/marked/-/marked-4.3.2.tgz", @@ -4470,7 +24566,6 @@ "version": "20.9.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", - "dev": true, "dependencies": { "undici-types": "~5.26.4" } @@ -4544,6 +24639,15 @@ "@types/node": "*" } }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/styled-system": { "version": "5.1.22", "resolved": "https://registry.npmjs.org/@types/styled-system/-/styled-system-5.1.22.tgz", @@ -4575,6 +24679,16 @@ "integrity": "sha512-ggMz8nOygG7d/stpH40WVaNvBwuyYLnrg5Mbyf6bmsj/8+gb6Ei4ZZ9/4PNpcPNTT8th9Q8sM8wYmWGjMWLX/A==", "dev": true }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@vitejs/plugin-react-swc": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz", @@ -4655,6 +24769,181 @@ "url": "https://opencollective.com/vitest" } }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "peer": true + }, "node_modules/@zip.js/zip.js": { "version": "2.7.32", "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.32.tgz", @@ -4683,6 +24972,16 @@ "node": ">=0.4.0" } }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peer": true, + "peerDependencies": { + "acorn": "^8" + } + }, "node_modules/acorn-walk": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", @@ -5063,6 +25362,13 @@ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, + "node_modules/boolean": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", + "optional": true, + "peer": true + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -5141,6 +25447,15 @@ "ieee754": "^1.2.1" } }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "peer": true, + "engines": { + "node": "*" + } + }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", @@ -5173,6 +25488,33 @@ "node": ">=8" } }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "peer": true, + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "peer": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/call-bind": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", @@ -5333,6 +25675,16 @@ "node": ">=10" } }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.0" + } + }, "node_modules/classnames": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", @@ -5357,6 +25709,18 @@ "node": ">=12" } }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "peer": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -5596,7 +25960,6 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "optional": true, "dependencies": { "mimic-response": "^3.1.0" }, @@ -5611,7 +25974,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "optional": true, "engines": { "node": ">=10" }, @@ -5648,11 +26010,20 @@ "node": ">=0.10.0" } }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "peer": true, + "engines": { + "node": ">=10" + } + }, "node_modules/define-data-property": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, + "devOptional": true, "dependencies": { "get-intrinsic": "^1.2.1", "gopd": "^1.0.1", @@ -5675,7 +26046,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, + "devOptional": true, "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -5719,6 +26090,13 @@ "node": ">=8" } }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "optional": true, + "peer": true + }, "node_modules/diff": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", @@ -5829,6 +26207,24 @@ "node": ">=0.10.0" } }, + "node_modules/electron": { + "version": "27.1.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-27.1.0.tgz", + "integrity": "sha512-XPdJiO475QJ8cx59/goWNNWnlV0vab+Ut3occymos7VDxkHV5mFrlW6tcGi+M3bW6gBfwpJocWMng8tw542vww==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "@electron/get": "^2.0.0", + "@types/node": "^18.11.18", + "extract-zip": "^2.0.1" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 12.20.55" + } + }, "node_modules/electron-to-chromium": { "version": "1.4.585", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.585.tgz", @@ -5848,6 +26244,15 @@ "electron": ">19.0.0" } }, + "node_modules/electron/node_modules/@types/node": { + "version": "18.18.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.10.tgz", + "integrity": "sha512-luANqZxPmjTll8bduz4ACs/lNTCLuWssCyjqTY9yLdsv1xnViQp3ISKwsEWOIecO13JWUqjVdig/Vjjc09o8uA==", + "peer": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -5867,11 +26272,24 @@ "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "optional": true, "dependencies": { "once": "^1.4.0" } }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -5883,6 +26301,15 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "peer": true, + "engines": { + "node": ">=6" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -5944,6 +26371,13 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", + "dev": true, + "peer": true + }, "node_modules/es-set-tostringtag": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", @@ -5975,6 +26409,13 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "optional": true, + "peer": true + }, "node_modules/esbuild": { "version": "0.18.20", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", @@ -6032,6 +26473,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -6044,6 +26499,39 @@ "node": ">=4" } }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "peer": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, "node_modules/estree-walker": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", @@ -6069,6 +26557,16 @@ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.x" + } + }, "node_modules/exenv": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", @@ -6099,6 +26597,26 @@ "node": ">=0.10.0" } }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "peer": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -6136,6 +26654,15 @@ "reusify": "^1.0.4" } }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "peer": true, + "dependencies": { + "pend": "~1.2.0" + } + }, "node_modules/fflate": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.1.tgz", @@ -6326,6 +26853,20 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "optional": true }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -6462,7 +27003,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", - "dev": true, + "devOptional": true, "dependencies": { "function-bind": "^1.1.2", "has-proto": "^1.0.1", @@ -6479,6 +27020,21 @@ "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "dev": true }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "peer": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-symbol-description": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", @@ -6533,6 +27089,67 @@ "node": ">= 6" } }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "peer": true + }, + "node_modules/global-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "optional": true, + "peer": true, + "dependencies": { + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/global-agent/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "optional": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-agent/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "optional": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-agent/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "optional": true, + "peer": true + }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -6546,7 +27163,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, + "devOptional": true, "dependencies": { "define-properties": "^1.1.3" }, @@ -6569,7 +27186,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, + "devOptional": true, "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -6577,11 +27194,35 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "peer": true, + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, "node_modules/gray-matter": { "version": "4.0.3", @@ -6634,7 +27275,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", - "dev": true, + "devOptional": true, "dependencies": { "get-intrinsic": "^1.2.2" }, @@ -6646,7 +27287,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, + "devOptional": true, "engines": { "node": ">= 0.4" }, @@ -6658,7 +27299,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, + "devOptional": true, "engines": { "node": ">= 0.4" }, @@ -6900,6 +27541,25 @@ "entities": "^4.4.0" } }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "peer": true + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "peer": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -7396,6 +28056,37 @@ "node": ">=10" } }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -7425,6 +28116,12 @@ "node": ">=4" } }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "peer": true + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -7442,6 +28139,13 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "optional": true, + "peer": true + }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -7460,6 +28164,15 @@ "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "peer": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/jsonpointer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", @@ -7573,6 +28286,15 @@ "prebuild-install": "^7.0.1" } }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "peer": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -7603,6 +28325,16 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, "node_modules/loader-utils": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", @@ -7754,6 +28486,15 @@ "tslib": "^2.0.3" } }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "peer": true, + "engines": { + "node": ">=8" + } + }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -7815,6 +28556,19 @@ "node": ">= 12" } }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "optional": true, + "peer": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/mdast-util-definitions": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", @@ -8685,6 +29439,15 @@ "node": ">= 0.6" } }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "peer": true, + "engines": { + "node": ">=4" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -8819,6 +29582,13 @@ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", "optional": true }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "peer": true + }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -8929,6 +29699,18 @@ "node": ">=0.10.0" } }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/npmlog": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", @@ -8973,7 +29755,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, + "devOptional": true, "engines": { "node": ">= 0.4" } @@ -9000,7 +29782,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "devOptional": true, "dependencies": { "wrappy": "1" } @@ -9033,6 +29814,15 @@ "@otplib/preset-v11": "^12.0.1" } }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "peer": true, + "engines": { + "node": ">=8" + } + }, "node_modules/p-limit": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", @@ -9150,6 +29940,12 @@ "canvas": "^2.11.2" } }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "peer": true + }, "node_modules/phone": { "version": "3.1.41", "resolved": "https://registry.npmjs.org/phone/-/phone-3.1.41.tgz", @@ -9373,6 +30169,15 @@ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "peer": true, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", @@ -9401,7 +30206,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "optional": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -9446,6 +30250,18 @@ } ] }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -9474,7 +30290,6 @@ "version": "17.0.2", "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", - "dev": true, "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" @@ -9487,7 +30302,6 @@ "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", - "dev": true, "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", @@ -9870,6 +30684,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "peer": true + }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -9878,6 +30698,18 @@ "node": ">=4" } }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "peer": true, + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -9903,6 +30735,31 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "optional": true, + "peer": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/roarr/node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "optional": true, + "peer": true + }, "node_modules/rollup": { "version": "3.29.4", "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", @@ -10049,7 +30906,6 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", - "dev": true, "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" @@ -10089,11 +30945,43 @@ "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "devOptional": true, "bin": { "semver": "bin/semver.js" } }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "optional": true, + "peer": true + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "optional": true, + "peer": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -10514,6 +31402,18 @@ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "peer": true, + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -10549,6 +31449,16 @@ "integrity": "sha512-W9VYDkSgPMMKdhzMK2s0HVr36kvG/iI4sGCvkePPhop/hEbECFh5TaKVAIpDd9liWkmmGkKudeTDxZwZ31AwHg==", "dev": true }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, "node_modules/tar": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", @@ -10663,6 +31573,41 @@ "node": ">=10" } }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -10781,6 +31726,19 @@ "node": ">=4" } }, + "node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/typed-array-buffer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", @@ -10870,8 +31828,7 @@ "node_modules/undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", @@ -11045,6 +32002,15 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "peer": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", @@ -11399,6 +32365,20 @@ "loose-envify": "^1.0.0" } }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/web-namespaces": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", @@ -11425,6 +32405,64 @@ "node": ">=12" } }, + "node_modules/webpack": { + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/whatwg-encoding": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", @@ -12032,8 +33070,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "devOptional": true + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/y18n": { "version": "5.0.8", @@ -12085,6 +33122,16 @@ "node": ">=12" } }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "peer": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, "node_modules/yocto-queue": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", diff --git a/apps/web/package.json b/apps/web/package.json index 515b3d97c..f8a889c39 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -78,6 +78,7 @@ "@swc/core": "1.3.61", "@trpc/server": "10.38.3", "@types/babel__core": "^7.20.1", + "@types/event-source-polyfill": "^1.0.1", "@types/file-saver": "^2.0.5", "@types/marked": "^4.0.7", "@types/node-fetch": "^2.5.10", diff --git a/apps/web/src/app-effects.tsx b/apps/web/src/app-effects.tsx index 32eff5921..68bdf6616 100644 --- a/apps/web/src/app-effects.tsx +++ b/apps/web/src/app-effects.tsx @@ -92,7 +92,7 @@ export default function AppEffects({ setShow }: AppEffectsProps) { showUpgradeReminderDialogs(); } await resetNotices(); - setIsVaultCreated(await db.vault?.exists()); + setIsVaultCreated(await db.vault.exists()); await showOnboardingDialog(interruptedOnboarding()); await showFeatureDialog("highlights"); diff --git a/apps/web/src/bootstrap.tsx b/apps/web/src/bootstrap.tsx index b6cabccc8..9ce089ec0 100644 --- a/apps/web/src/bootstrap.tsx +++ b/apps/web/src/bootstrap.tsx @@ -22,7 +22,7 @@ import "@notesnook/core/dist/types"; import { getCurrentHash, getCurrentPath, makeURL } from "./navigation"; import Config from "./utils/config"; -import { initalizeLogger, logger } from "./utils/logger"; +import { initializeLogger, logger } from "./utils/logger"; import { AuthProps } from "./views/auth"; import { initializeFeatureChecks } from "./utils/feature-check"; @@ -142,7 +142,7 @@ function isSessionExpired(path: Routes): RouteWithPath | null { } export async function init() { - await initalizeLogger(); + await initializeLogger(); await initializeFeatureChecks(); const { path, route } = getRoute(); diff --git a/apps/web/src/common/attachments.ts b/apps/web/src/common/attachments.ts index de8234abf..650859dd8 100644 --- a/apps/web/src/common/attachments.ts +++ b/apps/web/src/common/attachments.ts @@ -18,20 +18,23 @@ along with this program. If not, see . */ import { lazify } from "../utils/lazify"; +import { Attachment } from "@notesnook/core"; import { db } from "./db"; async function download(hash: string, groupId?: string) { - const attachment = db.attachments?.attachment(hash); + const attachment = db.attachments.attachment(hash); if (!attachment) return; - const downloadResult = await db.fs?.downloadFile( - groupId || attachment.metadata.hash, - attachment.metadata.hash, - attachment.chunkSize, - attachment.metadata - ); + const downloadResult = await db + .fs() + .downloadFile( + groupId || attachment.metadata.hash, + attachment.metadata.hash, + attachment.chunkSize, + attachment.metadata + ); if (!downloadResult) throw new Error("Failed to download file."); - const key = await db.attachments?.decryptKey(attachment.key); + const key = await db.attachments.decryptKey(attachment.key); if (!key) throw new Error("Invalid key for attachment."); return { key, attachment }; @@ -71,7 +74,7 @@ export async function downloadAttachment< const { attachment, key } = response; if (type === "base64" || type === "text") - return (await db.attachments?.read(hash, type)) as TOutputType; + return (await db.attachments.read(hash, type)) as TOutputType; const blob = await lazify(import("../interfaces/fs"), ({ default: FS }) => FS.decryptFile(attachment.metadata.hash, { @@ -88,7 +91,7 @@ export async function downloadAttachment< } export async function checkAttachment(hash: string) { - const attachment = db.attachments?.attachment(hash); + const attachment = db.attachments.attachment(hash); if (!attachment) return { failed: "Attachment not found." }; try { @@ -103,7 +106,7 @@ export async function checkAttachment(hash: string) { } const ABYTES = 17; -export function getTotalSize(attachments: any[]) { +export function getTotalSize(attachments: Attachment[]) { let size = 0; for (const attachment of attachments) { size += attachment.length + ABYTES; diff --git a/apps/web/src/common/constants.ts b/apps/web/src/common/constants.ts index c3045c4e7..e5b9162dd 100644 --- a/apps/web/src/common/constants.ts +++ b/apps/web/src/common/constants.ts @@ -18,13 +18,13 @@ along with this program. If not, see . */ export const COLORS = [ - "red", - "orange", - "yellow", - "green", - "blue", - "purple", - "gray" + { key: "red", title: "Red" }, + { key: "orange", title: "Orange" }, + { key: "yellow", title: "Yellow" }, + { key: "green", title: "Green" }, + { key: "blue", title: "Blue" }, + { key: "purple", title: "Purple" }, + { key: "gray", title: "Gray" } ] as const; export const SUBSCRIPTION_STATUS = { diff --git a/apps/web/src/common/db.ts b/apps/web/src/common/db.ts index e726847ad..a6b16dd21 100644 --- a/apps/web/src/common/db.ts +++ b/apps/web/src/common/db.ts @@ -30,7 +30,7 @@ async function initializeDatabase(persistence: DatabasePersistence) { logger.measure("Database initialization"); const { database } = await import("@notesnook/common"); - const { default: FS } = await import("../interfaces/fs"); + const { FileStorage } = await import("../interfaces/fs"); const { Compressor } = await import("../utils/compressor"); db = database; @@ -42,12 +42,12 @@ async function initializeDatabase(persistence: DatabasePersistence) { SUBSCRIPTIONS_HOST: "https://subscriptions.streetwriters.co" }); - database.setup( - await NNStorage.createInstance("Notesnook", persistence), - EventSource, - FS, - new Compressor() - ); + database.setup({ + storage: await NNStorage.createInstance("Notesnook", persistence), + eventsource: EventSource, + fs: FileStorage, + compressor: new Compressor() + }); // if (IS_TESTING) { // } else { diff --git a/apps/web/src/common/dialog-controller.tsx b/apps/web/src/common/dialog-controller.tsx index 44c622429..ff6559607 100644 --- a/apps/web/src/common/dialog-controller.tsx +++ b/apps/web/src/common/dialog-controller.tsx @@ -19,7 +19,6 @@ along with this program. If not, see . import ReactDOM from "react-dom"; import { Dialogs } from "../dialogs"; -import qclone from "qclone"; import { store as notebookStore } from "../stores/notebook-store"; import { store as tagStore } from "../stores/tag-store"; import { store as appStore } from "../stores/app-store"; @@ -28,18 +27,19 @@ import { store as noteStore } from "../stores/note-store"; import { db } from "./db"; import { showToast } from "../utils/toast"; import { Text } from "@theme-ui/components"; -import { Topic } from "../components/icons"; +import { Topic as TopicIcon } from "../components/icons"; import Config from "../utils/config"; import { AppVersion, getChangelog } from "../utils/version"; import { Period } from "../dialogs/buy-dialog/types"; import { FeatureKeys } from "../dialogs/feature-dialog"; -import { AuthenticatorType } from "../dialogs/mfa/types"; import { Suspense } from "react"; -import { Reminder } from "@notesnook/core/dist/collections/reminders"; import { ConfirmDialogProps } from "../dialogs/confirm"; import { getFormattedDate } from "@notesnook/common"; import { downloadUpdate } from "../utils/updater"; import { ThemeMetadata } from "@notesnook/themes-server"; +import { clone } from "@notesnook/core/dist/utils/clone"; +import { Notebook, Reminder } from "@notesnook/core/dist/types"; +import { AuthenticatorType } from "@notesnook/core/dist/api/user-manager"; type DialogTypes = typeof Dialogs; type DialogIds = keyof DialogTypes; @@ -87,7 +87,7 @@ export function closeOpenedDialog() { export function showAddTagsDialog(noteIds: string[]) { return showDialog("AddTagsDialog", (Dialog, perform) => ( - perform(res)} noteIds={noteIds} /> + perform(res)} noteIds={noteIds} /> )); } @@ -97,7 +97,7 @@ export function showAddNotebookDialog() { isOpen={true} onDone={async (nb: Record) => { // add the notebook to db - const notebook = await db.notebooks?.add({ ...nb }); + const notebook = await db.notebooks.add({ ...nb }); if (!notebook) return perform(false); notebookStore.refresh(); @@ -113,23 +113,23 @@ export function showAddNotebookDialog() { } export function showEditNotebookDialog(notebookId: string) { - const notebook = db.notebooks?.notebook(notebookId)?.data; + const notebook = db.notebooks.notebook(notebookId)?.data; if (!notebook) return; return showDialog("AddNotebookDialog", (Dialog, perform) => ( , deletedTopics: string[]) => { + onDone={async (nb: Notebook, deletedTopics: string[]) => { // we remove the topics from notebook // beforehand so we can add them manually, later - const topics = qclone(nb.topics); + const topics = clone(nb.topics); nb.topics = []; - const notebookId = await db.notebooks?.add(nb); + const notebookId = await db.notebooks.add(nb); // add or delete topics as required - const notebookTopics = db.notebooks?.notebook(notebookId).topics; + const notebookTopics = notebookId && db.notebooks.topics(notebookId); if (notebookTopics) { await notebookTopics.add(...topics); await notebookTopics.delete(...deletedTopics); @@ -200,7 +200,7 @@ export function showMultiDeleteConfirmation(length: number) { return confirm({ title: `Delete ${length} items?`, message: `These items will be **kept in your Trash for ${ - db.settings?.getTrashCleanupInterval() || 7 + db.settings.getTrashCleanupInterval() || 7 } days** after which they will be permanently deleted.`, positiveButtonText: "Yes", negativeButtonText: "No" @@ -485,7 +485,7 @@ export function showCreateTopicDialog() { if (!topic) return; const notebook = notebookStore.get().selectedNotebook; if (!notebook) return; - await db.notebooks?.notebook(notebook.id).topics.add(topic); + await db.notebooks.topics(notebook.id).add(topic); notebookStore.setSelectedNotebook(notebook.id); showToast("success", "Topic created!"); perform(true); @@ -495,21 +495,19 @@ export function showCreateTopicDialog() { } export function showEditTopicDialog(notebookId: string, topicId: string) { - const topic = db.notebooks?.notebook(notebookId)?.topics?.topic(topicId) - ?._topic as Record | undefined; + const topic = db.notebooks.topics(notebookId).topic(topicId)?._topic; if (!topic) return; + return showDialog("ItemDialog", (Dialog, perform) => ( perform(false)} onAction={async (t: string) => { - await db.notebooks - ?.notebook(topic.notebookId as string) - .topics.add({ ...topic, title: t }); + await db.notebooks.topics(topic.notebookId).add({ ...topic, title: t }); notebookStore.setSelectedNotebook(topic.notebookId); appStore.refreshNavItems(); showToast("success", "Topic edited!"); @@ -530,7 +528,7 @@ export function showCreateTagDialog() { onAction={async (title: string) => { if (!title) return showToast("error", "Tag title cannot be empty."); try { - await db.tags?.add(title); + await db.tags.add({ title }); showToast("success", "Tag created!"); tagStore.refresh(); perform(true); @@ -543,18 +541,18 @@ export function showCreateTagDialog() { } export function showEditTagDialog(tagId: string) { - const tag = db.tags?.tag(tagId); + const tag = db.tags.tag(tagId); if (!tag) return; return showDialog("ItemDialog", (Dialog, perform) => ( perform(false)} onAction={async (title: string) => { if (!title) return; - await db.tags?.rename(tagId, title); + await db.tags.add({ id: tagId, title }); showToast("success", "Tag edited!"); tagStore.refresh(); editorStore.refreshTags(); @@ -567,18 +565,18 @@ export function showEditTagDialog(tagId: string) { } export function showRenameColorDialog(colorId: string) { - const color = db.colors?.tag(colorId); + const color = db.colors.color(colorId); if (!color) return; return showDialog("ItemDialog", (Dialog, perform) => ( perform(false)} onAction={async (title: string) => { if (!title) return; - await db.colors?.rename(colorId, title); + await db.tags.add({ id: colorId, title }); showToast("success", "Color renamed!"); appStore.refreshNavItems(); perform(true); diff --git a/apps/web/src/common/export.ts b/apps/web/src/common/export.ts index fc9665d49..b0b2ee793 100644 --- a/apps/web/src/common/export.ts +++ b/apps/web/src/common/export.ts @@ -24,8 +24,12 @@ import { createWriteStream } from "../utils/stream-saver"; import { showToast } from "../utils/toast"; import Vault from "./vault"; import { db } from "./db"; -import Note from "@notesnook/core/dist/models/note"; import { sanitizeFilename } from "@notesnook/common"; +import { Note, isDeleted } from "@notesnook/core/dist/types"; +import { + isEncryptedContent, + isUnencryptedContent +} from "@notesnook/core/dist/collections/content"; export async function exportToPDF( title: string, @@ -113,7 +117,7 @@ function createNoteStream(noteIds: string[]) { async pull(controller) { const noteId = noteIds[i++]; if (!noteId) controller.close(); - else controller.enqueue(db.notes?.note(noteId)); + else controller.enqueue(db.notes?.note(noteId)?.data); }, async cancel(reason) { throw new Error(reason); @@ -134,26 +138,31 @@ export async function exportNote( format: keyof typeof FORMAT_TO_EXT, disableTemplate = false ) { - if (!db.vault?.unlocked && note.data.locked && !(await Vault.unlockVault())) { + if (!db.vault?.unlocked && note.locked && !(await Vault.unlockVault())) { showToast("error", `Skipping note "${note.title}" as it is locked.`); return false; } - const rawContent = note.data.contentId - ? await db.content?.raw(note.data.contentId) - : undefined; + const rawContent = note.contentId + ? await db.content.raw(note.contentId) + : null; const content = - rawContent && - !rawContent.deleted && - (typeof rawContent.data === "object" - ? await db.vault?.decryptContent(rawContent) - : rawContent); + !rawContent || isDeleted(rawContent) + ? undefined + : isEncryptedContent(rawContent) + ? await db.vault.decryptContent(rawContent) + : isUnencryptedContent(rawContent) + ? rawContent + : undefined; - const exported = await note - .export(format === "pdf" ? "html" : format, content, !disableTemplate) + const exported = await db.notes + .export(note.id, { + format: format === "pdf" ? "html" : format, + contentItem: content + }) .catch((e: Error) => { - console.error(note.data, e); + console.error(note, e); showToast("error", `Failed to export note "${note.title}": ${e.message}`); return false as const; }); diff --git a/apps/web/src/common/index.ts b/apps/web/src/common/index.ts index c3cb581ae..006b67101 100644 --- a/apps/web/src/common/index.ts +++ b/apps/web/src/common/index.ts @@ -287,8 +287,8 @@ export async function showUpgradeReminderDialogs() { if (!user || !user.subscription || user.subscription?.expiry === 0) return; const consumed = totalSubscriptionConsumed(user); - const isTrial = user?.subscription?.type === SUBSCRIPTION_STATUS.TRIAL; - const isBasic = user?.subscription?.type === SUBSCRIPTION_STATUS.BASIC; + const isTrial = user.subscription?.type === SUBSCRIPTION_STATUS.TRIAL; + const isBasic = user.subscription?.type === SUBSCRIPTION_STATUS.BASIC; if (isBasic && consumed >= 100) { await showReminderDialog("trialexpired"); } else if (isTrial && consumed >= 75) { diff --git a/apps/web/src/common/multi-select.ts b/apps/web/src/common/multi-select.ts index cc9ba0d0c..6393d55ca 100644 --- a/apps/web/src/common/multi-select.ts +++ b/apps/web/src/common/multi-select.ts @@ -58,7 +58,6 @@ async function moveNotesToTrash(notes: Item[], confirm = true) { } async function moveNotebooksToTrash(notebooks: Item[]) { - const item = notebooks[0]; const isMultiselect = notebooks.length > 1; if (isMultiselect) { if (!(await showMultiDeleteConfirmation(notebooks.length))) return; @@ -89,9 +88,7 @@ async function deleteTopics(notebookId: string, topics: Item[]) { report({ text: `Deleting ${pluralize(topics.length, "topic")}...` }); - await db.notebooks - ?.notebook(notebookId) - .topics.delete(...topics.map((t) => t.id)); + await db.notebooks.topics(notebookId).delete(...topics.map((t) => t.id)); notebookStore.setSelectedNotebook(notebookId); noteStore.refresh(); } diff --git a/apps/web/src/common/notices.ts b/apps/web/src/common/notices.ts index a7f63c56a..51c8a8318 100644 --- a/apps/web/src/common/notices.ts +++ b/apps/web/src/common/notices.ts @@ -76,9 +76,9 @@ export async function shouldAddBackupNotice() { const backupInterval = Config.get("backupReminderOffset", 0); if (!backupInterval) return false; - const lastBackupTime = await db.backup?.lastBackupTime(); + const lastBackupTime = await db.backup.lastBackupTime(); if (!lastBackupTime) { - await db.backup?.updateBackupTime(); + await db.backup.updateBackupTime(); return false; } @@ -96,13 +96,13 @@ export async function shouldAddRecoveryKeyBackupNotice() { } export async function shouldAddLoginNotice() { - const user = await db.user?.getUser(); + const user = await db.user.getUser(); if (!user) return true; } export async function shouldAddConfirmEmailNotice() { - const user = await db.user?.getUser(); - return !user?.isEmailConfirmed; + const user = await db.user.getUser(); + return !user || user.isEmailConfirmed; } type NoticeData = { @@ -187,7 +187,7 @@ async function saveBackup() { { text: "Later", onClick: async () => { - await db.backup?.updateBackupTime(); + await db.backup.updateBackupTime(); openedToast?.hide(); openedToast = null; }, diff --git a/apps/web/src/common/toolbar-config.ts b/apps/web/src/common/toolbar-config.ts index bd6311183..7c3f02aa2 100644 --- a/apps/web/src/common/toolbar-config.ts +++ b/apps/web/src/common/toolbar-config.ts @@ -39,11 +39,11 @@ const presets: Record = { }; export function getCurrentPreset() { - const preset = db.settings?.getToolbarConfig("desktop"); + const preset = db.settings.getToolbarConfig("desktop"); if (!preset) return presets.default; switch (preset.preset as PresetId) { case "custom": - presets.custom.tools = preset.config; + presets.custom.tools = preset.config || []; return presets.custom; case "minimal": return presets.minimal; diff --git a/apps/web/src/components/attachment/index.tsx b/apps/web/src/components/attachment/index.tsx index 88f5e6fc9..af047908a 100644 --- a/apps/web/src/components/attachment/index.tsx +++ b/apps/web/src/components/attachment/index.tsx @@ -242,7 +242,7 @@ const AttachmentMenuItems: ( icon: References.path, menu: { items: (attachment.noteIds as string[]).reduce((prev, curr) => { - const note = db.notes?.note(curr); + const note = db.notes.note(curr); if (!note) prev.push({ type: "button", @@ -297,7 +297,7 @@ const AttachmentMenuItems: ( onClick: async () => { const isDownloading = status?.type === "download"; if (isDownloading) { - await db.fs?.cancel(attachment.metadata.hash, "download"); + await db.fs().cancel(attachment.metadata.hash, "download"); } else await saveAttachment(attachment.metadata.hash); } }, @@ -309,7 +309,7 @@ const AttachmentMenuItems: ( onClick: async () => { const isDownloading = status?.type === "upload"; if (isDownloading) { - await db.fs?.cancel(attachment.metadata.hash, "upload"); + await db.fs().cancel(attachment.metadata.hash, "upload"); } else await reuploadAttachment( attachment.metadata.type, diff --git a/apps/web/src/components/editor/header.tsx b/apps/web/src/components/editor/header.tsx index 7385f3383..702c7465a 100644 --- a/apps/web/src/components/editor/header.tsx +++ b/apps/web/src/components/editor/header.tsx @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { useCallback, useEffect, useMemo, useRef } from "react"; +import { useCallback, useEffect, useRef } from "react"; import { useStore } from "../../stores/editor-store"; import { Input } from "@theme-ui/components"; import { Tag, Plus } from "../icons"; @@ -32,12 +32,9 @@ type HeaderProps = { readonly: boolean }; function Header(props: HeaderProps) { const { readonly } = props; const id = useStore((store) => store.session.id); - const tags = useStore((store) => store.session.tags); + const tags = useStore((store) => store.tags); const setTag = useStore((store) => store.setTag); - const filterableTags = useMemo(() => { - return db.tags?.all.filter((t) => tags?.every((tag) => tag !== t?.title)); - }, [tags]); - + console.log(tags); return ( <> {id && ( @@ -45,22 +42,14 @@ function Header(props: HeaderProps) { sx={{ lineHeight: 2.5, alignItems: "center", flexWrap: "wrap" }} data-test-id="tags" > - {tags?.map((tag) => ( + {tags.map((tag) => ( { - const tagItem = db.tags?.tag(tag); - if (!tagItem) { - setTag(tag); - return; - } - navigate(`/tags/${tagItem.id}`); - }} - onDismiss={readonly ? undefined : () => setTag(tag)} + onClick={() => navigate(`/tags/${tag.id}`)} + onDismiss={readonly ? undefined : () => setTag(tag.title)} styles={{ container: { mr: 1 }, text: { fontSize: "body" } }} /> ))} @@ -68,15 +57,15 @@ function Header(props: HeaderProps) { - db.lookup?.tags(filterableTags, query).slice(0, 10) || [] + db.lookup?.tags(tags, query).slice(0, 10) || [] } onAdd={(value) => setTag(value)} onSelect={(item) => setTag(item.title)} onRemove={() => { if (tags.length <= 0) return; - setTag(tags[tags.length - 1]); + setTag(tags[tags.length - 1].title); }} - defaultItems={filterableTags?.slice(0, 10) || []} + defaultItems={tags.slice(0, 10) || []} /> )} diff --git a/apps/web/src/components/editor/index.tsx b/apps/web/src/components/editor/index.tsx index b6eaadaee..42ff67952 100644 --- a/apps/web/src/components/editor/index.tsx +++ b/apps/web/src/components/editor/index.tsx @@ -55,11 +55,18 @@ import { Lightbox } from "../lightbox"; import { Allotment } from "allotment"; import { showToast } from "../../utils/toast"; import { debounce, getFormattedDate } from "@notesnook/common"; +import { + ContentType, + Item, + MaybeDeletedItem, + isDeleted +} from "@notesnook/core/dist/types"; +import { isEncryptedContent } from "@notesnook/core/dist/collections/content"; const PDFPreview = React.lazy(() => import("../pdf-preview")); type PreviewSession = { - content: { data: string; type: string }; + content: { data: string; type: ContentType }; dateCreated: number; dateEdited: number; }; @@ -117,9 +124,11 @@ export default function EditorManager({ useEffect(() => { const event = db.eventManager.subscribe( EVENTS.syncItemMerged, - async (item?: Record) => { + async (item?: MaybeDeletedItem) => { if ( !item || + isDeleted(item) || + (item.type !== "tiptap" && item.type !== "note") || lastSavedTime.current >= (item.dateEdited as number) || isPreviewSession || !appstore.get().isRealtimeSyncEnabled @@ -130,10 +139,13 @@ export default function EditorManager({ const isContent = item.type === "tiptap" && item.id === contentId; const isNote = item.type === "note" && item.id === id; - if (isContent && editorInstance.current) { - if (locked) { - const result = await db.vault?.decryptContent(item).catch(() => {}); - if (result) item.data = result.data; + if (id && isContent && editorInstance.current) { + let content: string | null = null; + if (locked && isEncryptedContent(item)) { + const result = await db.vault + .decryptContent(item) + .catch(() => undefined); + if (result) content = result.data; else EV.publish(EVENTS.vaultLocked); } editorInstance.current.updateContent(item.data as string); @@ -210,7 +222,7 @@ export default function EditorManager({ id={noteId} nonce={timestamp} content={() => - previewSession.current?.content?.data || + previewSession.current?.content.data || editorstore.get().session?.content?.data } onPreviewDocument={(url) => setDocPreview(url)} @@ -378,7 +390,7 @@ export function Editor(props: EditorProps) { onDownloadAttachment={(attachment) => saveAttachment(attachment.hash)} onPreviewAttachment={async (data) => { const { hash } = data; - const attachment = db.attachments?.attachment(hash); + const attachment = db.attachments.attachment(hash); if (attachment && attachment.metadata.type.startsWith("image/")) { const container = document.getElementById("dialogContainer"); if (!(container instanceof HTMLElement)) return; diff --git a/apps/web/src/components/editor/picker.ts b/apps/web/src/components/editor/picker.ts index 94790262f..eb8260779 100644 --- a/apps/web/src/components/editor/picker.ts +++ b/apps/web/src/components/editor/picker.ts @@ -135,7 +135,7 @@ async function pickImage( } async function getEncryptionKey(): Promise { - const key = await db.attachments?.generateKey(); + const key = await db.attachments.generateKey(); if (!key) throw new Error("Could not generate a new encryption key."); return key; } @@ -182,13 +182,15 @@ async function addAttachment( const output = await FS.writeEncryptedFile(file, key, hash); if (!output) throw new Error("Could not encrypt file."); - if (forceWrite && exists) await db.attachments?.reset(hash); - await db.attachments?.add({ + if (forceWrite && exists) await db.attachments.reset(hash); + await db.attachments.add({ ...output, - hash, - hashType, - filename: exists?.metadata.filename || file.name, - type: exists?.metadata.type || file.type, + metadata: { + hash, + hashType, + filename: exists?.metadata.filename || file.name, + type: exists?.metadata.type || file.type + }, key }); } diff --git a/apps/web/src/components/group-header/index.tsx b/apps/web/src/components/group-header/index.tsx index a623b88a5..aa4efad8c 100644 --- a/apps/web/src/components/group-header/index.tsx +++ b/apps/web/src/components/group-header/index.tsx @@ -38,6 +38,11 @@ import { useStore as useNoteStore } from "../../stores/note-store"; import { useStore as useNotebookStore } from "../../stores/notebook-store"; import useMobile from "../../hooks/use-mobile"; import { MenuButtonItem, MenuItem } from "@notesnook/ui"; +import { + GroupHeader as GroupHeaderType, + GroupOptions, + GroupingKey +} from "@notesnook/core/dist/types"; const groupByToTitleMap = { none: "None", @@ -162,7 +167,7 @@ const sortByMenu: (options: GroupingMenuOptions) => MenuItem = (options) => ({ }); export function showSortMenu(groupingKey: GroupingKey, refresh: () => void) { - const groupOptions = db.settings?.getGroupOptions(groupingKey); + const groupOptions = db.settings.getGroupOptions(groupingKey); if (!groupOptions) return; const menuOptions: Omit = { @@ -196,7 +201,7 @@ function changeGroupOptions( if (item.key === "abc") groupOptions.sortBy = "title"; else groupOptions.sortBy = "dateEdited"; } - db.settings?.setGroupOptions(options.groupingKey, groupOptions); + db.settings.setGroupOptions(options.groupingKey, groupOptions); options.refresh(); } @@ -216,7 +221,7 @@ type GroupHeaderProps = { groupingKey: GroupingKey; index: number; - groups: { title: string }[]; + groups: GroupHeaderType[]; onJump: (title: string) => void; refresh: () => void; onSelectGroup: () => void; @@ -234,7 +239,7 @@ function GroupHeader(props: GroupHeaderProps) { isFocused } = props; const [groupOptions, setGroupOptions] = useState( - db.settings!.getGroupOptions(groupingKey) + db.settings.getGroupOptions(groupingKey) ); const groupHeaderRef = useRef(null); const { openMenu, target } = useMenuTrigger(); diff --git a/apps/web/src/components/list-container/index.tsx b/apps/web/src/components/list-container/index.tsx index 129260bf6..e8564094a 100644 --- a/apps/web/src/components/list-container/index.tsx +++ b/apps/web/src/components/list-container/index.tsx @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import { forwardRef, useEffect, useMemo, useRef, useState } from "react"; +import { forwardRef, useEffect, useRef, useState } from "react"; import { Flex, Button } from "@theme-ui/components"; import { Plus } from "../icons"; import { ScrollerProps, Virtuoso, VirtuosoHandle } from "react-virtuoso"; @@ -26,12 +26,19 @@ import { store as selectionStore } from "../../stores/selection-store"; import GroupHeader from "../group-header"; -import { DEFAULT_ITEM_HEIGHT, ListProfiles } from "./list-profiles"; +import { DEFAULT_ITEM_HEIGHT, ListItemWrapper } from "./list-profiles"; import Announcements from "../announcements"; import { ListLoader } from "../loaders/list-loader"; import ScrollContainer from "../scroll-container"; import { useKeyboardListNavigation } from "../../hooks/use-keyboard-list-navigation"; -import { Context, Item } from "./types"; +import { Context } from "./types"; +import { + GroupHeader as GroupHeaderType, + GroupedItems, + GroupingKey, + Item, + isGroupHeader +} from "@notesnook/core/dist/types"; export const CustomScrollbarsVirtualList = forwardRef< HTMLDivElement, @@ -49,9 +56,8 @@ export const CustomScrollbarsVirtualList = forwardRef< }); type ListContainerProps = { - type: keyof typeof ListProfiles; - items: Item[]; - groupingKey?: GroupingKey; + group?: GroupingKey; + items: GroupedItems; compact?: boolean; context?: Context; refresh: () => void; @@ -64,16 +70,7 @@ type ListContainerProps = { }; function ListContainer(props: ListContainerProps) { - const { - type, - groupingKey, - items, - context, - refresh, - header, - button, - compact - } = props; + const { group, items, context, refresh, header, button, compact } = props; const [focusedGroupIndex, setFocusedGroupIndex] = useState(-1); @@ -88,11 +85,6 @@ function ListContainer(props: ListContainerProps) { const listRef = useRef(null); const listContainerRef = useRef(null); - const groups = useMemo( - () => props.items.filter((v) => v.type === "header"), - [props.items] - ); - useEffect(() => { return () => { selectionStore.toggleSelectionMode(false); @@ -127,8 +119,6 @@ function ListContainer(props: ListContainerProps) { } }); - const Component = ListProfiles[type]; - return ( {!props.items.length && props.placeholder ? ( @@ -147,12 +137,12 @@ function ListContainer(props: ListContainerProps) { items[index].id || items[index].title} + computeItemKey={(index) => items[index].id} defaultItemHeight={DEFAULT_ITEM_HEIGHT} totalCount={items.length} onBlur={() => setFocusedGroupIndex(-1)} @@ -177,10 +167,10 @@ function ListContainer(props: ListContainerProps) { switch (item.type) { case "header": - if (!groupingKey) return null; + if (!group) return null; return ( + isGroupHeader(v) + ) as GroupHeaderType[] + } onJump={(title: string) => { const index = props.items.findIndex( - (v) => v.title === title + (v) => isGroupHeader(v) && v.title === title ); if (index < 0) return; listRef.current?.scrollToIndex({ @@ -218,10 +212,10 @@ function ListContainer(props: ListContainerProps) { ); default: return ( - ); @@ -234,7 +228,7 @@ function ListContainer(props: ListContainerProps) { {button && ( ); })} @@ -282,7 +288,7 @@ export default React.memo(Note, function (prevProps, nextProps) { ); }); -const pin = (note: Item) => { +const pin = (note: Note) => { return store .pin(note.id) .then(async () => { @@ -327,11 +333,11 @@ const formats = [ const notFullySyncedText = "Cannot perform this action because note is not fully synced."; -const menuItems: (note: any, items?: any[]) => MenuItem[] = ( +const menuItems: (note: Note, items?: Note[]) => MenuItem[] = ( note, items = [] ) => { - const isSynced = db.notes?.note(note.id).synced(); + const isSynced = db.notes.note(note.id)?.synced(); const ids = items.map((i) => i.id); return [ @@ -433,13 +439,13 @@ const menuItems: (note: any, items?: any[]) => MenuItem[] = ( type: "button", key: "publish", isDisabled: - !isSynced || (!db.monographs?.isPublished(note.id) && note.locked), + !isSynced || (!db.monographs.isPublished(note.id) && note.locked), icon: Publish.path, title: "Publish", - isChecked: db.monographs?.isPublished(note.id), + isChecked: db.monographs.isPublished(note.id), onClick: async () => { - const isPublished = db.monographs?.isPublished(note.id); - if (isPublished) await db.monographs?.unpublish(note.id); + const isPublished = db.monographs.isPublished(note.id); + if (isPublished) await db.monographs.unpublish(note.id); else await showPublishView(note.id, "bottom"); } }, @@ -568,22 +574,22 @@ const menuItems: (note: any, items?: any[]) => MenuItem[] = ( ]; }; -function colorsToMenuItems(note: any): MenuItem[] { - return COLORS.map((label) => { - const lowercase = label.toLowerCase(); +function colorsToMenuItems(note: Note): MenuItem[] { + const noteColor = db.relations.to(note, "color").resolved(1)[0]; + return COLORS.map((color) => { return { type: "button", - key: lowercase, - title: db.colors?.alias(lowercase) || label, + key: color.key, + title: color.title, icon: Circle.path, - styles: { icon: { color: lowercase } }, - isChecked: note.color === lowercase, - onClick: () => store.setColor(note.id, lowercase) - }; + styles: { icon: { color: StaticColors[color.key] } }, + isChecked: noteColor.title === color.title, + onClick: () => store.setColor(note.id, color.title) + } satisfies MenuItem; }); } -function notebooksMenuItems(items: any[]): MenuItem[] { +function notebooksMenuItems(items: Note[]): MenuItem[] { const noteIds = items.map((i) => i.id); const menuItems: MenuItem[] = []; @@ -596,11 +602,11 @@ function notebooksMenuItems(items: any[]): MenuItem[] { }); const notebooks = items - .map((note) => db.relations?.to(note, "notebook")) + .map((note) => db.relations.to(note, "notebook").resolved()) .flat(); const topics = items.map((note) => note.notebooks || []).flat(); - if (topics?.length > 0 || notebooks?.length > 0) { + if (topics?.length > 0 || notebooks.length > 0) { menuItems.push( { type: "button", @@ -608,39 +614,40 @@ function notebooksMenuItems(items: any[]): MenuItem[] { title: "Unlink from all", icon: RemoveShortcutLink.path, onClick: async () => { - await db.notes?.removeFromAllNotebooks(...noteIds); + await db.notes.removeFromAllNotebooks(...noteIds); store.refresh(); } }, { key: "sep", type: "separator" } ); - notebooks?.forEach((notebook) => { + notebooks.forEach((notebook) => { if (!notebook || menuItems.find((item) => item.key === notebook.id)) return; menuItems.push({ type: "button", key: notebook.id, - title: db.notebooks?.notebook(notebook.id).title, + title: notebook.title, icon: Notebook.path, isChecked: true, tooltip: "Click to remove from this notebook", onClick: async () => { - await db.notes?.removeFromNotebook({ id: notebook.id }, ...noteIds); + await db.notes.removeFromNotebook({ id: notebook.id }, ...noteIds); store.refresh(); } }); }); - topics?.forEach((ref) => { - const notebook = db.notebooks?.notebook(ref.id); + topics.forEach((ref) => { + const notebook = db.notebooks.notebook(ref.id); if (!notebook) return; for (const topicId of ref.topics) { if (!notebook.topics.topic(topicId)) continue; if (menuItems.find((item) => item.key === topicId)) continue; - const topic = notebook.topics.topic(topicId)._topic; + const topic = notebook.topics.topic(topicId)?._topic; + if (!topic) continue; menuItems.push({ type: "button", key: topicId, @@ -649,7 +656,7 @@ function notebooksMenuItems(items: any[]): MenuItem[] { isChecked: true, tooltip: "Click to remove from this topic", onClick: async () => { - await db.notes?.removeFromNotebook( + await db.notes.removeFromNotebook( { id: ref.id, topic: topic.id }, ...noteIds ); @@ -663,7 +670,7 @@ function notebooksMenuItems(items: any[]): MenuItem[] { return menuItems; } -function tagsMenuItems(items: any[]): MenuItem[] { +function tagsMenuItems(items: Note[]): MenuItem[] { const noteIds = items.map((i) => i.id); const menuItems: MenuItem[] = []; @@ -677,9 +684,11 @@ function tagsMenuItems(items: any[]): MenuItem[] { } }); - const tags = items.map((note) => note.tags).flat(); + const tags = items + .map((note) => db.relations.to(note, "tag").resolved()) + .flat(); - if (tags?.length > 0) { + if (tags.length > 0) { menuItems.push( { type: "button", @@ -689,32 +698,34 @@ function tagsMenuItems(items: any[]): MenuItem[] { onClick: async () => { for (const note of items) { for (const tag of tags) { - if (!note.tags.includes(tag)) continue; - await db.notes?.note(note).untag(tag); + await db.relations.unlink(tag, note); } } - store.refresh(); + tagStore.get().refresh(); + editorStore.get().refreshTags(); + store.get().refresh(); } }, { key: "sep", type: "separator" } ); - tags?.forEach((tag) => { - if (menuItems.find((item) => item.key === tag)) return; + tags.forEach((tag) => { + if (menuItems.find((item) => item.key === tag.id)) return; menuItems.push({ type: "button", - key: tag, - title: db.tags?.alias(tag), - icon: Tag.path, + key: tag.id, + title: tag.title, + icon: TagIcon.path, isChecked: true, tooltip: "Click to remove from this tag", onClick: async () => { for (const note of items) { - if (!note.tags.includes(tag)) continue; - await db.notes?.note(note).untag(tag); + await db.relations.unlink(tag, note); } - store.refresh(); + tagStore.get().refresh(); + editorStore.get().refreshTags(); + store.get().refresh(); } }); }); diff --git a/apps/web/src/components/notebook/index.tsx b/apps/web/src/components/notebook/index.tsx index a77939f45..4bf6a113a 100644 --- a/apps/web/src/components/notebook/index.tsx +++ b/apps/web/src/components/notebook/index.tsx @@ -25,7 +25,7 @@ import { store as appStore } from "../../stores/app-store"; import { showUnpinnedToast } from "../../common/toasts"; import { db } from "../../common/db"; import { - Topic, + Topic as TopicIcon, PinFilled, NotebookEdit, Notebook as NotebookIcon, @@ -42,10 +42,10 @@ import { pluralize } from "@notesnook/common"; import { confirm } from "../../common/dialog-controller"; import { getFormattedDate } from "@notesnook/common"; import { MenuItem } from "@notesnook/ui"; -import { Item } from "../list-container/types"; +import { Note, Notebook } from "@notesnook/core/dist/types"; type NotebookProps = { - item: Item; + item: Notebook; totalNotes: number; date: number; simplified?: boolean; @@ -76,11 +76,11 @@ function Notebook(props: NotebookProps) { <> {notebook?.topics && ( - {(notebook?.topics as Item[]).slice(0, 3).map((topic) => ( + {notebook.topics.slice(0, 3).map((topic) => ( { navigate(`/notebooks/${notebook.id}/${topic.id}`); }} @@ -128,7 +128,7 @@ export default React.memo(Notebook, (prev, next) => { ); }); -const pin = (notebook: Item) => { +const pin = (notebook: Notebook) => { return store .pin(notebook.id) .then(() => { @@ -137,11 +137,11 @@ const pin = (notebook: Item) => { .catch((error) => showToast("error", error.message)); }; -const menuItems: (notebook: any, items?: any[]) => MenuItem[] = ( +const menuItems: (notebook: Notebook, items?: Notebook[]) => MenuItem[] = ( notebook, items = [] ) => { - const defaultNotebook = db.settings?.getDefaultNotebook(); + const defaultNotebook = db.settings.getDefaultNotebook(); return [ { @@ -158,10 +158,10 @@ const menuItems: (notebook: any, items?: any[]) => MenuItem[] = ( isChecked: defaultNotebook?.id === notebook.id && !defaultNotebook?.topic, icon: NotebookIcon.path, onClick: async () => { - const defaultNotebook = db.settings?.getDefaultNotebook(); + const defaultNotebook = db.settings.getDefaultNotebook(); const isDefault = defaultNotebook?.id === notebook.id && !defaultNotebook?.topic; - await db.settings?.setDefaultNotebook( + await db.settings.setDefaultNotebook( isDefault ? undefined : { id: notebook.id } ); } @@ -177,10 +177,10 @@ const menuItems: (notebook: any, items?: any[]) => MenuItem[] = ( { type: "button", key: "shortcut", - icon: db.shortcuts?.exists(notebook.id) + icon: db.shortcuts.exists(notebook.id) ? RemoveShortcutLink.path : Shortcut.path, - title: db.shortcuts?.exists(notebook.id) + title: db.shortcuts.exists(notebook.id) ? "Remove shortcut" : "Create shortcut", onClick: () => appStore.addToShortcuts(notebook) @@ -208,13 +208,13 @@ const menuItems: (notebook: any, items?: any[]) => MenuItem[] = ( if (result) { if (result.deleteContainingNotes) { - const notes = []; + const notes: Note[] = []; for (const item of items) { - notes.push(...(db.relations?.from(item, "note") || [])); - const topics = db.notebooks?.notebook(item.id).topics; + notes.push(...(db.relations.from(item, "note").resolved() || [])); + const topics = db.notebooks.topics(item.id); if (!topics) return; for (const topic of topics.all) { - notes.push(...topics.topic(topic.id).all); + notes.push(...(topics.topic(topic.id)?.all || [])); } } await Multiselect.moveNotesToTrash(notes, false); diff --git a/apps/web/src/components/properties/index.jsx b/apps/web/src/components/properties/index.jsx index a36161485..decc15a99 100644 --- a/apps/web/src/components/properties/index.jsx +++ b/apps/web/src/components/properties/index.jsx @@ -105,10 +105,9 @@ function Properties(props) { dateCreated } = session; const isPreviewMode = sessionType === "preview"; - const reminders = db.relations.from( - { id: session.id, type: "note" }, - "reminder" - ); + const reminders = db.relations + .from({ id: session.id, type: "note" }, "reminder") + .resolved(); const allNotebooks = useMemo( () => [ @@ -289,7 +288,7 @@ function Properties(props) { ))} )} - {reminders?.length > 0 && ( + {reminders.length > 0 && ( {reminders.map((reminder) => { return ( @@ -299,7 +298,7 @@ function Properties(props) { )} - {attachments?.length > 0 && ( + {attachments.length > 0 && ( { - await db.reminders?.add({ + await db.reminders.add({ id: reminder.id, disabled: !reminder.disabled }); diff --git a/apps/web/src/components/status-bar/index.tsx b/apps/web/src/components/status-bar/index.tsx index 436565ddf..6df557b19 100644 --- a/apps/web/src/components/status-bar/index.tsx +++ b/apps/web/src/components/status-bar/index.tsx @@ -44,6 +44,7 @@ import useStatus, { statusToString } from "../../hooks/use-status"; import { ScopedThemeProvider } from "../theme-provider"; import { checkForUpdate, installUpdate } from "../../utils/updater"; import { toTitleCase } from "@notesnook/common"; +import { User } from "@notesnook/core/dist/api/user-manager"; function StatusBar() { const user = useUserStore((state) => state.user); @@ -84,12 +85,7 @@ function StatusBar() { }} > - + Email not confirmed diff --git a/apps/web/src/components/tag/index.tsx b/apps/web/src/components/tag/index.tsx index 3d752076f..f5f4fd2a9 100644 --- a/apps/web/src/components/tag/index.tsx +++ b/apps/web/src/components/tag/index.tsx @@ -28,13 +28,14 @@ import { db } from "../../common/db"; import { Edit, Shortcut, DeleteForver } from "../icons"; import { showToast } from "../../utils/toast"; import { pluralize } from "@notesnook/common"; -import { Item } from "../list-container/types"; import { MenuItem } from "@notesnook/ui"; +import { Tag } from "@notesnook/core/dist/types"; -type TagProps = { item: Item }; +type TagProps = { item: Tag }; function Tag(props: TagProps) { const { item } = props; - const { id, noteIds, alias } = item; + const { id, title } = item; + const totalNotes = db.relations.to(item, "note").length; return ( {"#"} - {alias} + {title} } footer={ - {(noteIds as string[]).length} + {totalNotes} } menuItems={menuItems} @@ -62,7 +63,7 @@ function Tag(props: TagProps) { } export default Tag; -const menuItems: (tag: any, items?: any[]) => MenuItem[] = ( +const menuItems: (tag: Tag, items?: Tag[]) => MenuItem[] = ( tag, items = [] ) => { @@ -79,7 +80,7 @@ const menuItems: (tag: any, items?: any[]) => MenuItem[] = ( { type: "button", key: "shortcut", - title: db.shortcuts?.exists(tag.id) + title: db.shortcuts.exists(tag.id) ? "Remove shortcut" : "Create shortcut", icon: Shortcut.path, @@ -94,11 +95,10 @@ const menuItems: (tag: any, items?: any[]) => MenuItem[] = ( icon: DeleteForver.path, onClick: async () => { for (const tag of items) { - if (tag.noteIds.includes(editorStore.get().session.id)) - await editorStore.clearSession(); - await db.tags?.remove(tag.id); + await db.tags.remove(tag.id); } showToast("success", `${pluralize(items.length, "tag")} deleted`); + editorStore.refreshTags(); tagStore.refresh(); noteStore.refresh(); }, diff --git a/apps/web/src/components/topic/index.tsx b/apps/web/src/components/topic/index.tsx index 04e430cd4..574474831 100644 --- a/apps/web/src/components/topic/index.tsx +++ b/apps/web/src/components/topic/index.tsx @@ -22,21 +22,21 @@ import ListItem from "../list-item"; import { db } from "../../common/db"; import { store as appStore } from "../../stores/app-store"; import { hashNavigate, navigate } from "../../navigation"; -import { Flex, Text } from "@theme-ui/components"; +import { Text } from "@theme-ui/components"; import { Edit, Topic as TopicIcon, Shortcut, Trash } from "../icons"; import { Multiselect } from "../../common/multi-select"; import { confirm } from "../../common/dialog-controller"; import { useStore as useNotesStore } from "../../stores/note-store"; import { pluralize } from "@notesnook/common"; import { getTotalNotes } from "@notesnook/common"; -import { Item } from "../list-container/types"; import { MenuItem } from "@notesnook/ui"; +import { Note, Topic } from "@notesnook/core/dist/types"; -type TopicProps = { item: Item }; +type TopicProps = { item: Topic }; function Topic(props: TopicProps) { const { item: topic } = props; const isOpened = useNotesStore( - (store) => (store.context?.value as any)?.topic === topic.id + (store) => store.context?.value?.topic === topic.id ); return ( @@ -56,11 +56,11 @@ export default React.memo(Topic, (prev, next) => { return prev?.item?.title === next?.item?.title; }); -const menuItems: (topic: any, items?: any[]) => MenuItem[] = ( +const menuItems: (topic: Topic, items?: Topic[]) => MenuItem[] = ( topic, items = [] ) => { - const defaultNotebook = db.settings?.getDefaultNotebook(); + const defaultNotebook = db.settings.getDefaultNotebook(); return [ { type: "button", @@ -79,12 +79,12 @@ const menuItems: (topic: any, items?: any[]) => MenuItem[] = ( defaultNotebook?.topic === topic.id, icon: TopicIcon.path, onClick: async () => { - const defaultNotebook = db.settings?.getDefaultNotebook(); + const defaultNotebook = db.settings.getDefaultNotebook(); const isDefault = defaultNotebook?.id === topic.notebookId && defaultNotebook?.topic === topic.id; - await db.settings?.setDefaultNotebook( + await db.settings.setDefaultNotebook( isDefault ? undefined : { id: topic.notebookId, topic: topic.id } ); } @@ -92,7 +92,7 @@ const menuItems: (topic: any, items?: any[]) => MenuItem[] = ( { type: "button", key: "shortcut", - title: db.shortcuts?.exists(topic.id) + title: db.shortcuts.exists(topic.id) ? "Remove shortcut" : "Create shortcut", icon: Shortcut.path, @@ -121,11 +121,9 @@ const menuItems: (topic: any, items?: any[]) => MenuItem[] = ( if (result) { if (result.deleteContainingNotes) { - const notes = []; + const notes: Note[] = []; for (const item of items) { - const topic = db.notebooks - ?.notebook(item.notebookId) - .topics.topic(item.id); + const topic = db.notebooks.topics(item.notebookId).topic(item.id); if (!topic) continue; notes.push(...topic.all); } diff --git a/apps/web/src/components/trash-item/index.tsx b/apps/web/src/components/trash-item/index.tsx index b6b5351d2..42d06cd98 100644 --- a/apps/web/src/components/trash-item/index.tsx +++ b/apps/web/src/components/trash-item/index.tsx @@ -28,10 +28,10 @@ import { showUndoableToast } from "../../common/toasts"; import { showToast } from "../../utils/toast"; import { hashNavigate } from "../../navigation"; import { useStore } from "../../stores/note-store"; -import { Item } from "../list-container/types"; import { MenuItem } from "@notesnook/ui"; +import { TrashItem } from "@notesnook/core/dist/types"; -type TrashItemProps = { item: Item; date: number }; +type TrashItemProps = { item: TrashItem; date: number }; function TrashItem(props: TrashItemProps) { const { item, date } = props; const isOpened = useStore((store) => store.selectedNote === item.id); @@ -41,7 +41,7 @@ function TrashItem(props: TrashItemProps) { isFocused={isOpened} item={item} title={item.title} - body={(item.headline || item.description) as string} + body={item.itemType === "note" ? item.headline : item.description} footer={ MenuItem[] = ( +const menuItems: (item: TrashItem, items?: TrashItem[]) => MenuItem[] = ( item, items = [] ) => { diff --git a/apps/web/src/components/unlock/index.tsx b/apps/web/src/components/unlock/index.tsx index 264e75873..ea0106f50 100644 --- a/apps/web/src/components/unlock/index.tsx +++ b/apps/web/src/components/unlock/index.tsx @@ -40,7 +40,7 @@ function Unlock(props: UnlockProps) { const passwordRef = useRef(); const note = useMemo( - () => !isLoading && db.notes?.note(noteId)?.data, + () => (!isLoading ? db.notes.note(noteId)?.data : undefined), [noteId, isLoading] ); const openLockedSession = useEditorStore((store) => store.openLockedSession); @@ -53,7 +53,7 @@ function Unlock(props: UnlockProps) { const password = passwordRef.current.value; try { if (!password) return; - const note = await db.vault?.open(noteId, password); + const note = await db.vault.open(noteId, password); openLockedSession(note); } catch (e) { if ( diff --git a/apps/web/src/dialogs/add-notebook-dialog.jsx b/apps/web/src/dialogs/add-notebook-dialog.jsx index 9cc211950..a3c791181 100644 --- a/apps/web/src/dialogs/add-notebook-dialog.jsx +++ b/apps/web/src/dialogs/add-notebook-dialog.jsx @@ -110,10 +110,7 @@ class AddNotebookDialog extends React.Component { const notebook = { title: this.title, description: this.description, - topics: this.state.topics.map((topic) => { - if (topic.id) return topic; - return topic.title; - }), + topics: this.state.topics, id: this.id }; this.props.onDone(notebook, this.deletedTopics); diff --git a/apps/web/src/dialogs/add-reminder-dialog.tsx b/apps/web/src/dialogs/add-reminder-dialog.tsx index 04d46e510..ce3793599 100644 --- a/apps/web/src/dialogs/add-reminder-dialog.tsx +++ b/apps/web/src/dialogs/add-reminder-dialog.tsx @@ -120,7 +120,7 @@ export default function AddReminderDialog(props: AddReminderDialogProps) { useEffect(() => { if (!reminderId) return; - const reminder = db.reminders?.reminder(reminderId); + const reminder = db.reminders.reminder(reminderId); if (!reminder) return; setSelectedDays(reminder.selectedDays || []); @@ -135,7 +135,7 @@ export default function AddReminderDialog(props: AddReminderDialogProps) { useEffect(() => { if (!noteId) return; - const note = db.notes?.note(noteId); + const note = db.notes.note(noteId); if (!note) return; setTitle(note.title); @@ -186,7 +186,7 @@ export default function AddReminderDialog(props: AddReminderDialogProps) { return; } - const id = await db.reminders?.add({ + const id = await db.reminders.add({ id: reminderId, recurringMode, mode, @@ -200,7 +200,7 @@ export default function AddReminderDialog(props: AddReminderDialogProps) { }); if (id && noteId) { - await db.relations?.add( + await db.relations.add( { id: noteId, type: "note" }, { id, type: "reminder" } ); diff --git a/apps/web/src/dialogs/add-tags-dialog.tsx b/apps/web/src/dialogs/add-tags-dialog.tsx index 28ae20486..1f7f6bc0c 100644 --- a/apps/web/src/dialogs/add-tags-dialog.tsx +++ b/apps/web/src/dialogs/add-tags-dialog.tsx @@ -28,8 +28,10 @@ import { db } from "../common/db"; import Dialog from "../components/dialog"; import { useStore, store } from "../stores/tag-store"; import { store as notestore } from "../stores/note-store"; +import { store as editorstore } from "../stores/editor-store"; import { Perform } from "../common/dialog-controller"; import { FilteredList } from "../components/filtered-list"; +import { ItemReference, Tag } from "@notesnook/core/dist/types"; type SelectedReference = { id: string; @@ -42,7 +44,6 @@ type Item = { type: "tag" | "header"; title: string; }; -type Tag = Item & { noteIds: string[] }; export type AddTagsDialogProps = { onClose: Perform; @@ -63,7 +64,7 @@ function AddTagsDialog(props: AddTagsDialogProps) { const getAllTags = useCallback(() => { refreshTags(); - return (store.get().tags as Item[]).filter((a) => a.type !== "header"); + return store.get().tags.filter((a) => a.type !== "header"); }, [refreshTags]); useEffect(() => { @@ -71,7 +72,7 @@ function AddTagsDialog(props: AddTagsDialogProps) { setSelected((s) => { const selected = s.slice(); - for (const tag of tags as Tag[]) { + for (const tag of tags) { if (tag.type === "header") continue; if (selected.findIndex((a) => a.id === tag.id) > -1) continue; if (tagHasNotes(tag, noteIds)) { @@ -98,11 +99,15 @@ function AddTagsDialog(props: AddTagsDialogProps) { onClick: async () => { for (const id of noteIds) { for (const item of selected) { - if (item.op === "add") await db.notes?.note(id).tag(item.id); - else await db.notes?.note(id).untag(item.id); + const tagRef: ItemReference = { type: "tag", id: item.id }; + const noteRef: ItemReference = { id, type: "note" }; + if (item.op === "add") await db.relations.add(tagRef, noteRef); + else await db.relations.unlink(tagRef, noteRef); } } - notestore.refresh(); + editorstore.get().refreshTags(); + store.get().refresh(); + notestore.get().refresh(); onClose(true); } }} @@ -122,12 +127,13 @@ function AddTagsDialog(props: AddTagsDialogProps) { empty: "Add a new tag", filter: "Search or add a new tag" }} - filter={(tags, query) => db.lookup?.tags(tags, query) || []} + filter={(tags, query) => db.lookup.tags(tags, query) || []} onCreateNewItem={async (title) => { - const tag = await db.tags?.add(title); + const tagId = await db.tags.add({ title }); + if (!tagId) return; setSelected((selected) => [ ...selected, - { id: tag.id, new: true, op: "add" } + { id: tagId, new: true, op: "add" } ]); }} renderItem={(tag, _index) => { @@ -219,5 +225,7 @@ function SelectedCheck({ } function tagHasNotes(tag: Tag, noteIds: string[]) { - return tag.noteIds.some((id) => noteIds.indexOf(id) > -1); + return db.relations + ?.from(tag, "note") + ?.some((r) => noteIds.indexOf(r.to.id) > -1); } diff --git a/apps/web/src/dialogs/attachments-dialog.tsx b/apps/web/src/dialogs/attachments-dialog.tsx index a2146348f..666ad18ae 100644 --- a/apps/web/src/dialogs/attachments-dialog.tsx +++ b/apps/web/src/dialogs/attachments-dialog.tsx @@ -156,7 +156,7 @@ function AttachmentsDialog({ onClose }: AttachmentsDialogProps) { totalSize={totalSize} filter={(query) => { setAttachments( - db.lookup?.attachments(db.attachments?.all || [], query) || [] + db.lookup?.attachments(db.attachments.all || [], query) || [] ); }} counts={getCounts(allAttachments)} @@ -446,7 +446,7 @@ const Sidebar = memo( if (downloadStatus) { await cancelDownload(); } else { - await download(db.attachments?.all); + await download(db.attachments.all); } }} > diff --git a/apps/web/src/dialogs/buy-dialog/buy-dialog.tsx b/apps/web/src/dialogs/buy-dialog/buy-dialog.tsx index 03aeb38ee..e357c8392 100644 --- a/apps/web/src/dialogs/buy-dialog/buy-dialog.tsx +++ b/apps/web/src/dialogs/buy-dialog/buy-dialog.tsx @@ -46,6 +46,7 @@ import { SUBSCRIPTION_STATUS } from "../../common/constants"; import { alpha } from "@theme-ui/color"; import BaseDialog from "../../components/dialog"; import { ScopedThemeProvider } from "../../components/theme-provider"; +import { User } from "@notesnook/core/dist/api/user-manager"; type BuyDialogProps = { couponCode?: string; @@ -178,7 +179,7 @@ function SideBar(props: SideBarProps) { report({ text: "Activating trial" }); - return db.user?.activateTrial(); + return db.user.activateTrial(); } }); if (result) onClose(); diff --git a/apps/web/src/dialogs/email-change-dialog.tsx b/apps/web/src/dialogs/email-change-dialog.tsx index ed892c2a8..01a0801b5 100644 --- a/apps/web/src/dialogs/email-change-dialog.tsx +++ b/apps/web/src/dialogs/email-change-dialog.tsx @@ -49,7 +49,7 @@ export default function EmailChangeDialog(props: EmailChangeDialogProps) { async (emailChangeState: EmailChangeState) => { setIsSending(true); try { - await db.user?.sendVerificationEmail(emailChangeState.newEmail); + await db.user.sendVerificationEmail(emailChangeState.newEmail); setEnabled(false); } catch (e) { @@ -98,7 +98,7 @@ export default function EmailChangeDialog(props: EmailChangeDialogProps) { return; } - await db.user?.changeEmail( + await db.user.changeEmail( emailChangeState.newEmail, emailChangeState.password, code @@ -109,12 +109,12 @@ export default function EmailChangeDialog(props: EmailChangeDialogProps) { if (!newEmail.trim() || !password.trim()) return; - if (!password || !(await db.user?.verifyPassword(password))) { + if (!password || !(await db.user.verifyPassword(password))) { setError("Password is not correct."); return; } - await db.user?.sendVerificationEmail(newEmail); + await db.user.sendVerificationEmail(newEmail); setEmailChangeState({ newEmail, password }); } catch (e) { if (e instanceof Error) setError(e.message); diff --git a/apps/web/src/dialogs/issue-dialog.tsx b/apps/web/src/dialogs/issue-dialog.tsx index 64ec471f3..152ccc6a6 100644 --- a/apps/web/src/dialogs/issue-dialog.tsx +++ b/apps/web/src/dialogs/issue-dialog.tsx @@ -27,9 +27,9 @@ import { confirm, Perform } from "../common/dialog-controller"; import { isUserPremium } from "../hooks/use-is-user-premium"; import { writeText } from "clipboard-polyfill"; import { store as userstore } from "../stores/user-store"; -import { db } from "../common/db"; import { ErrorText } from "../components/error-text"; +import { Debug } from "@notesnook/core/dist/api/debug"; const PLACEHOLDERS = { title: "Briefly describe what happened", @@ -79,7 +79,7 @@ function IssueDialog(props: IssueDialogProps) { if (!requestData.title.trim() || !requestData.body.trim()) return; requestData.body = BODY_TEMPLATE(requestData.body); - const url = await db.debug?.report({ + const url = await Debug.report({ title: requestData.title, body: requestData.body, userId: userstore.get().user?.id diff --git a/apps/web/src/dialogs/mfa/multi-factor-dialog.tsx b/apps/web/src/dialogs/mfa/multi-factor-dialog.tsx index 0897f1ff9..7d43c97b1 100644 --- a/apps/web/src/dialogs/mfa/multi-factor-dialog.tsx +++ b/apps/web/src/dialogs/mfa/multi-factor-dialog.tsx @@ -28,8 +28,9 @@ import { Step, steps } from "./steps"; -import { Authenticator, AuthenticatorType, OnNextFunction } from "./types"; +import { Authenticator, OnNextFunction } from "./types"; import { ErrorText } from "../../components/error-text"; +import { AuthenticatorType } from "@notesnook/core/dist/api/user-manager"; type MultifactorDialogProps = { onClose: Perform; diff --git a/apps/web/src/dialogs/mfa/recovery-code-dialog.tsx b/apps/web/src/dialogs/mfa/recovery-code-dialog.tsx index 100e63a4d..d4d8eb43b 100644 --- a/apps/web/src/dialogs/mfa/recovery-code-dialog.tsx +++ b/apps/web/src/dialogs/mfa/recovery-code-dialog.tsx @@ -21,8 +21,8 @@ import { useState } from "react"; import { Perform } from "../../common/dialog-controller"; import Dialog from "../../components/dialog"; import { steps } from "./steps"; -import { AuthenticatorType } from "./types"; import { ErrorText } from "../../components/error-text"; +import { AuthenticatorType } from "@notesnook/core/dist/api/user-manager"; type RecoveryCodesDialogProps = { onClose: Perform; diff --git a/apps/web/src/dialogs/mfa/steps.tsx b/apps/web/src/dialogs/mfa/steps.tsx index ab227628e..377b41ded 100644 --- a/apps/web/src/dialogs/mfa/steps.tsx +++ b/apps/web/src/dialogs/mfa/steps.tsx @@ -50,7 +50,6 @@ import { ReactComponent as MFA } from "../../assets/mfa.svg"; import { ReactComponent as Fallback2FA } from "../../assets/fallback2fa.svg"; import { Authenticator, - AuthenticatorType, StepComponent, SubmitCodeFunction, StepComponentProps, @@ -58,6 +57,7 @@ import { } from "./types"; import { showMultifactorDialog } from "../../common/dialog-controller"; import { ErrorText } from "../../components/error-text"; +import { AuthenticatorType } from "@notesnook/core/dist/api/user-manager"; const QRCode = React.lazy(() => import("../../re-exports/react-qrcode-logo")); @@ -312,8 +312,8 @@ function AuthenticatorSelector(props: AuthenticatorSelectorProps) { const onSubmitCode: SubmitCodeFunction = useCallback( async (code) => { try { - if (isFallback) await db.mfa?.enableFallback(authenticator, code); - else await db.mfa?.enable(authenticator, code); + if (isFallback) await db.mfa.enableFallback(authenticator, code); + else await db.mfa.enable(authenticator, code); onNext(authenticator); } catch (e) { const error = e as Error; @@ -342,7 +342,7 @@ function SetupAuthenticatorApp(props: SetupAuthenticatorProps) { useEffect(() => { (async function () { - setAuthenticatorDetails(await db.mfa?.setup("app")); + setAuthenticatorDetails(await db.mfa.setup("app")); })(); }, []); @@ -426,7 +426,7 @@ function SetupEmail(props: SetupAuthenticatorProps) { useEffect(() => { (async () => { if (!db.user) return; - const { email } = await db.user.getUser(); + const { email } = (await db.user.getUser()) || {}; setEmail(email); })(); }, []); @@ -461,7 +461,7 @@ function SetupEmail(props: SetupAuthenticatorProps) { onClick={async () => { setIsSending(true); try { - await db.mfa?.setup("email"); + await db.mfa.setup("email"); setEnabled(false); } catch (e) { const error = e as Error; @@ -548,7 +548,7 @@ function SetupSMS(props: SetupAuthenticatorProps) { setIsSending(true); try { - await db.mfa?.setup("sms", phoneNumber); + await db.mfa.setup("sms", phoneNumber); setEnabled(false); } catch (e) { const error = e as Error; @@ -572,7 +572,7 @@ function BackupRecoveryCodes(props: TwoFactorEnabledProps) { const generate = useCallback(async () => { onError && onError(""); try { - const codes = await db.mfa?.codes(); + const codes = await db.mfa.codes(); if (codes) setCodes(codes); } catch (e) { const error = e as Error; diff --git a/apps/web/src/dialogs/mfa/types.ts b/apps/web/src/dialogs/mfa/types.ts index 994d18d4d..be2e81356 100644 --- a/apps/web/src/dialogs/mfa/types.ts +++ b/apps/web/src/dialogs/mfa/types.ts @@ -17,11 +17,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +import { AuthenticatorType } from "@notesnook/core/dist/api/user-manager"; import { Perform } from "../../common/dialog-controller"; import { Icon } from "../../components/icons"; -export type AuthenticatorType = "app" | "sms" | "email"; - export type Authenticator = { type: AuthenticatorType; title: string; diff --git a/apps/web/src/dialogs/migration-dialog.tsx b/apps/web/src/dialogs/migration-dialog.tsx index 68e624e54..5a442c2c2 100644 --- a/apps/web/src/dialogs/migration-dialog.tsx +++ b/apps/web/src/dialogs/migration-dialog.tsx @@ -64,7 +64,7 @@ export default function MigrationDialog(props: MigrationDialogProps) { ); task({ text: `Processing...` }); try { - await db.migrations?.migrate(); + await db.migrations.migrate(); props.onClose(true); } catch (e) { diff --git a/apps/web/src/dialogs/move-note-dialog.tsx b/apps/web/src/dialogs/move-note-dialog.tsx index 04d2d1256..4ffd05f3e 100644 --- a/apps/web/src/dialogs/move-note-dialog.tsx +++ b/apps/web/src/dialogs/move-note-dialog.tsx @@ -39,6 +39,7 @@ import { pluralize } from "@notesnook/common"; import { isMac } from "../utils/platform"; import { create } from "zustand"; import { FilteredList } from "../components/filtered-list"; +import { Topic, Notebook, GroupHeader } from "@notesnook/core/dist/types"; type MoveDialogProps = { onClose: Perform; noteIds: string[] }; type NotebookReference = { @@ -47,17 +48,7 @@ type NotebookReference = { new: boolean; op: "add" | "remove"; }; -type Item = { - id: string; - type: "topic" | "notebook" | "header"; - title: string; -}; -type Topic = Item & { notebookId: string }; -type Notebook = Item & { - topics: Topic[]; - dateCreated: number; - dateModified: number; -}; +type Item = Topic | Notebook | GroupHeader; interface ISelectionStore { selected: NotebookReference[]; @@ -81,9 +72,7 @@ function MoveDialog({ onClose, noteIds }: MoveDialogProps) { const notebooks = useStore((store) => store.notebooks); const getAllNotebooks = useCallback(() => { refreshNotebooks(); - return (store.get().notebooks as Notebook[]).filter( - (a) => a.type !== "header" - ); + return store.get().notebooks.filter((a) => a.type !== "header"); }, [refreshNotebooks]); useEffect(() => { @@ -92,7 +81,7 @@ function MoveDialog({ onClose, noteIds }: MoveDialogProps) { const selected: NotebookReference[] = useSelectionStore .getState() .selected.slice(); - for (const notebook of notebooks as Notebook[]) { + for (const notebook of notebooks) { if (notebook.type === "header") continue; for (const topic of notebook.topics) { const isSelected = @@ -111,7 +100,7 @@ function MoveDialog({ onClose, noteIds }: MoveDialogProps) { } for (const notebook of noteIds - .map((id) => db.relations?.to({ id, type: "note" }, "notebook")) + .map((id) => db.relations.to({ id, type: "note" }, "notebook")) .flat()) { const isSelected = notebook && selected.findIndex((item) => item.id === notebook.id) > -1; @@ -153,9 +142,9 @@ function MoveDialog({ onClose, noteIds }: MoveDialogProps) { for (const item of selected) { try { if (item.op === "remove") { - await db.notes?.removeFromNotebook(item, ...noteIds); + await db.notes.removeFromNotebook(item, ...noteIds); } else if (item.op === "add") { - await db.notes?.addToNotebook(item, ...noteIds); + await db.notes.addToNotebook(item, ...noteIds); } } catch (e) { if (e instanceof Error) showToast("error", e.message); @@ -209,20 +198,20 @@ function MoveDialog({ onClose, noteIds }: MoveDialogProps) { }} items={getAllNotebooks} filter={(notebooks, query) => - db.lookup?.notebooks(notebooks, query) || [] + db.lookup.notebooks(notebooks, query) || [] } - onCreateNewItem={async (title) => - await db.notebooks?.add({ + onCreateNewItem={async (title) => { + await db.notebooks.add({ title - }) - } + }); + }} renderItem={(notebook, _index, refresh, isSearching) => ( { - await db.notebooks?.notebook(notebook.id).topics.add(title); + await db.notebooks.topics(notebook.id).add({ title }); refresh(); }} /> @@ -482,7 +471,7 @@ function findSelectionIndex( } function topicHasNotes(topic: Item, noteIds: string[]) { - const notes: string[] = db.notes?.topicReferences.get(topic.id) || []; + const notes: string[] = db.notes.topicReferences.get(topic.id) || []; return noteIds.some((id) => notes.indexOf(id) > -1); } @@ -549,7 +538,7 @@ function stringifySelected(suggestion: NotebookReference[]) { } function resolveReference(ref: NotebookReference): string | undefined { - const notebook = db.notebooks?.notebook(ref.id); + const notebook = db.notebooks.notebook(ref.id); if (!notebook) return undefined; if (ref.topic) { diff --git a/apps/web/src/dialogs/reminder-preview-dialog.tsx b/apps/web/src/dialogs/reminder-preview-dialog.tsx index 63050259c..0dbbd85df 100644 --- a/apps/web/src/dialogs/reminder-preview-dialog.tsx +++ b/apps/web/src/dialogs/reminder-preview-dialog.tsx @@ -21,7 +21,7 @@ import { Perform } from "../common/dialog-controller"; import Dialog from "../components/dialog"; import { Button, Flex, Text } from "@theme-ui/components"; import { db } from "../common/db"; -import { Reminder } from "@notesnook/core/dist/collections/reminders"; +import { Reminder } from "@notesnook/core/dist/types"; import IconTag from "../components/icon-tag"; import { Clock, Refresh } from "../components/icons"; import Note from "../components/note"; @@ -57,10 +57,9 @@ export default function ReminderPreviewDialog( props: ReminderPreviewDialogProps ) { const { reminder } = props; - const referencedNotes = db.relations?.to( - { id: reminder.id, type: "reminder" }, - "note" - ); + const referencedNotes = db.relations + .to({ id: reminder.id, type: "reminder" }, "note") + .resolved(); return ( { - db.reminders?.add({ + db.reminders.add({ id: reminder.id, snoozeUntil: Date.now() + time.interval }); diff --git a/apps/web/src/dialogs/settings/auth-settings.ts b/apps/web/src/dialogs/settings/auth-settings.ts index 45754e07d..fc0cb2000 100644 --- a/apps/web/src/dialogs/settings/auth-settings.ts +++ b/apps/web/src/dialogs/settings/auth-settings.ts @@ -50,11 +50,12 @@ export const AuthenticationSettings: SettingsGroup[] = [ const result = await showPasswordDialog( "change_account_password", async (data) => { + await db.user.clearSessions(); return ( - (await db.user?.changePassword( + db.user.changePassword( data.oldPassword, data.newPassword - )) || false + ) || false ); } ); diff --git a/apps/web/src/dialogs/settings/components/accent-colors.tsx b/apps/web/src/dialogs/settings/components/accent-colors.tsx deleted file mode 100644 index b29a8ea16..000000000 --- a/apps/web/src/dialogs/settings/components/accent-colors.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* -This file is part of the Notesnook project (https://notesnook.com/) - -Copyright (C) 2023 Streetwriters (Private) Limited - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -*/ - -import { getAllAccents } from "@notesnook/theme"; -import { Flex } from "@theme-ui/components"; -import AccentItem from "../../../components/accent-item"; - -export function AccentColors() { - return ( - - {getAllAccents().map((color) => ( - - ))} - - ); -} diff --git a/apps/web/src/dialogs/settings/components/billing-history.tsx b/apps/web/src/dialogs/settings/components/billing-history.tsx index 3aea720b8..2c6bfc791 100644 --- a/apps/web/src/dialogs/settings/components/billing-history.tsx +++ b/apps/web/src/dialogs/settings/components/billing-history.tsx @@ -22,35 +22,12 @@ import { Loading } from "../../../components/icons"; import { Box, Flex, Link, Text } from "@theme-ui/components"; import { getFormattedDate } from "@notesnook/common"; import { db } from "../../../common/db"; +import { + Transaction, + TransactionStatus +} from "@notesnook/core/dist/api/subscriptions"; -type Transaction = { - order_id: string; - checkout_id: string; - amount: string; - currency: string; - status: keyof typeof TransactionStatusToText; - created_at: string; - passthrough: null; - product_id: number; - is_subscription: boolean; - is_one_off: boolean; - subscription: Subscription; - user: User; - receipt_url: string; -}; - -type Subscription = { - subscription_id: number; - status: string; -}; - -type User = { - user_id: number; - email: string; - marketing_consent: boolean; -}; - -const TransactionStatusToText = { +const TransactionStatusToText: Record = { completed: "Completed", refunded: "Refunded", partially_refunded: "Partially refunded", @@ -68,7 +45,7 @@ export function BillingHistory() { setError(undefined); setIsLoading(true); - const transactions = await db.subscriptions?.transactions(); + const transactions = await db.subscriptions.transactions(); if (!transactions) return; setTransactions(transactions); } catch (e) { diff --git a/apps/web/src/dialogs/settings/components/customize-toolbar.tsx b/apps/web/src/dialogs/settings/components/customize-toolbar.tsx index 36319ca38..f77e9fbc0 100644 --- a/apps/web/src/dialogs/settings/components/customize-toolbar.tsx +++ b/apps/web/src/dialogs/settings/components/customize-toolbar.tsx @@ -89,7 +89,7 @@ export function CustomizeToolbar() { (async () => { const tools = unflatten(items).slice(0, -1); - await db.settings?.setToolbarConfig("desktop", { + await db.settings.setToolbarConfig("desktop", { preset: currentPreset.id, config: currentPreset.id === "custom" ? tools : undefined }); diff --git a/apps/web/src/dialogs/settings/components/subscription-status.tsx b/apps/web/src/dialogs/settings/components/subscription-status.tsx index 4d1994593..13c47f3d4 100644 --- a/apps/web/src/dialogs/settings/components/subscription-status.tsx +++ b/apps/web/src/dialogs/settings/components/subscription-status.tsx @@ -39,7 +39,7 @@ export function SubscriptionStatus() { const user = useUserStore((store) => store.user); const [activateTrial, isActivatingTrial] = useAction(async () => { - await db.user?.activateTrial(); + await db.user.activateTrial(); }); const provider = PROVIDER_MAP[user?.subscription?.provider || 0]; @@ -151,7 +151,7 @@ export function SubscriptionStatus() { type: "modal", title: "Cancelling your subscription", subtitle: "Please wait...", - action: () => db.subscriptions?.cancel() + action: () => db.subscriptions.cancel() }) .catch((e) => showToast("error", e.message)) .then(() => @@ -181,7 +181,7 @@ export function SubscriptionStatus() { type: "modal", title: "Requesting refund for your subscription", subtitle: "Please wait...", - action: () => db.subscriptions?.refund() + action: () => db.subscriptions.refund() }) .catch((e) => showToast("error", e.message)) .then(() => diff --git a/apps/web/src/dialogs/settings/privacy-settings.ts b/apps/web/src/dialogs/settings/privacy-settings.ts index 4038e0bdc..3052dec5d 100644 --- a/apps/web/src/dialogs/settings/privacy-settings.ts +++ b/apps/web/src/dialogs/settings/privacy-settings.ts @@ -66,7 +66,7 @@ What data is collected & when?`, type: "toggle", isToggled: () => !!useUserStore.getState().user?.marketingConsent, toggle: async () => { - await db.user?.changeMarketingConsent( + await db.user.changeMarketingConsent( !useUserStore.getState().user?.marketingConsent ); await useUserStore.getState().refreshUser(); diff --git a/apps/web/src/dialogs/settings/profile-settings.ts b/apps/web/src/dialogs/settings/profile-settings.ts index e310e56dc..81887dae7 100644 --- a/apps/web/src/dialogs/settings/profile-settings.ts +++ b/apps/web/src/dialogs/settings/profile-settings.ts @@ -103,7 +103,7 @@ export const ProfileSettings: SettingsGroup[] = [ title: "Delete account", action: async () => showPasswordDialog("delete_account", async ({ password }) => { - await db.user?.deleteUser(password); + await db.user.deleteUser(password); return true; }) } @@ -132,7 +132,7 @@ export const ProfileSettings: SettingsGroup[] = [ await showLoadingDialog({ title: "You are being logged out", subtitle: "Please wait...", - action: () => db.user?.logout(true) + action: () => db.user.logout(true) }); showToast("success", "You have been logged out."); } @@ -153,7 +153,7 @@ export const ProfileSettings: SettingsGroup[] = [ action: async () => { if (!(await showClearSessionsConfirmation())) return; - await db.user?.clearSessions(); + await db.user.clearSessions(); showToast( "success", "You have been logged out from all other devices." diff --git a/apps/web/src/dialogs/settings/subscription-settings.ts b/apps/web/src/dialogs/settings/subscription-settings.ts index 565399eb2..1c958c1bf 100644 --- a/apps/web/src/dialogs/settings/subscription-settings.ts +++ b/apps/web/src/dialogs/settings/subscription-settings.ts @@ -46,7 +46,7 @@ export const SubscriptionSettings: SettingsGroup[] = [ title: "Update", action: async () => { try { - window.open(await db.subscriptions?.updateUrl(), "_blank"); + window.open(await db.subscriptions.updateUrl(), "_blank"); } catch (e) { if (e instanceof Error) showToast("error", e.message); } diff --git a/apps/web/src/dialogs/settings/vault-settings.tsx b/apps/web/src/dialogs/settings/vault-settings.tsx index efeb153b3..da96eba52 100644 --- a/apps/web/src/dialogs/settings/vault-settings.tsx +++ b/apps/web/src/dialogs/settings/vault-settings.tsx @@ -102,7 +102,7 @@ export const VaultSettings: SettingsGroup[] = [ type: "button", title: "Delete", action: async () => { - if ((await Vault.deleteVault()) && !(await db.vault?.exists())) { + if ((await Vault.deleteVault()) && !(await db.vault.exists())) { useAppStore.getState().setIsVaultCreated(false); await useAppStore.getState().refresh(); showToast("success", "Vault deleted."); diff --git a/apps/web/src/hooks/use-is-user-premium.ts b/apps/web/src/hooks/use-is-user-premium.ts index 3f0acac11..c73091664 100644 --- a/apps/web/src/hooks/use-is-user-premium.ts +++ b/apps/web/src/hooks/use-is-user-premium.ts @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +import { User } from "@notesnook/core/dist/api/user-manager"; import { SUBSCRIPTION_STATUS } from "../common/constants"; import { useStore as useUserStore, @@ -31,8 +32,9 @@ export function useIsUserPremium() { export function isUserPremium(user?: User) { if (IS_TESTING) return true; if (!user) user = userstore.get().user; + if (!user) return false; - const subStatus = user?.subscription?.type; + const subStatus = user.subscription.type; return ( subStatus === SUBSCRIPTION_STATUS.BETA || subStatus === SUBSCRIPTION_STATUS.PREMIUM || @@ -43,8 +45,9 @@ export function isUserPremium(user?: User) { export function isUserSubscribed(user?: User) { if (!user) user = userstore.get().user; + if (!user) return false; - const subStatus = user?.subscription?.type; + const subStatus = user.subscription?.type; return ( subStatus === SUBSCRIPTION_STATUS.PREMIUM || subStatus === SUBSCRIPTION_STATUS.PREMIUM_CANCELED diff --git a/apps/web/src/interfaces/fs.ts b/apps/web/src/interfaces/fs.ts index dfd21ea59..bdbdc4f4f 100644 --- a/apps/web/src/interfaces/fs.ts +++ b/apps/web/src/interfaces/fs.ts @@ -43,6 +43,12 @@ import { OriginPrivateFileSystem } from "./file-store"; import { isFeatureSupported } from "../utils/feature-check"; +import { + FileEncryptionMetadataWithOutputType, + IFileStorage, + Output, + RequestOptions +} from "@notesnook/core/dist/interfaces"; const ABYTES = 17; const CHUNK_SIZE = 512 * 1024; @@ -59,7 +65,7 @@ const streamablefs = new StreamableFS( : new IndexedDBFileStore("streamable-fs") ); -async function writeEncryptedFile( +export async function writeEncryptedFile( file: File, key: SerializedKey, hash: string @@ -124,18 +130,16 @@ async function writeEncryptedFile( * 3. We encrypt the Uint8Array * 4. We save the encrypted Uint8Array */ -async function writeEncryptedBase64(metadata: { - data: string; - key: SerializedKey; - mimeType?: string; -}) { - const { data, key, mimeType } = metadata; - +async function writeEncryptedBase64( + data: string, + key: SerializedKey, + mimeType: string +) { const bytes = new Uint8Array(Buffer.from(data, "base64")); const { hash, type: hashType } = await hashBuffer(bytes); - const attachment = db.attachments?.attachment(hash); + const attachment = db.attachments.attachment(hash); const file = new File([bytes.buffer], hash, { type: attachment?.metadata.type || mimeType || "application/octet-stream" @@ -153,14 +157,16 @@ function hashBase64(data: string) { return hashBuffer(Buffer.from(data, "base64")); } -async function hashBuffer(data: IDataType) { +export async function hashBuffer(data: IDataType) { return { hash: await xxhash64(data), type: "xxh64" }; } -async function hashStream(reader: ReadableStreamDefaultReader) { +export async function hashStream( + reader: ReadableStreamDefaultReader +) { const hasher = await createXXHash64(); hasher.init(); @@ -174,47 +180,46 @@ async function hashStream(reader: ReadableStreamDefaultReader) { return { type: "xxh64", hash: hasher.digest("hex") }; } -async function readEncrypted( +async function readEncrypted( filename: string, key: SerializedKey, - cipherData: Cipher & { outputType: DataFormat } + cipherData: FileEncryptionMetadataWithOutputType ) { const fileHandle = await streamablefs.readFile(filename); if (!fileHandle) { console.error(`File not found. (File hash: ${filename})`); - return null; + return; } const decryptionStream = await NNCrypto.createDecryptionStream( key, cipherData.iv ); - return cipherData.outputType === "base64" || cipherData.outputType === "text" - ? ( - await consumeReadableStream( - fileHandle.readable - .pipeThrough(decryptionStream) - .pipeThrough( - cipherData.outputType === "text" - ? new globalThis.TextDecoderStream() - : new Base64DecoderStream() - ) - ) - ).join("") - : new Uint8Array( - Buffer.concat( + return ( + cipherData.outputType === "base64" || cipherData.outputType === "text" + ? ( await consumeReadableStream( - fileHandle.readable.pipeThrough(decryptionStream) + fileHandle.readable + .pipeThrough(decryptionStream) + .pipeThrough( + cipherData.outputType === "text" + ? new globalThis.TextDecoderStream() + : new Base64DecoderStream() + ) + ) + ).join("") + : new Uint8Array( + Buffer.concat( + await consumeReadableStream( + fileHandle.readable.pipeThrough(decryptionStream) + ) ) ) - ); + ) as Output; } -type RequestOptions = { - headers: Record; +type RequestOptionsWithSignal = RequestOptions & { signal: AbortSignal; - url: string; - chunkSize: number; }; type UploadAdditionalData = { @@ -224,7 +229,10 @@ type UploadAdditionalData = { uploadedChunks?: { PartNumber: number; ETag: string }[]; }; -async function uploadFile(filename: string, requestOptions: RequestOptions) { +async function uploadFile( + filename: string, + requestOptions: RequestOptionsWithSignal +) { const fileHandle = await streamablefs.readFile(filename); if (!fileHandle || !(await exists(filename))) throw new Error( @@ -275,7 +283,7 @@ async function uploadFile(filename: string, requestOptions: RequestOptions) { async function singlePartUploadFile( fileHandle: FileHandle, filename: string, - requestOptions: RequestOptions + requestOptions: RequestOptionsWithSignal ) { console.log("Streaming file upload!"); const { url, headers, signal } = requestOptions; @@ -315,7 +323,7 @@ async function singlePartUploadFile( async function multiPartUploadFile( fileHandle: FileHandle, filename: string, - requestOptions: RequestOptions + requestOptions: RequestOptionsWithSignal ) { const { headers, signal } = requestOptions; @@ -445,7 +453,10 @@ function reportProgress( }); } -async function downloadFile(filename: string, requestOptions: RequestOptions) { +async function downloadFile( + filename: string, + requestOptions: RequestOptionsWithSignal +) { try { const { url, headers, chunkSize, signal } = requestOptions; const handle = await streamablefs.readFile(filename); @@ -487,13 +498,13 @@ async function downloadFile(filename: string, requestOptions: RequestOptions) { ); if (contentLength === 0 || isNaN(contentLength)) { const error = `File length is 0. Please upload this file again from the attachment manager. (File hash: ${filename})`; - await db.attachments?.markAsFailed(filename, error); + await db.attachments.markAsFailed(filename, error); throw new Error(error); } if (!response.body) { const error = `The download response does not contain a body. Please upload this file again from the attachment manager. (File hash: ${filename})`; - await db.attachments?.markAsFailed(filename, error); + await db.attachments.markAsFailed(filename, error); throw new Error(error); } @@ -501,7 +512,7 @@ async function downloadFile(filename: string, requestOptions: RequestOptions) { const decryptedLength = contentLength - totalChunks * ABYTES; if (attachment && attachment.length !== decryptedLength) { const error = `File length mismatch. Please upload this file again from the attachment manager. (File hash: ${filename})`; - await db.attachments?.markAsFailed(filename, error); + await db.attachments.markAsFailed(filename, error); throw new Error(error); } @@ -570,7 +581,7 @@ export async function decryptFile( return await toBlob(fileHandle.readable.pipeThrough(decryptionStream)); } -async function saveFile(filename: string, fileMetadata: FileMetadata) { +export async function saveFile(filename: string, fileMetadata: FileMetadata) { const { name, type, isUploaded } = fileMetadata; const decrypted = await decryptFile(filename, fileMetadata); @@ -580,7 +591,10 @@ async function saveFile(filename: string, fileMetadata: FileMetadata) { await streamablefs.deleteFile(filename); } -async function deleteFile(filename: string, requestOptions: RequestOptions) { +async function deleteFile( + filename: string, + requestOptions: RequestOptionsWithSignal +) { if (!requestOptions) return await streamablefs.deleteFile(filename); if (!requestOptions && !(await streamablefs.exists(filename))) return true; @@ -599,10 +613,10 @@ async function deleteFile(filename: string, requestOptions: RequestOptions) { } } -async function getUploadedFileSize(filename: string) { +export async function getUploadedFileSize(filename: string) { try { const url = `${hosts.API_HOST}/s3?name=${filename}`; - const token = await db.user?.tokenManager.getAccessToken(); + const token = await db.tokenManager.getAccessToken(); const attachmentInfo = await axios.head(url, { headers: { Authorization: `Bearer ${token}` } @@ -620,24 +634,16 @@ function clearFileStorage() { return streamablefs.clear(); } -const FS = { +export const FileStorage: IFileStorage = { writeEncryptedBase64, readEncrypted, uploadFile: cancellable(uploadFile), downloadFile: cancellable(downloadFile), deleteFile, - saveFile, exists, - writeEncryptedFile, clearFileStorage, - getUploadedFileSize, - decryptFile, - - hashBase64, - hashBuffer, - hashStream + hashBase64 }; -export default FS; function isAttachmentDeletable(type: string) { return !type.startsWith("image/") && !type.startsWith("application/pdf"); @@ -647,15 +653,21 @@ function isSuccessStatusCode(statusCode: number) { return statusCode >= 200 && statusCode <= 299; } -function cancellable( - operation: (filename: string, requestOptions: RequestOptions) => any +function cancellable( + operation: ( + filename: string, + requestOptions: RequestOptionsWithSignal + ) => Promise ) { return function (filename: string, requestOptions: RequestOptions) { const abortController = new AbortController(); - requestOptions.signal = abortController.signal; return { - execute: () => operation(filename, requestOptions), - cancel: (message: string) => { + execute: () => + operation(filename, { + ...requestOptions, + signal: abortController.signal + }), + cancel: async (message: string) => { abortController.abort(message); } }; diff --git a/apps/web/src/interfaces/storage.ts b/apps/web/src/interfaces/storage.ts index a9746d171..9a9b2bf3c 100644 --- a/apps/web/src/interfaces/storage.ts +++ b/apps/web/src/interfaces/storage.ts @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +import { IStorage } from "@notesnook/core/dist/interfaces"; import { IndexedDBKVStore, LocalStorageKVStore, @@ -31,7 +32,7 @@ export type DatabasePersistence = "memory" | "db"; const APP_SALT = "oVzKtazBo7d8sb7TBvY9jw"; -export class NNStorage { +export class NNStorage implements IStorage { database!: IKVStore; static async createInstance( @@ -53,8 +54,8 @@ export class NNStorage { return this.database.get(key); } - readMulti(keys: string[]) { - if (keys.length <= 0) return []; + readMulti(keys: string[]): Promise<[string, T][]> { + if (keys.length <= 0) return Promise.resolve([]); return this.database.getMany(keys.sort()); } diff --git a/apps/web/src/navigation/routes.tsx b/apps/web/src/navigation/routes.tsx index d7ebf72b2..c99e1475b 100644 --- a/apps/web/src/navigation/routes.tsx +++ b/apps/web/src/navigation/routes.tsx @@ -74,7 +74,7 @@ const routes = defineRoutes({ } }), "/notebooks/:notebookId": ({ notebookId }) => { - const notebook = db.notebooks?.notebook(notebookId); + const notebook = db.notebooks.notebook(notebookId); if (!notebook) return false; nbstore.setSelectedNotebook(notebookId); notestore.setContext({ @@ -99,7 +99,7 @@ const routes = defineRoutes({ }); }, "/notebooks/:notebookId/:topicId": ({ notebookId, topicId }) => { - const notebook = db.notebooks?.notebook(notebookId); + const notebook = db.notebooks.notebook(notebookId); const topic = notebook?.topics?.topic(topicId)?._topic; if (!topic) return false; nbstore.setSelectedNotebook(notebookId); @@ -178,11 +178,10 @@ const routes = defineRoutes({ } }), "/tags/:tagId": ({ tagId }) => { - const tag = db.tags?.tag(tagId); + const tag = db.tags.tag(tagId); if (!tag) return false; - const { id } = tag; + const { id, title } = tag; notestore.setContext({ type: "tag", value: id }); - const title = db.tags?.alias(id); return defineRoute({ key: "notes", type: "notes", @@ -201,13 +200,12 @@ const routes = defineRoutes({ }); }, "/colors/:colorId": ({ colorId }) => { - const color = db.colors?.tag(colorId); + const color = db.colors.color(colorId); if (!color) { navigate("/"); return false; } - const { id } = color; - const title = db.colors?.alias(id); + const { id, title } = color; notestore.setContext({ type: "color", value: id }); return defineRoute({ key: "notes", diff --git a/apps/web/src/stores/announcement-store.js b/apps/web/src/stores/announcement-store.js index d0aa8999b..791d96e48 100644 --- a/apps/web/src/stores/announcement-store.js +++ b/apps/web/src/stores/announcement-store.js @@ -95,7 +95,7 @@ async function shouldShowAnnouncement(announcement) { if (!show) return false; const user = await db.user.getUser(); - const subStatus = user?.subscription?.type; + const subStatus = user.subscription?.type; show = announcement.userTypes.some((userType) => { switch (userType) { case "pro": diff --git a/apps/web/src/stores/editor-store.js b/apps/web/src/stores/editor-store.js index d8485cb97..a36638e43 100644 --- a/apps/web/src/stores/editor-store.js +++ b/apps/web/src/stores/editor-store.js @@ -63,9 +63,9 @@ export const getDefaultSession = (sessionId = Date.now()) => { localOnly: false, favorite: false, locked: false, - tags: [], + // tags: [], context: undefined, - color: undefined, + // color: undefined, dateEdited: 0, attachmentsLength: 0, isDeleted: false, @@ -82,6 +82,8 @@ export const getDefaultSession = (sessionId = Date.now()) => { */ class EditorStore extends BaseStore { session = getDefaultSession(); + tags = []; + color = undefined; arePropertiesVisible = false; editorMargins = Config.get("editor:margins", true); @@ -98,7 +100,14 @@ class EditorStore extends BaseStore { refreshTags = () => { this.set((state) => { - state.session.tags = state.session.tags.slice(); + if (!state.session.id) return; + console.log( + db.relations.to({ id: state.session.id, type: "note" }, "tag") + ); + state.tags = db.relations.to( + { id: state.session.id, type: "note" }, + "tag" + ); }); }; @@ -110,7 +119,6 @@ class EditorStore extends BaseStore { updateSession = async (item) => { this.set((state) => { state.session.title = item.title; - state.session.tags = item.tags; state.session.pinned = item.pinned; state.session.favorite = item.favorite; state.session.readonly = item.readonly; @@ -118,6 +126,7 @@ class EditorStore extends BaseStore { state.session.dateCreated = item.dateCreated; state.session.locked = item.locked; }); + this.refreshTags(); }; openLockedSession = async (note) => { @@ -137,7 +146,7 @@ class EditorStore extends BaseStore { openSession = async (noteId, force) => { const session = this.get().session; - if (session.id) await db.fs.cancel(session.id); + if (session.id) await db.fs().cancel(session.id); if (session.id === noteId && !force) return; if (session.state === SESSION_STATES.unlocked) { @@ -213,8 +222,8 @@ class EditorStore extends BaseStore { const { type, value } = currentSession.context; if (type === "topic" || type === "notebook") await db.notes.addToNotebook(value, id); - else if (type === "color") await db.notes.note(id).color(value); - else if (type === "tag") await db.notes.note(id).tag(value); + else if (type === "color" || type === "tag") + await db.relations.add({ type, id: value }, { id, type: "note" }); // update the note. note = db.notes.note(id)?.data; } else if (!sessionId && db.settings.getDefaultNotebook()) { @@ -265,7 +274,7 @@ class EditorStore extends BaseStore { newSession = async (nonce) => { let context = noteStore.get().context; const session = this.get().session; - if (session.id) await db.fs.cancel(session.id); + if (session.id) await db.fs().cancel(session.id); this.set((state) => { state.session = { @@ -282,7 +291,7 @@ class EditorStore extends BaseStore { clearSession = async (shouldNavigate = true) => { const session = this.get().session; - if (session.id) await db.fs.cancel(session.id); + if (session.id) await db.fs().cancel(session.id); this.set((state) => { state.session = { @@ -359,26 +368,24 @@ class EditorStore extends BaseStore { }; async _setTag(value) { - value = db.tags.sanitize(value); - if (!value) return; - const { tags, id } = this.get().session; + const { + tags, + session: { id } + } = this.get(); let note = db.notes.note(id); if (!note) return; - let index = tags.indexOf(value); - - if (index > -1) { - await note.untag(value); + let tag = tags.find((t) => t.title === value); + if (tag) { + await db.relations.unlink(tag, note._note); appStore.refreshNavItems(); } else { - await note.tag(value); + const id = await db.tags.add({ title: value }); + await db.relations.add({ id, type: "tag" }, note._note); } - this.set((state) => { - state.session.tags = db.notes.note(id).tags.slice(); - }); - + this.refreshTags(); tagStore.refresh(); noteStore.refresh(); } diff --git a/apps/web/src/stores/note-store.js b/apps/web/src/stores/note-store.js index 5ea0a3a83..51e57c28b 100644 --- a/apps/web/src/stores/note-store.js +++ b/apps/web/src/stores/note-store.js @@ -154,10 +154,17 @@ class NoteStore extends BaseStore { try { let note = db.notes.note(id); if (!note) return; - if (note.data.color === color) await db.notes.note(id).uncolor(); - else await db.notes.note(id).color(color); + const colorId = + db.tags.find(color)?.id || (await db.colors.add({ title: color })); + const isColored = + db.relations.from({ type: "color", id: colorId }, "note").length > 0; + + if (isColored) + await db.relations.unlink({ type: "color", id: colorId }, note._note); + else await db.relations.add({ type: "color", id: colorId }, note._note); + appStore.refreshNavItems(); - this._syncEditor(note.id, "color", db.notes.note(id).data.color); + this._syncEditor(note.id, "color", color); this.refreshItem(id); } catch (e) { console.error(e); @@ -191,15 +198,15 @@ function notesFromContext(context) { let notes = []; switch (context.type) { case "tag": - notes = db.notes.tagged(context.value); - break; case "color": - notes = db.notes.colored(context.value); + notes = db.relations + .from({ type: context.type, id: context.value }, "note") + .resolved(); break; case "notebook": { const notebook = db.notebooks.notebook(context?.value?.id); if (!notebook) break; - notes = db.relations.from(notebook.data, "note"); + notes = db.relations.from(notebook.data, "note").resolved(); break; } case "topic": { diff --git a/apps/web/src/stores/notebook-store.js b/apps/web/src/stores/notebook-store.js index 43f68b957..d152c1131 100644 --- a/apps/web/src/stores/notebook-store.js +++ b/apps/web/src/stores/notebook-store.js @@ -67,7 +67,7 @@ class NotebookStore extends BaseStore { setSelectedNotebook = (id) => { if (!id) return; - const notebook = db.notebooks?.notebook(id)?.data; + const notebook = db.notebooks.notebook(id)?.data; if (!notebook) return; this.set((state) => { diff --git a/apps/web/src/stores/tag-store.js b/apps/web/src/stores/tag-store.ts similarity index 87% rename from apps/web/src/stores/tag-store.js rename to apps/web/src/stores/tag-store.ts index 6b7d755e4..4757eee2e 100644 --- a/apps/web/src/stores/tag-store.js +++ b/apps/web/src/stores/tag-store.ts @@ -21,18 +21,16 @@ import createStore from "../common/store"; import { db } from "../common/db"; import BaseStore from "./index"; import { groupArray } from "@notesnook/core/dist/utils/grouping"; +import { GroupedItems, Tag } from "@notesnook/core/dist/types"; -/** - * @extends {BaseStore} - */ -class TagStore extends BaseStore { - tags = []; +class TagStore extends BaseStore { + tags: GroupedItems = []; refresh = () => { this.set( (state) => (state.tags = groupArray( - db.tags.all, + db.tags.all || [], db.settings.getGroupOptions("tags") )) ); diff --git a/apps/web/src/stores/user-store.js b/apps/web/src/stores/user-store.js index 68b3682ae..f2fad6128 100644 --- a/apps/web/src/stores/user-store.js +++ b/apps/web/src/stores/user-store.js @@ -40,7 +40,7 @@ class UserStore extends BaseStore { isLoggingIn = false; isSigningIn = false; /** - * @type {User | undefined} + * @type {import("@notesnook/core/dist/api/user-manager").User | undefined} */ user = undefined; counter = 0; diff --git a/apps/web/src/utils/compressor.ts b/apps/web/src/utils/compressor.ts index 6ac3b8629..e55485138 100644 --- a/apps/web/src/utils/compressor.ts +++ b/apps/web/src/utils/compressor.ts @@ -22,8 +22,9 @@ import type { Compressor as CompressorWorkerType } from "./compressor.worker"; import { wrap, Remote } from "comlink"; import { desktop } from "../common/desktop-bridge"; +import { ICompressor } from "@notesnook/core/dist/interfaces"; -export class Compressor { +export class Compressor implements ICompressor { private worker!: globalThis.Worker; private compressor!: Remote; @@ -35,14 +36,15 @@ export class Compressor { } async compress(data: string) { - if (IS_DESKTOP_APP) - return await desktop?.compress.gzip.query({ data, level: 6 }); + if (IS_DESKTOP_APP && desktop) + return await desktop.compress.gzip.query({ data, level: 6 }); return await this.compressor.gzip({ data, level: 6 }); } async decompress(data: string) { - if (IS_DESKTOP_APP) return await desktop?.compress.gunzip.query(data); + if (IS_DESKTOP_APP && desktop) + return await desktop.compress.gunzip.query(data); return await this.compressor.gunzip({ data }); } diff --git a/apps/web/src/utils/importer.ts b/apps/web/src/utils/importer.ts index ec0f1e0e2..f3fcf9c5d 100644 --- a/apps/web/src/utils/importer.ts +++ b/apps/web/src/utils/importer.ts @@ -72,10 +72,10 @@ async function processAttachment( const name = path.basename(entry.name); if (!name || attachments[name] || db.attachments?.exists(name)) return; - const { default: FS } = await import("../interfaces/fs"); + const { hashBuffer, writeEncryptedFile } = await import("../interfaces/fs"); const data = await entry.arrayBuffer(); - const { hash } = await FS.hashBuffer(new Uint8Array(data)); + const { hash } = await hashBuffer(new Uint8Array(data)); if (hash !== name) { throw new Error(`integrity check failed: ${name} !== ${hash}`); } @@ -84,7 +84,7 @@ async function processAttachment( type: "application/octet-stream" }); const key = await db.attachments?.generateKey(); - const cipherData = await FS.writeEncryptedFile(file, key, name); + const cipherData = await writeEncryptedFile(file, key, name); attachments[name] = { ...cipherData, key }; } @@ -114,12 +114,17 @@ async function processNote(entry: ZipEntry, attachments: Record) { const notebooks = note.notebooks?.slice() || []; note.notebooks = []; - const noteId = await db.notes?.add(note); + const noteId = await db.notes.add({ + ...note, + content: { type: "tiptap", data: note.content?.data }, + notebooks: [] + }); + if (!noteId) return; for (const nb of notebooks) { const notebook = await importNotebook(nb).catch(() => ({ id: undefined })); if (!notebook.id) continue; - await db.notes?.addToNotebook( + await db.notes.addToNotebook( { id: notebook.id, topic: notebook.topic }, noteId ); @@ -136,11 +141,10 @@ async function importNotebook( ): Promise<{ id?: string; topic?: string }> { if (!notebook) return {}; - let nb = db.notebooks?.all.find((nb) => nb.title === notebook.notebook); + let nb = db.notebooks.all.find((nb) => nb.title === notebook.notebook); if (!nb) { - const nbId = await db.notebooks?.add({ - title: notebook.notebook, - topics: notebook.topic ? [notebook.topic] : [] + const nbId = await db.notebooks.add({ + title: notebook.notebook }); nb = db.notebooks?.notebook(nbId)?.data; if (!nb) return {}; diff --git a/apps/web/src/utils/logger.ts b/apps/web/src/utils/logger.ts index 13babcc34..9d4fd3671 100644 --- a/apps/web/src/utils/logger.ts +++ b/apps/web/src/utils/logger.ts @@ -18,7 +18,7 @@ along with this program. If not, see . */ import { - initalize, + initialize, logger as _logger, logManager } from "@notesnook/core/dist/logger"; @@ -29,8 +29,8 @@ import { createWriteStream } from "./stream-saver"; import { sanitizeFilename } from "@notesnook/common"; let logger: typeof _logger; -async function initalizeLogger(persistence: DatabasePersistence = "db") { - initalize(await NNStorage.createInstance("Logs", persistence), false); +async function initializeLogger(persistence: DatabasePersistence = "db") { + initialize(await NNStorage.createInstance("Logs", persistence), false); logger = _logger.scope("notesnook-web"); } @@ -66,4 +66,4 @@ async function clearLogs() { await logManager.clear(); } -export { initalizeLogger, logger, downloadLogs, clearLogs }; +export { initializeLogger, logger, downloadLogs, clearLogs }; diff --git a/apps/web/src/utils/streams/attachment-stream.ts b/apps/web/src/utils/streams/attachment-stream.ts index 8e03dff29..81a48a16c 100644 --- a/apps/web/src/utils/streams/attachment-stream.ts +++ b/apps/web/src/utils/streams/attachment-stream.ts @@ -34,7 +34,7 @@ export class AttachmentStream extends ReadableStream { const counters: Record = {}; if (signal) signal.onabort = async () => { - await db.fs?.cancel(GROUP_ID, "download"); + await db.fs().cancel(GROUP_ID, "download"); }; super({ @@ -49,14 +49,18 @@ export class AttachmentStream extends ReadableStream { onProgress && onProgress(index); const attachment = attachments[index++]; - await db.fs?.downloadFile( - GROUP_ID, - attachment.metadata.hash, - attachment.chunkSize, - attachment.metadata - ); + await db + .fs() + .downloadFile( + GROUP_ID, + attachment.metadata.hash, + attachment.chunkSize, + attachment.metadata + ); + + const key = await db.attachments.decryptKey(attachment.key); + if (!key) return; - const key = await db.attachments?.decryptKey(attachment.key); const file = await lazify( import("../../interfaces/fs"), ({ decryptFile }) => diff --git a/apps/web/src/utils/streams/export-stream.ts b/apps/web/src/utils/streams/export-stream.ts index 78fed97f8..6df872d71 100644 --- a/apps/web/src/utils/streams/export-stream.ts +++ b/apps/web/src/utils/streams/export-stream.ts @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -import Note from "@notesnook/core/dist/models/note"; +import { Note } from "@notesnook/core/dist/types"; import { db } from "../../common/db"; import { exportNote } from "../../common/export"; import { makeUniqueFilename } from "./utils"; @@ -47,7 +47,9 @@ export class ExportStream extends TransformStream { const notebooks = [ ...( - db.relations?.to({ id: note.id, type: "note" }, "notebook") || [] + db.relations + ?.to({ id: note.id, type: "note" }, "notebook") + .resolved() || [] ).map((n) => ({ title: n.title, topics: [] })), ...(note.notebooks || []).map( (ref: { id: string; topics: string[] }) => { @@ -83,8 +85,8 @@ export class ExportStream extends TransformStream { controller.enqueue({ path: makeUniqueFilename(filePath, counters), data: content, - mtime: new Date(note.data.dateEdited), - ctime: new Date(note.data.dateCreated) + mtime: new Date(note.dateEdited), + ctime: new Date(note.dateCreated) }); }); } catch (e) { diff --git a/apps/web/src/utils/web-extension-server.ts b/apps/web/src/utils/web-extension-server.ts index aad0c56d6..ca69a5bb6 100644 --- a/apps/web/src/utils/web-extension-server.ts +++ b/apps/web/src/utils/web-extension-server.ts @@ -31,24 +31,25 @@ import { sanitizeFilename } from "@notesnook/common"; import { attachFile } from "../components/editor/picker"; import { getFormattedDate } from "@notesnook/common"; import { useStore as useThemeStore } from "../stores/theme-store"; +import { isCipher } from "@notesnook/core/dist/database/crypto"; export class WebExtensionServer implements Server { async login() { const { colorScheme, darkTheme, lightTheme } = useThemeStore.getState(); - const user = await db.user?.getUser(); + const user = await db.user.getUser(); const theme = colorScheme === "dark" ? darkTheme : lightTheme; if (!user) return { pro: false, theme }; return { email: user.email, pro: isUserPremium(user), theme }; } async getNotes(): Promise { - return db.notes?.all + return db.notes.all .filter((n) => !n.locked) .map((note) => ({ id: note.id, title: note.title })); } async getNotebooks(): Promise { - return db.notebooks?.all.map((nb) => ({ + return db.notebooks.all.map((nb) => ({ id: nb.id, title: nb.title, topics: nb.topics.map((topic: ItemReference) => ({ @@ -59,7 +60,7 @@ export class WebExtensionServer implements Server { } async getTags(): Promise { - return db.tags?.all.map((tag) => ({ + return db.tags.all.map((tag) => ({ id: tag.id, title: tag.title })); @@ -93,9 +94,11 @@ export class WebExtensionServer implements Server { }).outerHTML; } - const note = clip.note?.id ? db.notes?.note(clip.note?.id) : null; + const note = clip.note?.id ? db.notes.note(clip.note?.id) : null; let content = (await note?.content()) || ""; + if (isCipher(content)) return; + content += clipContent; content += h("div", [ h("hr"), @@ -103,21 +106,30 @@ export class WebExtensionServer implements Server { h("p", [`Date clipped: ${getFormattedDate(Date.now())}`]) ]).innerHTML; - const id = await db.notes?.add({ + const id = await db.notes.add({ id: note?.id, title: note ? note.title : clip.title, - content: { type: "tiptap", data: content }, - tags: note ? note.tags : clip.tags + content: { type: "tiptap", data: content } }); + if (id && clip.tags) { + for (const title of clip.tags) { + const tagId = db.tags.tag(title)?.id || (await db.tags.add({ title })); + await db.relations.add( + { id: tagId, type: "tag" }, + { id, type: "note" } + ); + } + } + if (clip.refs && id && !clip.note) { for (const ref of clip.refs) { switch (ref.type) { case "notebook": - await db.notes?.addToNotebook({ id: ref.id }, id); + await db.notes.addToNotebook({ id: ref.id }, id); break; case "topic": - await db.notes?.addToNotebook( + await db.notes.addToNotebook( { id: ref.parentId, topic: ref.id }, id ); diff --git a/apps/web/src/views/all-notes.tsx b/apps/web/src/views/all-notes.tsx index d6c1ba644..39ed56705 100644 --- a/apps/web/src/views/all-notes.tsx +++ b/apps/web/src/views/all-notes.tsx @@ -48,8 +48,7 @@ function Home() { return ( { if (!isAppLoaded) return; - db.user?.getUser().then((user) => { + db.user.getUser().then((user) => { if (user && authorizedRoutes.includes(route) && !isSessionExpired()) return openURL("/"); setIsReady(true); @@ -406,7 +405,7 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { useEffect(() => { (async () => { - const user = await db.user?.getUser(); + const user = await db.user.getUser(); if (user && isSessionExpired()) { setUser(user); } else if (!user) { @@ -485,7 +484,7 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { if (await showLogoutConfirmation()) { await showLoadingDialog({ title: "You are being logged out", - action: () => db.user?.logout(true), + action: () => db.user.logout(true), subtitle: "Please wait..." }); openURL("/login"); @@ -522,7 +521,7 @@ function AccountRecovery(props: BaseAuthComponentProps<"recover">) { return; } - const url = await db.user?.recoverAccount(form.email.toLowerCase()); + const url = await db.user.recoverAccount(form.email.toLowerCase()); console.log(url); if (IS_TESTING) { window.open(url, "_self"); @@ -606,7 +605,7 @@ function MFACode(props: BaseAuthComponentProps<"mfa:code">) { async (selectedMethod: "sms" | "email") => { setIsSending(true); try { - await db.mfa?.sendCode(selectedMethod); + await db.mfa.sendCode(selectedMethod); setEnabled(false); } catch (e) { const error = e as Error; diff --git a/apps/web/src/views/notebooks.tsx b/apps/web/src/views/notebooks.tsx index cec67b199..e48fce97e 100644 --- a/apps/web/src/views/notebooks.tsx +++ b/apps/web/src/views/notebooks.tsx @@ -31,8 +31,7 @@ function Notebooks() { return ( <> } diff --git a/apps/web/src/views/notes.tsx b/apps/web/src/views/notes.tsx index 59965b614..290001062 100644 --- a/apps/web/src/views/notes.tsx +++ b/apps/web/src/views/notes.tsx @@ -32,7 +32,11 @@ function Notes() { const isCompact = useNotesStore((store) => store.viewMode === "compact"); useEffect(() => { - if (context?.type === "color" && context?.notes?.length <= 0) { + if ( + context?.type === "color" && + context.notes && + context.notes.length <= 0 + ) { navigate("/", true); } }, [context]); @@ -40,12 +44,15 @@ function Notes() { if (!context) return null; return ( ; @@ -131,14 +132,14 @@ function useAuthenticateUser({ try { await db.init(); - const accessToken = await db.user?.tokenManager.getAccessToken(); + const accessToken = await db.tokenManager.getAccessToken(); if (!accessToken) { - await db.user?.tokenManager.getAccessTokenFromAuthorizationCode( + await db.tokenManager.getAccessTokenFromAuthorizationCode( userId, code.replace(/ /gm, "+") ); } - const user = await db.user?.fetchUser(); + const user = await db.user.fetchUser(); setUser(user); } catch (e) { showToast("error", "Failed to authenticate. Please try again."); @@ -355,9 +356,9 @@ function RecoveryKeyMethod(props: BaseRecoveryComponentProps<"method:key">) { onSubmit={async (form) => { setProgress(0); - const user = await db.user?.getUser(); + const user = await db.user.getUser(); if (!user) throw new Error("User not authenticated"); - await db.storage?.write(`_uk_@${user.email}@_k`, form.recoveryKey); + await db.storage().write(`_uk_@${user.email}@_k`, form.recoveryKey); await db.sync({ type: "fetch", force: true }); navigate("backup"); }} @@ -499,10 +500,10 @@ function NewPassword(props: BaseRecoveryComponentProps<"new">) { if (form.password !== form.confirmPassword) throw new Error("Passwords do not match."); - if (formData?.userResetRequired && !(await db.user?.resetUser())) + if (formData?.userResetRequired && !(await db.user.resetUser())) throw new Error("Failed to reset user."); - if (!(await db.user?.resetPassword(form.password))) + if (!(await db.user.resetPassword(form.password))) throw new Error("Could not reset account password."); if (formData?.backupFile) { @@ -543,8 +544,8 @@ function Final(_props: BaseRecoveryComponentProps<"final">) { async function finalize() { await showRecoveryKeyDialog(); if (!isSessionExpired()) { - await db.user?.logout(true, "Password changed."); - await db.user?.clearSessions(true); + await db.user.logout(true, "Password changed."); + await db.user.clearSessions(true); } setIsReady(true); } diff --git a/apps/web/src/views/reminders.tsx b/apps/web/src/views/reminders.tsx index 0adcc7325..1601baac2 100644 --- a/apps/web/src/views/reminders.tsx +++ b/apps/web/src/views/reminders.tsx @@ -31,8 +31,7 @@ function Reminders() { return ( <> } diff --git a/apps/web/src/views/search.jsx b/apps/web/src/views/search.jsx index 7aac093eb..6c8daca9a 100644 --- a/apps/web/src/views/search.jsx +++ b/apps/web/src/views/search.jsx @@ -133,7 +133,7 @@ function Search({ type }) { case "monographs": return "all monographs"; case "color": { - const color = db.colors.all.find((tag) => tag.id === context.value); + const color = db.colors.find(context.value); return `notes in color ${color.title}`; } default: @@ -197,7 +197,7 @@ function Search({ type }) { ) : ( ( store.refresh); return ( } diff --git a/apps/web/src/views/topics.jsx b/apps/web/src/views/topics.jsx index 61330a1b0..3b6849fa7 100644 --- a/apps/web/src/views/topics.jsx +++ b/apps/web/src/views/topics.jsx @@ -137,8 +137,7 @@ function Notebook() { } items={items}