From e76f47ebb42dd8798fd9045b2ff6c3b162ab7ef8 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 22 Apr 2025 17:21:51 +0300 Subject: [PATCH] chore(nx/server): switch to module --- .../turndown-plugin-gfm/dist/index.d.ts | 2 + .../turndown-plugin-gfm/dist/index.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts | 7 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts.map | 1 + .../dist/lib/highlighted-code-block.d.ts | 2 + .../dist/lib/highlighted-code-block.d.ts.map | 1 + .../dist/lib/strikethrough.d.ts | 2 + .../dist/lib/strikethrough.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/tables.d.ts | 2 + .../dist/lib/tables.d.ts.map | 1 + .../dist/lib/task-list-items.d.ts | 2 + .../dist/lib/task-list-items.d.ts.map | 1 + .../dist/tsconfig.lib.tsbuildinfo | 1 + .../packages/commons/dist/index.js | 3 + .../packages/commons/dist/index.js.map | 1 + .../commons/dist/lib/hidden_subtree.js | 12 + .../commons/dist/lib/hidden_subtree.js.map | 1 + .../packages/commons/dist/lib/i18n.js | 3 + .../packages/commons/dist/lib/i18n.js.map | 1 + .../packages/commons/dist/lib/index.js | 8 + .../packages/commons/dist/lib/index.js.map | 1 + .../dist/lib/keyboard_actions_interface.js | 4 + .../lib/keyboard_actions_interface.js.map | 1 + .../commons/dist/lib/options_interface.js | 3 + .../commons/dist/lib/options_interface.js.map | 1 + .../packages/commons/dist/lib/rows.js | 27 + .../packages/commons/dist/lib/rows.js.map | 1 + .../packages/commons/dist/lib/test-utils.js | 55 + .../commons/dist/lib/test-utils.js.map | 1 + .../commons/dist/tsconfig.lib.tsbuildinfo | 1 + .nx/cache/run.json | 38 +- .../terminalOutputs/11282923462096060321 | 2 + .nx/cache/terminalOutputs/4392501429971405707 | 46 + .nx/cache/terminalOutputs/7031649633627448769 | 2 + .nx/workspace-data/d/daemon.log | 442 + .nx/workspace-data/d/server-process.json | 2 +- .../e18ca523839d47128dbab4548c9c1635.db-shm | Bin 0 -> 32768 bytes .../e18ca523839d47128dbab4548c9c1635.db-wal | Bin 0 -> 37112 bytes .../eslint-2654242865465226088.hash | 305 +- .nx/workspace-data/file-map.json | 11153 +++++++++++----- .nx/workspace-data/lockfile.hash | 2 +- .nx/workspace-data/nx_files.nxt | Bin 115300 -> 227036 bytes .nx/workspace-data/parsed-lock-file.json | 7472 ++++++++++- .nx/workspace-data/project-graph.json | 8099 ++++++++++- .nx/workspace-data/source-maps.json | 374 + .../tsc-2568428459166798129.hash | 2 +- .nx/workspace-data/tsconfig-files.hash | 2 +- .../vite-9347777721732807074.hash | 270 + .../webpack-5621830741124012108.hash | 266 + apps/server/tsconfig.app.json | 8 + apps/server/tsconfig.json | 6 + .../{webpack.config.js => webpack.config.cjs} | 0 tsconfig.json | 3 - 53 files changed, 24810 insertions(+), 3832 deletions(-) create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map create mode 100644 .nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/index.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/index.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/index.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/index.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js.map create mode 100644 .nx/cache/7031649633627448769/packages/commons/dist/tsconfig.lib.tsbuildinfo create mode 100644 .nx/cache/terminalOutputs/11282923462096060321 create mode 100644 .nx/cache/terminalOutputs/4392501429971405707 create mode 100644 .nx/cache/terminalOutputs/7031649633627448769 create mode 100644 .nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-shm create mode 100644 .nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-wal create mode 100644 .nx/workspace-data/webpack-5621830741124012108.hash rename apps/server/{webpack.config.js => webpack.config.cjs} (100%) diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts new file mode 100644 index 000000000..a7d874f74 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts @@ -0,0 +1,2 @@ +export * from "./lib/gfm.js"; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts.map new file mode 100644 index 000000000..6e08bd549 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts new file mode 100644 index 000000000..8b53613ef --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts @@ -0,0 +1,7 @@ +export function gfm(turndownService: any): void; +import highlightedCodeBlock from './highlighted-code-block.js'; +import strikethrough from './strikethrough.js'; +import tables from './tables.js'; +import taskListItems from './task-list-items.js'; +export { highlightedCodeBlock, strikethrough, tables, taskListItems }; +//# sourceMappingURL=gfm.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map new file mode 100644 index 000000000..1fb19dbd2 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"gfm.d.ts","sourceRoot":"","sources":["../../src/lib/gfm.js"],"names":[],"mappings":"AAKA,gDAOC;iCAZgC,6BAA6B;0BACpC,oBAAoB;mBAC3B,aAAa;0BACN,sBAAsB"} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts new file mode 100644 index 000000000..c8e1f01c7 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts @@ -0,0 +1,2 @@ +export default function highlightedCodeBlock(turndownService: any): void; +//# sourceMappingURL=highlighted-code-block.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map new file mode 100644 index 000000000..a79b63b02 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"highlighted-code-block.d.ts","sourceRoot":"","sources":["../../src/lib/highlighted-code-block.js"],"names":[],"mappings":"AAEA,yEAsBC"} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts new file mode 100644 index 000000000..de206608a --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts @@ -0,0 +1,2 @@ +export default function strikethrough(turndownService: any): void; +//# sourceMappingURL=strikethrough.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map new file mode 100644 index 000000000..c4ed2acc8 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../src/lib/strikethrough.js"],"names":[],"mappings":"AAAA,kEAOC"} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts new file mode 100644 index 000000000..7fcccb13c --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts @@ -0,0 +1,2 @@ +export default function tables(turndownService: any): void; +//# sourceMappingURL=tables.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map new file mode 100644 index 000000000..1e224931d --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"tables.d.ts","sourceRoot":"","sources":["../../src/lib/tables.js"],"names":[],"mappings":"AAoRA,2DASC"} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts new file mode 100644 index 000000000..ea37b5ecf --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts @@ -0,0 +1,2 @@ +export default function taskListItems(turndownService: any): void; +//# sourceMappingURL=task-list-items.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map new file mode 100644 index 000000000..2e27eeae4 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"task-list-items.d.ts","sourceRoot":"","sources":["../../src/lib/task-list-items.js"],"names":[],"mappings":"AAAA,kEASC"} \ No newline at end of file diff --git a/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo new file mode 100644 index 000000000..4e1f61b64 --- /dev/null +++ b/.nx/cache/11282923462096060321/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo @@ -0,0 +1 @@ +{"version":"5.7.3"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/index.js b/.nx/cache/7031649633627448769/packages/commons/dist/index.js new file mode 100644 index 000000000..c8e9044f5 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/index.js @@ -0,0 +1,3 @@ +export * from './lib/commons.js'; + +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/index.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/index.js.map new file mode 100644 index 000000000..45deb07fa --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from './lib/commons.js';\n"],"names":[],"rangeMappings":"","mappings":"AAAA,cAAc,mBAAmB"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js new file mode 100644 index 000000000..ea191a4c5 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js @@ -0,0 +1,12 @@ +var Command; +(function(Command) { + Command[Command["jumpToNote"] = 0] = "jumpToNote"; + Command[Command["searchNotes"] = 1] = "searchNotes"; + Command[Command["createNoteIntoInbox"] = 2] = "createNoteIntoInbox"; + Command[Command["showRecentChanges"] = 3] = "showRecentChanges"; + Command[Command["showOptions"] = 4] = "showOptions"; + Command[Command["createAiChat"] = 5] = "createAiChat"; +})(Command || (Command = {})); +export { }; + +//# sourceMappingURL=hidden_subtree.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js.map new file mode 100644 index 000000000..5fe8660e5 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/hidden_subtree.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/hidden_subtree.ts"],"sourcesContent":["import { AttributeType } from \"./rows.js\";\n\ntype LauncherNoteType = \"launcher\" | \"search\" | \"doc\" | \"noteMap\" | \"contentWidget\" | \"book\" | \"file\" | \"image\" | \"text\" | \"relationMap\" | \"render\" | \"canvas\" | \"mermaid\" | \"webView\" | \"code\" | \"mindMap\" | \"geoMap\";\n\nenum Command {\n jumpToNote,\n searchNotes,\n createNoteIntoInbox,\n showRecentChanges,\n showOptions,\n createAiChat\n}\n\nexport interface HiddenSubtreeAttribute {\n type: AttributeType;\n name: string;\n isInheritable?: boolean;\n value?: string;\n}\n\nexport interface HiddenSubtreeItem {\n notePosition?: number;\n id: string;\n title: string;\n type: LauncherNoteType;\n icon?: string;\n attributes?: HiddenSubtreeAttribute[];\n children?: HiddenSubtreeItem[];\n isExpanded?: boolean;\n baseSize?: string;\n growthFactor?: string;\n targetNoteId?: \"_backendLog\" | \"_globalNoteMap\";\n builtinWidget?:\n | \"todayInJournal\"\n | \"bookmarks\"\n | \"spacer\"\n | \"backInHistoryButton\"\n | \"forwardInHistoryButton\"\n | \"syncStatus\"\n | \"protectedSession\"\n | \"calendar\"\n | \"quickSearch\"\n | \"aiChatLauncher\";\n command?: keyof typeof Command;\n}"],"names":["Command"],"rangeMappings":";;;;;;;;;","mappings":";UAIKA;;;;;;;GAAAA,YAAAA;AAgBL,WAwBC"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js new file mode 100644 index 000000000..f29feb52a --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js @@ -0,0 +1,3 @@ +export { }; + +//# sourceMappingURL=i18n.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js.map new file mode 100644 index 000000000..4fe740268 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/i18n.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/i18n.ts"],"sourcesContent":["export interface Locale {\n id: string;\n name: string;\n /** `true` if the language is a right-to-left one, or `false` if it's left-to-right. */\n rtl?: boolean;\n /** `true` if the language is not supported by the application as a display language, but it is selectable by the user for the content. */\n contentOnly?: boolean;\n /** The value to pass to `--lang` for the Electron instance in order to set it as a locale. Not setting it will hide it from the list of supported locales. */\n electronLocale?: string;\n}"],"names":[],"rangeMappings":"","mappings":"AAAA,WASC"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js new file mode 100644 index 000000000..a205f9c8a --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js @@ -0,0 +1,8 @@ +export * from "./i18n.js"; +export * from "./options_interface.js"; +export * from "./keyboard_actions_interface.js"; +export * from "./hidden_subtree.js"; +export * from "./rows.js"; +export * from "./test-utils.js"; + +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js.map new file mode 100644 index 000000000..0064146c0 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/index.ts"],"sourcesContent":["export * from \"./i18n.js\";\nexport * from \"./options_interface.js\";\nexport * from \"./keyboard_actions_interface.js\";\nexport * from \"./hidden_subtree.js\";\nexport * from \"./rows.js\";\nexport * from \"./test-utils.js\""],"names":[],"rangeMappings":";;;;;","mappings":"AAAA,cAAc,YAAY;AAC1B,cAAc,yBAAyB;AACvC,cAAc,kCAAkC;AAChD,cAAc,sBAAsB;AACpC,cAAc,YAAY;AAC1B,cAAc,kBAAiB"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js new file mode 100644 index 000000000..e67307bfe --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js @@ -0,0 +1,4 @@ +var KeyboardActionNamesEnum; +export { }; + +//# sourceMappingURL=keyboard_actions_interface.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js.map new file mode 100644 index 000000000..4aaa1fd2c --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/keyboard_actions_interface.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/keyboard_actions_interface.ts"],"sourcesContent":["const enum KeyboardActionNamesEnum {\n backInNoteHistory,\n forwardInNoteHistory,\n jumpToNote,\n scrollToActiveNote,\n quickSearch,\n searchInSubtree,\n expandSubtree,\n collapseTree,\n collapseSubtree,\n sortChildNotes,\n createNoteAfter,\n createNoteInto,\n createNoteIntoInbox,\n deleteNotes,\n moveNoteUp,\n moveNoteDown,\n moveNoteUpInHierarchy,\n moveNoteDownInHierarchy,\n editNoteTitle,\n editBranchPrefix,\n cloneNotesTo,\n moveNotesTo,\n copyNotesToClipboard,\n pasteNotesFromClipboard,\n cutNotesToClipboard,\n selectAllNotesInParent,\n addNoteAboveToSelection,\n addNoteBelowToSelection,\n duplicateSubtree,\n openNewTab,\n closeActiveTab,\n reopenLastTab,\n activateNextTab,\n activatePreviousTab,\n openNewWindow,\n toggleTray,\n toggleZenMode,\n firstTab,\n secondTab,\n thirdTab,\n fourthTab,\n fifthTab,\n sixthTab,\n seventhTab,\n eigthTab,\n ninthTab,\n lastTab,\n showNoteSource,\n showOptions,\n showRevisions,\n showRecentChanges,\n showSQLConsole,\n showBackendLog,\n showCheatsheet,\n showHelp,\n addLinkToText,\n followLinkUnderCursor,\n insertDateTimeToText,\n pasteMarkdownIntoText,\n cutIntoNote,\n addIncludeNoteToText,\n editReadOnlyNote,\n addNewLabel,\n addNewRelation,\n toggleRibbonTabClassicEditor,\n toggleRibbonTabBasicProperties,\n toggleRibbonTabBookProperties,\n toggleRibbonTabFileProperties,\n toggleRibbonTabImageProperties,\n toggleRibbonTabOwnedAttributes,\n toggleRibbonTabInheritedAttributes,\n toggleRibbonTabPromotedAttributes,\n toggleRibbonTabNoteMap,\n toggleRibbonTabNoteInfo,\n toggleRibbonTabNotePaths,\n toggleRibbonTabSimilarNotes,\n toggleRightPane,\n printActiveNote,\n exportAsPdf,\n openNoteExternally,\n renderActiveNote,\n runActiveNote,\n toggleNoteHoisting,\n unhoist,\n reloadFrontendApp,\n openDevTools,\n findInText,\n toggleLeftPane,\n toggleFullscreen,\n zoomOut,\n zoomIn,\n zoomReset,\n copyWithoutFormatting,\n forceSaveRevision\n}\n\nexport type KeyboardActionNames = keyof typeof KeyboardActionNamesEnum;\n\nexport interface KeyboardShortcut {\n separator?: string;\n actionName?: KeyboardActionNames;\n description?: string;\n defaultShortcuts?: string[];\n effectiveShortcuts?: string[];\n /**\n * Scope here means on which element the keyboard shortcuts are attached - this means that for the shortcut to work,\n * the focus has to be inside the element.\n *\n * So e.g. shortcuts with \"note-tree\" scope work only when the focus is in note tree.\n * This allows to have the same shortcut have different actions attached based on the context\n * e.g. CTRL-C in note tree does something a bit different from CTRL-C in the text editor.\n */\n scope?: \"window\" | \"note-tree\" | \"text-detail\" | \"code-detail\";\n}\n\nexport interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {\n actionName: KeyboardActionNames;\n}\n"],"names":[],"rangeMappings":";","mappings":";AAoHA,WAEC"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js new file mode 100644 index 000000000..e7e06fb12 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js @@ -0,0 +1,3 @@ +export { }; + +//# sourceMappingURL=options_interface.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js.map new file mode 100644 index 000000000..afb1d9026 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/options_interface.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/options_interface.ts"],"sourcesContent":["import type { KeyboardActionNames } from \"./keyboard_actions_interface.js\";\n\n/**\n * A dictionary where the keys are the option keys (e.g. `theme`) and their corresponding values.\n */\nexport type OptionMap = Record;\n\n/**\n * For each keyboard action, there is a corresponding option which identifies the key combination defined by the user.\n */\ntype KeyboardShortcutsOptions = {\n [key in T as `keyboardShortcuts${Capitalize}`]: string;\n};\n\nexport type FontFamily = \"theme\" | \"serif\" | \"sans-serif\" | \"monospace\" | string;\n\nexport interface OptionDefinitions extends KeyboardShortcutsOptions {\n openNoteContexts: string;\n lastDailyBackupDate: string;\n lastWeeklyBackupDate: string;\n lastMonthlyBackupDate: string;\n dbVersion: string;\n theme: string;\n syncServerHost: string;\n syncServerTimeout: string;\n syncProxy: string;\n mainFontFamily: FontFamily;\n treeFontFamily: FontFamily;\n detailFontFamily: FontFamily;\n monospaceFontFamily: FontFamily;\n spellCheckLanguageCode: string;\n codeNotesMimeTypes: string;\n headingStyle: string;\n highlightsList: string;\n customSearchEngineName: string;\n customSearchEngineUrl: string;\n locale: string;\n formattingLocale: string;\n codeBlockTheme: string;\n textNoteEditorType: string;\n layoutOrientation: string;\n allowedHtmlTags: string;\n documentId: string;\n documentSecret: string;\n passwordVerificationHash: string;\n passwordVerificationSalt: string;\n passwordDerivedKeySalt: string;\n encryptedDataKey: string;\n hoistedNoteId: string;\n\n // Multi-Factor Authentication\n mfaEnabled: boolean;\n mfaMethod: string;\n totpEncryptionSalt: string;\n totpEncryptedSecret: string;\n totpVerificationHash: string;\n encryptedRecoveryCodes: boolean;\n userSubjectIdentifierSaved: boolean;\n recoveryCodeInitialVector: string;\n recoveryCodeSecurityKey: string;\n recoveryCodesEncrypted: string;\n\n lastSyncedPull: number;\n lastSyncedPush: number;\n revisionSnapshotTimeInterval: number;\n revisionSnapshotTimeIntervalTimeScale: number;\n revisionSnapshotNumberLimit: number;\n protectedSessionTimeout: number;\n protectedSessionTimeoutTimeScale: number;\n zoomFactor: number;\n mainFontSize: number;\n treeFontSize: number;\n detailFontSize: number;\n monospaceFontSize: number;\n imageMaxWidthHeight: number;\n imageJpegQuality: number;\n leftPaneWidth: number;\n rightPaneWidth: number;\n eraseEntitiesAfterTimeInSeconds: number;\n eraseEntitiesAfterTimeScale: number;\n autoReadonlySizeText: number;\n autoReadonlySizeCode: number;\n maxContentWidth: number;\n minTocHeadings: number;\n eraseUnusedAttachmentsAfterSeconds: number;\n eraseUnusedAttachmentsAfterTimeScale: number;\n firstDayOfWeek: number;\n firstWeekOfYear: number;\n minDaysInFirstWeek: number;\n languages: string;\n\n // Appearance\n splitEditorOrientation: \"horziontal\" | \"vertical\";\n\n initialized: boolean;\n isPasswordSet: boolean;\n overrideThemeFonts: boolean;\n spellCheckEnabled: boolean;\n autoFixConsistencyIssues: boolean;\n vimKeymapEnabled: boolean;\n codeLineWrapEnabled: boolean;\n leftPaneVisible: boolean;\n rightPaneVisible: boolean;\n nativeTitleBarVisible: boolean;\n hideArchivedNotes_main: boolean;\n debugModeEnabled: boolean;\n autoCollapseNoteTree: boolean;\n dailyBackupEnabled: boolean;\n weeklyBackupEnabled: boolean;\n monthlyBackupEnabled: boolean;\n compressImages: boolean;\n downloadImagesAutomatically: boolean;\n checkForUpdates: boolean;\n disableTray: boolean;\n promotedAttributesOpenInRibbon: boolean;\n editedNotesOpenInRibbon: boolean;\n codeBlockWordWrap: boolean;\n textNoteEditorMultilineToolbar: boolean;\n backgroundEffects: boolean;\n\n // Share settings\n redirectBareDomain: boolean;\n showLoginInShareTheme: boolean;\n\n // AI/LLM integration options\n aiEnabled: boolean;\n aiProvider: string;\n aiSystemPrompt: string;\n aiTemperature: string;\n openaiApiKey: string;\n openaiDefaultModel: string;\n openaiEmbeddingModel: string;\n openaiBaseUrl: string;\n anthropicApiKey: string;\n anthropicDefaultModel: string;\n voyageEmbeddingModel: string;\n voyageApiKey: string;\n anthropicBaseUrl: string;\n ollamaEnabled: boolean;\n ollamaBaseUrl: string;\n ollamaDefaultModel: string;\n ollamaEmbeddingModel: string;\n codeOpenAiModel: string;\n aiProviderPrecedence: string;\n\n // Embedding-related options\n embeddingAutoUpdateEnabled: boolean;\n embeddingUpdateInterval: number;\n embeddingBatchSize: number;\n embeddingDefaultDimension: number;\n embeddingsDefaultProvider: string;\n embeddingProviderPrecedence: string;\n enableAutomaticIndexing: boolean;\n embeddingGenerationLocation: string;\n embeddingDimensionStrategy: string;\n embeddingSimilarityThreshold: number;\n maxNotesPerLlmQuery: number;\n}\n\nexport type OptionNames = keyof OptionDefinitions;\n\nexport type FilterOptionsByType = {\n [K in keyof OptionDefinitions]: OptionDefinitions[K] extends U ? K : never;\n}[keyof OptionDefinitions];\n"],"names":[],"rangeMappings":"","mappings":"AAiKA,WAE2B"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js new file mode 100644 index 000000000..189614bf5 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js @@ -0,0 +1,27 @@ +// TODO: Booleans should probably be numbers instead (as SQLite does not have booleans.); +// TODO: check against schema.sql which properties really are "optional" +/** + * There are many different Note types, some of which are entirely opaque to the + * end user. Those types should be used only for checking against, they are + * not for direct use. + */ export const ALLOWED_NOTE_TYPES = [ + "file", + "image", + "search", + "noteMap", + "launcher", + "doc", + "contentWidget", + "text", + "relationMap", + "render", + "canvas", + "mermaid", + "book", + "webView", + "code", + "mindMap", + "geoMap" +]; + +//# sourceMappingURL=rows.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js.map new file mode 100644 index 000000000..b946ae544 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/rows.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/rows.ts"],"sourcesContent":["// TODO: Booleans should probably be numbers instead (as SQLite does not have booleans.);\n// TODO: check against schema.sql which properties really are \"optional\"\n\nexport interface AttachmentRow {\n attachmentId?: string;\n ownerId?: string;\n role: string;\n mime: string;\n title: string;\n position?: number;\n blobId?: string;\n isProtected?: boolean;\n dateModified?: string;\n utcDateModified?: string;\n utcDateScheduledForErasureSince?: string;\n isDeleted?: boolean;\n deleteId?: string;\n contentLength?: number;\n content?: Buffer | string;\n}\n\nexport interface RevisionRow {\n revisionId?: string;\n noteId: string;\n type: NoteType;\n mime: string;\n isProtected?: boolean;\n title: string;\n blobId?: string;\n dateLastEdited?: string;\n dateCreated: string;\n utcDateLastEdited?: string;\n utcDateCreated: string;\n utcDateModified: string;\n contentLength?: number;\n}\n\nexport interface RecentNoteRow {\n noteId: string;\n notePath: string;\n utcDateCreated?: string;\n}\n\n/**\n * Database representation of an option.\n *\n * Options are key-value pairs that are used to store information such as user preferences (for example\n * the current theme, sync server information), but also information about the state of the application).\n */\nexport interface OptionRow {\n /** The name of the option. */\n name: string;\n /** The value of the option. */\n value: string;\n /** `true` if the value should be synced across multiple instances (e.g. locale) or `false` if it should be local-only (e.g. theme). */\n isSynced: boolean;\n utcDateModified?: string;\n}\n\nexport interface EtapiTokenRow {\n etapiTokenId?: string;\n name: string;\n tokenHash: string;\n utcDateCreated?: string;\n utcDateModified?: string;\n isDeleted?: boolean;\n}\n\nexport interface BlobRow {\n blobId: string;\n content: string | Buffer;\n contentLength: number;\n dateModified: string;\n utcDateModified: string;\n}\n\nexport type AttributeType = \"label\" | \"relation\" | \"label-definition\" | \"relation-definition\";\n\nexport interface AttributeRow {\n attributeId?: string;\n noteId?: string;\n type: AttributeType;\n name: string;\n position?: number | null;\n value?: string;\n isInheritable?: boolean;\n utcDateModified?: string;\n}\n\nexport interface BranchRow {\n branchId?: string;\n noteId: string;\n parentNoteId: string;\n prefix?: string | null;\n notePosition?: number | null;\n isExpanded?: boolean;\n isDeleted?: boolean;\n utcDateModified?: string;\n}\n\n/**\n * There are many different Note types, some of which are entirely opaque to the\n * end user. Those types should be used only for checking against, they are\n * not for direct use.\n */\nexport const ALLOWED_NOTE_TYPES = [\n \"file\",\n \"image\",\n \"search\",\n \"noteMap\",\n \"launcher\",\n \"doc\",\n \"contentWidget\",\n \"text\",\n \"relationMap\",\n \"render\",\n \"canvas\",\n \"mermaid\",\n \"book\",\n \"webView\",\n \"code\",\n \"mindMap\",\n \"geoMap\"\n] as const;\nexport type NoteType = (typeof ALLOWED_NOTE_TYPES)[number];\n\nexport interface NoteRow {\n noteId: string;\n deleteId: string;\n title: string;\n type: NoteType;\n mime: string;\n isProtected: boolean;\n isDeleted: boolean;\n blobId: string;\n dateCreated: string;\n dateModified: string;\n utcDateCreated: string;\n utcDateModified: string;\n content?: string | Buffer;\n}\n\nexport interface NoteEmbeddingRow {\n embedId: string;\n noteId: string;\n providerId: string;\n modelId: string;\n dimension: number;\n embedding: Buffer;\n version: number;\n dateCreated: string;\n utcDateCreated: string;\n dateModified: string;\n utcDateModified: string;\n}\n"],"names":["ALLOWED_NOTE_TYPES"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAAA,yFAAyF;AACzF,wEAAwE;AAmGxE;;;;CAIC,GACD,OAAO,MAAMA,qBAAqB;IAC9B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACH,CAAU"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js b/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js new file mode 100644 index 000000000..fcba894b6 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js @@ -0,0 +1,55 @@ +/** + * Reads the level of indentation of the first line and trims the identation for all the text by that amount. + * + * For example, for: + * + * ```json + * { + * "hello": "world" + * } + * ``` + * + * it results in: + * + * ```json + * { + * "hello": "world" + * } + * ``` + * + * This is meant to be used as a template string, where it allows the indentation of the template without affecting whitespace changes. + * + * @example const html = trimIndentation`\ + *

Heading 1

+ *

Heading 2

+ *

Heading 3

+ *

Heading 4

+ *
Heading 5
+ *
Heading 6
+ * `; + * @param strings + * @returns + */ export function trimIndentation(strings, ...values) { + // Combine the strings with the values using interpolation + let str = strings.reduce((acc, curr, index)=>{ + return acc + curr + (values[index] !== undefined ? values[index] : ''); + }, ''); + // Count the number of spaces on the first line. + let numSpaces = 0; + while(str.charAt(numSpaces) == " " && numSpaces < str.length){ + numSpaces++; + } + // Trim the indentation of the first line in all the lines. + const lines = str.split("\n"); + const output = []; + for(let i = 0; i < lines.length; i++){ + let numSpacesLine = 0; + while(str.charAt(numSpacesLine) == " " && numSpacesLine < str.length){ + numSpacesLine++; + } + output.push(lines[i].substring(numSpacesLine)); + } + return output.join("\n"); +} + +//# sourceMappingURL=test-utils.js.map \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js.map b/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js.map new file mode 100644 index 000000000..e889b05e2 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/lib/test-utils.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/lib/test-utils.ts"],"sourcesContent":["/**\n * Reads the level of indentation of the first line and trims the identation for all the text by that amount.\n *\n * For example, for:\n *\n * ```json\n * {\n * \"hello\": \"world\"\n * }\n * ```\n *\n * it results in:\n *\n * ```json\n * {\n * \"hello\": \"world\"\n * }\n * ```\n *\n * This is meant to be used as a template string, where it allows the indentation of the template without affecting whitespace changes.\n *\n * @example const html = trimIndentation`\\\n *

Heading 1

\n *

Heading 2

\n *

Heading 3

\n *

Heading 4

\n *
Heading 5
\n *
Heading 6
\n * `;\n * @param strings\n * @returns\n */\nexport function trimIndentation(strings: TemplateStringsArray, ...values: any[]) {\n // Combine the strings with the values using interpolation\n let str = strings.reduce((acc, curr, index) => {\n return acc + curr + (values[index] !== undefined ? values[index] : '');\n }, '');\n\n // Count the number of spaces on the first line.\n let numSpaces = 0;\n while (str.charAt(numSpaces) == \" \" && numSpaces < str.length) {\n numSpaces++;\n }\n\n // Trim the indentation of the first line in all the lines.\n const lines = str.split(\"\\n\");\n const output = [];\n for (let i = 0; i < lines.length; i++) {\n let numSpacesLine = 0;\n while (str.charAt(numSpacesLine) == \" \" && numSpacesLine < str.length) {\n numSpacesLine++;\n }\n output.push(lines[i].substring(numSpacesLine));\n }\n return output.join(\"\\n\");\n}\n"],"names":["trimIndentation","strings","values","str","reduce","acc","curr","index","undefined","numSpaces","charAt","length","lines","split","output","i","numSpacesLine","push","substring","join"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BC,GACD,OAAO,SAASA,gBAAgBC,OAA6B,EAAE,GAAGC,MAAa;IAC3E,0DAA0D;IAC1D,IAAIC,MAAMF,QAAQG,MAAM,CAAC,CAACC,KAAKC,MAAMC;QACjC,OAAOF,MAAMC,OAAQJ,CAAAA,MAAM,CAACK,MAAM,KAAKC,YAAYN,MAAM,CAACK,MAAM,GAAG,EAAC;IACxE,GAAG;IAEH,gDAAgD;IAChD,IAAIE,YAAY;IAChB,MAAON,IAAIO,MAAM,CAACD,cAAc,OAAOA,YAAYN,IAAIQ,MAAM,CAAE;QAC3DF;IACJ;IAEA,2DAA2D;IAC3D,MAAMG,QAAQT,IAAIU,KAAK,CAAC;IACxB,MAAMC,SAAS,EAAE;IACjB,IAAK,IAAIC,IAAI,GAAGA,IAAIH,MAAMD,MAAM,EAAEI,IAAK;QACnC,IAAIC,gBAAgB;QACpB,MAAOb,IAAIO,MAAM,CAACM,kBAAkB,OAAOA,gBAAgBb,IAAIQ,MAAM,CAAE;YACnEK;QACJ;QACAF,OAAOG,IAAI,CAACL,KAAK,CAACG,EAAE,CAACG,SAAS,CAACF;IACnC;IACA,OAAOF,OAAOK,IAAI,CAAC;AACvB"} \ No newline at end of file diff --git a/.nx/cache/7031649633627448769/packages/commons/dist/tsconfig.lib.tsbuildinfo b/.nx/cache/7031649633627448769/packages/commons/dist/tsconfig.lib.tsbuildinfo new file mode 100644 index 000000000..4e1f61b64 --- /dev/null +++ b/.nx/cache/7031649633627448769/packages/commons/dist/tsconfig.lib.tsbuildinfo @@ -0,0 +1 @@ +{"version":"5.7.3"} \ No newline at end of file diff --git a/.nx/cache/run.json b/.nx/cache/run.json index d2de15dfe..31dbc7873 100644 --- a/.nx/cache/run.json +++ b/.nx/cache/run.json @@ -1,21 +1,43 @@ { "run": { - "command": "nx build turndown-plugin-gfm", - "startTime": "2025-04-22T12:21:01.774Z", - "endTime": "2025-04-22T12:21:03.047Z", + "command": "nx build server", + "startTime": "2025-04-22T14:20:38.688Z", + "endTime": "2025-04-22T14:20:40.576Z", "inner": false }, "tasks": [ { - "taskId": "@triliumnext/turndown-plugin-gfm:build", + "taskId": "@triliumnext/commons:build", "target": "build", - "projectName": "@triliumnext/turndown-plugin-gfm", - "hash": "6308689797653528488", - "startTime": "2025-04-22T12:21:01.785Z", - "endTime": "2025-04-22T12:21:03.023Z", + "projectName": "@triliumnext/commons", + "hash": "7031649633627448769", + "startTime": "2025-04-22T14:20:38.699Z", + "endTime": "2025-04-22T14:20:39.906Z", "params": "", "cacheStatus": "cache-miss", "status": 0 + }, + { + "taskId": "@triliumnext/turndown-plugin-gfm:build", + "target": "build", + "projectName": "@triliumnext/turndown-plugin-gfm", + "hash": "11282923462096060321", + "startTime": "2025-04-22T14:20:38.699Z", + "endTime": "2025-04-22T14:20:39.952Z", + "params": "", + "cacheStatus": "cache-miss", + "status": 0 + }, + { + "taskId": "@triliumnext/server:build", + "target": "build", + "projectName": "@triliumnext/server", + "hash": "4392501429971405707", + "startTime": "2025-04-22T14:20:39.964Z", + "endTime": "2025-04-22T14:20:40.575Z", + "params": "", + "cacheStatus": "cache-miss", + "status": 1 } ] } \ No newline at end of file diff --git a/.nx/cache/terminalOutputs/11282923462096060321 b/.nx/cache/terminalOutputs/11282923462096060321 new file mode 100644 index 000000000..e131a21a6 --- /dev/null +++ b/.nx/cache/terminalOutputs/11282923462096060321 @@ -0,0 +1,2 @@ +Compiling with SWC for @triliumnext/turndown-plugin-gfm... + diff --git a/.nx/cache/terminalOutputs/4392501429971405707 b/.nx/cache/terminalOutputs/4392501429971405707 new file mode 100644 index 000000000..9f4fdde07 --- /dev/null +++ b/.nx/cache/terminalOutputs/4392501429971405707 @@ -0,0 +1,46 @@ +> webpack-cli build --node-env=production + +[webpack-cli] Error: Cannot find module 'ajv/dist/compile/codegen' +Require stack: +- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/typeof.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/index.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/index.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/validate.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/index.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/copy-webpack-plugin/dist/index.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/lib/apply-base-config.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/app-plugin.js +- /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.cjs +- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/webpack-cli.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/bootstrap.js +- /home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/bin/cli.js + at Function._resolveFilename (node:internal/modules/cjs/loader:1225:15) + at Function._load (node:internal/modules/cjs/loader:1055:27) + at TracingChannel.traceSync (node:diagnostics_channel:322:14) + at wrapModuleLoad (node:internal/modules/cjs/loader:220:24) + at Module.require (node:internal/modules/cjs/loader:1311:12) + at require (node:internal/modules/helpers:136:16) + at Object. (/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js:3:19) + at Module._compile (node:internal/modules/cjs/loader:1554:14) + at Object..js (node:internal/modules/cjs/loader:1706:10) + at Module.load (node:internal/modules/cjs/loader:1289:32) { + code: 'MODULE_NOT_FOUND', + requireStack: [ + '/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/definitions/typeof.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/typeof.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/keywords/index.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/ajv-keywords/dist/index.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/validate.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/schema-utils/dist/index.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/copy-webpack-plugin/dist/index.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/lib/apply-base-config.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/app-plugin.js', + '/home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.cjs', + '/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/webpack-cli.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/lib/bootstrap.js', + '/home/elian/Projects/TriliumNext/Notes/node_modules/webpack-cli/bin/cli.js' + ] +} diff --git a/.nx/cache/terminalOutputs/7031649633627448769 b/.nx/cache/terminalOutputs/7031649633627448769 new file mode 100644 index 000000000..81a5dee49 --- /dev/null +++ b/.nx/cache/terminalOutputs/7031649633627448769 @@ -0,0 +1,2 @@ +Compiling with SWC for @triliumnext/commons... + diff --git a/.nx/workspace-data/d/daemon.log b/.nx/workspace-data/d/daemon.log index 7574e6471..9c54e7111 100644 --- a/.nx/workspace-data/d/daemon.log +++ b/.nx/workspace-data/d/daemon.log @@ -830,3 +830,445 @@ Error: Unable to resolve local plugin with import path @nx/webpack/plugin at async loadSpecifiedNxPlugins (/home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/project-graph/plugins/get-plugins.js:111:9) Node.js v22.14.0 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.043Z - Started listening on: /tmp/nix-shell-1791937-0/32649d4e7241f504a54b/d.sock +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.045Z - [WATCHER]: Subscribed to changes within: /home/elian/Projects/TriliumNext/Notes (native) +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.047Z - Established a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.047Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.049Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.050Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.236Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/package-json' 183.43766200000002ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.237Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/js' 184.517177ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.244Z - Time taken for 'loadDefaultNxPlugins' 192.56135600000002ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.249Z - Time taken for 'Load Nx Plugin: @nx/eslint/plugin' 198.26815399999998ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.256Z - Time taken for 'Load Nx Plugin: @nx/js/typescript' 205.296808ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.294Z - Time taken for 'Load Nx Plugin: @nx/webpack/plugin' 242.65156ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.298Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.312Z - Time taken for 'loadSpecifiedNxPlugins' 245.05547100000004ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.313Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Established a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Closed a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.314Z - Established a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.317Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.317Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Handled GLOB. Handling time: 2. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.318Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.321Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.325Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:16.327Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.106Z - Time taken for 'build-project-configs' 771.4791720000001ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.112Z - Time taken for '@nx/vite/plugin:createDependencies' 13.781097000000045ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.112Z - Time taken for '@nx/js/typescript:createDependencies' 17.800535999999965ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.459Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. + - apps/server/webpack.config.js: ReferenceError: require is not defined + at file:///home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js:1:32 + at ModuleJobSync.runSync (node:internal/modules/esm/module_job:395:35) + at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:360:47) + at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24) + at Module._compile (node:internal/modules/cjs/loader:1536:5) + at Object..js (node:internal/modules/cjs/loader:1706:10) + at Module.load (node:internal/modules/cjs/loader:1289:32) + at Function._load (node:internal/modules/cjs/loader:1108:12) + at TracingChannel.traceSync (node:diagnostics_channel:322:14) + at wrapModuleLoad (node:internal/modules/cjs/loader:220:24) +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.462Z - Time taken for 'total execution time for createProjectGraph()' 360.4894939999999ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.463Z - Done responding to the client null +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.463Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1409. Response time: 4. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:17.468Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.703Z - [WATCHER]: apps/server/webpack.config.js was modified +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.703Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.806Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.816Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Handled GLOB. Handling time: 2. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.817Z - Time taken for 'hash changed files from watcher' 1.8289890000014566ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.819Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.821Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.825Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.859Z - Time taken for 'build-project-configs' 33.759664999999586ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.862Z - Time taken for '@nx/js/typescript:createDependencies' 10.411420999998882ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.863Z - Time taken for '@nx/vite/plugin:createDependencies' 8.803603000000294ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:29.885Z - Time taken for 'total execution time for createProjectGraph()' 28.4164980000005ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.966Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.967Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.968Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. + - apps/server/webpack.config.js: Error [ERR_REQUIRE_CYCLE_MODULE]: Cannot require() ES Module /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js in a cycle. (from /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/utils/webpack/resolve-user-defined-webpack-config.js) + at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:346:15) + at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24) + at Module._compile (node:internal/modules/cjs/loader:1536:5) + at Object..js (node:internal/modules/cjs/loader:1706:10) + at Module.load (node:internal/modules/cjs/loader:1289:32) + at Function._load (node:internal/modules/cjs/loader:1108:12) + at TracingChannel.traceSync (node:diagnostics_channel:322:14) + at wrapModuleLoad (node:internal/modules/cjs/loader:220:24) + at Module.require (node:internal/modules/cjs/loader:1311:12) + at require (node:internal/modules/helpers:136:16) +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.971Z - Done responding to the client null +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.971Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:17:31.976Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.395Z - [WATCHER]: apps/server/webpack.config.js was modified +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.395Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.497Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Handled GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.508Z - Time taken for 'hash changed files from watcher' 1.8527000000030966ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.510Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.512Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.516Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.555Z - Time taken for 'build-project-configs' 36.302313000007416ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.558Z - Time taken for '@nx/vite/plugin:createDependencies' 9.674249000003329ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.559Z - Time taken for '@nx/js/typescript:createDependencies' 12.736064999990049ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:00.581Z - Time taken for 'total execution time for createProjectGraph()' 29.41765899999882ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:22.833Z - [WATCHER]: apps/server/webpack.config.js was modified +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:22.834Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.035Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.046Z - Time taken for 'hash changed files from watcher' 1.8452089999918826ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.054Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.089Z - Time taken for 'build-project-configs' 30.623645999992732ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.092Z - Time taken for '@nx/vite/plugin:createDependencies' 9.75645899999654ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.093Z - Time taken for '@nx/js/typescript:createDependencies' 12.789344999997411ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:23.115Z - Time taken for 'total execution time for createProjectGraph()' 29.478128999995533ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.435Z - [WATCHER]: apps/server/webpack.config.js was modified +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.435Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.837Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.837Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.838Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.847Z - Time taken for 'hash changed files from watcher' 2.123859999992419ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.851Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.855Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.890Z - Time taken for 'build-project-configs' 33.69587200001115ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.897Z - Time taken for '@nx/js/typescript:createDependencies' 14.273482999997213ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:56.921Z - Time taken for 'total execution time for createProjectGraph()' 31.034029000002192ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.019Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.021Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.021Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. + - apps/server/webpack.config.js: Error [ERR_REQUIRE_CYCLE_MODULE]: Cannot require() ES Module /home/elian/Projects/TriliumNext/Notes/apps/server/webpack.config.js in a cycle. (from /home/elian/Projects/TriliumNext/Notes/node_modules/@nx/webpack/src/utils/webpack/resolve-user-defined-webpack-config.js) + at ModuleLoader.importSyncForRequire (node:internal/modules/esm/loader:346:15) + at loadESMFromCJS (node:internal/modules/cjs/loader:1385:24) + at Module._compile (node:internal/modules/cjs/loader:1536:5) + at Object..js (node:internal/modules/cjs/loader:1706:10) + at Module.load (node:internal/modules/cjs/loader:1289:32) + at Function._load (node:internal/modules/cjs/loader:1108:12) + at TracingChannel.traceSync (node:diagnostics_channel:322:14) + at wrapModuleLoad (node:internal/modules/cjs/loader:220:24) + at Module.require (node:internal/modules/cjs/loader:1311:12) + at require (node:internal/modules/helpers:136:16) +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.025Z - Done responding to the client null +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.025Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:19:59.031Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.522Z - [WATCHER]: apps/server/webpack.config.js was created or restored +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.522Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.625Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.636Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Handled GLOB. Handling time: 2. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.637Z - Time taken for 'hash changed files from watcher' 2.2684409999928903ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.639Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.641Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.646Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.665Z - Time taken for 'build-project-configs' 18.615836000011768ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.670Z - Time taken for '@nx/js/typescript:createDependencies' 12.521504000003915ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:15.691Z - Time taken for 'total execution time for createProjectGraph()' 27.091768999991473ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:18.952Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:18.952Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: apps/server/webpack.config.cjs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.054Z - [REQUEST]: apps/server/webpack.config.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Handled GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.064Z - Time taken for 'hash changed files from watcher' 1.8597799999988638ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.066Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.067Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.068Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.068Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.072Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.274Z - Time taken for 'build-project-configs' 197.9390190000122ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.278Z - Time taken for '@nx/vite/plugin:createDependencies' 10.601464000006672ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.278Z - Time taken for '@nx/js/typescript:createDependencies' 13.029176999989431ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.303Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.303Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.304Z - Time taken for 'total execution time for createProjectGraph()' 29.645423000009032ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.403Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.613Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.614Z - Established a connection. Number of open connections: 5 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.614Z - Closed a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.615Z - Time taken for 'total for creating and serializing project graph' 0.16727000000537373ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.616Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.616Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.641Z - [SYNC]: @nx/js:typescript-sync changes: tsconfig.json, apps/server/tsconfig.app.json, apps/server/tsconfig.json +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:19.641Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 237.69391400000313ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.996Z - Established a connection. Number of open connections: 5 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.997Z - Closed a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.997Z - Established a connection. Number of open connections: 5 +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.998Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.998Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:21.999Z - Time taken for 'total for creating and serializing project graph' 0.20313100001658313ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.000Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.000Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Done responding to the client handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.007Z - Time taken for 'preTasksExecution' 0.17815100000007078ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [SYNC]: get sync generators changes on demand ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [SYNC]: @nx/js:typescript-sync not scheduled and has cached result, returning cached result +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - [REQUEST]: Responding to the client. handleGetSyncGeneratorChanges +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - Done responding to the client handleGetSyncGeneratorChanges +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:22.011Z - Handled GET_SYNC_GENERATOR_CHANGES. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: flush sync generators changes ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: get sync generators changes on demand ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.402Z - [SYNC]: @nx/js:typescript-sync not scheduled and has cached result, returning cached result +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - [REQUEST]: Responding to the client. handleFlushSyncGeneratorChangesToDisk +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Done responding to the client handleFlushSyncGeneratorChangesToDisk +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Handled CLEAR_CACHED_SYNC_GENERATOR_CHANGES. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - Time taken for 'flush sync generator changes to disk' 0.552123000001302ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.403Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]: tsconfig.json,apps/server/tsconfig.app.json,apps/server/tsconfig.json +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.405Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.413Z - Time taken for 'hash changed files from watcher' 1.9449000000022352ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.416Z - Handled GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.418Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.419Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.419Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.421Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.426Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.427Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.427Z - Handled HASH_GLOB. Handling time: 4. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.460Z - Time taken for 'build-project-configs' 33.245070999983ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.460Z - [WATCHER]: 0 file(s) created or restored, 3 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.461Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.464Z - Time taken for '@nx/vite/plugin:createDependencies' 9.863790999981575ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.464Z - Time taken for '@nx/js/typescript:createDependencies' 12.424624000006588ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.489Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.490Z - Time taken for 'total for creating and serializing project graph' 85.81992400001036ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.491Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.491Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 86. Response time: 2. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]: apps/server/tsconfig.json,apps/server/tsconfig.app.json,tsconfig.json +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.514Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.522Z - Time taken for 'hash changed files from watcher' 2.1999310000101104ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.525Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.527Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.528Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.528Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.529Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.529Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.530Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.534Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.551Z - Time taken for 'build-project-configs' 17.35972999999649ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.554Z - Time taken for '@nx/vite/plugin:createDependencies' 8.124021999974502ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.554Z - Time taken for '@nx/js/typescript:createDependencies' 10.742545999994036ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.575Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.587Z - [REQUEST]: Responding to the client. handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Done responding to the client handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Handled HASH_TASKS. Handling time: 75. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.588Z - Time taken for 'total execution time for createProjectGraph()' 23.644272999983514ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.589Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.590Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.590Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.591Z - Time taken for 'total for creating and serializing project graph' 0.21177099997294135ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.592Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.592Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.605Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.605Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 16.46172600000864ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - Done responding to the client handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.696Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.958Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:38.958Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 30 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.062Z - [REQUEST]: packages/commons/dist/index.js,packages/commons/dist/lib/hidden_subtree.js.map,packages/commons/dist/lib/test-utils.js,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/commons/dist/lib/test-utils.js.map,packages/commons/dist/lib/i18n.js.map,packages/commons/dist/lib/index.js.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/commons/dist/lib/keyboard_actions_interface.js,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/commons/dist/lib/options_interface.js.map,packages/commons/dist/lib/index.js,packages/commons/dist/lib/options_interface.js,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/commons/dist/lib/rows.js,packages/commons/dist/tsconfig.lib.tsbuildinfo,packages/commons/dist/lib/i18n.js,packages/commons/dist/index.js.map,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/commons/dist/lib/keyboard_actions_interface.js.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map,packages/commons/dist/lib/rows.js.map,packages/commons/dist/lib/hidden_subtree.js +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.107Z - Handled GLOB. Handling time: 11. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.111Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.111Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.112Z - Handled HASH_GLOB. Handling time: 3. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.112Z - Time taken for 'hash changed files from watcher' 2.5785029999969993ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.120Z - Handled HASH_GLOB. Handling time: 8. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.124Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.125Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.125Z - Handled HASH_GLOB. Handling time: 3. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.165Z - Time taken for 'build-project-configs' 63.20101699998486ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.169Z - Time taken for '@nx/vite/plugin:createDependencies' 9.743079999985639ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.171Z - Time taken for '@nx/js/typescript:createDependencies' 14.5179449999996ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.194Z - Time taken for 'total execution time for createProjectGraph()' 28.30424599998514ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.195Z - [WATCHER]: 16 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.195Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]: packages/commons/dist/lib/i18n.js,packages/commons/dist/index.js,packages/commons/dist/lib/hidden_subtree.js,packages/commons/dist/lib/index.js,packages/commons/dist/lib/hidden_subtree.js.map,packages/commons/dist/lib/test-utils.js,packages/commons/dist/lib/options_interface.js,packages/commons/dist/index.js.map,packages/commons/dist/lib/keyboard_actions_interface.js.map,packages/commons/dist/lib/rows.js,packages/commons/dist/lib/rows.js.map,packages/commons/dist/lib/options_interface.js.map,packages/commons/dist/lib/i18n.js.map,packages/commons/dist/lib/keyboard_actions_interface.js,packages/commons/dist/lib/index.js.map,packages/commons/dist/lib/test-utils.js.map +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.298Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Handled GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.309Z - Time taken for 'hash changed files from watcher' 2.267041999992216ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.311Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.314Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.319Z - Handled HASH_GLOB. Handling time: 5. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.347Z - Time taken for 'build-project-configs' 29.994765000010375ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.351Z - Time taken for '@nx/vite/plugin:createDependencies' 8.959487000014633ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.352Z - Time taken for '@nx/js/typescript:createDependencies' 11.548760000005132ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.378Z - Time taken for 'total execution time for createProjectGraph()' 27.95946399998502ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.394Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.395Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Time taken for 'total for creating and serializing project graph' 0.15040099999168888ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.396Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.405Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.405Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 10.86268600000767ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - Done responding to the client recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.909Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.935Z - [WATCHER]: 14 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.935Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - Done responding to the client recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:39.955Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]: packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/commons/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.038Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.048Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Handled GLOB. Handling time: 2. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.049Z - Time taken for 'hash changed files from watcher' 2.462903000006918ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - [REQUEST]: Responding to the client. handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - Done responding to the client handleHashGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.051Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.053Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.058Z - Handled HASH_GLOB. Handling time: 5. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.074Z - Time taken for 'build-project-configs' 18.61340599998948ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.079Z - Time taken for '@nx/vite/plugin:createDependencies' 9.794071000011172ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.080Z - Time taken for '@nx/js/typescript:createDependencies' 12.206682999996701ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.102Z - Time taken for 'total execution time for createProjectGraph()' 25.120970000018133ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.502Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.503Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Time taken for 'total for creating and serializing project graph' 0.2310109999962151ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.504Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.512Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.512Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 9.461009999999078ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - Done responding to the client recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.575Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.599Z - [REQUEST]: Responding to the client. handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.600Z - Done responding to the client handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.600Z - Handled RECORD_TASK_RUNS. Handling time: 21. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - [REQUEST]: Responding to the client. handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - Done responding to the client handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.601Z - Handled GET_FLAKY_TASKS. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Done responding to the client handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.604Z - Time taken for 'postTasksExecution' 0.17494100000476465ms +[NX v20.8.0 Daemon Server] - 2025-04-22T14:20:40.612Z - Closed a connection. Number of open connections: 4 diff --git a/.nx/workspace-data/d/server-process.json b/.nx/workspace-data/d/server-process.json index fcb21cf89..da766a21e 100644 --- a/.nx/workspace-data/d/server-process.json +++ b/.nx/workspace-data/d/server-process.json @@ -1,3 +1,3 @@ { - "processId": 1901838 + "processId": 1905732 } diff --git a/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-shm b/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-shm new file mode 100644 index 0000000000000000000000000000000000000000..33aad300ecd5538eb96b227d846106fa859b6ce5 GIT binary patch literal 32768 zcmeI)s|rFv5C-7m{Q`>7Xf;@T9*f!6@X>4rQLrh3%_R5&I_nLqQTO{{7+4Ow%y;_q zkE0@`8dWNaUMqS#YTF$z2kXPRGFz-Vlhb8B9qcy4!@mFJ_i@!d>E7!{p2zQ&-mgWy z-hcIaoHe4FQ9^(K0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkL{R|R6%mk`KQpq%O4 z#wPICr^taoo&q+B=K0@EodnWeT_KRCK;^z;I?vfnox4D_NZZtf009C72oNAZfB*pk e1PBlyK!5-N0t5&UAV7cs0RjXF5FkL{p9F3?_$mbe literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-wal b/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-wal new file mode 100644 index 0000000000000000000000000000000000000000..afe2a63fba6420494bf75057c60befa610f1f0af GIT binary patch literal 37112 zcmeI*ONbmr7zgm`>FMs>K&JMfnMgeBK|#dcbX9frV;~{BdQzg~u&$sY$?PN!J3BL( z$F31E;sYZdq8BfEh>3(qL_HYHLCD2}qL_pjK@b;2F^Q6Zp7da>nw{C5v3o^GHj(Au z>?}RSS2b0?noC!IQyuQNpC|4Q8wnX9`Y>lcJ-z<1i@&{dyt?6`XWsry6=nO&@0vUH z{oOyGwAQOaCpS;%m-J2gD7`&*Dfh8@ivt1>fB*y_009U<00Izz00ba#Jp{HomfW5v zjPZ!aT=)U^;=l_$!P&M}qg*MsXRD>BTAN$#Ms>P2Uv=x1_MURp-LrdkSG!!9X0|0{ zo`jxYfgcA#1U&TpC=B9(>c!gZY^~btRPiiJh&=H{%%#VC9>*c`JsEo8K$T{xF;{AI zYHZ0`LUl3_UKB)e7>9url1F|N4b)hvk6X>|7=;u*7hLjK_+G@B^!`)*%^8cyTZ!=0 z0Amq`GL%d*)$4)U-66J0%@#K-sZf-uAH@L+)k&mA8itXdR;4pWHJO%rt?R89j9%q` z*+)iRTBiyfIz{LdJxMRnv-AKxMC;dM>d^)SAOHafKmY;|fB*y_009Ug*DGL+X#SciXIG7tuW+ayqGI>)Dr!5$$nHbiy(OVbD|GMz% zkv}KvI$yxbeMsmh^l2L8epjbBAOHafKmY;|fB*y_009U<00K8%VBE6BP)3N9YwO8_ z+~d;qe3$c4<`=kEP`LrgqVeov6DgP5_AmYMyuevOr7-k0(Jh)VZK->~Sn|p|(T107 zLlkVkOC^99Z??0@;Y2imvk zd;vRG>B|>TZ*V{W0uX=z1Rwwb2tWV=5P$##u0deJ?%ici?kZqk?7x})FE{&ezrafS z4s`YxNcnBVjmQ_Ubq9O<3(Vj5;;EVOckfty9>EDh&(OoPLGPuv)>t&e8Y&ICkY5y)IzT%S8R*fB*y_009U<00Izz00bZa0SG`~O$dw_=AA}sXLII> zC(F%Nt+7w92@I*%(!PUV@Z9+;3ui}{o>SQS9l?}(P9gRlToc~{3<3fWfB*y_009U< W00Izz00dTDV1>sHI{&-h5&R8+wNgC* literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/eslint-2654242865465226088.hash b/.nx/workspace-data/eslint-2654242865465226088.hash index 85c8d87d4..394ff6d09 100644 --- a/.nx/workspace-data/eslint-2654242865465226088.hash +++ b/.nx/workspace-data/eslint-2654242865465226088.hash @@ -340,5 +340,308 @@ }, "1052553638334998452": {}, "3829001738606284542": {}, - "16880944484164187069": {} + "16880944484164187069": {}, + "14854670996815177606": {}, + "11102029127173379308": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "13097364906395379160": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "11218667268180711239": {}, + "15515751049355836315": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "5557606338589588129": {}, + "3146687162059234397": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "18150630873143563891": {}, + "11511921574547400961": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "11235679623152733539": {}, + "9764826797200088656": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "7967132459110065866": {}, + "11984459376190434330": { + "apps/server": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "apps/server" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "284051547504069236": {}, + "5459680711337805685": {}, + "13775029493605444442": {} } \ No newline at end of file diff --git a/.nx/workspace-data/file-map.json b/.nx/workspace-data/file-map.json index 209655476..d735921df 100644 --- a/.nx/workspace-data/file-map.json +++ b/.nx/workspace-data/file-map.json @@ -36,85 +36,435 @@ "buildDepsTargetName": "build-deps", "watchDepsTargetName": "watch-deps" } + }, + { + "name": "@nx/webpack/plugin", + "options": { + "buildTargetName": "build", + "serveTargetName": "serve", + "previewTargetName": "preview", + "buildDepsTargetName": "build-deps", + "watchDepsTargetName": "watch-deps" + } } ], "fileMap": { "nonProjectFiles": [ { - "file": ".editorconfig", - "hash": "11859237446229868960" + "file": "docs/User Guide/User Guide/Note Types/Text/4_Tables_image.png", + "hash": "8355105912319259830" }, { - "file": ".github/FUNDING.yml", - "hash": "9417438148586196659" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormDataVisitorHelpers.html", + "hash": "11306007087078053081" }, { - "file": ".github/ISSUE_TEMPLATE/bug_report.yml", - "hash": "9337980927788000468" + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_promot.png", + "hash": "4117009512006470814" }, { - "file": ".github/ISSUE_TEMPLATE/feature_request.yml", - "hash": "13653184246748995672" + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Building the editor.md", + "hash": "15005698969604672222" }, { - "file": ".github/ISSUE_TEMPLATE/task.yml", - "hash": "442256738724543481" + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventMappings.html", + "hash": "17522712746708162269" }, { - "file": ".github/actions/build-electron/action.yml", - "hash": "14612245546992951859" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_4_Split View_im.png", + "hash": "7394270400443781214" }, { - "file": ".github/actions/build-server/action.yml", - "hash": "12834103831780063020" + "file": "docs/User Guide/User Guide/Note Types/Text/Tables_image.png", + "hash": "5417625780542207119" }, { - "file": ".github/actions/report-size/action.yml", - "hash": "17705058309368771560" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ViewScope.html", + "hash": "3321680446742914167" }, { - "file": ".github/workflows/codeql.yml", - "hash": "15023875105706044332" + "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template-create-.png", + "hash": "4737869303956882568" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks_image.png", + "hash": "16799092375248159407" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Refreshing the application.md", + "hash": "3405008745811341199" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.html", + "hash": "57223527041811899" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.2-beta.md", + "hash": "7134694010981034314" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Releasing a version.clone.md", + "hash": "7452856003847983708" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Data directory_image.png", + "hash": "16647401677978700113" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Running a development build.md", + "hash": "5918235052453307119" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-5.html", + "hash": "960615437114587660" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderParser.html", + "hash": "12559633325326468874" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerOptions.html", + "hash": "10688294646722029359" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Saved Search_saved-search.gif", + "hash": "7608073468067457147" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager.md", + "hash": "5069971154417713445" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK on.svg", + "hash": "16635311815022210160" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_File_image.png", + "hash": "2974379219914373732" + }, + { + "file": "docs/Developer Guide/Developer Guide/Troubleshooting/Error [TransformError] The pac.md", + "hash": "2007360804189743501" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioParserOptions.html", + "hash": "15172117939473057072" }, { "file": ".github/workflows/dev.yml", "hash": "97027197327334007" }, { - "file": ".github/workflows/main-docker.yml", - "hash": "7393672086018807690" + "file": "docs/Script API/types/Backend_Script_API._internal_.Args.html", + "hash": "386788577814183214" }, { - "file": ".github/workflows/nightly.yml", - "hash": "13780588628454221051" + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Syntax highlighting.md", + "hash": "133151893331360659" }, { - "file": ".github/workflows/playwright.yml", - "hash": "11286744737758129262" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosStatic.html", + "hash": "8016093090359225641" }, { - "file": ".github/workflows/release-winget.yml", - "hash": "11802042483604535783" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamEncoder.html", + "hash": "15628448467004066967" }, { - "file": ".github/workflows/release.yml", - "hash": "17127017447936409690" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_2_Split View_im.png", + "hash": "15941739623146058763" }, { - "file": ".gitignore", - "hash": "11919028057662818718" + "file": "docs/User Guide/User Guide/Note Types/Text/6_Other features_image.png", + "hash": "3612025371214749570" }, { - "file": ".idea/.gitignore", - "hash": "13646957392060337731" + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/MindElixir.md", + "hash": "6918212641187571529" }, { - "file": ".idea/codeStyles/Project.xml", - "hash": "17510646002422655057" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts.html", + "hash": "11051628329727220926" }, { - "file": ".idea/codeStyles/codeStyleConfig.xml", - "hash": "4690022301721055948" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Tree Concepts.md", + "hash": "15081221128162970091" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Reporting issues.md", + "hash": "7437940663744225187" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal layout.md", + "hash": "10256487723212567021" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeOptions.html", + "hash": "7213971429337564504" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note_image.png", + "hash": "14767314553298789957" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_General formatting_image.png", + "hash": "9106571901573895633" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Synchronization fails with 504.md", + "hash": "2785587467017944783" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac.md", + "hash": "14915015362708890087" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.LookupAddress.html", + "hash": "14049613797860375879" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Partial.html", + "hash": "4501011672124687658" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Developer-specific formatt.png", + "hash": "13063031561540176225" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_image.png", + "hash": "15783140557738540121" + }, + { + "file": ".github/workflows/codeql.yml", + "hash": "15023875105706044332" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Test database.md", + "hash": "12683306435434855517" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/1_Code blocks_image.png", + "hash": "12452128562004210306" + }, + { + "file": ".idea/inspectionProfiles/Project_Default.xml", + "hash": "10941077199758478688" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextRange.html", + "hash": "1639545837883955808" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Web View.md", + "hash": "11930025137242473821" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.gif", + "hash": "10041817102859838104" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks.md", + "hash": "8976377563476496635" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-confi.png", + "hash": "2997447751316549256" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search.md", + "hash": "13334896477355249102" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Testing compatibility.md", + "hash": "1432296361498549709" + }, + { + "file": "tsconfig.json", + "hash": "16310354267596464911" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Trigger UI refresh.md", + "hash": "12597276870551481120" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_move-note-with-k.gif", + "hash": "1539959243766334436" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs.md", + "hash": "15587281502024486048" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Note type checklist.md", + "hash": "1608854407457647774" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-init.png", + "hash": "15322721528964766736" + }, + { + "file": "docs/User Guide/User Guide/AI/Introduction_image.png", + "hash": "17351850101399104891" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodePatch.html", + "hash": "6729580968896710441" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttributeRow.html", + "hash": "16526604781141457523" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Creating a new option.md", + "hash": "7445777789708082311" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.CommonResponseHeadersList.html", + "hash": "12686548264575273733" + }, + { + "file": "eslint.config.mjs", + "hash": "9204104122661382069" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestTransformer.html", + "hash": "10880068715112388734" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.EventData.html", + "hash": "5083755709710579372" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Excalidraw.md", + "hash": "10507559843179746851" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button_i.png", + "hash": "12237996247459794678" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.jpg", + "hash": "14126513805103816937" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Safe mode.md", + "hash": "1713747027699127500" + }, + { + "file": "docs/Developer Guide/!!!meta.json", + "hash": "3255937222893785990" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list_image.png", + "hash": "2083570772957836032" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Tables_image.png", + "hash": "7670352131626581828" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormSerializerOptions.html", + "hash": "11304844495282338077" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or e.md", + "hash": "14993988245541217079" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_drag-and-drop.gif", + "hash": "16530764084716612313" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderMatcher.html", + "hash": "13309236837429941975" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.Options.html", + "hash": "14451666559484126665" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Data directory.md", + "hash": "4358803339908624454" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BBranch.html", + "hash": "12776123451982372768" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Note List_image.png", + "hash": "5608976400586326827" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information_im.png", + "hash": "7031327870994678887" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.5-beta.md", + "hash": "14426279930922433783" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions_image.png", + "hash": "378004986618242169" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.8.md", + "hash": "10541241835395856847" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/revisions.md", + "hash": "6910018916604118009" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/CSS.md", + "hash": "3537418956212770699" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon_image.png", + "hash": "253567192754290441" + }, + { + "file": ".github/ISSUE_TEMPLATE/bug_report.yml", + "hash": "9337980927788000468" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-1.html", + "hash": "17242853187880822286" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search.md", + "hash": "11467430470930503027" + }, + { + "file": "docs/User Guide/User Guide/Note Types/6_Geo Map_image.png", + "hash": "890997284892548696" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttributeRow.html", + "hash": "15707791380899076017" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Froca.html", + "hash": "1217693842643344527" + }, + { + "file": "docs/User Guide/User Guide/Note Types/6_File_image.png", + "hash": "10934030213595628481" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.GetTextEditorCallback.html", + "hash": "14843214499299206182" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/OpenAI.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/1_SQL Console_image.png", + "hash": "12789086198380592587" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Insert buttons_image.png", + "hash": "13776013165806672321" }, { "file": ".idea/dataSources.xml", @@ -125,3644 +475,3304 @@ "hash": "11374258188085040410" }, { - "file": ".idea/git_toolbox_prj.xml", - "hash": "15025719909834120292" - }, - { - "file": ".idea/inspectionProfiles/Project_Default.xml", - "hash": "10941077199758478688" - }, - { - "file": ".idea/jsLibraryMappings.xml", - "hash": "463890270158677548" - }, - { - "file": ".idea/jsLinters/jslint.xml", - "hash": "711681400810612149" - }, - { - "file": ".idea/misc.xml", - "hash": "14348037015527695066" - }, - { - "file": ".idea/modules.xml", - "hash": "11070074368343041178" - }, - { - "file": ".idea/sqldialects.xml", - "hash": "1907427473079819363" - }, - { - "file": ".idea/vcs.xml", - "hash": "16873264805383449197" - }, - { - "file": ".npmrc", - "hash": "16137381183792061922" - }, - { - "file": ".nxignore", - "hash": "17027752051574521115" - }, - { - "file": "CODE_OF_CONDUCT", - "hash": "18279634385063499779" - }, - { - "file": "LICENSE", - "hash": "8606862000888906709" - }, - { - "file": "README.md", - "hash": "13679989229500744212" - }, - { - "file": "SECURITY.md", - "hash": "599955342543329887" - }, - { - "file": "docs/Developer Guide/!!!meta.json", - "hash": "3255937222893785990" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Build deliveries locally.md", - "hash": "3170736676204731767" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/1_Main_image.png", - "hash": "14970379467694797728" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main.md", - "hash": "17316636940774967390" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main_image.png", - "hash": "5477858928741357904" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Documentation.md", - "hash": "14979232810690309809" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Releasing a version.md", - "hash": "16796012838594019346" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Running a development build.md", - "hash": "5918235052453307119" - }, - { - "file": "docs/Developer Guide/Developer Guide/Dependency Management/Adding a new client library.md", - "hash": "7049385257986266177" - }, - { - "file": "docs/Developer Guide/Developer Guide/Dependency Management/Having a simpler packaging sys.md", - "hash": "7380313725791405277" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Copy image reference to the cl.md", - "hash": "5997370566040672231" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Export diagram as SVG.md", - "hash": "8391941206097753891" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps.md", - "hash": "11319680458358123245" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps/mind_map.js", - "hash": "10796090623247054169" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Loading data.md", - "hash": "17419379493759801290" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Note type checklist.md", - "hash": "1608854407457647774" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/SVG rendering.md", - "hash": "14938937788563990628" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Saving data via spaced update.md", - "hash": "15110096891490816903" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Backlinks.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Branch prefixes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Build information.md", - "hash": "927621925199425057" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attachments.md", - "hash": "11249076532876645190" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attributes.md", - "hash": "18044189470051526719" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/blobs.md", - "hash": "9289462600651110466" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/branches.md", - "hash": "11383257066368994244" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/entity_changes.md", - "hash": "11984017581176676352" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/etapi_tokens.md", - "hash": "2602584635600548101" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/notes.md", - "hash": "17589195664721269554" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/options.md", - "hash": "11018885735468470461" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/recent_notes.md", - "hash": "16017799368937039846" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/revisions.md", - "hash": "6910018916604118009" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Deleted notes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Demo document.md", - "hash": "10094511099627127819" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Docker.md", - "hash": "11338947733300465635" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Hidden notes.md", - "hash": "12457340832473421506" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons.md", - "hash": "10855339462601677185" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/1_Icons on Mac_image.png", - "hash": "9113973157649197285" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac.md", - "hash": "14915015362708890087" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Adaptive icon_image.png", - "hash": "9113973157649197285" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Slightly blurry icon on Ma.png", - "hash": "704956280599536830" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Adaptive icon_image.png", - "hash": "2898250727568220507" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Slightly blurry icon on Ma.png", - "hash": "2401758914571491717" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/3_Adaptive icon_image.png", - "hash": "7856931497974089783" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/4_Adaptive icon_image.png", - "hash": "9672254538887140002" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/5_Adaptive icon_image.png", - "hash": "17290325327178029571" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/6_Adaptive icon_image.png", - "hash": "17558530465809578826" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon.md", - "hash": "3497841704967107299" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon_image.png", - "hash": "17678072455595448906" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Ma.png", - "hash": "12881778660438955813" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Mac.md", - "hash": "13487479054609586827" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac_image.png", - "hash": "10777331931886290213" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Removed icons.md", - "hash": "12540003826330492194" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translat.md", - "hash": "2844329594560711440" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Guidelines.md", - "hash": "4788416431512568863" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Server translations.md", - "hash": "233325850886770120" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/i18n-ally.md", - "hash": "15286767887045318756" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Launchers.md", - "hash": "17121274757495258227" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Live reload.md", - "hash": "14445433634969987457" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Note types.md", - "hash": "12191728192542611537" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options.md", - "hash": "2394676798595882833" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Check box option.md", - "hash": "13176063915179660637" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Creating a new option.md", - "hash": "7445777789708082311" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Displaying the option in setti.md", - "hash": "8267518082616976817" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Refresh widget with option cha.md", - "hash": "12967337054313845860" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Trigger UI refresh.md", - "hash": "12597276870551481120" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Printing.md", - "hash": "17241912836120464831" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Protected entities.md", - "hash": "8607204597560914266" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Revisions.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Safe mode.md", - "hash": "1713747027699127500" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Special notes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Synchronisation/Content hashing.md", - "hash": "8981070653808491801" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Syntax highlighting.md", - "hash": "133151893331360659" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Themes.md", - "hash": "9431375033964731793" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation.md", - "hash": "4320322749360908547" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation/Documentation references in th.md", - "hash": "4999625856386815050" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation_image.png", - "hash": "4287687447151188970" - }, - { - "file": "docs/Developer Guide/Developer Guide/Installation/Download latest nightly and in.md", - "hash": "6689583225600859966" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Build deliveries locally.clone.md", - "hash": "16752226799330019694" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Releasing a version.clone.md", - "hash": "7452856003847983708" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Running a development build.clone.md", - "hash": "18190833443469068343" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies.md", - "hash": "12527925976936861939" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Node.js, Electron and `better-.md", - "hash": "7009722849407231683" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Testing compatibility.md", - "hash": "1432296361498549709" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/bettersqlite binaries.md", - "hash": "15329551937381145875" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Server-side imports.md", - "hash": "11219131325031274988" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets.md", - "hash": "12822032052331653311" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/CSS.md", - "hash": "3537418956212770699" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/Right pane widget.md", - "hash": "13341365552460927801" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Building the editor.md", - "hash": "15005698969604672222" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Differences from upstream.md", - "hash": "18050776852643274350" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Environment setup.md", - "hash": "17921742902733994403" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Updating to a newer version of.md", - "hash": "208622457670454515" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Versions and external plugins.md", - "hash": "16823304672831771300" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math.md", - "hash": "92408046703009242" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Release management & continuou.md", - "hash": "16898764451434429632" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Updating with upstream.md", - "hash": "1170819569679600371" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math_image.png", - "hash": "3354031708515247111" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing.md", - "hash": "1756354223273679632" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/1_Setting up authentication_.png", - "hash": "6311326131929912302" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Running tests.md", - "hash": "17371597141704701872" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication.md", - "hash": "6015736112713223983" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication_.png", - "hash": "11786210734557105126" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Test database.md", - "hash": "12683306435434855517" - }, - { - "file": "docs/Developer Guide/Developer Guide/Troubleshooting/Error [TransformError] The pac.md", - "hash": "2007360804189743501" - }, - { - "file": "docs/README-ZH_CN.md", - "hash": "1366683638207788793" - }, - { - "file": "docs/README.es.md", - "hash": "18392624940816469374" - }, - { - "file": "docs/README.it.md", - "hash": "9798316810783494206" - }, - { - "file": "docs/README.ja.md", - "hash": "423329561350748151" - }, - { - "file": "docs/README.ru.md", - "hash": "12627167880272281170" - }, - { - "file": "docs/Release Notes/!!!meta.json", - "hash": "10934753383109932202" - }, - { - "file": "docs/Release Notes/Release Notes/Release Template.md", - "hash": "10587082767465867254" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.0-beta.md", - "hash": "2832294761822956301" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.1-beta.md", - "hash": "2310438812816074728" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.10-beta.md", - "hash": "1078969479317092269" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.11-beta.md", - "hash": "1640429599497982025" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.12.md", - "hash": "9620208026446895995" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.2-beta.md", - "hash": "7134694010981034314" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.3.md", - "hash": "18427677233259365358" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.4.md", - "hash": "2207971841022283765" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.5-beta.md", - "hash": "10117902968885317624" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.5-beta_image.png", - "hash": "18107480102557535583" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.6-beta.md", - "hash": "665053246882198240" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.7-beta.md", - "hash": "12288347682016090997" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.8.md", - "hash": "10541241835395856847" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.9-beta.md", - "hash": "9397735037604295419" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.1-beta.md", - "hash": "1505295548915455849" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.2-beta.md", - "hash": "7463292530355249790" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.3-beta.md", - "hash": "8650194840196326837" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.4-beta.md", - "hash": "13432720443489500483" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.5.md", - "hash": "7852050459752848879" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.6.md", - "hash": "2891090662713160134" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.0-beta.md", - "hash": "14565759833614120830" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.1-beta.md", - "hash": "9808089043918900724" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.2-beta.md", - "hash": "358559780905427698" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.3-beta.md", - "hash": "17317864745090652158" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.4.md", - "hash": "9768188864190804507" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.5-beta.md", - "hash": "14426279930922433783" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.6.md", - "hash": "2771016520384144999" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.7.md", - "hash": "17418643896362304150" - }, - { - "file": "docs/Release Notes/Release Notes/v0.93.0.md", - "hash": "6446128540116970069" - }, - { - "file": "docs/Release Notes/Release Notes/v0.94.0.md", - "hash": "9030403597079974748" - }, - { - "file": "docs/Script API/.nojekyll", - "hash": "12301719336174243164" - }, - { - "file": "docs/Script API/assets/hierarchy.js", - "hash": "5555048876431558061" - }, - { - "file": "docs/Script API/assets/highlight.css", - "hash": "4285074483474071706" - }, - { - "file": "docs/Script API/assets/icons.js", - "hash": "16920762893256242568" - }, - { - "file": "docs/Script API/assets/icons.svg", - "hash": "12265282051439672960" - }, - { - "file": "docs/Script API/assets/main.js", - "hash": "6389590901821178970" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Recent Changes_image.png", + "hash": "16567853903302976035" }, { "file": "docs/Script API/assets/navigation.js", "hash": "7622748052566621629" }, { - "file": "docs/Script API/assets/search.js", - "hash": "8475404948919950531" + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-in-pr.png", + "hash": "132284441928130501" }, { - "file": "docs/Script API/assets/style.css", - "hash": "6390674142144445392" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.AbstractBeccaEntity.html", - "hash": "8730749362119426250" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BAttachment.html", - "hash": "8665382541585871854" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BAttribute.html", - "hash": "12076925399563302864" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BBranch.html", - "hash": "12776123451982372768" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BEtapiToken.html", - "hash": "7465710577091605064" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BNote.html", - "hash": "7005007978668651456" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BOption.html", - "hash": "18026026232234236536" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BRecentNote.html", - "hash": "11994967186676125771" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BRevision.html", - "hash": "1913392095596974652" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AsyncResource.html", - "hash": "11134645773041976007" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.Axios.html", - "hash": "6269752855705474165" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosError.html", - "hash": "3538595726634027313" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosHeaders.html", - "hash": "239737713549577107" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.CanceledError.html", - "hash": "4425156980023604406" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResource.html", - "hash": "7206080304720434024" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.html", - "hash": "9085627966887041694" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.SpacedUpdate.html", - "hash": "18328662110444012644" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.TaskContext.html", - "hash": "7871285994240472519" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.default.html", - "hash": "1518836167267522724" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Builder.html", - "hash": "14955316081398141094" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Parser.html", - "hash": "8038479147069214953" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.ValidationError.html", - "hash": "9783880855468813600" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.BasicWidget.html", - "hash": "7136750462660837560" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FAttachment.html", - "hash": "13471286589201764286" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FAttribute.html", - "hash": "917184200961509118" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FBranch.html", - "hash": "1369425044274420635" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FNote.html", - "hash": "2643559578902394996" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.NoteContextAwareWidget.html", - "hash": "10455528563649947810" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.RightPanelWidget.html", - "hash": "3165901033915109292" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.NoteContext.html", - "hash": "3072165195826397058" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedBasicWidget.html", - "hash": "9014785497596129429" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedComponent.html", - "hash": "1592247705606960334" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-1.html", - "hash": "17242853187880822286" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-2.html", - "hash": "7838335193815529689" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-3.html", - "hash": "10184639014742437536" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-4.html", - "hash": "14292946853601737478" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-5.html", - "hash": "960615437114587660" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-6.html", - "hash": "9457762962429674796" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-7.html", - "hash": "15012618481181922435" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default.html", - "hash": "7838365315847650187" - }, - { - "file": "docs/Script API/enums/Backend_Script_API._internal_.HttpStatusCode.html", - "hash": "8745780281324259183" - }, - { - "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeClickFolderMode.html", - "hash": "5271243830085395651" - }, - { - "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeSelectMode.html", - "hash": "10406956801362805969" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseString.html", - "hash": "10258104029178654570" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseStringPromise.html", - "hash": "17682488357431062503" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.firstCharLowerCase.html", - "hash": "922120200627718986" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.normalize.html", - "hash": "5359474619226365804" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseBooleans.html", - "hash": "13001294351403898208" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseNumbers.html", - "hash": "11186627944493481537" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.stripPrefix.html", - "hash": "15670937774342345272" - }, - { - "file": "docs/Script API/hierarchy.html", - "hash": "7087761326174264857" - }, - { - "file": "docs/Script API/index.html", - "hash": "7164310318541615803" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API.Api.html", - "hash": "13446311020763232058" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AsyncResourceOptions.html", - "hash": "8020470007601054280" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentOpts.html", - "hash": "152500221014723550" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentRow.html", - "hash": "15465410837105601985" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttributeRow.html", - "hash": "15707791380899076017" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosAdapter.html", - "hash": "13933798201523018141" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosBasicCredentials.html", - "hash": "9483175987744037880" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosDefaults.html", - "hash": "4789207332665890873" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInstance.html", - "hash": "13857640297500317744" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorManager.html", - "hash": "16067141193448503175" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorOptions.html", - "hash": "9333796471759547757" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProgressEvent.html", - "hash": "12957834045669515554" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProxyConfig.html", - "hash": "4788096206368192516" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestConfig.html", - "hash": "9355857643405320103" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestTransformer.html", - "hash": "10880068715112388734" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponse.html", - "hash": "6858727221974372008" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponseTransformer.html", - "hash": "2806242482626180969" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosStatic.html", - "hash": "8016093090359225641" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.BranchRow.html", - "hash": "6739150629511690175" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CallSite.html", - "hash": "9105341353515433236" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cancel.html", - "hash": "1851696810072605979" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelStatic.html", - "hash": "2400180820286945238" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelToken.html", - "hash": "17902608789772135187" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenSource.html", - "hash": "2321427478602125655" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenStatic.html", - "hash": "7602172161601555412" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Canceler.html", - "hash": "8429141126574678442" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cheerio.html", - "hash": "9617725570069495188" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioAPI.html", - "hash": "13479832008860105998" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioParserOptions.html", - "hash": "15172117939473057072" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CloneResponse.html", - "hash": "5030255813529246705" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CommentElement.html", - "hash": "5757791309139487861" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-1.html", - "hash": "14200853044524072086" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-2.html", - "hash": "843600582580013845" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-3.html", - "hash": "184966545090795313" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts.html", - "hash": "11051628329727220926" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ConvertOpts.html", - "hash": "15701215347730249486" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CreateAxiosDefaults.html", - "hash": "4682429153033268388" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CustomParamsSerializer.html", - "hash": "15081765819063145387" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.DefinitionObject.html", - "hash": "8482669630775134171" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Disposable.html", - "hash": "17695646711983531865" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EtapiTokenRow.html", - "hash": "10941322562955927911" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.Abortable.html", - "hash": "16436864775799866182" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResourceOptions.html", - "hash": "5102482543207472128" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterReferencingAsyncResource.html", - "hash": "16079421563292372603" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.html", - "hash": "4730824434973280272" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitterOptions.html", - "hash": "17877148018809949898" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormDataVisitorHelpers.html", - "hash": "11306007087078053081" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormSerializerOptions.html", - "hash": "11304844495282338077" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericAbortSignal.html", - "hash": "8823686662211753104" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericFormData.html", - "hash": "6929183783104069561" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericHTMLFormElement.html", - "hash": "513753591946297609" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GetByIdOpts.html", - "hash": "5448737405855690783" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.HeadersDefaults.html", - "hash": "11660903537271563350" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.InternalAxiosRequestConfig.html", - "hash": "9365833872657075449" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IterableIterator.html", - "hash": "5163879713483896100" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Iterator.html", - "hash": "1549347431730460347" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorReturnResult.html", - "hash": "308316750572840399" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorYieldResult.html", - "hash": "6690858814696502663" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.LookupAddressEntry.html", - "hash": "5234862388258249396" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteAndBranch.html", - "hash": "5338132683548030950" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteParams.html", - "hash": "5715377170996239099" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePathRecord.html", - "hash": "4324180597327533759" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePojo.html", - "hash": "13485037937373113578" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteRow.html", - "hash": "17068126425098799180" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Object.html", - "hash": "7536195722949662168" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.OptionRow.html", - "hash": "85392993839447133" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamEncoder.html", - "hash": "15628448467004066967" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamsSerializerOptions.html", - "hash": "3588430129710258287" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RawAxiosHeaders.html", - "hash": "11240216240251060271" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RecentNoteRow.html", - "hash": "11559748337879587947" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Relationship.html", - "hash": "2373120637168991589" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RevisionRow.html", - "hash": "9642250565769124462" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Root.html", - "hash": "15144226037365053003" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SavingOpts.html", - "hash": "17517531639057561352" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SearchParams.html", - "hash": "9726462727745192733" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Selector.html", - "hash": "15364640600220089516" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerOptions.html", - "hash": "10688294646722029359" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerVisitor.html", - "hash": "1067379542585829302" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterIteratorOptions.html", - "hash": "11141466728229885637" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterOptions.html", - "hash": "5066445864444001282" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TagElement.html", - "hash": "5955058222239385082" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TaskData.html", - "hash": "5988678324469384089" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TextElement.html", - "hash": "13001308591865194378" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TransitionalOptions.html", - "hash": "10766908675740671008" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.BuilderOptions.html", - "hash": "7369938283163183148" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.ParserOptions.html", - "hash": "15642689994042434174" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.RenderOptions.html", - "hash": "11685063307205303310" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.XmlDeclarationAttributes.html", - "hash": "7252070241156279013" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.convertableToString.html", - "hash": "3228561214395660819" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API.Api.html", - "hash": "10134937553251491464" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.AddToToolbarOpts.html", - "hash": "15598576219424391202" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Attribute.html", - "hash": "14233676832837243756" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.BaseJQueryEventObject.html", - "hash": "5013732184832830923" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKEvent.html", - "hash": "3375455992863958581" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKNode.html", - "hash": "328358266701651791" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CodeMirrorInstance.html", - "hash": "5254704683408293778" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CommandData.html", - "hash": "5984048291317023628" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmDialogOptions.html", - "hash": "2485905035049187615" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithMessageOptions.html", - "hash": "2506067464385064028" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithTitleOptions.html", - "hash": "5866678357727613126" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ContextMenuCommandData.html", - "hash": "7750561669371601406" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CreateLinkOptions.html", - "hash": "13233819667236849105" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DefinitionObject.html", - "hash": "11130678699920159045" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DragAndDrop5.html", - "hash": "12235972956045755395" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Event.html", - "hash": "1251345523646307022" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.EventData.html", - "hash": "5083755709710579372" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ExecuteCommandData.html", - "hash": "2037836278009355941" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttachmentRow.html", - "hash": "17859240158533988201" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttributeRow.html", - "hash": "16526604781141457523" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FBranchRow.html", - "hash": "15841520180055323953" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FNoteRow.html", - "hash": "1484356400159794839" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Fancytree.html", - "hash": "10131902098145945474" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeEvents.html", - "hash": "11031154792558652689" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeNode.html", - "hash": "16364488325625359774" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeOptions.html", - "hash": "7213971429337564504" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Filter.html", - "hash": "14499170204301357222" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Froca.html", - "hash": "1217693842643344527" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryEventObject.html", - "hash": "1874567868978952553" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryInputEventObject.html", - "hash": "9534752471101527686" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryKeyEventObject.html", - "hash": "7199790450716776034" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryMouseEventObject.html", - "hash": "530744806508107000" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryPromise.html", - "hash": "400605862919872301" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.List.html", - "hash": "16260087667105894937" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Marker.html", - "hash": "8991963297786749743" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionConfig.html", - "hash": "17866598684703786658" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionItem.html", - "hash": "13820590719720410030" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseDownEvent.html", - "hash": "11958072015813563157" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseEventBase.html", - "hash": "9847223446952188535" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodeData.html", - "hash": "4571368827230764181" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodePatch.html", - "hash": "6729580968896710441" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteCommandData.html", - "hash": "4249395754539564632" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteMetaData.html", - "hash": "6643969533434745761" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NotePathRecord.html", - "hash": "5314139773497320682" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteSwitchedContext.html", - "hash": "3972424598157172512" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PersistData.html", - "hash": "16866004549969430581" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Promise.html", - "hash": "11866758654625306439" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseBase.html", - "hash": "1805758559982211811" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseLike.html", - "hash": "974283704390710355" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromptDialogOptions.html", - "hash": "7465892738608602420" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ResolveOptions.html", - "hash": "2583999493139967374" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.SetNoteOpts.html", - "hash": "12907434742803176528" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ShownCallbackData.html", - "hash": "13537247872398882796" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Table.html", - "hash": "4028689333146133118" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextEditor.html", - "hash": "449560112535320014" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextNode.html", - "hash": "6688773409712327203" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextPosition.html", - "hash": "5309524778644384927" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextRange.html", - "hash": "1639545837883955808" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Thenable.html", - "hash": "8331448234773365089" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TranslationTable.html", - "hash": "16850652013639160527" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TriggeredEvent.html", - "hash": "12620323996473383686" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.UIEventBase.html", - "hash": "7464724917937222976" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ViewScope.html", - "hash": "3321680446742914167" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Writer.html", - "hash": "456106708570117750" - }, - { - "file": "docs/Script API/media/README-ZH_CN.md", - "hash": "11984743821127984549" - }, - { - "file": "docs/Script API/media/README.es.md", - "hash": "12007132810736524416" - }, - { - "file": "docs/Script API/media/README.it.md", - "hash": "14217194317100046164" - }, - { - "file": "docs/Script API/media/README.ja.md", - "hash": "5839329094632699960" - }, - { - "file": "docs/Script API/media/README.md", - "hash": "13555307518746257814" - }, - { - "file": "docs/Script API/media/README.ru.md", - "hash": "3404562560235215042" - }, - { - "file": "docs/Script API/modules.html", - "hash": "13008731499994074466" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.EventEmitter.html", - "hash": "8242760582394611478" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.html", - "hash": "1411675043711338139" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.html", - "hash": "57223527041811899" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.processors.html", - "hash": "6995519834803022692" - }, - { - "file": "docs/Script API/modules/Backend_Script_API.html", - "hash": "2670989234660369623" - }, - { - "file": "docs/Script API/modules/Frontend_Script_API._internal_.html", - "hash": "4791159135464329921" - }, - { - "file": "docs/Script API/modules/Frontend_Script_API.html", - "hash": "9601829814309710108" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AddressFamily.html", - "hash": "7517399269447797629" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AnyRest.html", - "hash": "12710122115453684289" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Args.html", - "hash": "386788577814183214" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ArrayBufferLike.html", - "hash": "7422498195549677002" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AttrFunction.html", - "hash": "7464389257892501573" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AttributeType.html", - "hash": "5550475244964704932" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterConfig.html", - "hash": "1582111942992506095" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterName.html", - "hash": "13105758170302488612" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderMatcher.html", - "hash": "13309236837429941975" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderParser.html", - "hash": "12559633325326468874" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderValue.html", - "hash": "9512883085740903000" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosPromise.html", - "hash": "3408905621401339879" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestHeaders.html", - "hash": "14760718317659645650" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestInterceptorUse.html", - "hash": "13834561859469322019" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseHeaders.html", - "hash": "2442744119645635699" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseInterceptorUse.html", - "hash": "11001137893491926586" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.CommonRequestHeadersList.html", - "hash": "6016657590786602881" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.CommonResponseHeadersList.html", - "hash": "12686548264575273733" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ContentType.html", - "hash": "13932579651356217652" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.DefaultEventMap.html", - "hash": "2483778765279634717" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Element.html", - "hash": "6095597057243564126" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.EventMap.html", - "hash": "18377469335988447416" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Exclude.html", - "hash": "6634549736483692084" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.IteratorResult.html", - "hash": "257322488402218270" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Key.html", - "hash": "7466986453655214266" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Key2.html", - "hash": "3433423352949927099" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Listener.html", - "hash": "3329650507998631496" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.LookupAddress.html", - "hash": "14049613797860375879" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Omit.html", - "hash": "13529309166908888710" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Partial.html", - "hash": "4501011672124687658" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Pick.html", - "hash": "3341742815545223156" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.PropertyKey.html", - "hash": "11788481235345192510" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosRequestHeaders.html", - "hash": "559182507513172234" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosResponseHeaders.html", - "hash": "1328538700446026505" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawCommonResponseHeaders.html", - "hash": "3506987803332284666" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Record.html", - "hash": "13673511288898005305" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ResponseType.html", - "hash": "1367713021652945755" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Updater.html", - "hash": "1581734712077372064" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.Options.html", - "hash": "14451666559484126665" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.OptionsV2.html", - "hash": "5920402519687550675" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.AttributeType.html", - "hash": "5684353554129692485" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CallbackBase.html", - "hash": "741726841759646895" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandAndEventMappings.html", - "hash": "2268313864143285342" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandMappings.html", - "hash": "5989980086619830728" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandNames.html", - "hash": "2129304447782419249" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogCallback.html", - "hash": "1423651493475025417" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogResult.html", - "hash": "5446474556972615089" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ElementType.html", - "hash": "3432788365641156892" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventData.html", - "hash": "7371978295108003728" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventListener.html", - "hash": "3086992513345785187" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventMappings.html", - "hash": "17522712746708162269" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventNames.html", - "hash": "10465196291594055305" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventOnlyNames.html", - "hash": "14604459281094063363" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Func.html", - "hash": "17945745625077581027" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.GetTextEditorCallback.html", - "hash": "14843214499299206182" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Handler.html", - "hash": "460599419953386172" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.LabelType.html", - "hash": "10278520028325625693" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Multiplicity.html", - "hash": "13792316861027742564" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.NoteType.html", - "hash": "3821780205674560486" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.PromptShownDialogCallback.html", - "hash": "10896789866055321500" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Required.html", - "hash": "13874622162097676032" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Screen.html", - "hash": "14867701053189781907" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.SqlExecuteResults.html", - "hash": "2078240985444622878" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.TypeOrArray.html", - "hash": "7227281976133909191" - }, - { - "file": "docs/Script API/variables/Backend_Script_API._internal_.Object.html", - "hash": "735061891881479089" - }, - { - "file": "docs/Script API/variables/Backend_Script_API._internal_.node_modules__types_xml2js.defaults.html", - "hash": "7094676868001758932" - }, - { - "file": "docs/Script API/variables/Backend_Script_API.api.html", - "hash": "2357111998918240337" - }, - { - "file": "docs/Script API/variables/Frontend_Script_API.api.html", - "hash": "15725440464713569337" - }, - { - "file": "docs/User Guide/!!!meta.json", - "hash": "11895438397111702315" - }, - { - "file": "docs/User Guide/User Guide.md", - "hash": "1450359651649532141" - }, - { - "file": "docs/User Guide/User Guide/AI/1_AI Provider Information_im.png", - "hash": "10888045542047015146" - }, - { - "file": "docs/User Guide/User Guide/AI/1_Introduction_image.png", - "hash": "4877080719766343931" - }, - { - "file": "docs/User Guide/User Guide/AI/2_Introduction_image.png", - "hash": "4884550846089380843" - }, - { - "file": "docs/User Guide/User Guide/AI/3_Introduction_image.png", - "hash": "2601903779808317589" - }, - { - "file": "docs/User Guide/User Guide/AI/4_Introduction_image.png", - "hash": "7955162789754070400" - }, - { - "file": "docs/User Guide/User Guide/AI/5_Introduction_image.png", - "hash": "4850690168254105590" - }, - { - "file": "docs/User Guide/User Guide/AI/6_Introduction_image.png", - "hash": "9380676484647713768" - }, - { - "file": "docs/User Guide/User Guide/AI/7_Introduction_image.png", - "hash": "5587697700215758247" - }, - { - "file": "docs/User Guide/User Guide/AI/8_Introduction_image.png", - "hash": "11452529331641889807" - }, - { - "file": "docs/User Guide/User Guide/AI/9_Introduction_image.png", - "hash": "18028155585930429734" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information.md", - "hash": "15763428834172387866" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Anthropic.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/1_Installing Ollama_image.png", - "hash": "14013766524203877283" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/2_Installing Ollama_image.png", - "hash": "5664446890215872177" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/3_Installing Ollama_image.png", - "hash": "16240241501910096427" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/4_Installing Ollama_image.png", - "hash": "4991925732090469797" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/5_Installing Ollama_image.png", - "hash": "6152858080669098007" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama.md", - "hash": "12841437113258344682" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama_image.png", - "hash": "910316219442712311" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/OpenAI.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information_im.png", - "hash": "7031327870994678887" - }, - { - "file": "docs/User Guide/User Guide/AI/Introduction.md", - "hash": "7557589660733249024" - }, - { - "file": "docs/User Guide/User Guide/AI/Introduction_image.png", - "hash": "17351850101399104891" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/1_Note Map (Link map, Tree m.png", - "hash": "12373337465272366302" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases.md", - "hash": "11266482405619520103" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/1_Day Notes_image.png", - "hash": "16475107103618581356" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md", - "hash": "4048785561696936259" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes_image.png", - "hash": "2285942951742705208" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager.md", - "hash": "5069971154417713445" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager_task-manager.png", - "hash": "15131572581326854447" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker.md", - "hash": "11605650381109217207" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker_image.png", - "hash": "9366125920821414974" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes.md", - "hash": "14090747291386876448" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Attribute Inheritance.md", - "hash": "8343345793425816358" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Labels.md", - "hash": "9387392694503447715" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes.md", - "hash": "5430776196114252034" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_image.png", - "hash": "15783140557738540121" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_promot.png", - "hash": "4117009512006470814" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Relations.md", - "hash": "6540434149738193967" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes_image.png", - "hash": "9403778094976246640" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions.md", - "hash": "2881796418862161644" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions_image.png", - "hash": "378004986618242169" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or e.md", - "hash": "14993988245541217079" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Cross-Origin Resource Sharing .md", - "hash": "8992349904956274857" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Trilium instance.md", - "hash": "17970831384961567831" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Custom Request Handler.md", - "hash": "9170902304145032041" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Custom Resource Providers.md", - "hash": "14771953276779663048" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database.md", - "hash": "4406107932468637386" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Demo Notes.md", - "hash": "1378072563095330583" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the data.png", - "hash": "4563135905265987265" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database.md", - "hash": "10952592975566243217" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/1_SQL Console_image.png", - "hash": "12789086198380592587" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/2_SQL Console_image.png", - "hash": "7503307765374810706" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/3_SQL Console_image.png", - "hash": "13660740225101115149" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console.md", - "hash": "13100562027326538681" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console_image.png", - "hash": "970435259063086957" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Default Note Title.md", - "hash": "13357835412456271247" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API).md", - "hash": "5606902658267694054" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes.md", - "hash": "13368937778131192525" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes_image.png", - "hash": "17789739194721579134" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat", - "hash": "3244421341483603138" + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Saving data via spaced update.md", + "hash": "15110096891490816903" }, { "file": "docs/User Guide/User Guide/Advanced Usage/Note ID.md", "hash": "450617259989353772" }, { - "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree m.png", - "hash": "16598943343245802197" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree map).md", - "hash": "5234725591771253677" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note source.md", - "hash": "9394701129235967378" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note source_image.png", - "hash": "5630189849743414946" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing.md", - "hash": "16449818561772399839" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/1_Serving directly the conte.png", - "hash": "12112716038656287241" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the conte.png", - "hash": "1644425674057515860" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the content o.md", - "hash": "1296006089989860555" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-multiple-not.png", - "hash": "12880863418544002540" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note-.png", - "hash": "6136583984879914294" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note.png", - "hash": "9562584638001327012" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_shared-list.png", - "hash": "11693155295709888518" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used.md", - "hash": "9961547767560894531" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/CKEditor.md", - "hash": "13836346921716381572" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Excalidraw.md", - "hash": "10507559843179746851" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Leaflet.md", - "hash": "5471188167022095551" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/MindElixir.md", - "hash": "6918212641187571529" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates.md", - "hash": "6677127073180056229" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template-create-.png", - "hash": "4737869303956882568" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template.png", - "hash": "18268213999228112195" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/1_Zen mode_image.png", - "hash": "17870947971075093638" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/2_Zen mode_image.png", - "hash": "18110039784597588797" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/3_Zen mode_image.png", - "hash": "6013034841761075376" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Evernote.md", - "hash": "10663074258500447978" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.md", - "hash": "11019657887828180506" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-n.gif", - "hash": "6892395771679875424" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-s.gif", - "hash": "13674308169686225848" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-file-imp.gif", - "hash": "17798202582697524861" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-inline-i.gif", - "hash": "14529090719970710849" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/OneNote.md", - "hash": "16890517179618830832" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Keyboard Shortcuts.md", - "hash": "5332915151552262991" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Jump to Note_image.png", - "hash": "3109371474460200422" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Workspaces_image.png", - "hash": "4002479791831846933" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks.md", - "hash": "8976377563476496635" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmark-folder.png", - "hash": "1845229153111247293" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmarks.gif", - "hash": "6177069217916149128" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note.md", - "hash": "13969417585075707281" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_image.png", - "hash": "9832511457480397483" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_recent-notes.gif", - "hash": "4138922403272569966" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting.md", - "hash": "1136330695046256259" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting_note-hoistin.gif", - "hash": "16530172022334752331" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation.md", - "hash": "12696895579094718506" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation_image.png", - "hash": "12236157060422417393" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search.md", - "hash": "13334896477355249102" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search_image.png", - "hash": "11779273039184489731" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note.md", - "hash": "7332983517167321294" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note_image.png", - "hash": "14767314553298789957" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search.md", - "hash": "11467430470930503027" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search_image.png", - "hash": "16349440484070621360" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes.md", - "hash": "14872467952454561602" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes_image.png", - "hash": "8643335030510998526" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Tree Concepts.md", - "hash": "15081221128162970091" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces.md", - "hash": "4135430089914112456" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces_image.png", - "hash": "12666342516606462643" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes.md", - "hash": "7930914628254226583" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Export as PDF_image.png", - "hash": "4937399655807059093" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Note List_image.png", - "hash": "5608976400586326827" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/2_Note List_image.png", - "hash": "10714735469933566718" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes.md", - "hash": "16760672233525606038" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes_hide-archiv.png", - "hash": "14754545197579652981" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Attachments.md", - "hash": "14577503159371179344" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes.md", - "hash": "7700476154666309105" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes/Branch prefix.md", - "hash": "176004439186847737" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes_create-clone.gif", - "hash": "304941799268696983" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF.md", - "hash": "13532136945252311206" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF_image.png", - "hash": "14541367628854414550" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons.md", - "hash": "1744378485879608318" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-chang.png", - "hash": "11083556565458137739" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-galle.png", - "hash": "11774634652263476090" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List.md", - "hash": "6293287821691646630" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/10_Calendar View_image.png", - "hash": "6057572322117403470" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/11_Calendar View_image.png", - "hash": "6636068838859637072" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/1_Calendar View_image.png", - "hash": "6148618346253868614" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/2_Calendar View_image.png", - "hash": "8746483486106953393" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/3_Calendar View_image.png", - "hash": "7365965105798352895" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/4_Calendar View_image.png", - "hash": "5933726449688725337" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/5_Calendar View_image.png", - "hash": "15719916793769487087" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/6_Calendar View_image.png", - "hash": "17281596805053082675" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/7_Calendar View_image.png", - "hash": "11541935763676308271" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/8_Calendar View_image.png", - "hash": "13401928785023381483" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/9_Calendar View_image.png", - "hash": "16035162645109284070" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu.md", + "hash": "17383973353100108762" }, { "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View.md", "hash": "1959120139728442097" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View_image.png", - "hash": "8652479499535248784" + "file": "docs/User Guide/User Guide/AI/1_Introduction_image.png", + "hash": "4877080719766343931" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List_image.png", - "hash": "17344203973631084668" + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Guidelines.md", + "hash": "4788416431512568863" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions.md", - "hash": "17445918024788718614" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryEventObject.html", + "hash": "1874567868978952553" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions_note-revisi.png", - "hash": "15021951667703156902" + "file": ".github/ISSUE_TEMPLATE/feature_request.yml", + "hash": "13653184246748995672" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes.md", - "hash": "5093501931256724020" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes_protecting.gif", - "hash": "9909987976886492758" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes.md", - "hash": "8776625923756086770" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes_image.png", - "hash": "647700179866845833" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Sorting Notes.md", - "hash": "10860595661578165438" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes.md", - "hash": "9592422191973306572" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes/Theme Gallery.md", - "hash": "18153059640044698398" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_dark-theme.png", - "hash": "4104069441770412146" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_image.png", - "hash": "451865633567842034" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_steel-blue.png", - "hash": "3726910334005032045" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Options_image.png", - "hash": "13366394243903008319" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Recent Changes_image.png", - "hash": "16567853903302976035" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Tabs_image.png", - "hash": "7795320006621100645" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Vertical and horizontal la.png", - "hash": "17788024311673518016" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Tabs_image.png", - "hash": "10334320195251173502" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Vertical and horizontal la.png", - "hash": "17310758833048940667" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/3_Vertical and horizontal la.png", - "hash": "17791091569728992943" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/4_Vertical and horizontal la.png", - "hash": "7456379737044893906" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/5_Vertical and horizontal la.png", - "hash": "6580926007613627467" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons.md", - "hash": "7301256874416908847" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons_image.png", - "hash": "9229127427161350065" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu.md", - "hash": "824107434255196614" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu_image.png", - "hash": "215776480600711406" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar.md", - "hash": "9757830933816714683" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar_image.png", - "hash": "3856338290485766365" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree.md", - "hash": "10401640377108524547" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/1_Note tree contextual menu_.png", - "hash": "747296639953030665" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection.md", - "hash": "14248403792799944995" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection_image.png", - "hash": "9707758146677680170" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu.md", - "hash": "17383973353100108762" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu_.png", - "hash": "7539417519466307919" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_drag-and-drop.gif", - "hash": "16530764084716612313" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_image.png", - "hash": "8528551565462205040" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_move-note-with-k.gif", - "hash": "1539959243766334436" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons.md", - "hash": "13864464437617054232" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons_image.png", - "hash": "6536290798453171827" + "file": "CODE_OF_CONDUCT", + "hash": "18279634385063499779" }, { "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options.md", "hash": "11823746626813599281" }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options_image.png", - "hash": "13893366860557066470" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes.md", - "hash": "8884492790625828020" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes_image.png", - "hash": "5636741691843527729" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon.md", - "hash": "15123628542353858523" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon_image.png", - "hash": "253567192754290441" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar.md", - "hash": "11028754003011624084" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar_image.png", - "hash": "8071194794088169141" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View.md", - "hash": "886075848609982938" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_1_Split View_im.png", - "hash": "8605575081147969224" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_2_Split View_im.png", - "hash": "15941739623146058763" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_3_Split View_im.png", - "hash": "17939885197973038320" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_4_Split View_im.png", - "hash": "7394270400443781214" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_Split View_imag.png", - "hash": "16441078406174519311" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs.md", - "hash": "9299907944748565805" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs_image.png", - "hash": "17923007007271061715" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal la.png", - "hash": "7070453246985156821" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal layout.md", - "hash": "10256487723212567021" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode.md", - "hash": "12484251737157353550" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode_image.png", - "hash": "3662917132549511544" - }, - { - "file": "docs/User Guide/User Guide/FAQ.md", - "hash": "16165615300336202445" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Backup.md", - "hash": "11054206897853098224" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Data directory.md", - "hash": "4358803339908624454" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Data directory_image.png", - "hash": "16647401677978700113" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Desktop Installation.md", - "hash": "4446390166291792083" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend.md", - "hash": "1441716712876520647" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-sma.png", - "hash": "8564668320550827697" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-tab.png", - "hash": "12373682799958388972" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation.md", - "hash": "16110939920725749339" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Manually.md", - "hash": "7984968569437996419" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Multiple server instances.md", - "hash": "14997675224095677092" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/On NixOS.md", - "hash": "4555018800299124693" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.md", - "hash": "5552434531380325100" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Docker.md", - "hash": "15354643679921200435" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Kubernetes.md", - "hash": "6747559135065742360" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Apache.md", - "hash": "12298787927497626453" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Nginx.md", - "hash": "10501145259956261610" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/Multi-Factor Authentication.md", - "hash": "10006749572057153946" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/TLS Configuration.md", - "hash": "12439296878183116768" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization.md", - "hash": "16892041595153525525" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_image.png", - "hash": "13708579463799173943" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-confi.png", - "hash": "2997447751316549256" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-in-pr.png", - "hash": "132284441928130501" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-init.png", - "hash": "15322721528964766736" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Upgrading TriliumNext.md", - "hash": "2632666519047935337" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper.md", - "hash": "2359889091966702200" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper_image.png", - "hash": "4210423681076794011" - }, - { - "file": "docs/User Guide/User Guide/Note Types.md", - "hash": "3734229651482058716" - }, - { - "file": "docs/User Guide/User Guide/Note Types/10_Geo Map_image.png", - "hash": "8838519618452959037" - }, - { - "file": "docs/User Guide/User Guide/Note Types/11_Geo Map_image.png", - "hash": "2543239855913430096" - }, - { - "file": "docs/User Guide/User Guide/Note Types/12_Geo Map_image.png", - "hash": "7173377365018544807" - }, - { - "file": "docs/User Guide/User Guide/Note Types/13_Geo Map_image.png", - "hash": "3444457344697003162" - }, - { - "file": "docs/User Guide/User Guide/Note Types/14_Geo Map_image.png", - "hash": "17134563145439183238" - }, - { - "file": "docs/User Guide/User Guide/Note Types/15_Geo Map_image.png", - "hash": "4140348661462948102" - }, - { - "file": "docs/User Guide/User Guide/Note Types/16_Geo Map_image.png", - "hash": "17273732328125046708" - }, - { - "file": "docs/User Guide/User Guide/Note Types/17_Geo Map_image.png", - "hash": "18076589540377938573" - }, - { - "file": "docs/User Guide/User Guide/Note Types/18_Geo Map_image.png", - "hash": "13441170146038040719" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Code_image.png", - "hash": "5782275106327359896" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_File_image.png", - "hash": "2974379219914373732" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Geo Map_image.png", - "hash": "5960205806672652286" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Mermaid Diagrams_image.png", - "hash": "811538388658451497" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.gif", - "hash": "10041817102859838104" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.png", - "hash": "15720370010832556444" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Text_image.png", - "hash": "13901334951495473202" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_File_image.png", - "hash": "5767399260855724832" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Geo Map_image.png", - "hash": "7283724173419351355" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Mermaid Diagrams_image.png", - "hash": "17913912640153568729" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Text_image.png", - "hash": "17505861757177107597" - }, - { - "file": "docs/User Guide/User Guide/Note Types/3_File_image.png", - "hash": "14996991930227579563" - }, - { - "file": "docs/User Guide/User Guide/Note Types/3_Geo Map_image.png", - "hash": "6747111431605585316" - }, - { - "file": "docs/User Guide/User Guide/Note Types/4_File_image.png", - "hash": "6230957845104792702" - }, - { - "file": "docs/User Guide/User Guide/Note Types/4_Geo Map_image.png", - "hash": "2426346789252029208" - }, - { - "file": "docs/User Guide/User Guide/Note Types/5_File_image.png", - "hash": "9655011546911837239" - }, - { - "file": "docs/User Guide/User Guide/Note Types/5_Geo Map_image.png", - "hash": "5669308583844409052" - }, - { - "file": "docs/User Guide/User Guide/Note Types/6_File_image.png", - "hash": "10934030213595628481" - }, - { - "file": "docs/User Guide/User Guide/Note Types/6_Geo Map_image.png", - "hash": "890997284892548696" - }, - { - "file": "docs/User Guide/User Guide/Note Types/7_Geo Map_image.png", - "hash": "6480890944074410737" - }, - { - "file": "docs/User Guide/User Guide/Note Types/8_Geo Map_image.png", - "hash": "2873444371416724136" - }, - { - "file": "docs/User Guide/User Guide/Note Types/9_Geo Map_image.png", - "hash": "17335918274787502426" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Book.md", - "hash": "15417036035073159470" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Book_image.png", - "hash": "1768928603662784559" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Canvas.md", - "hash": "9502581554311379088" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Canvas_image.png", - "hash": "1139182728331705462" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Code.md", - "hash": "2257698891491035087" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Code_image.png", - "hash": "5890806361392158763" - }, - { - "file": "docs/User Guide/User Guide/Note Types/File.md", - "hash": "12296690400052211633" - }, - { - "file": "docs/User Guide/User Guide/Note Types/File_image.png", - "hash": "6783984664127428948" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map.md", - "hash": "6160461763173577677" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.jpg", - "hash": "14126513805103816937" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.png", - "hash": "6164131355503646691" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams.md", - "hash": "14857943768636243310" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout.md", - "hash": "9218990841595290329" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK off.svg", - "hash": "1981254385350765245" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK on.svg", - "hash": "16635311815022210160" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams_image.png", - "hash": "2085027971032498137" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mind Map.md", - "hash": "10495538393047943834" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mind Map_image.png", - "hash": "12216762309023170303" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Note Map.md", - "hash": "1349664584062347967" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Note Map_image.png", - "hash": "1162798172636853322" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map.md", - "hash": "7102785365602063713" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.gif", - "hash": "11740192765914054661" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.png", - "hash": "5132534751975390759" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Render Note.md", - "hash": "10907883447497386270" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Render Note_image.png", - "hash": "5322813341800091719" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Saved Search.md", - "hash": "8132559986223151235" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Saved Search_saved-search.gif", - "hash": "7608073468067457147" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text.md", - "hash": "2403881404737477024" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Images_image.png", - "hash": "8482371421622741436" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Lists_image.png", - "hash": "2954862785845336764" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Tables_image.png", - "hash": "6404125826080231616" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/11_Tables_image.png", - "hash": "5258562961033949883" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/12_Tables_image.png", - "hash": "17637903660588300344" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Block quotes & admonitions.png", - "hash": "18010671239225600245" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Developer-specific formatt.png", - "hash": "6129242964974999554" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Footnotes_image.png", - "hash": "1577288190943202052" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Formatting toolbar_image.png", - "hash": "9465014681604577852" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_General formatting_image.png", - "hash": "13063031561540176225" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Images_image.png", - "hash": "1599196428668280551" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Insert buttons_image.png", - "hash": "13776013165806672321" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Links_image.png", - "hash": "15063546866325110183" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Lists_image.png", - "hash": "13706420500212756506" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Math Equations_image.png", - "hash": "17950780031579539712" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Other features_image.png", - "hash": "15510836132033988057" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Tables_image.png", - "hash": "17750886350164547911" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Block quotes & admonitions.png", - "hash": "9887089141669552684" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Developer-specific formatt.png", - "hash": "13063031561540176225" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Formatting toolbar_image.png", - "hash": "11287318707285627003" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_General formatting_image.png", - "hash": "9106571901573895633" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Images_image.png", - "hash": "14485228935641695910" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Insert buttons_image.png", - "hash": "9041778621024218634" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Links_image.png", - "hash": "8876685958483648347" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Lists_image.png", - "hash": "8577237444604362438" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Other features_image.png", - "hash": "1340984468489886696" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Tables_image.png", - "hash": "4005816462770724619" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Developer-specific formatt.png", - "hash": "371275438898256895" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Formatting toolbar_image.png", - "hash": "13884099936378253709" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_General formatting_image.png", - "hash": "12935355679871327728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Images_image.png", - "hash": "17061610823626139831" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Insert buttons_image.png", - "hash": "16565743405065440773" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Links_image.png", - "hash": "15811656947725398233" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Lists_image.png", - "hash": "7911785825993500211" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Other features_image.png", - "hash": "14748759719944428714" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Tables_image.png", - "hash": "9228058938189586627" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Developer-specific formatt.png", - "hash": "12452128562004210306" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_General formatting_image.png", - "hash": "4875243929617270209" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Images_image.png", - "hash": "14862810319352213491" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Insert buttons_image.png", - "hash": "14260304610675467053" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Lists_image.png", - "hash": "8922870427366632483" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Other features_image.png", - "hash": "12203404498693344880" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Tables_image.png", - "hash": "8355105912319259830" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Developer-specific formatt.png", - "hash": "10133610562087684023" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Images_image.png", - "hash": "404883919247951217" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Insert buttons_image.png", - "hash": "16494632615299758318" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Lists_image.png", - "hash": "6428938901484193450" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Other features_image.png", - "hash": "8577237444604362438" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Tables_image.png", - "hash": "1917723022829886737" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Developer-specific formatt.png", - "hash": "2718064772609307655" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Images_image.png", - "hash": "6173165911963001959" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Insert buttons_image.png", - "hash": "11895482486771487063" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Lists_image.png", - "hash": "12597899845274049940" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Other features_image.png", - "hash": "3612025371214749570" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Tables_image.png", - "hash": "7670352131626581828" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Images_image.png", - "hash": "17511659637484055697" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Insert buttons_image.png", - "hash": "12084899036395439728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Lists_image.png", - "hash": "7647172644799470339" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Tables_image.png", - "hash": "15239152810309003956" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Images_image.png", - "hash": "9366125920821414974" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Insert buttons_image.png", - "hash": "16706472587272328864" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Lists_image.png", - "hash": "7443683400857714109" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Tables_image.png", - "hash": "5258562961033949883" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Images_image.png", - "hash": "5509956150273006831" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Lists_image.png", - "hash": "12986812650616357264" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Tables_image.png", - "hash": "10336090900386736766" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.md", - "hash": "5962660712660554216" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.png", - "hash": "1499961390844427836" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-t.png", - "hash": "2884027460715375910" - }, { "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-to-le.md", "hash": "13683115122867215765" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote.md", - "hash": "1597214027009838580" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote_cut-to-subn.gif", - "hash": "11217765058792445527" + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager_task-manager.png", + "hash": "15131572581326854447" }, { "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatt.png", "hash": "14391624469883910402" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting.md", - "hash": "748081058892517144" + "file": "docs/User Guide/User Guide/AI/AI Provider Information.md", + "hash": "15763428834172387866" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/1_Code blocks_image.png", - "hash": "12452128562004210306" + "file": "docs/Script API/types/Frontend_Script_API._internal_.Multiplicity.html", + "hash": "13792316861027742564" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/2_Code blocks_image.png", - "hash": "15497219282555300265" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons_image.png", + "hash": "9229127427161350065" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks.md", - "hash": "3478413245687427782" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Filter.html", + "hash": "14499170204301357222" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks_image.png", - "hash": "16799092375248159407" + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/3_Installing Ollama_image.png", + "hash": "16240241501910096427" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes.md", - "hash": "11339671296450160355" + "file": "docs/Release Notes/Release Notes/v0.92.1-beta.md", + "hash": "9808089043918900724" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes_image.png", - "hash": "15321934377294206330" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CreateLinkOptions.html", + "hash": "13233819667236849105" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar.md", - "hash": "9300995663475426917" + "file": "docs/User Guide/User Guide/Note Types/2_File_image.png", + "hash": "5767399260855724832" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar_image.png", - "hash": "104005948126057026" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeEvents.html", + "hash": "11031154792558652689" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/General formatting.md", - "hash": "11206044994963259500" + "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosHeaders.html", + "hash": "239737713549577107" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/General formatting_image.png", - "hash": "12783629317063905582" + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker_image.png", + "hash": "9366125920821414974" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list.md", - "hash": "612991856020272057" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryKeyEventObject.html", + "hash": "7199790450716776034" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list_image.png", - "hash": "2083570772957836032" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromptDialogOptions.html", + "hash": "7465892738608602420" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Images.md", - "hash": "9287615942710690324" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.RenderOptions.html", + "hash": "11685063307205303310" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/1_Image references_image.png", - "hash": "15112796094753790620" + "file": "docs/User Guide/User Guide/Note Types/Text/10_Lists_image.png", + "hash": "2954862785845336764" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references.md", - "hash": "9404432048954214990" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references_image.png", - "hash": "1175189001050726431" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images_image.png", - "hash": "4210412299283729681" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Include Note.md", - "hash": "16473224076113886785" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Include Note_image.png", - "hash": "13366623301870990750" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons.md", - "hash": "10439313914343399726" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons_image.png", - "hash": "989188453960649104" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Keyboard shortcuts.md", - "hash": "17819850783262866648" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Links.md", - "hash": "10628878424092766954" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Links_image.png", - "hash": "11406167236236482911" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Lists.md", - "hash": "12112056947947146011" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Lists_image.png", - "hash": "5447861844644759091" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Markdown-like formatting.md", - "hash": "11422547423110182484" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations.md", - "hash": "7352168231624868948" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations_image.png", - "hash": "16696251042196156633" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Other features.md", - "hash": "905284970607153537" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Other features_image.png", - "hash": "17467294145722623090" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents.md", - "hash": "10314448453619064211" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents_image.png", - "hash": "4733595202943894589" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Tables.md", - "hash": "15149183778855005839" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Tables_image.png", - "hash": "5417625780542207119" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text_image.png", - "hash": "2939147542296328141" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Web View.md", - "hash": "11930025137242473821" - }, - { - "file": "docs/User Guide/User Guide/Note Types_image.png", - "hash": "11158350846319988504" - }, - { - "file": "docs/User Guide/User Guide/Quick Start.md", - "hash": "26614788084837278" - }, - { - "file": "docs/User Guide/User Guide/Scripting.md", - "hash": "17214995894850908124" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets.md", - "hash": "3016592544713030940" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Widget Basics.md", - "hash": "11549739193679627411" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget.md", - "hash": "9645085549983198995" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget_image.png", - "hash": "2841511895989652415" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Events.md", - "hash": "16576016033025672802" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.md", - "hash": "3591187406500098510" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button.md", - "hash": "918543869021637630" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button_i.png", - "hash": "12237996247459794678" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes .png", - "hash": "13316953234191714312" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes to c.md", - "hash": "14959920764392213925" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Frontend Basics.md", - "hash": "14476108367955913260" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API.md", - "hash": "12652565283186593544" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API/Backend API.dat", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Theme development/1_Custom app-wide CSS_image.png", - "hash": "17083234048482228473" - }, - { - "file": "docs/User Guide/User Guide/Theme development/2_Custom app-wide CSS_image.png", - "hash": "5480944933144148013" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme.md", - "hash": "8694971297894648515" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_1_.png", - "hash": "9462084121181865214" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_2_.png", - "hash": "7017134628923823634" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_3_.png", - "hash": "1518431155925547874" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_4_.png", - "hash": "3728661401474084659" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_5_.png", - "hash": "6214291566037882613" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_Cr.png", - "hash": "14045585611753963314" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS.md", - "hash": "17661816458846796544" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS_image.png", - "hash": "3158185449180547797" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme.md", - "hash": "10932498007288012373" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme_i.png", - "hash": "9049696547697245045" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Reference.md", - "hash": "11046588365730688403" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting.md", - "hash": "16688909957107755744" + "file": "docs/Developer Guide/Developer Guide/Dependency Management/Having a simpler packaging sys.md", + "hash": "7380313725791405277" }, { "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database.md", "hash": "1892644441410455042" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database_image.png", - "hash": "201026404721860858" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ShownCallbackData.html", + "hash": "13537247872398882796" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs.md", - "hash": "15587281502024486048" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_Split View_imag.png", + "hash": "16441078406174519311" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-expo.png", - "hash": "6194482635852243395" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View_image.png", + "hash": "8652479499535248784" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-fire.png", - "hash": "16523046904936619160" + "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS_image.png", + "hash": "3158185449180547797" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_image.png", - "hash": "10805210383135653112" + "file": "docs/User Guide/User Guide/Note Types/13_Geo Map_image.png", + "hash": "3444457344697003162" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Refreshing the application.md", - "hash": "3405008745811341199" + "file": "docs/Release Notes/Release Notes/v0.92.7.md", + "hash": "17418643896362304150" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Reporting issues.md", - "hash": "7437940663744225187" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FBranchRow.html", + "hash": "15841520180055323953" }, { - "file": "docs/User Guide/User Guide/Troubleshooting/Synchronization fails with 504.md", - "hash": "2785587467017944783" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon.md", + "hash": "15123628542353858523" }, { - "file": "eslint.config.mjs", - "hash": "9204104122661382069" + "file": ".idea/codeStyles/Project.xml", + "hash": "17510646002422655057" + }, + { + "file": "docs/User Guide/User Guide/AI/4_Introduction_image.png", + "hash": "7955162789754070400" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Images_image.png", + "hash": "9366125920821414974" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes .png", + "hash": "13316953234191714312" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon.md", + "hash": "3497841704967107299" + }, + { + "file": ".gitignore", + "hash": "11919028057662818718" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ContextMenuCommandData.html", + "hash": "7750561669371601406" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.12.md", + "hash": "9620208026446895995" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme.md", + "hash": "10932498007288012373" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Updater.html", + "hash": "1581734712077372064" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.TypeOrArray.html", + "hash": "7227281976133909191" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NotePathRecord.html", + "hash": "5314139773497320682" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database.md", + "hash": "10952592975566243217" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Tables.md", + "hash": "15149183778855005839" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.AsyncResource.html", + "hash": "11134645773041976007" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console_image.png", + "hash": "970435259063086957" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets.md", + "hash": "12822032052331653311" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Labels.md", + "hash": "9387392694503447715" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation.md", + "hash": "4320322749360908547" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_4_.png", + "hash": "3728661401474084659" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Relations.md", + "hash": "6540434149738193967" + }, + { + "file": "docs/Release Notes/!!!meta.json", + "hash": "10934753383109932202" }, { "file": "images/screenshots/app.png", "hash": "955084500244844963" }, { - "file": "nx.json", - "hash": "17259946656272583256" + "file": "docs/User Guide/User Guide/Note Types/Text/9_Tables_image.png", + "hash": "10336090900386736766" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Iterator.html", + "hash": "1549347431730460347" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images.md", + "hash": "9287615942710690324" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing.md", + "hash": "16449818561772399839" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Other features_image.png", + "hash": "8577237444604362438" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AttrFunction.html", + "hash": "7464389257892501573" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Launchers.md", + "hash": "17121274757495258227" + }, + { + "file": "docs/User Guide/User Guide/Note Types/11_Geo Map_image.png", + "hash": "2543239855913430096" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams_image.png", + "hash": "2085027971032498137" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Other features_image.png", + "hash": "17467294145722623090" + }, + { + "file": "docs/User Guide/User Guide/AI/5_Introduction_image.png", + "hash": "4850690168254105590" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text.md", + "hash": "2403881404737477024" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Copy image reference to the cl.md", + "hash": "5997370566040672231" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventListener.html", + "hash": "3086992513345785187" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes.md", + "hash": "9592422191973306572" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosResponseHeaders.html", + "hash": "1328538700446026505" + }, + { + "file": "docs/User Guide/User Guide/Note Types/10_Geo Map_image.png", + "hash": "8838519618452959037" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Developer-specific formatt.png", + "hash": "12452128562004210306" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Loading data.md", + "hash": "17419379493759801290" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/7_Calendar View_image.png", + "hash": "11541935763676308271" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math_image.png", + "hash": "3354031708515247111" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu_image.png", + "hash": "215776480600711406" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericHTMLFormElement.html", + "hash": "513753591946297609" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TextElement.html", + "hash": "13001308591865194378" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/1_Installing Ollama_image.png", + "hash": "14013766524203877283" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Developer-specific formatt.png", + "hash": "2718064772609307655" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.5-beta.md", + "hash": "10117902968885317624" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorManager.html", + "hash": "16067141193448503175" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Lists_image.png", + "hash": "6428938901484193450" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons.md", + "hash": "7301256874416908847" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Protected entities.md", + "hash": "8607204597560914266" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandAndEventMappings.html", + "hash": "2268313864143285342" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Tables_image.png", + "hash": "1917723022829886737" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes.md", + "hash": "7930914628254226583" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Images_image.png", + "hash": "1599196428668280551" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Links_image.png", + "hash": "15063546866325110183" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Func.html", + "hash": "17945745625077581027" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mind Map_image.png", + "hash": "12216762309023170303" + }, + { + "file": "docs/README.ru.md", + "hash": "12627167880272281170" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosError.html", + "hash": "3538595726634027313" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.EventMap.html", + "hash": "18377469335988447416" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes.md", + "hash": "14872467952454561602" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Promise.html", + "hash": "11866758654625306439" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TriggeredEvent.html", + "hash": "12620323996473383686" }, { "file": "package-lock.json", - "hash": "10001222355649607774" + "hash": "16875320663299986357" }, { - "file": "package.json", - "hash": "8141323027019168060" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponse.html", + "hash": "6858727221974372008" }, { - "file": "packages/.gitkeep", + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Refresh widget with option cha.md", + "hash": "12967337054313845860" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericAbortSignal.html", + "hash": "8823686662211753104" + }, + { + "file": "docs/User Guide/User Guide/AI/7_Introduction_image.png", + "hash": "5587697700215758247" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.4.md", + "hash": "9768188864190804507" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note source_image.png", + "hash": "5630189849743414946" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/General formatting.md", + "hash": "11206044994963259500" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references_image.png", + "hash": "1175189001050726431" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FAttachment.html", + "hash": "13471286589201764286" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Adaptive icon_image.png", + "hash": "9113973157649197285" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Images_image.png", + "hash": "404883919247951217" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Formatting toolbar_image.png", + "hash": "13884099936378253709" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Jump to Note_image.png", + "hash": "3109371474460200422" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Lists_image.png", + "hash": "13706420500212756506" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal la.png", + "hash": "7070453246985156821" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BAttribute.html", + "hash": "12076925399563302864" + }, + { + "file": "docs/User Guide/User Guide/Note Types/17_Geo Map_image.png", + "hash": "18076589540377938573" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Lists_image.png", + "hash": "12597899845274049940" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mind Map.md", + "hash": "10495538393047943834" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-n.gif", + "hash": "6892395771679875424" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/9_Lists_image.png", + "hash": "12986812650616357264" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.stripPrefix.html", + "hash": "15670937774342345272" + }, + { + "file": "docs/User Guide/User Guide/Note Types/9_Geo Map_image.png", + "hash": "17335918274787502426" + }, + { + "file": "docs/User Guide/User Guide/Scripting.md", + "hash": "17214995894850908124" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.XmlDeclarationAttributes.html", + "hash": "7252070241156279013" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Trilium instance.md", + "hash": "17970831384961567831" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseString.html", + "hash": "10258104029178654570" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Special notes.md", "hash": "3244421341483603138" }, { - "file": "renovate.json", - "hash": "13944559841874503663" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/9_Calendar View_image.png", + "hash": "16035162645109284070" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Nginx.md", + "hash": "10501145259956261610" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Geo Map_image.png", + "hash": "7283724173419351355" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_steel-blue.png", + "hash": "3726910334005032045" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes.md", + "hash": "5430776196114252034" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main_image.png", + "hash": "5477858928741357904" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS.md", + "hash": "17661816458846796544" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.6.md", + "hash": "2771016520384144999" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Kubernetes.md", + "hash": "6747559135065742360" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Mermaid Diagrams_image.png", + "hash": "811538388658451497" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes.md", + "hash": "11339671296450160355" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/3_Calendar View_image.png", + "hash": "7365965105798352895" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Insert buttons_image.png", + "hash": "14260304610675467053" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used.md", + "hash": "9961547767560894531" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication_.png", + "hash": "11786210734557105126" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelStatic.html", + "hash": "2400180820286945238" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/8_Calendar View_image.png", + "hash": "13401928785023381483" + }, + { + "file": ".idea/vcs.xml", + "hash": "16873264805383449197" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Node.js, Electron and `better-.md", + "hash": "7009722849407231683" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images_image.png", + "hash": "4210412299283729681" + }, + { + "file": "docs/User Guide/User Guide/Note Types/5_File_image.png", + "hash": "9655011546911837239" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces_image.png", + "hash": "12666342516606462643" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Desktop Installation.md", + "hash": "4446390166291792083" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation/Documentation references in th.md", + "hash": "4999625856386815050" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.1-beta.md", + "hash": "2310438812816074728" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_5_.png", + "hash": "6214291566037882613" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-6.html", + "hash": "9457762962429674796" + }, + { + "file": "docs/User Guide/User Guide/AI/Introduction.md", + "hash": "7557589660733249024" + }, + { + "file": ".editorconfig", + "hash": "11859237446229868960" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-file-imp.gif", + "hash": "17798202582697524861" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Writer.html", + "hash": "456106708570117750" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Ma.png", + "hash": "12881778660438955813" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/1_Image references_image.png", + "hash": "15112796094753790620" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.LookupAddressEntry.html", + "hash": "5234862388258249396" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Versions and external plugins.md", + "hash": "16823304672831771300" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search_image.png", + "hash": "16349440484070621360" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Running tests.md", + "hash": "17371597141704701872" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/2_Note List_image.png", + "hash": "10714735469933566718" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote.md", + "hash": "1597214027009838580" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/TLS Configuration.md", + "hash": "12439296878183116768" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/CKEditor.md", + "hash": "13836346921716381572" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventData.html", + "hash": "7371978295108003728" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar.md", + "hash": "11028754003011624084" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteCommandData.html", + "hash": "4249395754539564632" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Demo Notes.md", + "hash": "1378072563095330583" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Synchronisation/Content hashing.md", + "hash": "8981070653808491801" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default.html", + "hash": "7838365315847650187" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-fire.png", + "hash": "16523046904936619160" + }, + { + "file": "docs/User Guide/User Guide/Note Types/18_Geo Map_image.png", + "hash": "13441170146038040719" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note source.md", + "hash": "9394701129235967378" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Block quotes & admonitions.png", + "hash": "9887089141669552684" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelToken.html", + "hash": "17902608789772135187" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Lists_image.png", + "hash": "5447861844644759091" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ConvertOpts.html", + "hash": "15701215347730249486" + }, + { + "file": "docs/User Guide/User Guide.md", + "hash": "1450359651649532141" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorYieldResult.html", + "hash": "6690858814696502663" + }, + { + "file": "docs/Script API/assets/icons.js", + "hash": "16920762893256242568" + }, + { + "file": "docs/Release Notes/Release Notes/v0.93.0.md", + "hash": "6446128540116970069" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme_i.png", + "hash": "9049696547697245045" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API).md", + "hash": "5606902658267694054" + }, + { + "file": "docs/User Guide/User Guide/FAQ.md", + "hash": "16165615300336202445" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestInterceptorUse.html", + "hash": "13834561859469322019" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-3.html", + "hash": "10184639014742437536" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryPromise.html", + "hash": "400605862919872301" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FNote.html", + "hash": "2643559578902394996" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Insert buttons_image.png", + "hash": "11895482486771487063" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main.md", + "hash": "17316636940774967390" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes_image.png", + "hash": "5636741691843527729" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.ParserOptions.html", + "hash": "15642689994042434174" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Required.html", + "hash": "13874622162097676032" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderValue.html", + "hash": "9512883085740903000" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Upgrading TriliumNext.md", + "hash": "2632666519047935337" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Parser.html", + "hash": "8038479147069214953" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_image.png", + "hash": "10805210383135653112" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents.md", + "hash": "10314448453619064211" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextPosition.html", + "hash": "5309524778644384927" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.11-beta.md", + "hash": "1640429599497982025" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-chang.png", + "hash": "11083556565458137739" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseBase.html", + "hash": "1805758559982211811" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes_image.png", + "hash": "17789739194721579134" + }, + { + "file": "docs/Release Notes/Release Notes/Release Template.md", + "hash": "10587082767465867254" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/OneNote.md", + "hash": "16890517179618830832" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API.Api.html", + "hash": "10134937553251491464" + }, + { + "file": "docs/User Guide/User Guide/AI/2_Introduction_image.png", + "hash": "4884550846089380843" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API.Api.html", + "hash": "13446311020763232058" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-3.html", + "hash": "184966545090795313" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon_image.png", + "hash": "17678072455595448906" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/Multi-Factor Authentication.md", + "hash": "10006749572057153946" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/1_Icons on Mac_image.png", + "hash": "9113973157649197285" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Formatting toolbar_image.png", + "hash": "11287318707285627003" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Render Note_image.png", + "hash": "5322813341800091719" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteSwitchedContext.html", + "hash": "3972424598157172512" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioAPI.html", + "hash": "13479832008860105998" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/9_Images_image.png", + "hash": "5509956150273006831" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosAdapter.html", + "hash": "13933798201523018141" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Text_image.png", + "hash": "13901334951495473202" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Custom Resource Providers.md", + "hash": "14771953276779663048" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/bettersqlite binaries.md", + "hash": "15329551937381145875" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-2.html", + "hash": "7838335193815529689" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes.md", + "hash": "13368937778131192525" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/5_Calendar View_image.png", + "hash": "15719916793769487087" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translat.md", + "hash": "2844329594560711440" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.7-beta.md", + "hash": "12288347682016090997" + }, + { + "file": ".github/FUNDING.yml", + "hash": "9417438148586196659" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Multiple server instances.md", + "hash": "14997675224095677092" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.1-beta.md", + "hash": "1505295548915455849" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.html", + "hash": "9085627966887041694" + }, + { + "file": ".github/workflows/main-docker.yml", + "hash": "7393672086018807690" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextEditor.html", + "hash": "449560112535320014" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-multiple-not.png", + "hash": "12880863418544002540" + }, + { + "file": "docs/Script API/variables/Backend_Script_API._internal_.Object.html", + "hash": "735061891881479089" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKEvent.html", + "hash": "3375455992863958581" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenStatic.html", + "hash": "7602172161601555412" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.md", + "hash": "5552434531380325100" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper.md", + "hash": "2359889091966702200" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_Cr.png", + "hash": "14045585611753963314" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Lists_image.png", + "hash": "8577237444604362438" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_General formatting_image.png", + "hash": "12935355679871327728" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/1_Main_image.png", + "hash": "14970379467694797728" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Printing.md", + "hash": "17241912836120464831" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama.md", + "hash": "12841437113258344682" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Release management & continuou.md", + "hash": "16898764451434429632" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Workspaces_image.png", + "hash": "4002479791831846933" + }, + { + "file": "docs/Script API/media/README.ru.md", + "hash": "3404562560235215042" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/5_Adaptive icon_image.png", + "hash": "17290325327178029571" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-4.html", + "hash": "14292946853601737478" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteAndBranch.html", + "hash": "5338132683548030950" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication.md", + "hash": "6015736112713223983" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKNode.html", + "hash": "328358266701651791" + }, + { + "file": "package.json", + "hash": "14321796186950583781" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Anthropic.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.RightPanelWidget.html", + "hash": "3165901033915109292" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DefinitionObject.html", + "hash": "11130678699920159045" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Lists.md", + "hash": "12112056947947146011" + }, + { + "file": "docs/Developer Guide/Developer Guide/Dependency Management/Adding a new client library.md", + "hash": "7049385257986266177" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/3_SQL Console_image.png", + "hash": "13660740225101115149" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Evernote.md", + "hash": "10663074258500447978" + }, + { + "file": ".github/ISSUE_TEMPLATE/task.yml", + "hash": "442256738724543481" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.normalize.html", + "hash": "5359474619226365804" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterIteratorOptions.html", + "hash": "11141466728229885637" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting.md", + "hash": "1136330695046256259" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseEventBase.html", + "hash": "9847223446952188535" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Event.html", + "hash": "1251345523646307022" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryInputEventObject.html", + "hash": "9534752471101527686" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Server translations.md", + "hash": "233325850886770120" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/5_Vertical and horizontal la.png", + "hash": "6580926007613627467" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenSource.html", + "hash": "2321427478602125655" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes.md", + "hash": "8884492790625828020" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree m.png", + "hash": "16598943343245802197" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu_.png", + "hash": "7539417519466307919" + }, + { + "file": "docs/Script API/index.html", + "hash": "7164310318541615803" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Apache.md", + "hash": "12298787927497626453" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams.md", + "hash": "14857943768636243310" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-inline-i.gif", + "hash": "14529090719970710849" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogCallback.html", + "hash": "1423651493475025417" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list.md", + "hash": "612991856020272057" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.PropertyKey.html", + "hash": "11788481235345192510" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper_image.png", + "hash": "4210423681076794011" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options.md", + "hash": "2394676798595882833" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Running a development build.clone.md", + "hash": "18190833443469068343" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF.md", + "hash": "13532136945252311206" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Include Note_image.png", + "hash": "13366623301870990750" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-7.html", + "hash": "15012618481181922435" + }, + { + "file": "docs/Developer Guide/Developer Guide/Installation/Download latest nightly and in.md", + "hash": "6689583225600859966" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the data.png", + "hash": "4563135905265987265" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the content o.md", + "hash": "1296006089989860555" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeNode.html", + "hash": "16364488325625359774" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Export diagram as SVG.md", + "hash": "8391941206097753891" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Build deliveries locally.clone.md", + "hash": "16752226799330019694" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Table.html", + "hash": "4028689333146133118" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ResolveOptions.html", + "hash": "2583999493139967374" + }, + { + "file": "docs/Script API/modules.html", + "hash": "13008731499994074466" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedComponent.html", + "hash": "1592247705606960334" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_recent-notes.gif", + "hash": "4138922403272569966" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console.md", + "hash": "13100562027326538681" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterConfig.html", + "hash": "1582111942992506095" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/4_Calendar View_image.png", + "hash": "5933726449688725337" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CommandData.html", + "hash": "5984048291317023628" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/6_Adaptive icon_image.png", + "hash": "17558530465809578826" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteParams.html", + "hash": "5715377170996239099" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.3-beta.md", + "hash": "17317864745090652158" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/Right pane widget.md", + "hash": "13341365552460927801" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Build deliveries locally.md", + "hash": "3170736676204731767" + }, + { + "file": "docs/Script API/media/README.it.md", + "hash": "14217194317100046164" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.convertableToString.html", + "hash": "3228561214395660819" + }, + { + "file": ".idea/codeStyles/codeStyleConfig.xml", + "hash": "4690022301721055948" + }, + { + "file": "docs/User Guide/User Guide/Note Types/12_Geo Map_image.png", + "hash": "7173377365018544807" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Tables_image.png", + "hash": "4005816462770724619" + }, + { + "file": ".idea/modules.xml", + "hash": "11070074368343041178" + }, + { + "file": "docs/Release Notes/Release Notes/v0.94.0.md", + "hash": "9030403597079974748" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DragAndDrop5.html", + "hash": "12235972956045755395" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/1_Serving directly the conte.png", + "hash": "12112716038656287241" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AsyncResourceOptions.html", + "hash": "8020470007601054280" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/10_Images_image.png", + "hash": "8482371421622741436" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/options.md", + "hash": "11018885735468470461" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FBranch.html", + "hash": "1369425044274420635" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Removed icons.md", + "hash": "12540003826330492194" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting.md", + "hash": "748081058892517144" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Backlinks.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Insert buttons_image.png", + "hash": "16706472587272328864" + }, + { + "file": "docs/Script API/assets/hierarchy.js", + "hash": "5555048876431558061" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmark-folder.png", + "hash": "1845229153111247293" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Root.html", + "hash": "15144226037365053003" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Block quotes & admonitions.png", + "hash": "18010671239225600245" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventOnlyNames.html", + "hash": "14604459281094063363" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-1.html", + "hash": "14200853044524072086" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResource.html", + "hash": "7206080304720434024" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.DefinitionObject.html", + "hash": "8482669630775134171" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Math Equations_image.png", + "hash": "17950780031579539712" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.ValidationError.html", + "hash": "9783880855468813600" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Insert buttons_image.png", + "hash": "16565743405065440773" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection.md", + "hash": "14248403792799944995" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.5-beta_image.png", + "hash": "18107480102557535583" }, { "file": "scripts/update-build-info.ts", "hash": "16199158489777820240" }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SearchParams.html", + "hash": "9726462727745192733" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search_image.png", + "hash": "11779273039184489731" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons.md", + "hash": "10439313914343399726" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes.md", + "hash": "14090747291386876448" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.IteratorResult.html", + "hash": "257322488402218270" + }, + { + "file": "docs/Script API/assets/icons.svg", + "hash": "12265282051439672960" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Code_image.png", + "hash": "5782275106327359896" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-sma.png", + "hash": "8564668320550827697" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Tables_image.png", + "hash": "15239152810309003956" + }, + { + "file": "docs/Script API/media/README.es.md", + "hash": "12007132810736524416" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.gif", + "hash": "11740192765914054661" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RecentNoteRow.html", + "hash": "11559748337879587947" + }, + { + "file": "docs/User Guide/User Guide/Note Types/File.md", + "hash": "12296690400052211633" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.BranchRow.html", + "hash": "6739150629511690175" + }, + { + "file": "docs/Script API/hierarchy.html", + "hash": "7087761326174264857" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosBasicCredentials.html", + "hash": "9483175987744037880" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.firstCharLowerCase.html", + "hash": "922120200627718986" + }, + { + "file": ".github/workflows/playwright.yml", + "hash": "11286744737758129262" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BNote.html", + "hash": "7005007978668651456" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation_image.png", + "hash": "4287687447151188970" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.OptionsV2.html", + "hash": "5920402519687550675" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree map).md", + "hash": "5234725591771253677" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ElementType.html", + "hash": "3432788365641156892" + }, + { + "file": "docs/User Guide/User Guide/Quick Start.md", + "hash": "26614788084837278" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Canvas.md", + "hash": "9502581554311379088" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttachmentRow.html", + "hash": "17859240158533988201" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Canvas_image.png", + "hash": "1139182728331705462" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.NoteType.html", + "hash": "3821780205674560486" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProgressEvent.html", + "hash": "12957834045669515554" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cheerio.html", + "hash": "9617725570069495188" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodeData.html", + "hash": "4571368827230764181" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Other features_image.png", + "hash": "1340984468489886696" + }, + { + "file": "docs/Script API/enums/Backend_Script_API._internal_.HttpStatusCode.html", + "hash": "8745780281324259183" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/recent_notes.md", + "hash": "16017799368937039846" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/4_Vertical and horizontal la.png", + "hash": "7456379737044893906" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection_image.png", + "hash": "9707758146677680170" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Attribute Inheritance.md", + "hash": "8343345793425816358" + }, + { + "file": ".github/actions/build-electron/action.yml", + "hash": "14612245546992951859" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_2_.png", + "hash": "7017134628923823634" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.NoteContext.html", + "hash": "3072165195826397058" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AnyRest.html", + "hash": "12710122115453684289" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EtapiTokenRow.html", + "hash": "10941322562955927911" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar.md", + "hash": "9300995663475426917" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FAttribute.html", + "hash": "917184200961509118" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseNumbers.html", + "hash": "11186627944493481537" + }, + { + "file": ".github/actions/build-server/action.yml", + "hash": "12834103831780063020" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Attachments.md", + "hash": "14577503159371179344" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AttributeType.html", + "hash": "5550475244964704932" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attributes.md", + "hash": "18044189470051526719" + }, + { + "file": "renovate.json", + "hash": "13944559841874503663" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionItem.html", + "hash": "13820590719720410030" + }, + { + "file": ".idea/git_toolbox_prj.xml", + "hash": "15025719909834120292" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Omit.html", + "hash": "13529309166908888710" + }, + { + "file": "docs/Script API/.nojekyll", + "hash": "12301719336174243164" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ContentType.html", + "hash": "13932579651356217652" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Keyboard Shortcuts.md", + "hash": "5332915151552262991" + }, + { + "file": "docs/Script API/variables/Backend_Script_API.api.html", + "hash": "2357111998918240337" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentRow.html", + "hash": "15465410837105601985" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes/Theme Gallery.md", + "hash": "18153059640044698398" + }, + { + "file": ".github/workflows/nightly.yml", + "hash": "13780588628454221051" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-expo.png", + "hash": "6194482635852243395" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePathRecord.html", + "hash": "4324180597327533759" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons.md", + "hash": "13864464437617054232" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Key.html", + "hash": "7466986453655214266" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes.md", + "hash": "16760672233525606038" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.AbstractBeccaEntity.html", + "hash": "8730749362119426250" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TagElement.html", + "hash": "5955058222239385082" + }, + { + "file": "docs/README.ja.md", + "hash": "423329561350748151" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Note types.md", + "hash": "12191728192542611537" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Adaptive icon_image.png", + "hash": "2898250727568220507" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Fancytree.html", + "hash": "10131902098145945474" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget_image.png", + "hash": "2841511895989652415" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Custom Request Handler.md", + "hash": "9170902304145032041" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout.md", + "hash": "9218990841595290329" + }, + { + "file": "docs/User Guide/User Guide/Note Types/5_Geo Map_image.png", + "hash": "5669308583844409052" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/10_Calendar View_image.png", + "hash": "6057572322117403470" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithTitleOptions.html", + "hash": "5866678357727613126" + }, + { + "file": "docs/User Guide/User Guide/Note Types/14_Geo Map_image.png", + "hash": "17134563145439183238" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericFormData.html", + "hash": "6929183783104069561" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/1_Zen mode_image.png", + "hash": "17870947971075093638" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps.md", + "hash": "11319680458358123245" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.2-beta.md", + "hash": "358559780905427698" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons.md", + "hash": "1744378485879608318" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Lists_image.png", + "hash": "7647172644799470339" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Disposable.html", + "hash": "17695646711983531865" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker.md", + "hash": "11605650381109217207" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes_hide-archiv.png", + "hash": "14754545197579652981" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button.md", + "hash": "918543869021637630" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases.md", + "hash": "11266482405619520103" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template.png", + "hash": "18268213999228112195" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BRevision.html", + "hash": "1913392095596974652" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Note Map_image.png", + "hash": "1162798172636853322" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CloneResponse.html", + "hash": "5030255813529246705" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosDefaults.html", + "hash": "4789207332665890873" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.HeadersDefaults.html", + "hash": "11660903537271563350" + }, + { + "file": "docs/User Guide/User Guide/Note Types/15_Geo Map_image.png", + "hash": "4140348661462948102" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Element.html", + "hash": "6095597057243564126" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting_note-hoistin.gif", + "hash": "16530172022334752331" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.png", + "hash": "5132534751975390759" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.CanceledError.html", + "hash": "4425156980023604406" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.LabelType.html", + "hash": "10278520028325625693" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Default Note Title.md", + "hash": "13357835412456271247" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note.png", + "hash": "9562584638001327012" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.CommonRequestHeadersList.html", + "hash": "6016657590786602881" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/notes.md", + "hash": "17589195664721269554" + }, + { + "file": "LICENSE", + "hash": "8606862000888906709" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogResult.html", + "hash": "5446474556972615089" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.SqlExecuteResults.html", + "hash": "2078240985444622878" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Other features_image.png", + "hash": "12203404498693344880" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions_note-revisi.png", + "hash": "15021951667703156902" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.OptionRow.html", + "hash": "85392993839447133" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Note Map.md", + "hash": "1349664584062347967" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosPromise.html", + "hash": "3408905621401339879" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Tabs_image.png", + "hash": "7795320006621100645" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.InternalAxiosRequestConfig.html", + "hash": "9365833872657075449" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_image.png", + "hash": "9832511457480397483" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar_image.png", + "hash": "104005948126057026" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Docker.md", + "hash": "15354643679921200435" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md", + "hash": "4048785561696936259" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.2-beta.md", + "hash": "7463292530355249790" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_dark-theme.png", + "hash": "4104069441770412146" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/3_Vertical and horizontal la.png", + "hash": "17791091569728992943" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend.md", + "hash": "1441716712876520647" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitterOptions.html", + "hash": "17877148018809949898" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.png", + "hash": "6164131355503646691" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Hidden notes.md", + "hash": "12457340832473421506" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Book_image.png", + "hash": "1768928603662784559" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode.md", + "hash": "12484251737157353550" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Relationship.html", + "hash": "2373120637168991589" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/entity_changes.md", + "hash": "11984017581176676352" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Documentation.md", + "hash": "14979232810690309809" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterOptions.html", + "hash": "5066445864444001282" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes_image.png", + "hash": "8643335030510998526" + }, + { + "file": ".idea/jsLibraryMappings.xml", + "hash": "463890270158677548" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Export as PDF_image.png", + "hash": "4937399655807059093" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GetByIdOpts.html", + "hash": "5448737405855690783" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs_image.png", + "hash": "17923007007271061715" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Links_image.png", + "hash": "15811656947725398233" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Revisions.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Script API/assets/search.js", + "hash": "8475404948919950531" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Listener.html", + "hash": "3329650507998631496" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes_image.png", + "hash": "647700179866845833" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CommentElement.html", + "hash": "5757791309139487861" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation.md", + "hash": "16110939920725749339" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/2_Calendar View_image.png", + "hash": "8746483486106953393" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes/Branch prefix.md", + "hash": "176004439186847737" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Environment setup.md", + "hash": "17921742902733994403" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/blobs.md", + "hash": "9289462600651110466" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextNode.html", + "hash": "6688773409712327203" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List.md", + "hash": "6293287821691646630" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Events.md", + "hash": "16576016033025672802" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.List.html", + "hash": "16260087667105894937" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePojo.html", + "hash": "13485037937373113578" + }, + { + "file": "docs/README-ZH_CN.md", + "hash": "1366683638207788793" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_shared-list.png", + "hash": "11693155295709888518" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Markdown-like formatting.md", + "hash": "11422547423110182484" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-2.html", + "hash": "843600582580013845" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Images_image.png", + "hash": "17061610823626139831" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.PromptShownDialogCallback.html", + "hash": "10896789866055321500" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Reference.md", + "hash": "11046588365730688403" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CallSite.html", + "hash": "9105341353515433236" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Build information.md", + "hash": "927621925199425057" + }, + { + "file": "docs/User Guide/User Guide/AI/6_Introduction_image.png", + "hash": "9380676484647713768" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CreateAxiosDefaults.html", + "hash": "4682429153033268388" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options_image.png", + "hash": "13893366860557066470" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IterableIterator.html", + "hash": "5163879713483896100" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Selector.html", + "hash": "15364640600220089516" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons_image.png", + "hash": "989188453960649104" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BAttachment.html", + "hash": "8665382541585871854" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseInterceptorUse.html", + "hash": "11001137893491926586" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API/Backend API.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes.md", + "hash": "8776625923756086770" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.3-beta.md", + "hash": "8650194840196326837" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Record.html", + "hash": "13673511288898005305" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Lists_image.png", + "hash": "8922870427366632483" + }, + { + "file": ".idea/jsLinters/jslint.xml", + "hash": "711681400810612149" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes_create-clone.gif", + "hash": "304941799268696983" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerVisitor.html", + "hash": "1067379542585829302" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes.md", + "hash": "7700476154666309105" + }, + { + "file": "docs/User Guide/User Guide/AI/3_Introduction_image.png", + "hash": "2601903779808317589" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_image.png", + "hash": "451865633567842034" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProxyConfig.html", + "hash": "4788096206368192516" + }, + { + "file": "docs/User Guide/User Guide/Note Types/3_File_image.png", + "hash": "14996991930227579563" + }, + { + "file": "docs/User Guide/User Guide/Note Types/4_File_image.png", + "hash": "6230957845104792702" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BEtapiToken.html", + "hash": "7465710577091605064" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/4_Installing Ollama_image.png", + "hash": "4991925732090469797" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Displaying the option in setti.md", + "hash": "8267518082616976817" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database_image.png", + "hash": "201026404721860858" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Leaflet.md", + "hash": "5471188167022095551" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Links.md", + "hash": "10628878424092766954" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Tabs_image.png", + "hash": "10334320195251173502" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.9-beta.md", + "hash": "9397735037604295419" + }, + { + "file": "docs/Script API/assets/style.css", + "hash": "6390674142144445392" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Canceler.html", + "hash": "8429141126574678442" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies.md", + "hash": "12527925976936861939" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing.md", + "hash": "1756354223273679632" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BRecentNote.html", + "hash": "11994967186676125771" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database.md", + "hash": "4406107932468637386" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note-.png", + "hash": "6136583984879914294" + }, + { + "file": ".idea/sqldialects.xml", + "hash": "1907427473079819363" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.EventEmitter.html", + "hash": "8242760582394611478" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-tab.png", + "hash": "12373682799958388972" + }, + { + "file": "nx.json", + "hash": "16673696384081285753" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseHeaders.html", + "hash": "2442744119645635699" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Text_image.png", + "hash": "17505861757177107597" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List_image.png", + "hash": "17344203973631084668" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.3.md", + "hash": "18427677233259365358" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/2_Code blocks_image.png", + "hash": "15497219282555300265" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.6.md", + "hash": "2891090662713160134" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CustomParamsSerializer.html", + "hash": "15081765819063145387" + }, + { + "file": "docs/Script API/variables/Frontend_Script_API.api.html", + "hash": "15725440464713569337" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/On NixOS.md", + "hash": "4555018800299124693" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note.md", + "hash": "7332983517167321294" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ResponseType.html", + "hash": "1367713021652945755" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK off.svg", + "hash": "1981254385350765245" + }, + { + "file": "docs/Script API/modules/Backend_Script_API.html", + "hash": "2670989234660369623" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionConfig.html", + "hash": "17866598684703786658" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteRow.html", + "hash": "17068126425098799180" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes_image.png", + "hash": "9403778094976246640" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/1_Setting up authentication_.png", + "hash": "6311326131929912302" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Other features.md", + "hash": "905284970607153537" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Tables_image.png", + "hash": "9228058938189586627" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/2_SQL Console_image.png", + "hash": "7503307765374810706" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Pick.html", + "hash": "3341742815545223156" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/3_Zen mode_image.png", + "hash": "6013034841761075376" + }, + { + "file": "docs/Script API/assets/highlight.css", + "hash": "4285074483474071706" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.0-beta.md", + "hash": "14565759833614120830" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.4-beta.md", + "hash": "13432720443489500483" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.SpacedUpdate.html", + "hash": "18328662110444012644" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Images_image.png", + "hash": "14485228935641695910" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterName.html", + "hash": "13105758170302488612" + }, + { + "file": "README.md", + "hash": "13679989229500744212" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Attribute.html", + "hash": "14233676832837243756" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Object.html", + "hash": "7536195722949662168" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/1_Day Notes_image.png", + "hash": "16475107103618581356" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.Axios.html", + "hash": "6269752855705474165" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.BasicWidget.html", + "hash": "7136750462660837560" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CodeMirrorInstance.html", + "hash": "5254704683408293778" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FNoteRow.html", + "hash": "1484356400159794839" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/11_Calendar View_image.png", + "hash": "6636068838859637072" + }, + { + "file": ".idea/misc.xml", + "hash": "14348037015527695066" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamsSerializerOptions.html", + "hash": "3588430129710258287" + }, + { + "file": "SECURITY.md", + "hash": "599955342543329887" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Links_image.png", + "hash": "8876685958483648347" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PersistData.html", + "hash": "16866004549969430581" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.10-beta.md", + "hash": "1078969479317092269" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Updating to a newer version of.md", + "hash": "208622457670454515" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting.md", + "hash": "16688909957107755744" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Differences from upstream.md", + "hash": "18050776852643274350" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote_cut-to-subn.gif", + "hash": "11217765058792445527" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandMappings.html", + "hash": "5989980086619830728" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawCommonResponseHeaders.html", + "hash": "3506987803332284666" + }, + { + "file": "docs/Script API/media/README.md", + "hash": "13555307518746257814" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-s.gif", + "hash": "13674308169686225848" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Code.md", + "hash": "2257698891491035087" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Slightly blurry icon on Ma.png", + "hash": "704956280599536830" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseLike.html", + "hash": "974283704390710355" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_3_.png", + "hash": "1518431155925547874" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map.md", + "hash": "6160461763173577677" + }, + { + "file": "docs/README.it.md", + "hash": "9798316810783494206" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks.md", + "hash": "3478413245687427782" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Images_image.png", + "hash": "17511659637484055697" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.Abortable.html", + "hash": "16436864775799866182" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/6_Calendar View_image.png", + "hash": "17281596805053082675" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterReferencingAsyncResource.html", + "hash": "16079421563292372603" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations_image.png", + "hash": "16696251042196156633" + }, + { + "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeClickFolderMode.html", + "hash": "5271243830085395651" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text_image.png", + "hash": "2939147542296328141" + }, + { + "file": "docs/Script API/media/README.ja.md", + "hash": "5839329094632699960" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Thenable.html", + "hash": "8331448234773365089" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_General formatting_image.png", + "hash": "13063031561540176225" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Other features_image.png", + "hash": "15510836132033988057" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.processors.html", + "hash": "6995519834803022692" + }, + { + "file": "docs/User Guide/User Guide/Note Types_image.png", + "hash": "11158350846319988504" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/12_Tables_image.png", + "hash": "17637903660588300344" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Developer-specific formatt.png", + "hash": "6129242964974999554" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Handler.html", + "hash": "460599419953386172" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Branch prefixes.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/8_Geo Map_image.png", + "hash": "2873444371416724136" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/1_Note Map (Link map, Tree m.png", + "hash": "12373337465272366302" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/5_Installing Ollama_image.png", + "hash": "6152858080669098007" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Deleted notes.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Insert buttons_image.png", + "hash": "12084899036395439728" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation.md", + "hash": "12696895579094718506" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes_image.png", + "hash": "15321934377294206330" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Developer-specific formatt.png", + "hash": "10133610562087684023" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_General formatting_image.png", + "hash": "4875243929617270209" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.default.html", + "hash": "1518836167267522724" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents_image.png", + "hash": "4733595202943894589" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons_image.png", + "hash": "6536290798453171827" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar.md", + "hash": "9757830933816714683" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes to c.md", + "hash": "14959920764392213925" + }, + { + "file": "docs/User Guide/User Guide/Note Types/3_Geo Map_image.png", + "hash": "6747111431605585316" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/2_Zen mode_image.png", + "hash": "18110039784597588797" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_image.png", + "hash": "8528551565462205040" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TranslationTable.html", + "hash": "16850652013639160527" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResourceOptions.html", + "hash": "5102482543207472128" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.NoteContextAwareWidget.html", + "hash": "10455528563649947810" + }, + { + "file": "docs/User Guide/User Guide/Note Types/File_image.png", + "hash": "6783984664127428948" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Slightly blurry icon on Ma.png", + "hash": "2401758914571491717" + }, + { + "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeSelectMode.html", + "hash": "10406956801362805969" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.4.md", + "hash": "2207971841022283765" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Saved Search.md", + "hash": "8132559986223151235" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions.md", + "hash": "17445918024788718614" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Include Note.md", + "hash": "16473224076113886785" + }, { "file": "scripts/update-nightly-version.ts", "hash": "11430035494524347958" }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteMetaData.html", + "hash": "6643969533434745761" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.png", + "hash": "15720370010832556444" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions.md", + "hash": "2881796418862161644" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AddressFamily.html", + "hash": "7517399269447797629" + }, + { + "file": "docs/README.es.md", + "hash": "18392624940816469374" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.AddToToolbarOpts.html", + "hash": "15598576219424391202" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SavingOpts.html", + "hash": "17517531639057561352" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.html", + "hash": "4730824434973280272" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations.md", + "hash": "7352168231624868948" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RevisionRow.html", + "hash": "9642250565769124462" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/1_Note tree contextual menu_.png", + "hash": "747296639953030665" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.AttributeType.html", + "hash": "5684353554129692485" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu.md", + "hash": "824107434255196614" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Sorting Notes.md", + "hash": "10860595661578165438" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Formatting toolbar_image.png", + "hash": "9465014681604577852" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.TaskContext.html", + "hash": "7871285994240472519" + }, + { + "file": "docs/User Guide/User Guide/AI/9_Introduction_image.png", + "hash": "18028155585930429734" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryMouseEventObject.html", + "hash": "530744806508107000" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TransitionalOptions.html", + "hash": "10766908675740671008" + }, + { + "file": "docs/Script API/variables/Backend_Script_API._internal_.node_modules__types_xml2js.defaults.html", + "hash": "7094676868001758932" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Links_image.png", + "hash": "11406167236236482911" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedBasicWidget.html", + "hash": "9014785497596129429" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Themes.md", + "hash": "9431375033964731793" + }, + { + "file": "vitest.workspace.ts", + "hash": "8851963806934849101" + }, + { + "file": ".nxignore", + "hash": "17027752051574521115" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs.md", + "hash": "9299907944748565805" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes_image.png", + "hash": "2285942951742705208" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_image.png", + "hash": "13708579463799173943" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponseTransformer.html", + "hash": "2806242482626180969" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map.md", + "hash": "7102785365602063713" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.png", + "hash": "1499961390844427836" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar_image.png", + "hash": "8071194794088169141" + }, + { + "file": "docs/User Guide/User Guide/Note Types/16_Geo Map_image.png", + "hash": "17273732328125046708" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Footnotes_image.png", + "hash": "1577288190943202052" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/i18n-ally.md", + "hash": "15286767887045318756" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_1_Split View_im.png", + "hash": "8605575081147969224" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/2_Installing Ollama_image.png", + "hash": "5664446890215872177" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/branches.md", + "hash": "11383257066368994244" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces.md", + "hash": "4135430089914112456" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.html", + "hash": "1411675043711338139" + }, + { + "file": "docs/User Guide/User Guide/Theme development/1_Custom app-wide CSS_image.png", + "hash": "17083234048482228473" + }, { "file": "tsconfig.base.json", "hash": "8900268571896142108" }, { - "file": "tsconfig.json", - "hash": "8784381935299652134" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseDownEvent.html", + "hash": "11958072015813563157" }, { - "file": "vitest.workspace.ts", - "hash": "8851963806934849101" + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestHeaders.html", + "hash": "14760718317659645650" + }, + { + "file": "packages/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF_image.png", + "hash": "14541367628854414550" + }, + { + "file": "docs/User Guide/User Guide/Note Types/7_Geo Map_image.png", + "hash": "6480890944074410737" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Live reload.md", + "hash": "14445433634969987457" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BOption.html", + "hash": "18026026232234236536" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree.md", + "hash": "10401640377108524547" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Builder.html", + "hash": "14955316081398141094" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInstance.html", + "hash": "13857640297500317744" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Mac.md", + "hash": "13487479054609586827" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Insert buttons_image.png", + "hash": "9041778621024218634" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Screen.html", + "hash": "14867701053189781907" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Lists_image.png", + "hash": "7443683400857714109" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes_protecting.gif", + "hash": "9909987976886492758" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/SVG rendering.md", + "hash": "14938937788563990628" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.md", + "hash": "3591187406500098510" + }, + { + "file": ".github/workflows/release.yml", + "hash": "17127017447936409690" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.md", + "hash": "11019657887828180506" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math.md", + "hash": "92408046703009242" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Docker.md", + "hash": "11338947733300465635" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/!!!meta.json", + "hash": "11895438397111702315" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Images_image.png", + "hash": "14862810319352213491" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View.md", + "hash": "886075848609982938" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar_image.png", + "hash": "3856338290485766365" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.DefaultEventMap.html", + "hash": "2483778765279634717" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithMessageOptions.html", + "hash": "2506067464385064028" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorOptions.html", + "hash": "9333796471759547757" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_3_Split View_im.png", + "hash": "17939885197973038320" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/etapi_tokens.md", + "hash": "2602584635600548101" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cancel.html", + "hash": "1851696810072605979" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons.md", + "hash": "10855339462601677185" + }, + { + "file": ".github/workflows/release-winget.yml", + "hash": "11802042483604535783" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseStringPromise.html", + "hash": "17682488357431062503" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Frontend Basics.md", + "hash": "14476108367955913260" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Book.md", + "hash": "15417036035073159470" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API.md", + "hash": "12652565283186593544" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Vertical and horizontal la.png", + "hash": "17788024311673518016" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the conte.png", + "hash": "1644425674057515860" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.SetNoteOpts.html", + "hash": "12907434742803176528" + }, + { + "file": ".idea/.gitignore", + "hash": "13646957392060337731" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/11_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorReturnResult.html", + "hash": "308316750572840399" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.md", + "hash": "5962660712660554216" + }, + { + "file": "docs/User Guide/User Guide/AI/1_AI Provider Information_im.png", + "hash": "10888045542047015146" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Server-side imports.md", + "hash": "11219131325031274988" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Check box option.md", + "hash": "13176063915179660637" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Options_image.png", + "hash": "13366394243903008319" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Key2.html", + "hash": "3433423352949927099" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets.md", + "hash": "3016592544713030940" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attachments.md", + "hash": "11249076532876645190" + }, + { + "file": "docs/User Guide/User Guide/AI/8_Introduction_image.png", + "hash": "11452529331641889807" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Marker.html", + "hash": "8991963297786749743" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget.md", + "hash": "9645085549983198995" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-t.png", + "hash": "2884027460715375910" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.6-beta.md", + "hash": "665053246882198240" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/General formatting_image.png", + "hash": "12783629317063905582" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/10_Tables_image.png", + "hash": "6404125826080231616" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/4_Adaptive icon_image.png", + "hash": "9672254538887140002" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode_image.png", + "hash": "3662917132549511544" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.0-beta.md", + "hash": "2832294761822956301" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note.md", + "hash": "13969417585075707281" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Updating with upstream.md", + "hash": "1170819569679600371" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosRequestHeaders.html", + "hash": "559182507513172234" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Lists_image.png", + "hash": "7911785825993500211" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Code_image.png", + "hash": "5890806361392158763" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/1_Calendar View_image.png", + "hash": "6148618346253868614" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Other features_image.png", + "hash": "14748759719944428714" + }, + { + "file": ".npmrc", + "hash": "16137381183792061922" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Releasing a version.md", + "hash": "16796012838594019346" + }, + { + "file": "docs/Script API/modules/Frontend_Script_API._internal_.html", + "hash": "4791159135464329921" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Manually.md", + "hash": "7984968569437996419" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Backup.md", + "hash": "11054206897853098224" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandNames.html", + "hash": "2129304447782419249" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references.md", + "hash": "9404432048954214990" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Geo Map_image.png", + "hash": "5960205806672652286" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_1_.png", + "hash": "9462084121181865214" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseBooleans.html", + "hash": "13001294351403898208" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps/mind_map.js", + "hash": "10796090623247054169" + }, + { + "file": ".github/actions/report-size/action.yml", + "hash": "17705058309368771560" + }, + { + "file": "docs/Script API/media/README-ZH_CN.md", + "hash": "11984743821127984549" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ArrayBufferLike.html", + "hash": "7422498195549677002" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CallbackBase.html", + "hash": "741726841759646895" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Render Note.md", + "hash": "10907883447497386270" + }, + { + "file": "docs/Script API/assets/main.js", + "hash": "6389590901821178970" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestConfig.html", + "hash": "9355857643405320103" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Tables_image.png", + "hash": "17750886350164547911" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac_image.png", + "hash": "10777331931886290213" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Cross-Origin Resource Sharing .md", + "hash": "8992349904956274857" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.BaseJQueryEventObject.html", + "hash": "5013732184832830923" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation_image.png", + "hash": "12236157060422417393" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmarks.gif", + "hash": "6177069217916149128" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ExecuteCommandData.html", + "hash": "2037836278009355941" + }, + { + "file": "docs/Script API/modules/Frontend_Script_API.html", + "hash": "9601829814309710108" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.5.md", + "hash": "7852050459752848879" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventNames.html", + "hash": "10465196291594055305" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Images_image.png", + "hash": "6173165911963001959" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Developer-specific formatt.png", + "hash": "371275438898256895" + }, + { + "file": "docs/User Guide/User Guide/Note Types/4_Geo Map_image.png", + "hash": "2426346789252029208" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-galle.png", + "hash": "11774634652263476090" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/3_Adaptive icon_image.png", + "hash": "7856931497974089783" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.BuilderOptions.html", + "hash": "7369938283163183148" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama_image.png", + "hash": "910316219442712311" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme.md", + "hash": "8694971297894648515" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Insert buttons_image.png", + "hash": "16494632615299758318" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmDialogOptions.html", + "hash": "2485905035049187615" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Widget Basics.md", + "hash": "11549739193679627411" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Vertical and horizontal la.png", + "hash": "17310758833048940667" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Exclude.html", + "hash": "6634549736483692084" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RawAxiosHeaders.html", + "hash": "11240216240251060271" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Demo document.md", + "hash": "10094511099627127819" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.UIEventBase.html", + "hash": "7464724917937222976" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes.md", + "hash": "5093501931256724020" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TaskData.html", + "hash": "5988678324469384089" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Keyboard shortcuts.md", + "hash": "17819850783262866648" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Mermaid Diagrams_image.png", + "hash": "17913912640153568729" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization.md", + "hash": "16892041595153525525" + }, + { + "file": "docs/User Guide/User Guide/Note Types.md", + "hash": "3734229651482058716" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Templates.md", + "hash": "6677127073180056229" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentOpts.html", + "hash": "152500221014723550" + }, + { + "file": "docs/User Guide/User Guide/Theme development/2_Custom app-wide CSS_image.png", + "hash": "5480944933144148013" } ], "projectFileMap": { @@ -4023,6 +4033,4057 @@ "npm:vite" ] } + ], + "@triliumnext/server": [ + { + "file": "apps/server/eslint.config.mjs", + "hash": "1965792974734046140" + }, + { + "file": "apps/server/package.json", + "hash": "2990743871775415023" + }, + { + "file": "apps/server/src/anonymize.ts", + "hash": "613870331217782498" + }, + { + "file": "apps/server/src/app.ts", + "hash": "9753742639329385773", + "deps": [ + "npm:express", + "npm:compression" + ] + }, + { + "file": "apps/server/src/assets/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/becca/becca-interface.ts", + "hash": "5405699531419281180", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/becca.ts", + "hash": "11722006647207421028" + }, + { + "file": "apps/server/src/becca/becca_loader.ts", + "hash": "11300438030997096154", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/becca_service.ts", + "hash": "14120448174426152424" + }, + { + "file": "apps/server/src/becca/entities/abstract_becca_entity.ts", + "hash": "12891745666510444948" + }, + { + "file": "apps/server/src/becca/entities/battachment.ts", + "hash": "16400840166227522880", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/battribute.ts", + "hash": "6738881608002388451", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/bblob.ts", + "hash": "4109624185236934174", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/bbranch.ts", + "hash": "12933539735033139517", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/betapi_token.ts", + "hash": "5318961432605802139", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/bnote.ts", + "hash": "14439554691683280525", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/bnote_embedding.ts", + "hash": "15624235163087188946", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/boption.ts", + "hash": "16370794958005091511", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/brecent_note.ts", + "hash": "14070507350857423999", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entities/brevision.ts", + "hash": "15705138748561211971", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/becca/entity_constructor.ts", + "hash": "1205137353964114633" + }, + { + "file": "apps/server/src/becca/similarity.ts", + "hash": "4590122881318870974" + }, + { + "file": "apps/server/src/errors/forbidden_error.ts", + "hash": "3278292388659760842" + }, + { + "file": "apps/server/src/errors/http_error.ts", + "hash": "1521056411825967499" + }, + { + "file": "apps/server/src/errors/not_found_error.ts", + "hash": "11391567078361244110" + }, + { + "file": "apps/server/src/errors/open_id_error.ts", + "hash": "9374887274133088030" + }, + { + "file": "apps/server/src/errors/validation_error.ts", + "hash": "13558717932962261779" + }, + { + "file": "apps/server/src/etapi/app_info.ts", + "hash": "13530692642995201805", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/attachments.ts", + "hash": "2864284807433998718", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/etapi/attributes.ts", + "hash": "13367672453739551242", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/etapi/auth.ts", + "hash": "9834228792225230911", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/backup.ts", + "hash": "14081506830925121615", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/branches.ts", + "hash": "12767857610575577791", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/etapi/etapi-interface.ts", + "hash": "6771486136174597044" + }, + { + "file": "apps/server/src/etapi/etapi.openapi.yaml", + "hash": "17118294633199298268" + }, + { + "file": "apps/server/src/etapi/etapi_utils.ts", + "hash": "17021036785575151037", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/mappers.ts", + "hash": "7876101212141038175" + }, + { + "file": "apps/server/src/etapi/notes.ts", + "hash": "594627173569155678", + "deps": [ + "npm:express", + "npm:qs" + ] + }, + { + "file": "apps/server/src/etapi/spec.ts", + "hash": "14343100606519655895", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/special_notes.ts", + "hash": "93992242024029156", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/etapi/validators.ts", + "hash": "13341851641267273315" + }, + { + "file": "apps/server/src/express.d.ts", + "hash": "4703807956109862109" + }, + { + "file": "apps/server/src/main.ts", + "hash": "3537003006340366869" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/hidden.html", + "hash": "14044482701059350811" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_command_launcher.html", + "hash": "8045993166863458159" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_history_navigation.html", + "hash": "5906000240722963768" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_intro.html", + "hash": "16366509937198184556" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_note_launcher.html", + "hash": "17823125592929967103" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_script_launcher.html", + "hash": "11044694811508273380" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_spacer.html", + "hash": "1172178789829678482" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/launchbar_widget_launcher.html", + "hash": "15388750733938458534" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/share.html", + "hash": "16653817791566507270" + }, + { + "file": "apps/server/src/public/app/doc_notes/cn/user_hidden.html", + "hash": "9820774468086218944" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/!!!meta.json", + "hash": "16154111852936267238" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/1_AI Provider Information_im.png", + "hash": "10888045542047015146" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/1_Introduction_image.png", + "hash": "4877080719766343931" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/2_Introduction_image.png", + "hash": "4884550846089380843" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/3_Introduction_image.png", + "hash": "2601903779808317589" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/4_Introduction_image.png", + "hash": "7955162789754070400" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/5_Introduction_image.png", + "hash": "4850690168254105590" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/6_Introduction_image.png", + "hash": "9380676484647713768" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/7_Introduction_image.png", + "hash": "5587697700215758247" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/8_Introduction_image.png", + "hash": "11452529331641889807" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/9_Introduction_image.png", + "hash": "18028155585930429734" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information.html", + "hash": "13968001949163554732" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Anthropic.html", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/1_Installing Ollama_image.png", + "hash": "14013766524203877283" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/2_Installing Ollama_image.png", + "hash": "5664446890215872177" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/3_Installing Ollama_image.png", + "hash": "16240241501910096427" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/4_Installing Ollama_image.png", + "hash": "4991925732090469797" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/5_Installing Ollama_image.png", + "hash": "6152858080669098007" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama.html", + "hash": "11903730102898912668" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama_image.png", + "hash": "910316219442712311" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information/OpenAI.html", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/AI Provider Information_im.png", + "hash": "7031327870994678887" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/Introduction.html", + "hash": "3154455558834936462" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/AI/Introduction_image.png", + "hash": "17351850101399104891" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/1_Note Map (Link map, Tree m.png", + "hash": "12373337465272366302" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases.html", + "hash": "14664794971003500370" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/1_Day Notes_image.png", + "hash": "16475107103618581356" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.html", + "hash": "8972166572702878561" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes_image.png", + "hash": "2285942951742705208" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager.html", + "hash": "6122385039978605646" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager_task-manager.png", + "hash": "15131572581326854447" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker.html", + "hash": "1092321072090987521" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker_image.png", + "hash": "9366125920821414974" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes.html", + "hash": "8863076517241686077" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Attribute Inheritance.html", + "hash": "2587021384823966986" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Labels.html", + "hash": "2868977054334003275" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes.html", + "hash": "4714503511408052358" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_image.png", + "hash": "15783140557738540121" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_promot.png", + "hash": "4117009512006470814" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes/Relations.html", + "hash": "2204237306392858565" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Attributes_image.png", + "hash": "9403778094976246640" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Bulk Actions.html", + "hash": "6155463783886156239" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Bulk Actions_image.png", + "hash": "378004986618242169" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Configuration (config.ini or e.html", + "hash": "12362482688342543703" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Cross-Origin Resource Sharing .html", + "hash": "3519448189935891846" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Trilium instance.html", + "hash": "1942620660138078054" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Custom Request Handler.html", + "hash": "16592159648300883967" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Custom Resource Providers.html", + "hash": "4049552522514990830" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database.html", + "hash": "16212082331364881822" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Demo Notes.html", + "hash": "8509809802291320957" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the data.png", + "hash": "4563135905265987265" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database.html", + "hash": "10470065683544973180" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/1_SQL Console_image.png", + "hash": "12789086198380592587" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/2_SQL Console_image.png", + "hash": "7503307765374810706" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/3_SQL Console_image.png", + "hash": "13660740225101115149" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console.html", + "hash": "12049596071480955524" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console_image.png", + "hash": "970435259063086957" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Default Note Title.html", + "hash": "11600574667397958959" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/ETAPI (REST API).html", + "hash": "13036373337690070549" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Hidden Notes.html", + "hash": "9145636337882572879" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Hidden Notes_image.png", + "hash": "17789739194721579134" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Note ID.html", + "hash": "17328012221715030347" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree m.png", + "hash": "16598943343245802197" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree map).html", + "hash": "3069313864995626045" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Note source.html", + "hash": "10106442161826046641" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Note source_image.png", + "hash": "5630189849743414946" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing.html", + "hash": "1125722390476832646" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing/1_Serving directly the conte.png", + "hash": "12112716038656287241" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the conte.png", + "hash": "1644425674057515860" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the content o.html", + "hash": "11302145284495535035" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing_share-multiple-not.png", + "hash": "12880863418544002540" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing_share-single-note-.png", + "hash": "6136583984879914294" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing_share-single-note.png", + "hash": "9562584638001327012" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Sharing_shared-list.png", + "hash": "11693155295709888518" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Technologies used.html", + "hash": "7457574584588515821" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Technologies used/CKEditor.html", + "hash": "4547944619359785872" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Technologies used/Excalidraw.html", + "hash": "15195936361118569408" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Technologies used/Leaflet.html", + "hash": "7782764592459377370" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Technologies used/MindElixir.html", + "hash": "7189008959107376485" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates.html", + "hash": "12557002570800056336" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates_template-create-.png", + "hash": "4737869303956882568" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Advanced Usage/Templates_template.png", + "hash": "18268213999228112195" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/1_Zen mode_image.png", + "hash": "17870947971075093638" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/2_Zen mode_image.png", + "hash": "18110039784597588797" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/3_Zen mode_image.png", + "hash": "6013034841761075376" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Evernote.html", + "hash": "5167293660530917475" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.html", + "hash": "10735453645793735046" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-n.gif", + "hash": "6892395771679875424" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-s.gif", + "hash": "13674308169686225848" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-file-imp.gif", + "hash": "17798202582697524861" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-inline-i.gif", + "hash": "14529090719970710849" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/OneNote.html", + "hash": "16741098960297174186" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Keyboard Shortcuts.html", + "hash": "13914606077347028563" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Jump to Note_image.png", + "hash": "3109371474460200422" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Workspaces_image.png", + "hash": "4002479791831846933" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks.html", + "hash": "1767101375018237295" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmark-folder.png", + "hash": "1845229153111247293" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmarks.gif", + "hash": "6177069217916149128" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note.html", + "hash": "16828930814668878799" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_image.png", + "hash": "9832511457480397483" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_recent-notes.gif", + "hash": "4138922403272569966" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting.html", + "hash": "15717907305617329692" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting_note-hoistin.gif", + "hash": "16530172022334752331" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation.html", + "hash": "12318621202730766462" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation_image.png", + "hash": "12236157060422417393" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search.html", + "hash": "14504195646943582651" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search_image.png", + "hash": "11779273039184489731" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note.html", + "hash": "17056543919003076212" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note_image.png", + "hash": "14767314553298789957" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Search.html", + "hash": "14065989414841827584" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Search_image.png", + "hash": "16349440484070621360" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes.html", + "hash": "12686930254258266348" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes_image.png", + "hash": "8643335030510998526" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Tree Concepts.html", + "hash": "515008574096127045" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces.html", + "hash": "4133574162689703674" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces_image.png", + "hash": "12666342516606462643" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes.html", + "hash": "2088245558736887728" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/1_Export as PDF_image.png", + "hash": "4937399655807059093" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/1_Note List_image.png", + "hash": "5608976400586326827" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/2_Note List_image.png", + "hash": "10714735469933566718" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes.html", + "hash": "12036102672573178505" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes_hide-archiv.png", + "hash": "14754545197579652981" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Attachments.html", + "hash": "8808180763438686710" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes.html", + "hash": "609911079009048159" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes/Branch prefix.html", + "hash": "3098298655587204244" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes_create-clone.gif", + "hash": "304941799268696983" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF.html", + "hash": "10400772175247080768" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF_image.png", + "hash": "14541367628854414550" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons.html", + "hash": "12785241794558622294" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-chang.png", + "hash": "11083556565458137739" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-galle.png", + "hash": "11774634652263476090" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List.html", + "hash": "9459858882423072275" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/10_Calendar View_image.png", + "hash": "6057572322117403470" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/11_Calendar View_image.png", + "hash": "6636068838859637072" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/1_Calendar View_image.png", + "hash": "6148618346253868614" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/2_Calendar View_image.png", + "hash": "8746483486106953393" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/3_Calendar View_image.png", + "hash": "7365965105798352895" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/4_Calendar View_image.png", + "hash": "5933726449688725337" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/5_Calendar View_image.png", + "hash": "15719916793769487087" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/6_Calendar View_image.png", + "hash": "17281596805053082675" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/7_Calendar View_image.png", + "hash": "11541935763676308271" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/8_Calendar View_image.png", + "hash": "13401928785023381483" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/9_Calendar View_image.png", + "hash": "16035162645109284070" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View.html", + "hash": "14237232327237854142" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View_image.png", + "hash": "8652479499535248784" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note List_image.png", + "hash": "17344203973631084668" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions.html", + "hash": "9477369015844237466" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions_note-revisi.png", + "hash": "15021951667703156902" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes.html", + "hash": "8871602733091125808" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes_protecting.gif", + "hash": "9909987976886492758" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes.html", + "hash": "8780636419548034234" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes_image.png", + "hash": "647700179866845833" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Notes/Sorting Notes.html", + "hash": "15308613712001216093" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Themes.html", + "hash": "3076859280302093107" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Themes/Theme Gallery.html", + "hash": "3273506004588884778" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Themes_dark-theme.png", + "hash": "4104069441770412146" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Themes_image.png", + "hash": "451865633567842034" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Themes_steel-blue.png", + "hash": "3726910334005032045" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Options_image.png", + "hash": "13366394243903008319" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Recent Changes_image.png", + "hash": "16567853903302976035" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Tabs_image.png", + "hash": "7795320006621100645" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Vertical and horizontal la.png", + "hash": "17788024311673518016" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Tabs_image.png", + "hash": "10334320195251173502" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Vertical and horizontal la.png", + "hash": "17310758833048940667" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/3_Vertical and horizontal la.png", + "hash": "17791091569728992943" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/4_Vertical and horizontal la.png", + "hash": "7456379737044893906" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/5_Vertical and horizontal la.png", + "hash": "6580926007613627467" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons.html", + "hash": "1537208015822708506" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons_image.png", + "hash": "9229127427161350065" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu.html", + "hash": "13986468781000758876" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu_image.png", + "hash": "215776480600711406" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar.html", + "hash": "7200677856975602413" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar_image.png", + "hash": "3856338290485766365" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree.html", + "hash": "7720781480288911849" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/1_Note tree contextual menu_.png", + "hash": "747296639953030665" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection.html", + "hash": "12996024660579234175" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection_image.png", + "hash": "9707758146677680170" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu.html", + "hash": "8861447753321582254" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu_.png", + "hash": "7539417519466307919" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_drag-and-drop.gif", + "hash": "16530764084716612313" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_image.png", + "hash": "8528551565462205040" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_move-note-with-k.gif", + "hash": "1539959243766334436" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons.html", + "hash": "18181367984728542255" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons_image.png", + "hash": "6536290798453171827" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options.html", + "hash": "8545480067740219358" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options_image.png", + "hash": "13893366860557066470" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes.html", + "hash": "5888383595726982683" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes_image.png", + "hash": "5636741691843527729" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon.html", + "hash": "13612392612554151048" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon_image.png", + "hash": "253567192754290441" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar.html", + "hash": "2365718353208010674" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar_image.png", + "hash": "8071194794088169141" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View.html", + "hash": "12766384731042854470" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_1_Split View_im.png", + "hash": "8605575081147969224" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_2_Split View_im.png", + "hash": "15941739623146058763" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_3_Split View_im.png", + "hash": "17939885197973038320" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_4_Split View_im.png", + "hash": "7394270400443781214" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_Split View_imag.png", + "hash": "16441078406174519311" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs.html", + "hash": "15293734955737066861" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs_image.png", + "hash": "17923007007271061715" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal la.png", + "hash": "7070453246985156821" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal layout.html", + "hash": "6220458989626840826" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.html", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Zen mode.html", + "hash": "15984472717450690287" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Zen mode_image.png", + "hash": "3662917132549511544" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/FAQ.html", + "hash": "15536229535218350093" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Backup.html", + "hash": "15778968792723774627" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Data directory.html", + "hash": "1439632180804818183" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Data directory_image.png", + "hash": "16647401677978700113" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Desktop Installation.html", + "hash": "8760281606841125967" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Mobile Frontend.html", + "hash": "10945529018739201511" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-sma.png", + "hash": "8564668320550827697" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-tab.png", + "hash": "12373682799958388972" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation.html", + "hash": "2333740028943256563" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Manually.html", + "hash": "11095461221552012107" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Multiple server instances.html", + "hash": "5259617089942235081" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/On NixOS.html", + "hash": "17138070690961580798" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.html", + "hash": "17720658707393009059" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Docker.html", + "hash": "7899808122504440659" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Kubernetes.html", + "hash": "5962430758683685620" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Apache.html", + "hash": "1185405664330792334" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Nginx.html", + "hash": "17500536305047109518" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/Multi-Factor Authentication.html", + "hash": "15978424593798723303" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/TLS Configuration.html", + "hash": "6146318145437804800" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Synchronization.html", + "hash": "15096469727859363134" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Synchronization_image.png", + "hash": "13708579463799173943" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Synchronization_sync-confi.png", + "hash": "2997447751316549256" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Synchronization_sync-in-pr.png", + "hash": "132284441928130501" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Synchronization_sync-init.png", + "hash": "15322721528964766736" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Upgrading TriliumNext.html", + "hash": "12603368513495722331" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper.html", + "hash": "2630914360446627958" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper_image.png", + "hash": "4210423681076794011" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types.html", + "hash": "6024180720466863875" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/10_Geo Map_image.png", + "hash": "8838519618452959037" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/11_Geo Map_image.png", + "hash": "2543239855913430096" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/12_Geo Map_image.png", + "hash": "7173377365018544807" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/13_Geo Map_image.png", + "hash": "3444457344697003162" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/14_Geo Map_image.png", + "hash": "17134563145439183238" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/15_Geo Map_image.png", + "hash": "4140348661462948102" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/16_Geo Map_image.png", + "hash": "17273732328125046708" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/17_Geo Map_image.png", + "hash": "18076589540377938573" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/18_Geo Map_image.png", + "hash": "13441170146038040719" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Code_image.png", + "hash": "5782275106327359896" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_File_image.png", + "hash": "2974379219914373732" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Geo Map_image.png", + "hash": "5960205806672652286" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Mermaid Diagrams_image.png", + "hash": "811538388658451497" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.gif", + "hash": "10041817102859838104" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.png", + "hash": "15720370010832556444" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/1_Text_image.png", + "hash": "13901334951495473202" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_File_image.png", + "hash": "5767399260855724832" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_Geo Map_image.png", + "hash": "7283724173419351355" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_Mermaid Diagrams_image.png", + "hash": "17913912640153568729" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/2_Text_image.png", + "hash": "17505861757177107597" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/3_File_image.png", + "hash": "14996991930227579563" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/3_Geo Map_image.png", + "hash": "6747111431605585316" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/4_File_image.png", + "hash": "6230957845104792702" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/4_Geo Map_image.png", + "hash": "2426346789252029208" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/5_File_image.png", + "hash": "9655011546911837239" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/5_Geo Map_image.png", + "hash": "5669308583844409052" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/6_File_image.png", + "hash": "10934030213595628481" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/6_Geo Map_image.png", + "hash": "890997284892548696" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/7_Geo Map_image.png", + "hash": "6480890944074410737" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/8_Geo Map_image.png", + "hash": "2873444371416724136" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/9_Geo Map_image.png", + "hash": "17335918274787502426" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Book.html", + "hash": "3700134589442083686" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Book_image.png", + "hash": "1768928603662784559" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Canvas.html", + "hash": "16383935153870214748" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Canvas_image.png", + "hash": "1139182728331705462" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Code.html", + "hash": "9729413764423900280" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Code_image.png", + "hash": "5890806361392158763" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/File.html", + "hash": "12576157425015267050" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/File_image.png", + "hash": "6783984664127428948" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo Map.html", + "hash": "1738832818362232950" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo Map_image.jpg", + "hash": "14126513805103816937" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Geo Map_image.png", + "hash": "6164131355503646691" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mermaid Diagrams.html", + "hash": "4368452848825258659" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout.html", + "hash": "7618034748522669765" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK off.svg", + "hash": "1981254385350765245" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK on.svg", + "hash": "16635311815022210160" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mermaid Diagrams_image.png", + "hash": "2085027971032498137" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mind Map.html", + "hash": "18196111509802608984" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Mind Map_image.png", + "hash": "12216762309023170303" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Note Map.html", + "hash": "15633927376738971431" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Note Map_image.png", + "hash": "1162798172636853322" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Relation Map.html", + "hash": "996436903617898748" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Relation Map_relation-map-.gif", + "hash": "11740192765914054661" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Relation Map_relation-map-.png", + "hash": "5132534751975390759" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Render Note.html", + "hash": "5207804737009047212" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Render Note_image.png", + "hash": "5322813341800091719" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Saved Search.html", + "hash": "10647672466873859652" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Saved Search_saved-search.gif", + "hash": "7608073468067457147" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text.html", + "hash": "14956189339308583226" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/10_Images_image.png", + "hash": "8482371421622741436" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/10_Lists_image.png", + "hash": "2954862785845336764" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/10_Tables_image.png", + "hash": "6404125826080231616" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/11_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/12_Tables_image.png", + "hash": "17637903660588300344" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Block quotes & admonitions.png", + "hash": "18010671239225600245" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Developer-specific formatt.png", + "hash": "6129242964974999554" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Footnotes_image.png", + "hash": "1577288190943202052" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Formatting toolbar_image.png", + "hash": "9465014681604577852" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_General formatting_image.png", + "hash": "13063031561540176225" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Images_image.png", + "hash": "1599196428668280551" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Insert buttons_image.png", + "hash": "13776013165806672321" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Links_image.png", + "hash": "15063546866325110183" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Lists_image.png", + "hash": "13706420500212756506" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Math Equations_image.png", + "hash": "17950780031579539712" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Other features_image.png", + "hash": "15510836132033988057" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/1_Tables_image.png", + "hash": "17750886350164547911" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Block quotes & admonitions.png", + "hash": "9887089141669552684" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Developer-specific formatt.png", + "hash": "13063031561540176225" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Formatting toolbar_image.png", + "hash": "11287318707285627003" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_General formatting_image.png", + "hash": "9106571901573895633" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Images_image.png", + "hash": "14485228935641695910" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Insert buttons_image.png", + "hash": "9041778621024218634" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Links_image.png", + "hash": "8876685958483648347" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Lists_image.png", + "hash": "8577237444604362438" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Other features_image.png", + "hash": "1340984468489886696" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/2_Tables_image.png", + "hash": "4005816462770724619" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Developer-specific formatt.png", + "hash": "371275438898256895" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Formatting toolbar_image.png", + "hash": "13884099936378253709" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_General formatting_image.png", + "hash": "12935355679871327728" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Images_image.png", + "hash": "17061610823626139831" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Insert buttons_image.png", + "hash": "16565743405065440773" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Links_image.png", + "hash": "15811656947725398233" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Lists_image.png", + "hash": "7911785825993500211" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Other features_image.png", + "hash": "14748759719944428714" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/3_Tables_image.png", + "hash": "9228058938189586627" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Developer-specific formatt.png", + "hash": "12452128562004210306" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_General formatting_image.png", + "hash": "4875243929617270209" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Images_image.png", + "hash": "14862810319352213491" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Insert buttons_image.png", + "hash": "14260304610675467053" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Lists_image.png", + "hash": "8922870427366632483" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Other features_image.png", + "hash": "12203404498693344880" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/4_Tables_image.png", + "hash": "8355105912319259830" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Developer-specific formatt.png", + "hash": "10133610562087684023" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Images_image.png", + "hash": "404883919247951217" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Insert buttons_image.png", + "hash": "16494632615299758318" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Lists_image.png", + "hash": "6428938901484193450" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Other features_image.png", + "hash": "8577237444604362438" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/5_Tables_image.png", + "hash": "1917723022829886737" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Developer-specific formatt.png", + "hash": "2718064772609307655" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Images_image.png", + "hash": "6173165911963001959" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Insert buttons_image.png", + "hash": "11895482486771487063" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Lists_image.png", + "hash": "12597899845274049940" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Other features_image.png", + "hash": "3612025371214749570" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/6_Tables_image.png", + "hash": "7670352131626581828" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/7_Images_image.png", + "hash": "17511659637484055697" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/7_Insert buttons_image.png", + "hash": "12084899036395439728" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/7_Lists_image.png", + "hash": "7647172644799470339" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/7_Tables_image.png", + "hash": "15239152810309003956" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/8_Images_image.png", + "hash": "9366125920821414974" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/8_Insert buttons_image.png", + "hash": "16706472587272328864" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/8_Lists_image.png", + "hash": "7443683400857714109" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/8_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/9_Images_image.png", + "hash": "5509956150273006831" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/9_Lists_image.png", + "hash": "12986812650616357264" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/9_Tables_image.png", + "hash": "10336090900386736766" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.html", + "hash": "6784690859713480917" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.png", + "hash": "1499961390844427836" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Content language & Right-t.png", + "hash": "2884027460715375910" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Content language & Right-to-le.html", + "hash": "6752065557246905125" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Cut to subnote.html", + "hash": "14756674706995544024" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Cut to subnote_cut-to-subn.gif", + "hash": "11217765058792445527" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatt.png", + "hash": "14391624469883910402" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatting.html", + "hash": "9639804262528930647" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatting/1_Code blocks_image.png", + "hash": "12452128562004210306" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatting/2_Code blocks_image.png", + "hash": "15497219282555300265" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks.html", + "hash": "13115309271100805564" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks_image.png", + "hash": "16799092375248159407" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Footnotes.html", + "hash": "10067574496291459595" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Footnotes_image.png", + "hash": "15321934377294206330" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Formatting toolbar.html", + "hash": "3126894967359998377" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Formatting toolbar_image.png", + "hash": "104005948126057026" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/General formatting.html", + "hash": "1776837197140865890" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/General formatting_image.png", + "hash": "12783629317063905582" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Highlights list.html", + "hash": "8442710576255697608" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Highlights list_image.png", + "hash": "2083570772957836032" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Images.html", + "hash": "567093439698804000" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Images/1_Image references_image.png", + "hash": "15112796094753790620" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Images/Image references.html", + "hash": "15662344632348995123" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Images/Image references_image.png", + "hash": "1175189001050726431" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Images_image.png", + "hash": "4210412299283729681" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Include Note.html", + "hash": "18293853212700130391" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Include Note_image.png", + "hash": "13366623301870990750" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Insert buttons.html", + "hash": "12789424549908687199" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Insert buttons_image.png", + "hash": "989188453960649104" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Keyboard shortcuts.html", + "hash": "5385577891194619792" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Links.html", + "hash": "14869665465471212568" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Links_image.png", + "hash": "11406167236236482911" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Lists.html", + "hash": "4982988415402919217" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Lists_image.png", + "hash": "5447861844644759091" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Markdown-like formatting.html", + "hash": "11060733316679209703" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Math Equations.html", + "hash": "3383864614815592448" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Math Equations_image.png", + "hash": "16696251042196156633" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Other features.html", + "hash": "14925894671650895857" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Other features_image.png", + "hash": "17467294145722623090" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Table of contents.html", + "hash": "670015449738527299" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Table of contents_image.png", + "hash": "4733595202943894589" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Tables.html", + "hash": "5608542600932542098" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text/Tables_image.png", + "hash": "5417625780542207119" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Text_image.png", + "hash": "2939147542296328141" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types/Web View.html", + "hash": "1410448858676015435" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Note Types_image.png", + "hash": "11158350846319988504" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Quick Start.html", + "hash": "13661389945009732436" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting.html", + "hash": "5739268981298846844" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Custom Widgets.html", + "hash": "4030095090934811325" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Custom Widgets/Widget Basics.html", + "hash": "8396700744373736736" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Custom Widgets/Word count widget.html", + "hash": "3966337435645843604" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Custom Widgets/Word count widget_image.png", + "hash": "2841511895989652415" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Events.html", + "hash": "7570305718081664243" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.html", + "hash": "3654009335109667778" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/New Task launcher button.html", + "hash": "12729702790302257898" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/New Task launcher button_i.png", + "hash": "12237996247459794678" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Using promoted attributes .png", + "hash": "13316953234191714312" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Examples/Using promoted attributes to c.html", + "hash": "7528904121552634226" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Frontend Basics.html", + "hash": "4246611152392160307" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Script API.html", + "hash": "2896352849134423251" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Script API/Backend API.dat", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/1_Custom app-wide CSS_image.png", + "hash": "17083234048482228473" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/2_Custom app-wide CSS_image.png", + "hash": "5480944933144148013" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme.html", + "hash": "4727842214144628669" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_1_.png", + "hash": "9462084121181865214" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_2_.png", + "hash": "7017134628923823634" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_3_.png", + "hash": "1518431155925547874" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_4_.png", + "hash": "3728661401474084659" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_5_.png", + "hash": "6214291566037882613" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Creating a custom theme_Cr.png", + "hash": "14045585611753963314" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Custom app-wide CSS.html", + "hash": "17080583863943326115" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Custom app-wide CSS_image.png", + "hash": "3158185449180547797" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Customize the Next theme.html", + "hash": "17593808697634198086" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Customize the Next theme_i.png", + "hash": "9049696547697245045" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Theme development/Reference.html", + "hash": "16593002209489872009" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting.html", + "hash": "13279365019637845061" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Anonymized Database.html", + "hash": "16311316881158848872" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Anonymized Database_image.png", + "hash": "201026404721860858" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Error logs.html", + "hash": "10632716875256342735" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Error logs_error-logs-expo.png", + "hash": "6194482635852243395" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Error logs_error-logs-fire.png", + "hash": "16523046904936619160" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Error logs_image.png", + "hash": "10805210383135653112" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Refreshing the application.html", + "hash": "18390753238781700385" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Reporting issues.html", + "hash": "17495059449953154227" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/User Guide/User Guide/Troubleshooting/Synchronization fails with 504.html", + "hash": "3422602411244701552" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/hidden.html", + "hash": "11759991629055269534" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_command_launcher.html", + "hash": "10535079422905037193" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_history_navigation.html", + "hash": "13984471624485054277" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_intro.html", + "hash": "11569540478192874759" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_note_launcher.html", + "hash": "9944422732459465694" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_quick_search.html", + "hash": "143098785969903848" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_script_launcher.html", + "hash": "7561976093289516913" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_spacer.html", + "hash": "3659930056258731166" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/launchbar_widget_launcher.html", + "hash": "17176392712128898345" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/share.html", + "hash": "11168016396506258065" + }, + { + "file": "apps/server/src/public/app/doc_notes/en/user_hidden.html", + "hash": "7400030582976260150" + }, + { + "file": "apps/server/src/public/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf", + "hash": "6030785835425330302" + }, + { + "file": "apps/server/src/public/fonts/Inter/Inter-VariableFont_opsz,wght.ttf", + "hash": "7092351986979172380" + }, + { + "file": "apps/server/src/public/fonts/Inter/OFL.txt", + "hash": "8551276237141761535" + }, + { + "file": "apps/server/src/public/fonts/Inter/README.txt", + "hash": "9127751070189731704" + }, + { + "file": "apps/server/src/public/fonts/JetBrainsMono-Light.woff2", + "hash": "11973412911823975243" + }, + { + "file": "apps/server/src/public/fonts/Montserrat-Light.ttf", + "hash": "5120240712470223964" + }, + { + "file": "apps/server/src/public/fonts/Montserrat-SemiBold.ttf", + "hash": "15417178307748142184" + }, + { + "file": "apps/server/src/public/icon.png", + "hash": "1674910568021463591" + }, + { + "file": "apps/server/src/public/manifest.webmanifest", + "hash": "12391343494768904626" + }, + { + "file": "apps/server/src/public/robots.txt", + "hash": "48414801316130760" + }, + { + "file": "apps/server/src/public/translations/cn/translation.json", + "hash": "11434937930037225604" + }, + { + "file": "apps/server/src/public/translations/de/translation.json", + "hash": "4444349680893618652" + }, + { + "file": "apps/server/src/public/translations/en/translation.json", + "hash": "6256081689634373152" + }, + { + "file": "apps/server/src/public/translations/es/translation.json", + "hash": "10884705765703675801" + }, + { + "file": "apps/server/src/public/translations/fr/translation.json", + "hash": "14758323252359690042" + }, + { + "file": "apps/server/src/public/translations/pt_br/translation.json", + "hash": "16511389833403314393" + }, + { + "file": "apps/server/src/public/translations/ro/translation.json", + "hash": "3625724934546336272" + }, + { + "file": "apps/server/src/public/translations/tw/translation.json", + "hash": "5013895400144930844" + }, + { + "file": "apps/server/src/routes/api/anthropic.ts", + "hash": "16931634332702000263", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/app_info.ts", + "hash": "11514580021563326402" + }, + { + "file": "apps/server/src/routes/api/attachments.ts", + "hash": "17781730314699374767", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/attributes.ts", + "hash": "6459335096820252846", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/autocomplete.ts", + "hash": "7986464485901938282", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/backend_log.ts", + "hash": "81965700879764369" + }, + { + "file": "apps/server/src/routes/api/branches.ts", + "hash": "11862450328602383304", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/bulk_action.ts", + "hash": "9298522615678960411", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/clipper.ts", + "hash": "8456863626377250838", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/cloning.ts", + "hash": "8727914954135669852", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/database.ts", + "hash": "10985191910397989539", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/embeddings.ts", + "hash": "16731399973959926605", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/etapi_tokens.ts", + "hash": "12602128924539335144", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/export.ts", + "hash": "11091724143745793068", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/files.ts", + "hash": "4495743296327266770", + "deps": [ + "npm:tmp", + "npm:chokidar", + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/fonts.ts", + "hash": "1769897569545059014", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/routes/api/image.spec.ts", + "hash": "13916578091529934224", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/routes/api/image.ts", + "hash": "8533286005308898642", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/import.ts", + "hash": "11120042334452126441", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/keys.ts", + "hash": "14493686985223304552" + }, + { + "file": "apps/server/src/routes/api/llm.ts", + "hash": "3228185804107228539", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/login.ts", + "hash": "7242251318074237787", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/note_map.ts", + "hash": "15416910512174809661", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/notes.ts", + "hash": "12239922757100772130", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/routes/api/ollama.ts", + "hash": "8546108677480439790", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/openai.ts", + "hash": "6082796134160623746", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/openapi.json", + "hash": "9433264341457905598" + }, + { + "file": "apps/server/src/routes/api/options.ts", + "hash": "9697957153354817822", + "deps": [ + "npm:express", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/routes/api/other.ts", + "hash": "6160212932249649037", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/password.ts", + "hash": "16912719570174206644", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/recent_changes.ts", + "hash": "14547392255649305150", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/recent_notes.ts", + "hash": "7487917033901717393", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/recovery_codes.ts", + "hash": "16114952377264959102", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/relation-map.ts", + "hash": "17436431179634610131", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/revisions.ts", + "hash": "7985204156930225200", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/script.ts", + "hash": "11959683646397467380", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/search.ts", + "hash": "18101806645024865449", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/sender.ts", + "hash": "13113294992698492080", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/setup.ts", + "hash": "3556083456426937012", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/similar_notes.ts", + "hash": "14696825954806128366", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/special_notes.ts", + "hash": "12139265292717024283", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/sql.ts", + "hash": "7334730358201877899", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/stats.ts", + "hash": "13881549482707697966", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/sync.ts", + "hash": "12254817065994365886", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api/totp.ts", + "hash": "5212597290293341911" + }, + { + "file": "apps/server/src/routes/api/tree.ts", + "hash": "1232524204450645607", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/api_docs.ts", + "hash": "9077545175322998645", + "deps": [ + "npm:express", + "npm:js-yaml" + ] + }, + { + "file": "apps/server/src/routes/assets.ts", + "hash": "8394540609614606768", + "deps": [ + "npm:express", + "npm:serve-static" + ] + }, + { + "file": "apps/server/src/routes/csrf_protection.ts", + "hash": "418240664032316688" + }, + { + "file": "apps/server/src/routes/custom.ts", + "hash": "9295705150952863322", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/electron.ts", + "hash": "13926973839723962898", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/error_handlers.ts", + "hash": "8988259147016519085", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/index.ts", + "hash": "8330338140918625130", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/login.spec.ts", + "hash": "3570144867619136107", + "deps": [ + "npm:vitest", + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/login.ts", + "hash": "4155718477705121680", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/routes.ts", + "hash": "2845206955919622048", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/routes/session_parser.ts", + "hash": "945900565541088570" + }, + { + "file": "apps/server/src/routes/setup.ts", + "hash": "7141399288341813976", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/anonymization.ts", + "hash": "5519876007508680890", + "deps": [ + "npm:fs-extra" + ] + }, + { + "file": "apps/server/src/services/api-interface.ts", + "hash": "3635920032392368060", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/app_info.ts", + "hash": "2016628786961181843" + }, + { + "file": "apps/server/src/services/app_path.ts", + "hash": "5882995503357170956" + }, + { + "file": "apps/server/src/services/asset_path.ts", + "hash": "17651811380079538434" + }, + { + "file": "apps/server/src/services/attribute_formatter.ts", + "hash": "9374134520072856592", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/attributes.ts", + "hash": "2561320485424327532", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/auth.ts", + "hash": "7217377368333965003", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/backend_script_api.ts", + "hash": "7396283075367114031", + "deps": [ + "npm:axios", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/backend_script_api_interface.ts", + "hash": "13241265294138080664", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/backend_script_entrypoint.ts", + "hash": "14815126770785067149" + }, + { + "file": "apps/server/src/services/backup.ts", + "hash": "2275837077475388609", + "deps": [ + "npm:fs-extra", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/blob-interface.ts", + "hash": "16499228003113220968" + }, + { + "file": "apps/server/src/services/blob.ts", + "hash": "17725901873852281925" + }, + { + "file": "apps/server/src/services/branches.ts", + "hash": "2998367722916964198" + }, + { + "file": "apps/server/src/services/build.ts", + "hash": "723668205829618334" + }, + { + "file": "apps/server/src/services/builtin_attributes.ts", + "hash": "4358377868185036755" + }, + { + "file": "apps/server/src/services/bulk_actions.ts", + "hash": "10943927841060531089" + }, + { + "file": "apps/server/src/services/cloning.ts", + "hash": "17374178735535053953" + }, + { + "file": "apps/server/src/services/cls.ts", + "hash": "11190333950464780263" + }, + { + "file": "apps/server/src/services/code_block_theme.spec.ts", + "hash": "14944536398205526421", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/code_block_theme.ts", + "hash": "4163157635081848739" + }, + { + "file": "apps/server/src/services/code_block_theme_names.json", + "hash": "312641756185766467" + }, + { + "file": "apps/server/src/services/config.ts", + "hash": "2538470094720415559" + }, + { + "file": "apps/server/src/services/consistency_checks.ts", + "hash": "11458116050901855695", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/content_hash.ts", + "hash": "5084658596531808212" + }, + { + "file": "apps/server/src/services/data_dir.spec.ts", + "hash": "13463560952829548897", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/data_dir.ts", + "hash": "14354558831938635025" + }, + { + "file": "apps/server/src/services/date_notes.spec.ts", + "hash": "2895935147353301900", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/date_notes.ts", + "hash": "10259641481686375677" + }, + { + "file": "apps/server/src/services/date_utils.ts", + "hash": "17223326136020579118" + }, + { + "file": "apps/server/src/services/encryption/data_encryption.ts", + "hash": "8520259421515542207" + }, + { + "file": "apps/server/src/services/encryption/my_scrypt.ts", + "hash": "612957501242584197" + }, + { + "file": "apps/server/src/services/encryption/open_id_encryption.ts", + "hash": "8141380957000494145" + }, + { + "file": "apps/server/src/services/encryption/password.ts", + "hash": "425715936398839945" + }, + { + "file": "apps/server/src/services/encryption/password_encryption.ts", + "hash": "818031279378595991" + }, + { + "file": "apps/server/src/services/encryption/recovery_codes.ts", + "hash": "3109577616920300054" + }, + { + "file": "apps/server/src/services/encryption/totp_encryption.ts", + "hash": "4431139182667828386", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/entity_changes.ts", + "hash": "6243300480809995862" + }, + { + "file": "apps/server/src/services/entity_changes_interface.ts", + "hash": "589021574317533697" + }, + { + "file": "apps/server/src/services/erase.ts", + "hash": "16166095166423872183" + }, + { + "file": "apps/server/src/services/etapi_tokens.ts", + "hash": "11479861447669971964" + }, + { + "file": "apps/server/src/services/events.ts", + "hash": "10875433331382938054" + }, + { + "file": "apps/server/src/services/export/markdown.spec.ts", + "hash": "16820296652688248136", + "deps": [ + "npm:vitest", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/export/markdown.ts", + "hash": "18291627897258343602", + "deps": [ + "@triliumnext/turndown-plugin-gfm" + ] + }, + { + "file": "apps/server/src/services/export/opml.ts", + "hash": "16129044372636952494", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/export/pdf.ts", + "hash": "3244421341483603138" + }, + { + "file": "apps/server/src/services/export/single.spec.ts", + "hash": "12647431387742399002", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/export/single.ts", + "hash": "8860477314188409972", + "deps": [ + "npm:mime-types", + "npm:express" + ] + }, + { + "file": "apps/server/src/services/export/zip.ts", + "hash": "8925012098383702719", + "deps": [ + "npm:mime-types", + "npm:express" + ] + }, + { + "file": "apps/server/src/services/handlers.ts", + "hash": "3018305222293486493" + }, + { + "file": "apps/server/src/services/hidden_subtree.ts", + "hash": "11506085155329440497", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/hidden_subtree_launcherbar.ts", + "hash": "16799017545904526601", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/hoisted_note.ts", + "hash": "16673553725114654502" + }, + { + "file": "apps/server/src/services/host.ts", + "hash": "434274403534309475" + }, + { + "file": "apps/server/src/services/html_sanitizer.spec.ts", + "hash": "5562363453964320601", + "deps": [ + "npm:vitest", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/html_sanitizer.ts", + "hash": "11283442969451165779" + }, + { + "file": "apps/server/src/services/i18n.spec.ts", + "hash": "6188604566626338292", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/i18n.ts", + "hash": "4259066414749716927", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/image.ts", + "hash": "9935498424687383416" + }, + { + "file": "apps/server/src/services/import/common.ts", + "hash": "10289015546130871438" + }, + { + "file": "apps/server/src/services/import/enex.ts", + "hash": "1483803950074589077", + "deps": [ + "npm:sax", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/import/markdown.spec.ts", + "hash": "742263221694358545", + "deps": [ + "npm:vitest", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/import/markdown.ts", + "hash": "13181351508168330279" + }, + { + "file": "apps/server/src/services/import/mime.spec.ts", + "hash": "2005011297884472534", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/import/mime.ts", + "hash": "16532611488468805116", + "deps": [ + "npm:mime-types", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/import/mime_type_definitions.ts", + "hash": "14589980868521151653" + }, + { + "file": "apps/server/src/services/import/opml.ts", + "hash": "15337082633306180375" + }, + { + "file": "apps/server/src/services/import/samples/IREN Reports Q2 FY25 Results.htm", + "hash": "15091012044070710984" + }, + { + "file": "apps/server/src/services/import/samples/IREN.Reports.Q2.FY25.Results_files.zip", + "hash": "5081656014590059926" + }, + { + "file": "apps/server/src/services/import/samples/New note.excalidraw", + "hash": "14861481609801054011" + }, + { + "file": "apps/server/src/services/import/samples/New note.mermaid", + "hash": "14426112519100573886" + }, + { + "file": "apps/server/src/services/import/samples/New note.mmd", + "hash": "14426112519100573886" + }, + { + "file": "apps/server/src/services/import/samples/Text Note.mdx", + "hash": "4802460316573685754" + }, + { + "file": "apps/server/src/services/import/samples/UTF-16LE Code Note.json", + "hash": "11993547959590916572" + }, + { + "file": "apps/server/src/services/import/samples/UTF-16LE Text Note.md", + "hash": "3892447049307633522" + }, + { + "file": "apps/server/src/services/import/samples/UTF-16LE Text Note.txt", + "hash": "7496272640167416706" + }, + { + "file": "apps/server/src/services/import/samples/mdx.zip", + "hash": "7995302359309445476" + }, + { + "file": "apps/server/src/services/import/single.spec.ts", + "hash": "7236496616695053019", + "deps": [ + "npm:vitest", + "npm:strip-bom" + ] + }, + { + "file": "apps/server/src/services/import/single.ts", + "hash": "615495109024380373", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/import/utils.spec.ts", + "hash": "6110949722134736762", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/import/utils.ts", + "hash": "877994106249165303" + }, + { + "file": "apps/server/src/services/import/zip.spec.ts", + "hash": "677983529504195807", + "deps": [ + "npm:vitest", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/import/zip.ts", + "hash": "9878192730355572895", + "deps": [ + "npm:yauzl", + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/in_app_help.spec.ts", + "hash": "14195885332054522646", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/in_app_help.ts", + "hash": "3476359629441896308", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/instance_id.ts", + "hash": "1271920801012914418" + }, + { + "file": "apps/server/src/services/keyboard_actions.ts", + "hash": "5017036632473936935", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/llm/README.md", + "hash": "18023389123043193163" + }, + { + "file": "apps/server/src/services/llm/ai_interface.ts", + "hash": "1223583194135968599" + }, + { + "file": "apps/server/src/services/llm/ai_service_manager.ts", + "hash": "11465393979473516297" + }, + { + "file": "apps/server/src/services/llm/base_ai_service.ts", + "hash": "758921222802983939" + }, + { + "file": "apps/server/src/services/llm/chat/handlers/context_handler.ts", + "hash": "7900790015778557846" + }, + { + "file": "apps/server/src/services/llm/chat/handlers/stream_handler.ts", + "hash": "10007996326703377668", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/llm/chat/handlers/tool_handler.ts", + "hash": "13154156485166622534" + }, + { + "file": "apps/server/src/services/llm/chat/index.ts", + "hash": "13108236534044548051" + }, + { + "file": "apps/server/src/services/llm/chat/rest_chat_service.ts", + "hash": "2730153872743970478", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/llm/chat/sessions_store.ts", + "hash": "17508170028246492117" + }, + { + "file": "apps/server/src/services/llm/chat/utils/message_formatter.ts", + "hash": "17327893563558470888" + }, + { + "file": "apps/server/src/services/llm/chat_service.ts", + "hash": "13666144371364179068" + }, + { + "file": "apps/server/src/services/llm/chat_storage_service.ts", + "hash": "16784976015939522301" + }, + { + "file": "apps/server/src/services/llm/constants/embedding_constants.ts", + "hash": "11866433855756420762" + }, + { + "file": "apps/server/src/services/llm/constants/formatter_constants.ts", + "hash": "11986594834600685794" + }, + { + "file": "apps/server/src/services/llm/constants/hierarchy_constants.ts", + "hash": "13563289039749343359" + }, + { + "file": "apps/server/src/services/llm/constants/llm_prompt_constants.ts", + "hash": "12534077950705323645" + }, + { + "file": "apps/server/src/services/llm/constants/provider_constants.ts", + "hash": "1712348462567605574" + }, + { + "file": "apps/server/src/services/llm/constants/query_decomposition_constants.ts", + "hash": "15244354849608453389" + }, + { + "file": "apps/server/src/services/llm/constants/search_constants.ts", + "hash": "5464917423421628025" + }, + { + "file": "apps/server/src/services/llm/context/code_handlers.ts", + "hash": "16120968061198025977" + }, + { + "file": "apps/server/src/services/llm/context/content_chunking.ts", + "hash": "5748518019600931127" + }, + { + "file": "apps/server/src/services/llm/context/hierarchy.ts", + "hash": "1745796500795767897" + }, + { + "file": "apps/server/src/services/llm/context/index.ts", + "hash": "12657437415872877628" + }, + { + "file": "apps/server/src/services/llm/context/modules/cache_manager.ts", + "hash": "8417233126983252736" + }, + { + "file": "apps/server/src/services/llm/context/modules/context_formatter.ts", + "hash": "567922255172194884" + }, + { + "file": "apps/server/src/services/llm/context/modules/provider_manager.ts", + "hash": "3883709100229650319" + }, + { + "file": "apps/server/src/services/llm/context/note_content.ts", + "hash": "12694658282261579846" + }, + { + "file": "apps/server/src/services/llm/context/services/context_service.ts", + "hash": "7203417909698891655" + }, + { + "file": "apps/server/src/services/llm/context/services/index.ts", + "hash": "4280814409180198284" + }, + { + "file": "apps/server/src/services/llm/context/services/query_processor.ts", + "hash": "14828432607596028825" + }, + { + "file": "apps/server/src/services/llm/context/services/vector_search_service.ts", + "hash": "18404480879446231305" + }, + { + "file": "apps/server/src/services/llm/context/summarization.ts", + "hash": "14081945843235228352" + }, + { + "file": "apps/server/src/services/llm/context_extractors/contextual_thinking_tool.ts", + "hash": "16288243572436491700" + }, + { + "file": "apps/server/src/services/llm/context_extractors/index.ts", + "hash": "13841585808751620825" + }, + { + "file": "apps/server/src/services/llm/context_extractors/note_navigator_tool.ts", + "hash": "15413329190549623097" + }, + { + "file": "apps/server/src/services/llm/context_extractors/query_decomposition_tool.ts", + "hash": "12133734100998020257" + }, + { + "file": "apps/server/src/services/llm/context_extractors/vector_search_tool.ts", + "hash": "13651976086170952246" + }, + { + "file": "apps/server/src/services/llm/embeddings/base_embeddings.ts", + "hash": "18396873384378348320" + }, + { + "file": "apps/server/src/services/llm/embeddings/chunking/chunking_interface.ts", + "hash": "4835816580810245528" + }, + { + "file": "apps/server/src/services/llm/embeddings/chunking/chunking_processor.ts", + "hash": "10207397471120041430" + }, + { + "file": "apps/server/src/services/llm/embeddings/content_processing.ts", + "hash": "9997414161302376664" + }, + { + "file": "apps/server/src/services/llm/embeddings/embeddings_interface.ts", + "hash": "7788373757212756396", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/llm/embeddings/events.ts", + "hash": "16970127655738509667" + }, + { + "file": "apps/server/src/services/llm/embeddings/index.ts", + "hash": "10025800042005245175" + }, + { + "file": "apps/server/src/services/llm/embeddings/index_operations.ts", + "hash": "383862838187398956" + }, + { + "file": "apps/server/src/services/llm/embeddings/init.ts", + "hash": "9172269686323586335" + }, + { + "file": "apps/server/src/services/llm/embeddings/providers/local.ts", + "hash": "12719870875147104506" + }, + { + "file": "apps/server/src/services/llm/embeddings/providers/ollama.ts", + "hash": "4433028218327810915" + }, + { + "file": "apps/server/src/services/llm/embeddings/providers/openai.ts", + "hash": "9638865087495043836" + }, + { + "file": "apps/server/src/services/llm/embeddings/providers/voyage.ts", + "hash": "6778040157342830719" + }, + { + "file": "apps/server/src/services/llm/embeddings/queue.ts", + "hash": "2201873315903125403" + }, + { + "file": "apps/server/src/services/llm/embeddings/stats.ts", + "hash": "9608536236990144320" + }, + { + "file": "apps/server/src/services/llm/embeddings/storage.ts", + "hash": "17138178399077549087" + }, + { + "file": "apps/server/src/services/llm/embeddings/types.ts", + "hash": "12075623715812122725" + }, + { + "file": "apps/server/src/services/llm/embeddings/vector_utils.ts", + "hash": "2245807560725558845" + }, + { + "file": "apps/server/src/services/llm/formatters/base_formatter.ts", + "hash": "673499752518416350" + }, + { + "file": "apps/server/src/services/llm/formatters/ollama_formatter.ts", + "hash": "13116901519230032683" + }, + { + "file": "apps/server/src/services/llm/formatters/openai_formatter.ts", + "hash": "9922766894809667697" + }, + { + "file": "apps/server/src/services/llm/index_service.ts", + "hash": "5889266209917721683", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/llm/interfaces/agent_tool_interfaces.ts", + "hash": "11526513751778653751" + }, + { + "file": "apps/server/src/services/llm/interfaces/ai_service_interfaces.ts", + "hash": "12926577974632262433" + }, + { + "file": "apps/server/src/services/llm/interfaces/chat_session.ts", + "hash": "925592226895586574" + }, + { + "file": "apps/server/src/services/llm/interfaces/chat_ws_messages.ts", + "hash": "10457573415663802923" + }, + { + "file": "apps/server/src/services/llm/interfaces/context_interfaces.ts", + "hash": "2557546616761957688" + }, + { + "file": "apps/server/src/services/llm/interfaces/embedding_interfaces.ts", + "hash": "7152035897359552325" + }, + { + "file": "apps/server/src/services/llm/interfaces/error_interfaces.ts", + "hash": "266358763203985716" + }, + { + "file": "apps/server/src/services/llm/interfaces/message_formatter.ts", + "hash": "4931537947217715501" + }, + { + "file": "apps/server/src/services/llm/interfaces/model_capabilities.ts", + "hash": "10356325857561392409" + }, + { + "file": "apps/server/src/services/llm/model_capabilities_service.ts", + "hash": "10655503897850290084" + }, + { + "file": "apps/server/src/services/llm/pipeline/chat_pipeline.ts", + "hash": "8536029812590283884" + }, + { + "file": "apps/server/src/services/llm/pipeline/interfaces.ts", + "hash": "5164919055645268384" + }, + { + "file": "apps/server/src/services/llm/pipeline/interfaces/message_formatter.ts", + "hash": "1166454919644634721" + }, + { + "file": "apps/server/src/services/llm/pipeline/pipeline_stage.ts", + "hash": "13175249847000512658" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/agent_tools_context_stage.ts", + "hash": "12975345990186116579" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/context_extraction_stage.ts", + "hash": "3134447670619108886" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/llm_completion_stage.ts", + "hash": "5216767378413829132" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/message_preparation_stage.ts", + "hash": "6088601240594008332" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/model_selection_stage.ts", + "hash": "7091793887959876872" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/response_processing_stage.ts", + "hash": "11362406033413218536" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/semantic_context_extraction_stage.ts", + "hash": "4930076819186076476" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/tool_calling_stage.ts", + "hash": "8530375153774360953" + }, + { + "file": "apps/server/src/services/llm/pipeline/stages/vector_search_stage.ts", + "hash": "16872016667578896703" + }, + { + "file": "apps/server/src/services/llm/prompts/base_system_prompt.md", + "hash": "17441346039563828513" + }, + { + "file": "apps/server/src/services/llm/prompts/providers/anthropic_tool_prompt.md", + "hash": "10697723737175297023" + }, + { + "file": "apps/server/src/services/llm/prompts/providers/ollama_tool_prompt.md", + "hash": "2149191180244174090" + }, + { + "file": "apps/server/src/services/llm/prompts/providers/openai_tool_prompt.md", + "hash": "5013831626716415200" + }, + { + "file": "apps/server/src/services/llm/providers/anthropic_service.ts", + "hash": "16601788025441559603" + }, + { + "file": "apps/server/src/services/llm/providers/ollama_service.ts", + "hash": "1833948363599325167" + }, + { + "file": "apps/server/src/services/llm/providers/openai_service.ts", + "hash": "324516205491447152" + }, + { + "file": "apps/server/src/services/llm/providers/provider_options.ts", + "hash": "15432322535418257778" + }, + { + "file": "apps/server/src/services/llm/providers/providers.ts", + "hash": "17885349155988423277", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/llm/providers/stream_handler.ts", + "hash": "8130202756845146606" + }, + { + "file": "apps/server/src/services/llm/rest_chat_service.ts", + "hash": "13146490470411530255" + }, + { + "file": "apps/server/src/services/llm/tools/attribute_manager_tool.ts", + "hash": "3244758894737862552" + }, + { + "file": "apps/server/src/services/llm/tools/attribute_search_tool.ts", + "hash": "3290147186822531852" + }, + { + "file": "apps/server/src/services/llm/tools/calendar_integration_tool.ts", + "hash": "11698885187843579736" + }, + { + "file": "apps/server/src/services/llm/tools/content_extraction_tool.ts", + "hash": "2910836578198766332" + }, + { + "file": "apps/server/src/services/llm/tools/keyword_search_tool.ts", + "hash": "11902104826093545759" + }, + { + "file": "apps/server/src/services/llm/tools/note_creation_tool.ts", + "hash": "1086801628034441099" + }, + { + "file": "apps/server/src/services/llm/tools/note_summarization_tool.ts", + "hash": "13437866854256964927" + }, + { + "file": "apps/server/src/services/llm/tools/note_update_tool.ts", + "hash": "8024599088481596768" + }, + { + "file": "apps/server/src/services/llm/tools/read_note_tool.ts", + "hash": "7008582238752205920" + }, + { + "file": "apps/server/src/services/llm/tools/relationship_tool.ts", + "hash": "18001784057020921996" + }, + { + "file": "apps/server/src/services/llm/tools/search_notes_tool.ts", + "hash": "2934204863636628439" + }, + { + "file": "apps/server/src/services/llm/tools/search_suggestion_tool.ts", + "hash": "8126164053374731539" + }, + { + "file": "apps/server/src/services/llm/tools/tool_initializer.ts", + "hash": "14763749807662349095" + }, + { + "file": "apps/server/src/services/llm/tools/tool_interfaces.ts", + "hash": "13466401505935307137" + }, + { + "file": "apps/server/src/services/llm/tools/tool_registry.ts", + "hash": "3109590719708985706" + }, + { + "file": "apps/server/src/services/llm/utils/json_extractor.ts", + "hash": "17187176357588542113" + }, + { + "file": "apps/server/src/services/log.ts", + "hash": "8299439192200502441", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/meta/attachment_meta.ts", + "hash": "1467847335326585638" + }, + { + "file": "apps/server/src/services/meta/attribute_meta.ts", + "hash": "4521201342846601380", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/meta/note_meta.ts", + "hash": "2462238987834271505", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/migration.spec.ts", + "hash": "3226530725119001982", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/migration.ts", + "hash": "16432207429093655510", + "deps": [ + "npm:fs-extra" + ] + }, + { + "file": "apps/server/src/services/note-interface.ts", + "hash": "10882607130955334922", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/note_types.ts", + "hash": "12356426456019297603" + }, + { + "file": "apps/server/src/services/notes.ts", + "hash": "6083636038560996788", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/one_time_timer.ts", + "hash": "4953524901948289856" + }, + { + "file": "apps/server/src/services/open_id.ts", + "hash": "15963279438752789317", + "deps": [ + "npm:express" + ] + }, + { + "file": "apps/server/src/services/options.ts", + "hash": "14755364537279055717", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/options_init.ts", + "hash": "8226478055227580018", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/port.ts", + "hash": "10675293477217923275" + }, + { + "file": "apps/server/src/services/promoted_attribute_definition_interface.ts", + "hash": "12732155323076332234" + }, + { + "file": "apps/server/src/services/promoted_attribute_definition_parser.ts", + "hash": "920185933288212224" + }, + { + "file": "apps/server/src/services/protected_session.ts", + "hash": "8480758404555135020" + }, + { + "file": "apps/server/src/services/request.ts", + "hash": "15652254663040511537" + }, + { + "file": "apps/server/src/services/request_interface.ts", + "hash": "1485096077125486340" + }, + { + "file": "apps/server/src/services/resource_dir.ts", + "hash": "12933479703453446307" + }, + { + "file": "apps/server/src/services/revisions.ts", + "hash": "1551394255023917134" + }, + { + "file": "apps/server/src/services/sanitize_attribute_name.spec.ts", + "hash": "8450500785812618173", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/sanitize_attribute_name.ts", + "hash": "12337624883636030014" + }, + { + "file": "apps/server/src/services/scheduler.ts", + "hash": "12829250701329092382" + }, + { + "file": "apps/server/src/services/script.ts", + "hash": "8426350504091390388" + }, + { + "file": "apps/server/src/services/script_context.ts", + "hash": "16383777290389642283" + }, + { + "file": "apps/server/src/services/search/expressions/ancestor.ts", + "hash": "8496756772502354816" + }, + { + "file": "apps/server/src/services/search/expressions/and.ts", + "hash": "4481491139695295207" + }, + { + "file": "apps/server/src/services/search/expressions/attribute_exists.ts", + "hash": "7260508886300571564" + }, + { + "file": "apps/server/src/services/search/expressions/child_of.ts", + "hash": "173555442484337743" + }, + { + "file": "apps/server/src/services/search/expressions/descendant_of.ts", + "hash": "11278391969825913867" + }, + { + "file": "apps/server/src/services/search/expressions/expression.ts", + "hash": "9493960926587985694" + }, + { + "file": "apps/server/src/services/search/expressions/is_hidden.ts", + "hash": "5794942510835424997" + }, + { + "file": "apps/server/src/services/search/expressions/label_comparison.ts", + "hash": "3483842955935804774" + }, + { + "file": "apps/server/src/services/search/expressions/not.ts", + "hash": "17767485600603290387" + }, + { + "file": "apps/server/src/services/search/expressions/note_content_fulltext.spec.ts", + "hash": "3576978505105557804", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/expressions/note_content_fulltext.ts", + "hash": "14200372612934492092", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/search/expressions/note_flat_text.ts", + "hash": "18203257646374566571" + }, + { + "file": "apps/server/src/services/search/expressions/or.ts", + "hash": "5738860544290402111" + }, + { + "file": "apps/server/src/services/search/expressions/order_by_and_limit.ts", + "hash": "455980396984089746" + }, + { + "file": "apps/server/src/services/search/expressions/parent_of.ts", + "hash": "13087299316372016797" + }, + { + "file": "apps/server/src/services/search/expressions/property_comparison.ts", + "hash": "15576434061821705943" + }, + { + "file": "apps/server/src/services/search/expressions/relation_where.ts", + "hash": "3668499727966108538" + }, + { + "file": "apps/server/src/services/search/expressions/true.ts", + "hash": "11226846814274616364" + }, + { + "file": "apps/server/src/services/search/note_set.ts", + "hash": "6050845977160022730" + }, + { + "file": "apps/server/src/services/search/search_context.ts", + "hash": "9703677649308246866" + }, + { + "file": "apps/server/src/services/search/search_result.ts", + "hash": "6217408530369814704" + }, + { + "file": "apps/server/src/services/search/services/build_comparator.ts", + "hash": "1384281090519719965" + }, + { + "file": "apps/server/src/services/search/services/handle_parens.spec.ts", + "hash": "12139850676644756939", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/services/handle_parens.ts", + "hash": "14673192627260249882" + }, + { + "file": "apps/server/src/services/search/services/lex.spec.ts", + "hash": "5404456586553601329", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/services/lex.ts", + "hash": "9290354858258050586" + }, + { + "file": "apps/server/src/services/search/services/parse.spec.ts", + "hash": "7946041741502960409", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/services/parse.ts", + "hash": "9994294764563948802" + }, + { + "file": "apps/server/src/services/search/services/search.spec.ts", + "hash": "9396910765436742681", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/services/search.ts", + "hash": "17354678784415862746" + }, + { + "file": "apps/server/src/services/search/services/types.ts", + "hash": "8055910356610754078" + }, + { + "file": "apps/server/src/services/search/value_extractor.spec.ts", + "hash": "7376551781939771531", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/search/value_extractor.ts", + "hash": "1161863147718103317" + }, + { + "file": "apps/server/src/services/session_secret.ts", + "hash": "5618387115368724602" + }, + { + "file": "apps/server/src/services/setup.ts", + "hash": "9497423825539450781" + }, + { + "file": "apps/server/src/services/spaced_update.ts", + "hash": "9413418469504954158" + }, + { + "file": "apps/server/src/services/special_notes.ts", + "hash": "14409880184778508124" + }, + { + "file": "apps/server/src/services/sql.ts", + "hash": "12870709627953679811", + "deps": [ + "npm:fs-extra" + ] + }, + { + "file": "apps/server/src/services/sql_init.ts", + "hash": "1000419555329883003", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/sync.ts", + "hash": "15749081130509239334" + }, + { + "file": "apps/server/src/services/sync_mutex.ts", + "hash": "747812397689219776" + }, + { + "file": "apps/server/src/services/sync_options.ts", + "hash": "9185071188235220530" + }, + { + "file": "apps/server/src/services/sync_update.ts", + "hash": "16427122366037388459" + }, + { + "file": "apps/server/src/services/task_context.ts", + "hash": "5132184031208080888" + }, + { + "file": "apps/server/src/services/task_context_interface.ts", + "hash": "15381593037635630258" + }, + { + "file": "apps/server/src/services/totp.ts", + "hash": "380244975262864647" + }, + { + "file": "apps/server/src/services/tray.ts", + "hash": "12952803479498283870", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/services/tree.spec.ts", + "hash": "5296905722383191371", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/tree.ts", + "hash": "2938642908677370198" + }, + { + "file": "apps/server/src/services/utils.spec.ts", + "hash": "1396950473169564051", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/services/utils.ts", + "hash": "11931649637320592978", + "deps": [ + "npm:strip-bom", + "npm:escape-html", + "npm:mime-types" + ] + }, + { + "file": "apps/server/src/services/window.ts", + "hash": "15821989939178568776" + }, + { + "file": "apps/server/src/services/ws.ts", + "hash": "14377076815363966692", + "deps": [ + "npm:ws", + [ + "npm:chokidar", + "dynamic" + ] + ] + }, + { + "file": "apps/server/src/share/content_renderer.spec.ts", + "hash": "9708069254108031817", + "deps": [ + "npm:vitest" + ] + }, + { + "file": "apps/server/src/share/content_renderer.ts", + "hash": "1277470403193990266", + "deps": [ + "npm:escape-html" + ] + }, + { + "file": "apps/server/src/share/routes.spec.ts", + "hash": "12772445759578198451", + "deps": [ + "npm:vitest", + "npm:express" + ] + }, + { + "file": "apps/server/src/share/routes.ts", + "hash": "9402815158038660721", + "deps": [ + "npm:ejs", + "npm:express" + ] + }, + { + "file": "apps/server/src/share/shaca/entities/abstract_shaca_entity.ts", + "hash": "12017451185026399636" + }, + { + "file": "apps/server/src/share/shaca/entities/rows.ts", + "hash": "5682654276699946645" + }, + { + "file": "apps/server/src/share/shaca/entities/sattachment.ts", + "hash": "3489572495636645443" + }, + { + "file": "apps/server/src/share/shaca/entities/sattribute.ts", + "hash": "15226193562572198233" + }, + { + "file": "apps/server/src/share/shaca/entities/sbranch.ts", + "hash": "13157482630716793462" + }, + { + "file": "apps/server/src/share/shaca/entities/snote.ts", + "hash": "4941592612674607043", + "deps": [ + "npm:escape-html" + ] + }, + { + "file": "apps/server/src/share/shaca/shaca-interface.ts", + "hash": "13039123089652260889" + }, + { + "file": "apps/server/src/share/shaca/shaca.ts", + "hash": "8063325297568591704" + }, + { + "file": "apps/server/src/share/shaca/shaca_loader.ts", + "hash": "15722181680267757841" + }, + { + "file": "apps/server/src/share/share_root.ts", + "hash": "13738418458269089080" + }, + { + "file": "apps/server/src/share/sql.ts", + "hash": "16545445187136524889" + }, + { + "file": "apps/server/src/test/becca_mocking.ts", + "hash": "13834659804322479387", + "deps": [ + "@triliumnext/commons" + ] + }, + { + "file": "apps/server/src/types.d.ts", + "hash": "7955517959665151994" + }, + { + "file": "apps/server/src/views/desktop.ejs", + "hash": "18139561054441204231" + }, + { + "file": "apps/server/src/views/login.ejs", + "hash": "5241427070425147328" + }, + { + "file": "apps/server/src/views/mobile.ejs", + "hash": "1996200838963207661" + }, + { + "file": "apps/server/src/views/partials/windowGlobal.ejs", + "hash": "8740371449431610813" + }, + { + "file": "apps/server/src/views/set_password.ejs", + "hash": "8127842976972497891" + }, + { + "file": "apps/server/src/views/setup.ejs", + "hash": "6724905019699134841" + }, + { + "file": "apps/server/src/views/share/404.ejs", + "hash": "15954439358279708395" + }, + { + "file": "apps/server/src/views/share/page.ejs", + "hash": "17339496856338797398" + }, + { + "file": "apps/server/src/views/share/tree_item.ejs", + "hash": "17568346162191801399" + }, + { + "file": "apps/server/src/www.ts", + "hash": "8244608244874433130", + "deps": [ + "npm:tmp" + ] + }, + { + "file": "apps/server/tsconfig.app.json", + "hash": "3694477791020167376" + }, + { + "file": "apps/server/tsconfig.json", + "hash": "5761948780426366458" + }, + { + "file": "apps/server/webpack.config.cjs", + "hash": "8354317366887649689", + "deps": [ + "npm:@nx/webpack" + ] + } ] } } diff --git a/.nx/workspace-data/lockfile.hash b/.nx/workspace-data/lockfile.hash index 11b95e0c9..86d8629e2 100644 --- a/.nx/workspace-data/lockfile.hash +++ b/.nx/workspace-data/lockfile.hash @@ -1 +1 @@ -12036982028021686612 \ No newline at end of file +15773920245629324736 \ No newline at end of file diff --git a/.nx/workspace-data/nx_files.nxt b/.nx/workspace-data/nx_files.nxt index b9489d6583cdfd8104050adaa17e9f53f81b23cd..0fd8ff9bebe902574d62a5ba5d931aca2d86e37d 100644 GIT binary patch literal 227036 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%0AAx{f1r5x>zI}B0+5iVkWsdM?3{-1Ch{CzJ&z1 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 literal 115300 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 diff --git a/.nx/workspace-data/parsed-lock-file.json b/.nx/workspace-data/parsed-lock-file.json index fc00e582a..f86f052f8 100644 --- a/.nx/workspace-data/parsed-lock-file.json +++ b/.nx/workspace-data/parsed-lock-file.json @@ -1,5 +1,14 @@ { "externalNodes": { + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.3", + "packageName": "@adobe/css-tools", + "hash": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==" + } + }, "npm:@ampproject/remapping": { "type": "npm", "name": "npm:@ampproject/remapping", @@ -45,6 +54,15 @@ "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" } }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, "npm:semver": { "type": "npm", "name": "npm:semver", @@ -819,6 +837,51 @@ "hash": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==" } }, + "npm:@babel/plugin-transform-react-constant-elements": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-constant-elements", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-constant-elements", + "hash": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==" + } + }, "npm:@babel/plugin-transform-regenerator": { "type": "npm", "name": "npm:@babel/plugin-transform-regenerator", @@ -963,6 +1026,15 @@ "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" } }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.26.3", + "packageName": "@babel/preset-react", + "hash": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==" + } + }, "npm:@babel/preset-typescript": { "type": "npm", "name": "npm:@babel/preset-typescript", @@ -1026,6 +1098,24 @@ "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" } }, + "npm:@bufbuild/protobuf": { + "type": "npm", + "name": "npm:@bufbuild/protobuf", + "data": { + "version": "2.2.5", + "packageName": "@bufbuild/protobuf", + "hash": "sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.7", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" + } + }, "npm:@emnapi/core": { "type": "npm", "name": "npm:@emnapi/core", @@ -1656,6 +1746,15 @@ "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" } }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, "npm:locate-path@5.0.0": { "type": "npm", "name": "npm:locate-path@5.0.0", @@ -1674,6 +1773,15 @@ "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" } }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, "npm:p-limit@2.3.0": { "type": "npm", "name": "npm:p-limit@2.3.0", @@ -1692,6 +1800,15 @@ "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" } }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, "npm:p-locate@4.1.0": { "type": "npm", "name": "npm:p-locate@4.1.0", @@ -1710,6 +1827,15 @@ "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" } }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, "npm:resolve-from@5.0.0": { "type": "npm", "name": "npm:resolve-from@5.0.0", @@ -1917,6 +2043,15 @@ "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" } }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.6", + "packageName": "@jridgewell/source-map", + "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" + } + }, "npm:@jridgewell/sourcemap-codec": { "type": "npm", "name": "npm:@jridgewell/sourcemap-codec", @@ -1935,6 +2070,42 @@ "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" } }, + "npm:@jsonjoy.com/base64": { + "type": "npm", + "name": "npm:@jsonjoy.com/base64", + "data": { + "version": "1.1.2", + "packageName": "@jsonjoy.com/base64", + "hash": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==" + } + }, + "npm:@jsonjoy.com/json-pack": { + "type": "npm", + "name": "npm:@jsonjoy.com/json-pack", + "data": { + "version": "1.2.0", + "packageName": "@jsonjoy.com/json-pack", + "hash": "sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==" + } + }, + "npm:@jsonjoy.com/util": { + "type": "npm", + "name": "npm:@jsonjoy.com/util", + "data": { + "version": "1.5.0", + "packageName": "@jsonjoy.com/util", + "hash": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.5", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + } + }, "npm:@napi-rs/nice": { "type": "npm", "name": "npm:@napi-rs/nice", @@ -2295,6 +2466,51 @@ "hash": "sha512-jbK3+ZrVygYHMGCbp7NO1/G+ejH6Z74PcWwEKSZDPm7io6fxieO9j+GSzucvUWrY4cfJNC+S//X4tENwVj0g2w==" } }, + "npm:@nx/webpack": { + "type": "npm", + "name": "npm:@nx/webpack", + "data": { + "version": "20.8.0", + "packageName": "@nx/webpack", + "hash": "sha512-zqboigPhlPNMzOIFECkLzkCOfpvOR1BnE7zu2Vyzok18s3dhb1UErar6MuSb6Dh5Mwfe2HELa8iD60bM8PBSQg==" + } + }, + "npm:ajv@8.17.1": { + "type": "npm", + "name": "npm:ajv@8.17.1", + "data": { + "version": "8.17.1", + "packageName": "ajv", + "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, "npm:@nx/workspace": { "type": "npm", "name": "npm:@nx/workspace", @@ -2304,6 +2520,132 @@ "hash": "sha512-FdaHA5ISHSN+RyHswAAx+2A9HC77kWeFgeucdX2NSBs2QK2Lzg2Et639RzR1sYk2gYTP6tOkQXHHGKcg3jmiYQ==" } }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher", + "hash": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==" + } + }, + "npm:@parcel/watcher-android-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-android-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-android-arm64", + "hash": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==" + } + }, + "npm:@parcel/watcher-darwin-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-darwin-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-darwin-arm64", + "hash": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==" + } + }, + "npm:@parcel/watcher-darwin-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-darwin-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-darwin-x64", + "hash": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==" + } + }, + "npm:@parcel/watcher-freebsd-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-freebsd-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-freebsd-x64", + "hash": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==" + } + }, + "npm:@parcel/watcher-linux-arm-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm-glibc", + "hash": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==" + } + }, + "npm:@parcel/watcher-linux-arm-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm-musl", + "hash": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==" + } + }, + "npm:@parcel/watcher-linux-arm64-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm64-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm64-glibc", + "hash": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==" + } + }, + "npm:@parcel/watcher-linux-arm64-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm64-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm64-musl", + "hash": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==" + } + }, + "npm:@parcel/watcher-linux-x64-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-x64-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-x64-glibc", + "hash": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==" + } + }, + "npm:@parcel/watcher-linux-x64-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-x64-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-x64-musl", + "hash": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==" + } + }, + "npm:@parcel/watcher-win32-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-arm64", + "hash": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==" + } + }, + "npm:@parcel/watcher-win32-ia32": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-ia32", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-ia32", + "hash": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==" + } + }, + "npm:@parcel/watcher-win32-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-x64", + "hash": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==" + } + }, "npm:@phenomnomnominal/tsquery": { "type": "npm", "name": "npm:@phenomnomnominal/tsquery", @@ -2322,6 +2664,33 @@ "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" } }, + "npm:@pmmmwh/react-refresh-webpack-plugin": { + "type": "npm", + "name": "npm:@pmmmwh/react-refresh-webpack-plugin", + "data": { + "version": "0.5.16", + "packageName": "@pmmmwh/react-refresh-webpack-plugin", + "hash": "sha512-kLQc9xz6QIqd2oIYyXRUiAp79kGpFBm3fEM9ahfG1HI0WI5gdZ2OVHWdmZYnwODt7ISck+QuQ6sBPrtvUBML7Q==" + } + }, + "npm:source-map@0.7.4": { + "type": "npm", + "name": "npm:source-map@0.7.4", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, "npm:@polka/url": { "type": "npm", "name": "npm:@polka/url", @@ -2556,6 +2925,168 @@ "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" } }, + "npm:@svgr/babel-plugin-add-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-add-jsx-attribute", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-add-jsx-attribute", + "hash": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-attribute", + "hash": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-empty-expression": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-empty-expression", + "hash": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==" + } + }, + "npm:@svgr/babel-plugin-replace-jsx-attribute-value": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-replace-jsx-attribute-value", + "hash": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==" + } + }, + "npm:@svgr/babel-plugin-svg-dynamic-title": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-dynamic-title", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-svg-dynamic-title", + "hash": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==" + } + }, + "npm:@svgr/babel-plugin-svg-em-dimensions": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-em-dimensions", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-svg-em-dimensions", + "hash": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==" + } + }, + "npm:@svgr/babel-plugin-transform-react-native-svg": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-react-native-svg", + "data": { + "version": "8.1.0", + "packageName": "@svgr/babel-plugin-transform-react-native-svg", + "hash": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==" + } + }, + "npm:@svgr/babel-plugin-transform-svg-component": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-svg-component", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-transform-svg-component", + "hash": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==" + } + }, + "npm:@svgr/babel-preset": { + "type": "npm", + "name": "npm:@svgr/babel-preset", + "data": { + "version": "8.1.0", + "packageName": "@svgr/babel-preset", + "hash": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==" + } + }, + "npm:@svgr/core": { + "type": "npm", + "name": "npm:@svgr/core", + "data": { + "version": "8.1.0", + "packageName": "@svgr/core", + "hash": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:cosmiconfig@8.3.6": { + "type": "npm", + "name": "npm:cosmiconfig@8.3.6", + "data": { + "version": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "7.1.0", + "packageName": "cosmiconfig", + "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" + } + }, + "npm:@svgr/hast-util-to-babel-ast": { + "type": "npm", + "name": "npm:@svgr/hast-util-to-babel-ast", + "data": { + "version": "8.0.0", + "packageName": "@svgr/hast-util-to-babel-ast", + "hash": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==" + } + }, + "npm:@svgr/plugin-jsx": { + "type": "npm", + "name": "npm:@svgr/plugin-jsx", + "data": { + "version": "8.1.0", + "packageName": "@svgr/plugin-jsx", + "hash": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==" + } + }, + "npm:@svgr/plugin-svgo": { + "type": "npm", + "name": "npm:@svgr/plugin-svgo", + "data": { + "version": "8.1.0", + "packageName": "@svgr/plugin-svgo", + "hash": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==" + } + }, + "npm:@svgr/webpack": { + "type": "npm", + "name": "npm:@svgr/webpack", + "data": { + "version": "8.1.0", + "packageName": "@svgr/webpack", + "hash": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==" + } + }, "npm:@swc-node/core": { "type": "npm", "name": "npm:@swc-node/core", @@ -2619,24 +3150,6 @@ "hash": "sha512-Q5FsI3Cw0fGMXhmsg7c08i4EmXCrcl+WnAxb6LYOLHw4JFFC3yzmx9LaXZ7QMbA+JZXbigU2TirI7RAfO0Qlnw==" } }, - "npm:source-map@0.7.4": { - "type": "npm", - "name": "npm:source-map@0.7.4", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, "npm:@swc/core": { "type": "npm", "name": "npm:@swc/core", @@ -2781,6 +3294,15 @@ "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" } }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, "npm:@tybys/wasm-util": { "type": "npm", "name": "npm:@tybys/wasm-util", @@ -2826,6 +3348,60 @@ "hash": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==" } }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "9.6.1", + "packageName": "@types/eslint", + "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, "npm:@types/estree": { "type": "npm", "name": "npm:@types/estree", @@ -2835,6 +3411,24 @@ "hash": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==" } }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.19.6", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==" + } + }, "npm:@types/graceful-fs": { "type": "npm", "name": "npm:@types/graceful-fs", @@ -2853,6 +3447,24 @@ "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" } }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.16", + "packageName": "@types/http-proxy", + "hash": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==" + } + }, "npm:@types/istanbul-lib-coverage": { "type": "npm", "name": "npm:@types/istanbul-lib-coverage", @@ -2889,6 +3501,15 @@ "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" } }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, "npm:@types/node": { "type": "npm", "name": "npm:@types/node", @@ -2898,6 +3519,15 @@ "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" } }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.11", + "packageName": "@types/node-forge", + "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" + } + }, "npm:@types/parse-json": { "type": "npm", "name": "npm:@types/parse-json", @@ -2907,6 +3537,69 @@ "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" } }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.18", + "packageName": "@types/qs", + "hash": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.2", + "packageName": "@types/retry", + "hash": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.7", + "packageName": "@types/serve-static", + "hash": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, "npm:@types/stack-utils": { "type": "npm", "name": "npm:@types/stack-utils", @@ -2916,6 +3609,15 @@ "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" } }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.18.1", + "packageName": "@types/ws", + "hash": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==" + } + }, "npm:@types/yargs": { "type": "npm", "name": "npm:@types/yargs", @@ -3105,6 +3807,168 @@ "hash": "sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==" } }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==" + } + }, + "npm:@webpack-cli/configtest": { + "type": "npm", + "name": "npm:@webpack-cli/configtest", + "data": { + "version": "2.1.1", + "packageName": "@webpack-cli/configtest", + "hash": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==" + } + }, + "npm:@webpack-cli/info": { + "type": "npm", + "name": "npm:@webpack-cli/info", + "data": { + "version": "2.0.2", + "packageName": "@webpack-cli/info", + "hash": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==" + } + }, + "npm:@webpack-cli/serve": { + "type": "npm", + "name": "npm:@webpack-cli/serve", + "data": { + "version": "2.0.5", + "packageName": "@webpack-cli/serve", + "hash": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==" + } + }, "npm:@xhmikosr/archive-type": { "type": "npm", "name": "npm:@xhmikosr/archive-type", @@ -3231,6 +4095,24 @@ "hash": "sha512-siPY6BD5dQ2SZPl3I0OZBHL27ZqZvLEosObsZRQ1NUB8qcxegwt0T9eKtV96JMFQpIz1elhkzqOg4c/Ri6Dp9A==" } }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, "npm:@yarnpkg/lockfile": { "type": "npm", "name": "npm:@yarnpkg/lockfile", @@ -3294,13 +4176,31 @@ "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" } }, - "npm:ajv": { + "npm:ajv-formats": { "type": "npm", - "name": "npm:ajv", + "name": "npm:ajv-formats", "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv-keywords@3.5.2": { + "type": "npm", + "name": "npm:ajv-keywords@3.5.2", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" } }, "npm:ansi-colors": { @@ -3321,6 +4221,24 @@ "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" } }, + "npm:ansi-html": { + "type": "npm", + "name": "npm:ansi-html", + "data": { + "version": "0.0.9", + "packageName": "ansi-html", + "hash": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, "npm:anymatch": { "type": "npm", "name": "npm:anymatch", @@ -3384,6 +4302,15 @@ "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" } }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, "npm:assertion-error": { "type": "npm", "name": "npm:assertion-error", @@ -3411,6 +4338,15 @@ "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" } }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.21", + "packageName": "autoprefixer", + "hash": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==" + } + }, "npm:axios": { "type": "npm", "name": "npm:axios", @@ -3438,6 +4374,15 @@ "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" } }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.2.1", + "packageName": "babel-loader", + "hash": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==" + } + }, "npm:babel-plugin-const-enum": { "type": "npm", "name": "npm:babel-plugin-const-enum", @@ -3618,6 +4563,24 @@ "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, "npm:bin-version": { "type": "npm", "name": "npm:bin-version", @@ -3636,6 +4599,15 @@ "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" } }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.3.0", + "packageName": "binary-extensions", + "hash": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" + } + }, "npm:bl": { "type": "npm", "name": "npm:bl", @@ -3726,6 +4698,24 @@ "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" } }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.3.0", + "packageName": "bonjour-service", + "hash": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, "npm:braces": { "type": "npm", "name": "npm:braces", @@ -3762,6 +4752,15 @@ "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" } }, + "npm:buffer-builder": { + "type": "npm", + "name": "npm:buffer-builder", + "data": { + "version": "0.2.0", + "packageName": "buffer-builder", + "hash": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==" + } + }, "npm:buffer-crc32": { "type": "npm", "name": "npm:buffer-crc32", @@ -3780,6 +4779,15 @@ "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" } }, + "npm:bundle-name": { + "type": "npm", + "name": "npm:bundle-name", + "data": { + "version": "4.1.0", + "packageName": "bundle-name", + "hash": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==" + } + }, "npm:bytes": { "type": "npm", "name": "npm:bytes", @@ -3843,22 +4851,13 @@ "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" } }, - "npm:camelcase": { + "npm:caniuse-api": { "type": "npm", - "name": "npm:camelcase", + "name": "npm:caniuse-api", "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" } }, "npm:caniuse-lite": { @@ -3906,6 +4905,51 @@ "hash": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==" } }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.6.0", + "packageName": "chokidar", + "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" + } + }, + "npm:chokidar@4.0.3": { + "type": "npm", + "name": "npm:chokidar@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "chokidar", + "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" + } + }, + "npm:glob-parent@5.1.2": { + "type": "npm", + "name": "npm:glob-parent@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.4", + "packageName": "chrome-trace-event", + "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" + } + }, "npm:ci-info": { "type": "npm", "name": "npm:ci-info", @@ -3960,6 +5004,15 @@ "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" } }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, "npm:co": { "type": "npm", "name": "npm:co", @@ -3996,6 +5049,15 @@ "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" } }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, "npm:colorette": { "type": "npm", "name": "npm:colorette", @@ -4005,6 +5067,15 @@ "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" } }, + "npm:colorjs.io": { + "type": "npm", + "name": "npm:colorjs.io", + "data": { + "version": "0.5.2", + "packageName": "colorjs.io", + "hash": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==" + } + }, "npm:columnify": { "type": "npm", "name": "npm:columnify", @@ -4041,6 +5112,78 @@ "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" } }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@10.0.1": { + "type": "npm", + "name": "npm:commander@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "commander", + "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.8.0", + "packageName": "compression", + "hash": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==" + } + }, + "npm:negotiator@0.6.4": { + "type": "npm", + "name": "npm:negotiator@0.6.4", + "data": { + "version": "0.6.4", + "packageName": "negotiator", + "hash": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, "npm:concat-map": { "type": "npm", "name": "npm:concat-map", @@ -4059,6 +5202,15 @@ "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" } }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, "npm:content-disposition": { "type": "npm", "name": "npm:content-disposition", @@ -4104,6 +5256,24 @@ "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" } }, + "npm:copy-anything": { + "type": "npm", + "name": "npm:copy-anything", + "data": { + "version": "2.0.6", + "packageName": "copy-anything", + "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, "npm:core-js-compat": { "type": "npm", "name": "npm:core-js-compat", @@ -4113,6 +5283,24 @@ "hash": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==" } }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.41.0", + "packageName": "core-js-pure", + "hash": "sha512-71Gzp96T9YPk63aUvE5Q5qP+DryB4ZloUZPSOebGM88VNw8VNfvdA7z6kGA8iGOTEzAomsRidp4jXSmUIJsL+Q==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, "npm:corser": { "type": "npm", "name": "npm:corser", @@ -4122,15 +5310,6 @@ "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" } }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, "npm:cross-spawn": { "type": "npm", "name": "npm:cross-spawn", @@ -4140,6 +5319,132 @@ "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" } }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "7.2.0", + "packageName": "css-declaration-sorter", + "hash": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.11.0", + "packageName": "css-loader", + "hash": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "5.0.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-tree@2.2.1": { + "type": "npm", + "name": "npm:css-tree@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "css-tree", + "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "6.1.2", + "packageName": "cssnano", + "hash": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "6.1.2", + "packageName": "cssnano-preset-default", + "hash": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "4.0.2", + "packageName": "cssnano-utils", + "hash": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "5.0.5", + "packageName": "csso", + "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" + } + }, + "npm:mdn-data@2.0.28": { + "type": "npm", + "name": "npm:mdn-data@2.0.28", + "data": { + "version": "2.0.28", + "packageName": "mdn-data", + "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, "npm:decompress-response": { "type": "npm", "name": "npm:decompress-response", @@ -4203,6 +5508,24 @@ "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" } }, + "npm:default-browser": { + "type": "npm", + "name": "npm:default-browser", + "data": { + "version": "5.2.1", + "packageName": "default-browser", + "hash": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==" + } + }, + "npm:default-browser-id": { + "type": "npm", + "name": "npm:default-browser-id", + "data": { + "version": "5.0.0", + "packageName": "default-browser-id", + "hash": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==" + } + }, "npm:defer-to-connect": { "type": "npm", "name": "npm:defer-to-connect", @@ -4221,6 +5544,15 @@ "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" } }, + "npm:define-lazy-prop@3.0.0": { + "type": "npm", + "name": "npm:define-lazy-prop@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" + } + }, "npm:delayed-stream": { "type": "npm", "name": "npm:delayed-stream", @@ -4239,6 +5571,15 @@ "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" } }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, "npm:destroy": { "type": "npm", "name": "npm:destroy", @@ -4248,6 +5589,15 @@ "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" } }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "1.0.3", + "packageName": "detect-libc", + "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + } + }, "npm:detect-newline": { "type": "npm", "name": "npm:detect-newline", @@ -4257,6 +5607,15 @@ "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" } }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, "npm:detect-port": { "type": "npm", "name": "npm:detect-port", @@ -4275,6 +5634,69 @@ "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" } }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.2.2", + "packageName": "domutils", + "hash": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, "npm:dotenv": { "type": "npm", "name": "npm:dotenv", @@ -4347,6 +5769,15 @@ "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" } }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, "npm:encodeurl": { "type": "npm", "name": "npm:encodeurl", @@ -4374,6 +5805,15 @@ "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" } }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.18.1", + "packageName": "enhanced-resolve", + "hash": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==" + } + }, "npm:enquirer": { "type": "npm", "name": "npm:enquirer", @@ -4383,6 +5823,33 @@ "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" } }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.14.0", + "packageName": "envinfo", + "hash": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, "npm:error-ex": { "type": "npm", "name": "npm:error-ex", @@ -4392,6 +5859,15 @@ "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" } }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, "npm:es-define-property": { "type": "npm", "name": "npm:es-define-property", @@ -4518,6 +5994,15 @@ "hash": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==" } }, + "npm:eslint-scope@5.1.1": { + "type": "npm", + "name": "npm:eslint-scope@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, "npm:espree": { "type": "npm", "name": "npm:espree", @@ -4572,6 +6057,15 @@ "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" } }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, "npm:estree-walker": { "type": "npm", "name": "npm:estree-walker", @@ -4608,6 +6102,15 @@ "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" } }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, "npm:execa": { "type": "npm", "name": "npm:execa", @@ -4698,24 +6201,6 @@ "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" } }, - "npm:glob-parent@5.1.2": { - "type": "npm", - "name": "npm:glob-parent@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, "npm:fast-json-stable-stringify": { "type": "npm", "name": "npm:fast-json-stable-stringify", @@ -4734,6 +6219,24 @@ "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" } }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.0.6", + "packageName": "fast-uri", + "hash": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==" + } + }, "npm:fastq": { "type": "npm", "name": "npm:fastq", @@ -4743,6 +6246,15 @@ "hash": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==" } }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, "npm:fb-watchman": { "type": "npm", "name": "npm:fb-watchman", @@ -4878,6 +6390,15 @@ "hash": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==" } }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, "npm:find-versions": { "type": "npm", "name": "npm:find-versions", @@ -4950,6 +6471,33 @@ "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" } }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "7.2.13", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.3.1", + "packageName": "schema-utils", + "hash": "sha512-jjlZ7UknkyQxGnHF1w8wDgWfdtnW0hBX7tmDp04zBwDBZ/6tPJI1+RWfBHGMA4+0nAjGptp+eDpIYP6mldJbqg==" + } + }, "npm:form-data": { "type": "npm", "name": "npm:form-data", @@ -4977,6 +6525,15 @@ "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" } }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.3.7", + "packageName": "fraction.js", + "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + } + }, "npm:fresh": { "type": "npm", "name": "npm:fresh", @@ -5004,6 +6561,24 @@ "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" } }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.6", + "packageName": "fs-monkey", + "hash": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + } + }, "npm:fs.realpath": { "type": "npm", "name": "npm:fs.realpath", @@ -5076,6 +6651,42 @@ "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" } }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, "npm:gopd": { "type": "npm", "name": "npm:gopd", @@ -5112,6 +6723,15 @@ "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" } }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, "npm:harmony-reflect": { "type": "npm", "name": "npm:harmony-reflect", @@ -5193,6 +6813,51 @@ "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" } }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, "npm:html-encoding-sniffer": { "type": "npm", "name": "npm:html-encoding-sniffer", @@ -5202,6 +6867,15 @@ "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" } }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.6.0", + "packageName": "html-entities", + "hash": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==" + } + }, "npm:html-escaper": { "type": "npm", "name": "npm:html-escaper", @@ -5220,6 +6894,15 @@ "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" } }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, "npm:http-errors": { "type": "npm", "name": "npm:http-errors", @@ -5229,6 +6912,24 @@ "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" } }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.10", + "packageName": "http-parser-js", + "hash": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==" + } + }, "npm:http-proxy": { "type": "npm", "name": "npm:http-proxy", @@ -5238,6 +6939,33 @@ "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" } }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.9", + "packageName": "http-proxy-middleware", + "hash": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, "npm:http-server": { "type": "npm", "name": "npm:http-server", @@ -5265,6 +6993,24 @@ "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" } }, + "npm:hyperdyperid": { + "type": "npm", + "name": "npm:hyperdyperid", + "data": { + "version": "1.2.0", + "packageName": "hyperdyperid", + "hash": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, "npm:identity-obj-proxy": { "type": "npm", "name": "npm:identity-obj-proxy", @@ -5292,6 +7038,24 @@ "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" } }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "0.5.5", + "packageName": "image-size", + "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "5.1.1", + "packageName": "immutable", + "hash": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==" + } + }, "npm:import-fresh": { "type": "npm", "name": "npm:import-fresh", @@ -5301,6 +7065,33 @@ "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" } }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.2.0", + "packageName": "import-local", + "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" + } + }, + "npm:pkg-dir@4.2.0": { + "type": "npm", + "name": "npm:pkg-dir@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, "npm:imurmurhash": { "type": "npm", "name": "npm:imurmurhash", @@ -5328,6 +7119,15 @@ "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" } }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, "npm:inspect-with-kind": { "type": "npm", "name": "npm:inspect-with-kind", @@ -5337,6 +7137,15 @@ "hash": "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==" } }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "3.1.1", + "packageName": "interpret", + "hash": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==" + } + }, "npm:ipaddr.js": { "type": "npm", "name": "npm:ipaddr.js", @@ -5346,6 +7155,15 @@ "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" } }, + "npm:ipaddr.js@2.2.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "ipaddr.js", + "hash": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==" + } + }, "npm:is-arrayish": { "type": "npm", "name": "npm:is-arrayish", @@ -5355,6 +7173,15 @@ "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" } }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, "npm:is-core-module": { "type": "npm", "name": "npm:is-core-module", @@ -5373,6 +7200,15 @@ "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" } }, + "npm:is-docker@3.0.0": { + "type": "npm", + "name": "npm:is-docker@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-docker", + "hash": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + } + }, "npm:is-extglob": { "type": "npm", "name": "npm:is-extglob", @@ -5409,6 +7245,15 @@ "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" } }, + "npm:is-inside-container": { + "type": "npm", + "name": "npm:is-inside-container", + "data": { + "version": "1.0.0", + "packageName": "is-inside-container", + "hash": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==" + } + }, "npm:is-interactive": { "type": "npm", "name": "npm:is-interactive", @@ -5418,6 +7263,15 @@ "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" } }, + "npm:is-network-error": { + "type": "npm", + "name": "npm:is-network-error", + "data": { + "version": "1.1.0", + "packageName": "is-network-error", + "hash": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==" + } + }, "npm:is-number": { "type": "npm", "name": "npm:is-number", @@ -5427,13 +7281,13 @@ "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" } }, - "npm:is-plain-obj": { + "npm:is-plain-object": { "type": "npm", - "name": "npm:is-plain-obj", + "name": "npm:is-plain-object", "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" } }, "npm:is-unicode-supported": { @@ -5445,6 +7299,15 @@ "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" } }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "3.14.1", + "packageName": "is-what", + "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + } + }, "npm:is-wsl": { "type": "npm", "name": "npm:is-wsl", @@ -5454,6 +7317,24 @@ "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" } }, + "npm:is-wsl@3.1.0": { + "type": "npm", + "name": "npm:is-wsl@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "is-wsl", + "hash": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, "npm:isexe": { "type": "npm", "name": "npm:isexe", @@ -5463,6 +7344,15 @@ "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" } }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, "npm:istanbul-lib-coverage": { "type": "npm", "name": "npm:istanbul-lib-coverage", @@ -5724,6 +7614,15 @@ "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" } }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, "npm:supports-color@8.1.1": { "type": "npm", "name": "npm:supports-color@8.1.1", @@ -5796,15 +7695,6 @@ "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" } }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, "npm:json-stable-stringify-without-jsonify": { "type": "npm", "name": "npm:json-stable-stringify-without-jsonify", @@ -5841,6 +7731,15 @@ "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" } }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, "npm:keyv": { "type": "npm", "name": "npm:keyv", @@ -5859,6 +7758,78 @@ "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.10.0", + "packageName": "launch-editor", + "hash": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less-loader": { + "type": "npm", + "name": "npm:less-loader", + "data": { + "version": "11.1.0", + "packageName": "less-loader", + "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, "npm:leven": { "type": "npm", "name": "npm:leven", @@ -5877,6 +7848,24 @@ "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" } }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "4.0.2", + "packageName": "license-webpack-plugin", + "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "3.1.3", + "packageName": "lilconfig", + "hash": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==" + } + }, "npm:lines-and-columns": { "type": "npm", "name": "npm:lines-and-columns", @@ -5895,6 +7884,24 @@ "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" } }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, "npm:lodash.debounce": { "type": "npm", "name": "npm:lodash.debounce", @@ -5904,6 +7911,15 @@ "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" } }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, "npm:lodash.merge": { "type": "npm", "name": "npm:lodash.merge", @@ -5913,6 +7929,15 @@ "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" } }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, "npm:log-symbols": { "type": "npm", "name": "npm:log-symbols", @@ -5931,6 +7956,15 @@ "hash": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==" } }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, "npm:lowercase-keys": { "type": "npm", "name": "npm:lowercase-keys", @@ -5958,15 +7992,6 @@ "hash": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==" } }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, "npm:makeerror": { "type": "npm", "name": "npm:makeerror", @@ -5994,6 +8019,24 @@ "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" } }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.5.3", + "packageName": "memfs", + "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" + } + }, + "npm:memfs@4.17.0": { + "type": "npm", + "name": "npm:memfs@4.17.0", + "data": { + "version": "4.17.0", + "packageName": "memfs", + "hash": "sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==" + } + }, "npm:merge-descriptors": { "type": "npm", "name": "npm:merge-descriptors", @@ -6075,6 +8118,24 @@ "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" } }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.4.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, "npm:minimist": { "type": "npm", "name": "npm:minimist", @@ -6102,6 +8163,15 @@ "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" } }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, "npm:nanoid": { "type": "npm", "name": "npm:nanoid", @@ -6120,13 +8190,58 @@ "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" } }, - "npm:negotiator": { + "npm:needle": { "type": "npm", - "name": "npm:negotiator", + "name": "npm:needle", "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "version": "3.3.1", + "packageName": "needle", + "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "7.1.1", + "packageName": "node-addon-api", + "hash": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" } }, "npm:node-int64": { @@ -6165,6 +8280,15 @@ "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" } }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + } + }, "npm:normalize-url": { "type": "npm", "name": "npm:normalize-url", @@ -6192,6 +8316,15 @@ "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" } }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, "npm:nx": { "type": "npm", "name": "npm:nx", @@ -6228,6 +8361,15 @@ "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" } }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, "npm:on-finished": { "type": "npm", "name": "npm:on-finished", @@ -6237,6 +8379,15 @@ "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" } }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, "npm:once": { "type": "npm", "name": "npm:once", @@ -6264,6 +8415,15 @@ "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" } }, + "npm:open@10.1.1": { + "type": "npm", + "name": "npm:open@10.1.1", + "data": { + "version": "10.1.1", + "packageName": "open", + "hash": "sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==" + } + }, "npm:opener": { "type": "npm", "name": "npm:opener", @@ -6300,6 +8460,15 @@ "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" } }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "6.2.1", + "packageName": "p-retry", + "hash": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==" + } + }, "npm:p-try": { "type": "npm", "name": "npm:p-try", @@ -6336,6 +8505,24 @@ "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" } }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "4.0.0", + "packageName": "parse5", + "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + }, "npm:parseurl": { "type": "npm", "name": "npm:parseurl", @@ -6354,6 +8541,15 @@ "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" } }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, "npm:path-is-absolute": { "type": "npm", "name": "npm:path-is-absolute", @@ -6471,6 +8667,24 @@ "hash": "sha512-Fq0FERJWFEUpB4eSY59wSNwXD4RYqR+nR/WiEVcZW8IWfVBxJJafcgTEZDQo8k3w0sUarJ8RyVbbUF4GQ2LGbQ==" } }, + "npm:yocto-queue@1.2.1": { + "type": "npm", + "name": "npm:yocto-queue@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "yocto-queue", + "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, "npm:portfinder": { "type": "npm", "name": "npm:portfinder", @@ -6489,6 +8703,330 @@ "hash": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==" } }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "9.0.1", + "packageName": "postcss-calc", + "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "6.1.0", + "packageName": "postcss-colormin", + "hash": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "6.1.0", + "packageName": "postcss-convert-values", + "hash": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "6.0.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-empty", + "hash": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "6.0.2", + "packageName": "postcss-discard-overridden", + "hash": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==" + } + }, + "npm:postcss-import": { + "type": "npm", + "name": "npm:postcss-import", + "data": { + "version": "14.1.0", + "packageName": "postcss-import", + "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "6.2.1", + "packageName": "postcss-loader", + "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "6.0.5", + "packageName": "postcss-merge-longhand", + "hash": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "6.1.1", + "packageName": "postcss-merge-rules", + "hash": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "6.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "6.0.3", + "packageName": "postcss-minify-gradients", + "hash": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "6.1.0", + "packageName": "postcss-minify-params", + "hash": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "6.0.4", + "packageName": "postcss-minify-selectors", + "hash": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.1.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.2.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==" + } + }, + "npm:postcss-selector-parser@7.1.0": { + "type": "npm", + "name": "npm:postcss-selector-parser@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "postcss-selector-parser", + "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.1.2", + "packageName": "postcss-selector-parser", + "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.2.1", + "packageName": "postcss-modules-scope", + "hash": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-charset", + "hash": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-positions", + "hash": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-string", + "hash": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "6.1.0", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-url", + "hash": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "6.0.2", + "packageName": "postcss-ordered-values", + "hash": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "6.1.0", + "packageName": "postcss-reduce-initial", + "hash": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "6.0.2", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "6.0.3", + "packageName": "postcss-svgo", + "hash": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "6.0.4", + "packageName": "postcss-unique-selectors", + "hash": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, "npm:prelude-ls": { "type": "npm", "name": "npm:prelude-ls", @@ -6516,6 +9054,15 @@ "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" } }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, "npm:proxy-addr": { "type": "npm", "name": "npm:proxy-addr", @@ -6534,6 +9081,15 @@ "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" } }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + } + }, "npm:punycode": { "type": "npm", "name": "npm:punycode", @@ -6570,6 +9126,15 @@ "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" } }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, "npm:range-parser": { "type": "npm", "name": "npm:range-parser", @@ -6597,13 +9162,49 @@ "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" } }, - "npm:readable-stream": { + "npm:react-refresh": { "type": "npm", - "name": "npm:readable-stream", + "name": "npm:react-refresh", "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + "version": "0.10.0", + "packageName": "react-refresh", + "hash": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==" + } + }, + "npm:read-cache": { + "type": "npm", + "name": "npm:read-cache", + "data": { + "version": "1.0.0", + "packageName": "read-cache", + "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:readdirp@4.1.2": { + "type": "npm", + "name": "npm:readdirp@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "readdirp", + "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.8.0", + "packageName": "rechoir", + "hash": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==" } }, "npm:regenerate": { @@ -6678,6 +9279,15 @@ "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" } }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, "npm:requires-port": { "type": "npm", "name": "npm:requires-port", @@ -6705,6 +9315,15 @@ "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" } }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, "npm:resolve.exports": { "type": "npm", "name": "npm:resolve.exports", @@ -6732,6 +9351,15 @@ "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" } }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, "npm:reusify": { "type": "npm", "name": "npm:reusify", @@ -6750,6 +9378,15 @@ "hash": "sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==" } }, + "npm:run-applescript": { + "type": "npm", + "name": "npm:run-applescript", + "data": { + "version": "7.0.0", + "packageName": "run-applescript", + "hash": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==" + } + }, "npm:run-parallel": { "type": "npm", "name": "npm:run-parallel", @@ -6759,6 +9396,15 @@ "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" } }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.2", + "packageName": "rxjs", + "hash": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==" + } + }, "npm:safer-buffer": { "type": "npm", "name": "npm:safer-buffer", @@ -6768,6 +9414,222 @@ "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" } }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.87.0", + "packageName": "sass", + "hash": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==" + } + }, + "npm:sass-embedded": { + "type": "npm", + "name": "npm:sass-embedded", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded", + "hash": "sha512-1IA3iTJNh4BkkA/nidKiVwbmkxr9o6LsPegycHMX/JYs255zpocN5GdLF1+onohQCJxbs5ldr8osKV7qNaNBjg==" + } + }, + "npm:sass-embedded-android-arm": { + "type": "npm", + "name": "npm:sass-embedded-android-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-arm", + "hash": "sha512-Z20u/Y1kFDpMbgiloR5YPLxNuMVeKQRC8e/n68oAAxf3u7rDSmNn2msi7USqgT1f2zdBBNawn/ifbFEla6JiHw==" + } + }, + "npm:sass-embedded-android-arm64": { + "type": "npm", + "name": "npm:sass-embedded-android-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-arm64", + "hash": "sha512-uqeZoBuXm3W2KhxolScAAfWOLHL21e50g7AxlLmG0he7WZsWw6e9kSnmq301iLIFp4kvmXYXbXbNKAeu9ItRYA==" + } + }, + "npm:sass-embedded-android-ia32": { + "type": "npm", + "name": "npm:sass-embedded-android-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-ia32", + "hash": "sha512-hSWTqo2Igdig528cUb1W1+emw9d1J4+nqOoR4tERS04zcwRRFNDiuBT0o5meV7nkEwE982F+h57YdcRXj8gTtg==" + } + }, + "npm:sass-embedded-android-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-android-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-riscv64", + "hash": "sha512-kBAPSjiTBLy5ua/0LRNAJwOAARhzFU7gP35fYORJcdBuz1lkIVPVnid1lh9qQ6Ce9MOJcr7VKFtGnTuqVeig5A==" + } + }, + "npm:sass-embedded-android-x64": { + "type": "npm", + "name": "npm:sass-embedded-android-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-x64", + "hash": "sha512-ZHMrNdtdMSpJUYco2MesnlPwDTZftD3pqkkOMI2pbqarPoFUKJtP5k80nwCM0sJGtqfNE+O16w9yPght0CMiJg==" + } + }, + "npm:sass-embedded-darwin-arm64": { + "type": "npm", + "name": "npm:sass-embedded-darwin-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-darwin-arm64", + "hash": "sha512-7TK1JWJdCIRSdZv5CJv/HpDz/wIfwUy2FoPz9sVOEj1pDTH0N+VfJd5VutCddIdoQN9jr0ap8vwkc65FbAxV2A==" + } + }, + "npm:sass-embedded-darwin-x64": { + "type": "npm", + "name": "npm:sass-embedded-darwin-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-darwin-x64", + "hash": "sha512-2JiQzt7FmgUC4MYT2QvbeH/Bi3e76WEhaYoc5P3WyTW8unsHksyTdMuTuYe0Qf9usIyt6bmm5no/4BBw7c8Cig==" + } + }, + "npm:sass-embedded-linux-arm": { + "type": "npm", + "name": "npm:sass-embedded-linux-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-arm", + "hash": "sha512-z5P6INMsGXiUcq1sRRbksyQUhalFFYjTEexuxfSYdK3U2YQMADHubQh8pGzkWvFRPOpnh83RiGuwvpaARYHnsw==" + } + }, + "npm:sass-embedded-linux-arm64": { + "type": "npm", + "name": "npm:sass-embedded-linux-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-arm64", + "hash": "sha512-5z+mwJCbGZcg+q+MwdEVSh0ogFK7OSAe175Gsozzr/Izw34Q+RGUw9O82jsV2c4YNuTAQvzEHgIO5cvNvt3Quw==" + } + }, + "npm:sass-embedded-linux-ia32": { + "type": "npm", + "name": "npm:sass-embedded-linux-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-ia32", + "hash": "sha512-Xzcp+YPp0iakGL148Jl57CO+MxLuj2jsry3M+rc1cSnDlvkjNVs6TMxaL70GFeV5HdU2V60voYcgE7adDUtJjw==" + } + }, + "npm:sass-embedded-linux-musl-arm": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-arm", + "hash": "sha512-4PyqOWhRzyu06RRmpCCBOJdF4BOv7s446wrV6yODtEyyfSIDx3MJabo3KT0oJ1lTWSI/aU3R89bKx0JFXcIHHw==" + } + }, + "npm:sass-embedded-linux-musl-arm64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-arm64", + "hash": "sha512-HWE5eTRCoKzFZWsxOjDMTF5m4DDTQ0n7NJxSYiUXPBDydr9viPXbGOMYG7WVJLjiF7upr7DYo/mfp/SNTMlZyg==" + } + }, + "npm:sass-embedded-linux-musl-ia32": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-ia32", + "hash": "sha512-aQaPvlRn3kh93PLQvl6BcFKu8Ji92+42blFEkg6nMVvmugD5ZwH2TGFrX25ibx4CYxRpMS4ssF7a0i7vy5HB1Q==" + } + }, + "npm:sass-embedded-linux-musl-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-riscv64", + "hash": "sha512-o5DxcqiFzET3KRWo+futHr/lhAMBP3tJGGx8YIgpHQYfvDMbsvE0hiFC+nZ/GF9dbcGd+ceIQwfvE5mcc7Gsjw==" + } + }, + "npm:sass-embedded-linux-musl-x64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-x64", + "hash": "sha512-dKxWsu9Wu/CyfzQmHdeiGqrRSzJ85VUjbSx+aP1/7ttmps3SSg+YW95PuqnCOa7GSuSreC3dKKpXHTywUxMLQA==" + } + }, + "npm:sass-embedded-linux-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-linux-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-riscv64", + "hash": "sha512-Sy3ESZ4FwBiijvmTA9n+0p0w3MNCue1AgINVPzpAY27EFi0h49eqQm9SWfOkFqmkFS2zFRYowdQOr5Bbr2gOXA==" + } + }, + "npm:sass-embedded-linux-x64": { + "type": "npm", + "name": "npm:sass-embedded-linux-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-x64", + "hash": "sha512-+UfjakOcHHKTnEqB3EZ+KqzezQOe1emvy4Rs+eQhLyfekpYuNze/qlRvYxfKTmrtvDiUrIto8MXsyZfMLzkuMA==" + } + }, + "npm:sass-embedded-win32-arm64": { + "type": "npm", + "name": "npm:sass-embedded-win32-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-arm64", + "hash": "sha512-m1DS6FYUE0/fv+vt38uQB/kxR4UjnyD+2zcSc298pFmA0aYh/XZIPWw7RxG1HL3KLE1ZrGyu3254MPoxRhs3ig==" + } + }, + "npm:sass-embedded-win32-ia32": { + "type": "npm", + "name": "npm:sass-embedded-win32-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-ia32", + "hash": "sha512-JztXLo59GMe2E6g+kCsyiERYhtZgkcyDYx6CrXoSTE5WaE+RbxRiCCCv8/1+hf406f08pUxJ8G0Ody7M5urtBA==" + } + }, + "npm:sass-embedded-win32-x64": { + "type": "npm", + "name": "npm:sass-embedded-win32-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-x64", + "hash": "sha512-4nQErpauvhgSo+7ClumGdjdf9sGx+U9yBgvhI0+zUw+D5YvraVgvA0Lk8Wuwntx2PqnvKUk8YDr/vxHJostv4Q==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "16.0.5", + "packageName": "sass-loader", + "hash": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.4.1", + "packageName": "sax", + "hash": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" + } + }, "npm:secure-compare": { "type": "npm", "name": "npm:secure-compare", @@ -6786,6 +9648,24 @@ "hash": "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg==" } }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, "npm:semver-regex": { "type": "npm", "name": "npm:semver-regex", @@ -6813,13 +9693,31 @@ "hash": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==" } }, - "npm:serve-static": { + "npm:serialize-javascript": { "type": "npm", - "name": "npm:serve-static", + "name": "npm:serialize-javascript", "data": { - "version": "1.16.2", - "packageName": "serve-static", - "hash": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==" + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" } }, "npm:setprototypeof": { @@ -6831,6 +9729,42 @@ "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" } }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.16.2", + "packageName": "serve-static", + "hash": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, "npm:shebang-command": { "type": "npm", "name": "npm:shebang-command", @@ -6849,6 +9783,15 @@ "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" } }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.2", + "packageName": "shell-quote", + "hash": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==" + } + }, "npm:side-channel": { "type": "npm", "name": "npm:side-channel", @@ -6903,13 +9846,22 @@ "hash": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==" } }, - "npm:slash": { + "npm:snake-case": { "type": "npm", - "name": "npm:slash", + "name": "npm:snake-case", "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "version": "3.0.4", + "packageName": "snake-case", + "hash": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" } }, "npm:sort-keys": { @@ -6939,6 +9891,33 @@ "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" } }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "5.0.0", + "packageName": "source-map-loader", + "hash": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, "npm:sprintf-js": { "type": "npm", "name": "npm:sprintf-js", @@ -6966,13 +9945,13 @@ "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" } }, - "npm:statuses": { + "npm:stackframe": { "type": "npm", - "name": "npm:statuses", + "name": "npm:stackframe", "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" } }, "npm:std-env": { @@ -6993,15 +9972,6 @@ "hash": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==" } }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, "npm:string-length": { "type": "npm", "name": "npm:string-length", @@ -7065,6 +10035,42 @@ "hash": "sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==" } }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.4", + "packageName": "style-loader", + "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "6.1.1", + "packageName": "stylehacks", + "hash": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==" + } + }, + "npm:stylus": { + "type": "npm", + "name": "npm:stylus", + "data": { + "version": "0.64.0", + "packageName": "stylus", + "hash": "sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==" + } + }, + "npm:stylus-loader": { + "type": "npm", + "name": "npm:stylus-loader", + "data": { + "version": "7.1.3", + "packageName": "stylus-loader", + "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" + } + }, "npm:supports-preserve-symlinks-flag": { "type": "npm", "name": "npm:supports-preserve-symlinks-flag", @@ -7074,6 +10080,69 @@ "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" } }, + "npm:svg-parser": { + "type": "npm", + "name": "npm:svg-parser", + "data": { + "version": "2.0.4", + "packageName": "svg-parser", + "hash": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "3.3.2", + "packageName": "svgo", + "hash": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==" + } + }, + "npm:sync-child-process": { + "type": "npm", + "name": "npm:sync-child-process", + "data": { + "version": "1.0.2", + "packageName": "sync-child-process", + "hash": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==" + } + }, + "npm:sync-message-port": { + "type": "npm", + "name": "npm:sync-message-port", + "data": { + "version": "1.1.3", + "packageName": "sync-message-port", + "hash": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.39.0", + "packageName": "terser", + "hash": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.14", + "packageName": "terser-webpack-plugin", + "hash": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==" + } + }, "npm:text-decoder": { "type": "npm", "name": "npm:text-decoder", @@ -7083,6 +10152,15 @@ "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" } }, + "npm:thingies": { + "type": "npm", + "name": "npm:thingies", + "data": { + "version": "1.21.0", + "packageName": "thingies", + "hash": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==" + } + }, "npm:through": { "type": "npm", "name": "npm:through", @@ -7092,6 +10170,15 @@ "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" } }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, "npm:tinybench": { "type": "npm", "name": "npm:tinybench", @@ -7200,6 +10287,15 @@ "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" } }, + "npm:tree-dump": { + "type": "npm", + "name": "npm:tree-dump", + "data": { + "version": "1.0.2", + "packageName": "tree-dump", + "hash": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==" + } + }, "npm:ts-api-utils": { "type": "npm", "name": "npm:ts-api-utils", @@ -7209,6 +10305,15 @@ "hash": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==" } }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.5.2", + "packageName": "ts-loader", + "hash": "sha512-Qo4piXvOTWcMGIgRiuFa6nHNm+54HbYaZCKqc9eeZCLRy3XqafQgwX2F7mofrbJG3g7EEb+lkiR+z2Lic2s3Zw==" + } + }, "npm:tsconfig-paths": { "type": "npm", "name": "npm:tsconfig-paths", @@ -7218,6 +10323,15 @@ "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" } }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, "npm:tslib": { "type": "npm", "name": "npm:tslib", @@ -7263,6 +10377,15 @@ "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" } }, + "npm:typed-assert": { + "type": "npm", + "name": "npm:typed-assert", + "data": { + "version": "1.0.9", + "packageName": "typed-assert", + "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" + } + }, "npm:typescript": { "type": "npm", "name": "npm:typescript", @@ -7344,6 +10467,15 @@ "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" } }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, "npm:unpipe": { "type": "npm", "name": "npm:unpipe", @@ -7398,6 +10530,15 @@ "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" } }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, "npm:v8-to-istanbul": { "type": "npm", "name": "npm:v8-to-istanbul", @@ -7416,6 +10557,15 @@ "hash": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==" } }, + "npm:varint": { + "type": "npm", + "name": "npm:varint", + "data": { + "version": "6.0.0", + "packageName": "varint", + "hash": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" + } + }, "npm:vary": { "type": "npm", "name": "npm:vary", @@ -7461,6 +10611,24 @@ "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" } }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.2", + "packageName": "watchpack", + "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, "npm:wcwidth": { "type": "npm", "name": "npm:wcwidth", @@ -7470,6 +10638,96 @@ "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" } }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.98.0", + "packageName": "webpack", + "hash": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==" + } + }, + "npm:webpack-cli": { + "type": "npm", + "name": "npm:webpack-cli", + "data": { + "version": "5.1.4", + "packageName": "webpack-cli", + "hash": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "7.4.2", + "packageName": "webpack-dev-middleware", + "hash": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "5.2.1", + "packageName": "webpack-dev-server", + "hash": "sha512-ml/0HIj9NLpVKOMq+SuBPLHcmbG+TGIjXRHsYfZwocUBIqEvws8NnS/V9AFQ5FKP+tgn5adwVwRrTEpGL33QFQ==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.10.0", + "packageName": "webpack-merge", + "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" + } + }, + "npm:webpack-node-externals": { + "type": "npm", + "name": "npm:webpack-node-externals", + "data": { + "version": "3.0.0", + "packageName": "webpack-node-externals", + "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-subresource-integrity": { + "type": "npm", + "name": "npm:webpack-subresource-integrity", + "data": { + "version": "5.1.0", + "packageName": "webpack-subresource-integrity", + "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, "npm:whatwg-encoding": { "type": "npm", "name": "npm:whatwg-encoding", @@ -7497,6 +10755,15 @@ "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" } }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.1", + "packageName": "wildcard", + "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + } + }, "npm:word-wrap": { "type": "npm", "name": "npm:word-wrap", @@ -7533,6 +10800,15 @@ "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" } }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.18.1", + "packageName": "ws", + "hash": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==" + } + }, "npm:y18n": { "type": "npm", "name": "npm:y18n", @@ -7577,15 +10853,6 @@ "packageName": "yauzl", "hash": "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==" } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } } }, "dependencies": [ @@ -8794,6 +12061,81 @@ "target": "npm:@babel/helper-plugin-utils", "type": "static" }, + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, { "source": "npm:@babel/plugin-transform-regenerator", "target": "npm:@babel/core", @@ -9379,6 +12721,41 @@ "target": "npm:esutils", "type": "static" }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, { "source": "npm:@babel/preset-typescript", "target": "npm:@babel/core", @@ -10214,6 +13591,16 @@ "target": "npm:@jridgewell/trace-mapping", "type": "static" }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, { "source": "npm:@jridgewell/trace-mapping", "target": "npm:@jridgewell/resolve-uri", @@ -10224,6 +13611,41 @@ "target": "npm:@jridgewell/sourcemap-codec", "type": "static" }, + { + "source": "npm:@jsonjoy.com/base64", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:@jsonjoy.com/base64", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:@jsonjoy.com/util", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:hyperdyperid", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:thingies", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/util", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:@napi-rs/nice", "target": "npm:@napi-rs/nice-android-arm-eabi", @@ -10829,6 +14251,216 @@ "target": "npm:tslib", "type": "static" }, + { + "source": "npm:@nx/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-import", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-node-externals", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-subresource-integrity", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + }, { "source": "npm:@nx/workspace", "target": "npm:@nx/devkit", @@ -10869,6 +14501,91 @@ "target": "npm:yargs-parser", "type": "static" }, + { + "source": "npm:@parcel/watcher", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-android-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-darwin-x64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-freebsd-x64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm64-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-x64-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-ia32", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-x64", + "type": "static" + }, { "source": "npm:@phenomnomnominal/tsquery", "target": "npm:typescript", @@ -10879,6 +14596,61 @@ "target": "npm:esquery", "type": "static" }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:ansi-html", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:source-map@0.7.4", + "type": "static" + }, { "source": "npm:@sinonjs/commons", "target": "npm:type-detect", @@ -10889,6 +14661,271 @@ "target": "npm:@sinonjs/commons", "type": "static" }, + { + "source": "npm:@svgr/babel-plugin-add-jsx-attribute", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-svg-dynamic-title", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-svg-em-dimensions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-transform-react-native-svg", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-plugin-transform-svg-component", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-add-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-dynamic-title", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-em-dimensions", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-react-native-svg", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-svg-component", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:snake-case", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/hast-util-to-babel-ast", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:svg-parser", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/plugin-transform-react-constant-elements", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-svgo", + "type": "static" + }, { "source": "npm:@swc-node/core", "target": "npm:@swc/core", @@ -11139,11 +15176,106 @@ "target": "npm:@babel/types", "type": "static" }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + }, { "source": "npm:@types/graceful-fs", "target": "npm:@types/node", "type": "static" }, + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + }, { "source": "npm:@types/istanbul-lib-report", "target": "npm:@types/istanbul-lib-coverage", @@ -11154,6 +15286,51 @@ "target": "npm:@types/istanbul-lib-report", "type": "static" }, + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/send", + "type": "static" + }, + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + }, { "source": "npm:@types/yargs", "target": "npm:@types/yargs-parser", @@ -11579,6 +15756,216 @@ "target": "npm:tinyrainbow", "type": "static" }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webpack-cli/configtest", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/configtest", + "target": "npm:webpack-cli", + "type": "static" + }, + { + "source": "npm:@webpack-cli/info", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/info", + "target": "npm:webpack-cli", + "type": "static" + }, + { + "source": "npm:@webpack-cli/serve", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/serve", + "target": "npm:webpack-cli", + "type": "static" + }, { "source": "npm:@xhmikosr/archive-type", "target": "npm:file-type", @@ -11834,6 +16221,41 @@ "target": "npm:uri-js", "type": "static" }, + { + "source": "npm:ajv-formats", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:ajv-formats", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv-keywords", + "target": "npm:fast-deep-equal", + "type": "static" + }, { "source": "npm:ansi-escapes", "target": "npm:type-fest", @@ -11854,6 +16276,41 @@ "target": "npm:picomatch@2.3.1", "type": "static" }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, { "source": "npm:axios", "target": "npm:follow-redirects", @@ -11909,6 +16366,26 @@ "target": "npm:slash", "type": "static" }, + { + "source": "npm:babel-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + }, { "source": "npm:babel-plugin-const-enum", "target": "npm:@babel/core", @@ -12339,6 +16816,16 @@ "target": "npm:side-channel", "type": "static" }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + }, { "source": "npm:brace-expansion", "target": "npm:balanced-match", @@ -12384,6 +16871,11 @@ "target": "npm:ieee754", "type": "static" }, + { + "source": "npm:bundle-name", + "target": "npm:run-applescript", + "type": "static" + }, { "source": "npm:cacheable-request", "target": "npm:@types/http-cache-semantics", @@ -12439,6 +16931,26 @@ "target": "npm:get-intrinsic", "type": "static" }, + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + }, { "source": "npm:chai", "target": "npm:assertion-error", @@ -12474,6 +16986,51 @@ "target": "npm:supports-color", "type": "static" }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent@5.1.2", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:glob-parent@5.1.2", + "target": "npm:is-glob", + "type": "static" + }, { "source": "npm:cli-cursor", "target": "npm:restore-cursor", @@ -12494,6 +17051,21 @@ "target": "npm:wrap-ansi", "type": "static" }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, { "source": "npm:color-convert", "target": "npm:color-name", @@ -12514,11 +17086,96 @@ "target": "npm:delayed-stream", "type": "static" }, + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:negotiator@0.6.4", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, { "source": "npm:content-disposition", "target": "npm:safe-buffer", "type": "static" }, + { + "source": "npm:copy-anything", + "target": "npm:is-what", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, { "source": "npm:core-js-compat", "target": "npm:browserslist", @@ -12564,6 +17221,316 @@ "target": "npm:which", "type": "static" }, + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:csso", + "target": "npm:css-tree@2.2.1", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:mdn-data@2.0.28", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:source-map-js", + "type": "static" + }, { "source": "npm:debug", "target": "npm:ms", @@ -12579,6 +17546,16 @@ "target": "npm:babel-plugin-macros", "type": "static" }, + { + "source": "npm:default-browser", + "target": "npm:bundle-name", + "type": "static" + }, + { + "source": "npm:default-browser", + "target": "npm:default-browser-id", + "type": "static" + }, { "source": "npm:defaults", "target": "npm:clone", @@ -12594,6 +17571,61 @@ "target": "npm:debug", "type": "static" }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:dotenv-expand", "target": "npm:dotenv", @@ -12624,16 +17656,36 @@ "target": "npm:once", "type": "static" }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + }, { "source": "npm:enquirer", "target": "npm:ansi-colors", "type": "static" }, + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + }, { "source": "npm:error-ex", "target": "npm:is-arrayish", "type": "static" }, + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + }, { "source": "npm:es-object-atoms", "target": "npm:es-errors", @@ -13309,6 +18361,11 @@ "target": "npm:reusify", "type": "static" }, + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + }, { "source": "npm:fb-watchman", "target": "npm:bser", @@ -13419,6 +18476,16 @@ "target": "npm:ms@2.0.0", "type": "static" }, + { + "source": "npm:find-cache-dir", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + }, { "source": "npm:find-up", "target": "npm:locate-path", @@ -13454,6 +18521,111 @@ "target": "npm:signal-exit@4.1.0", "type": "static" }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:minimatch@3.1.2", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + }, { "source": "npm:form-data", "target": "npm:asynckit", @@ -13479,6 +18651,21 @@ "target": "npm:js-yaml", "type": "static" }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, { "source": "npm:get-intrinsic", "target": "npm:call-bind-apply-helpers", @@ -13579,6 +18766,36 @@ "target": "npm:brace-expansion", "type": "static" }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash@4.0.0", + "type": "static" + }, { "source": "npm:got", "target": "npm:@sindresorhus/is", @@ -13649,6 +18866,66 @@ "target": "npm:lru-cache@10.4.3", "type": "static" }, + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, { "source": "npm:html-encoding-sniffer", "target": "npm:whatwg-encoding", @@ -13694,6 +18971,36 @@ "target": "npm:requires-port", "type": "static" }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + }, { "source": "npm:http-server", "target": "npm:basic-auth", @@ -13774,6 +19081,11 @@ "target": "npm:safer-buffer", "type": "static" }, + { + "source": "npm:icss-utils", + "target": "npm:postcss", + "type": "static" + }, { "source": "npm:identity-obj-proxy", "target": "npm:harmony-reflect", @@ -13789,6 +19101,46 @@ "target": "npm:resolve-from", "type": "static" }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir@4.2.0", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:locate-path@5.0.0", + "target": "npm:p-locate@4.1.0", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-locate@4.1.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:pkg-dir@4.2.0", + "target": "npm:find-up@4.1.0", + "type": "static" + }, { "source": "npm:inflight", "target": "npm:once", @@ -13804,6 +19156,11 @@ "target": "npm:kind-of", "type": "static" }, + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + }, { "source": "npm:is-core-module", "target": "npm:hasown", @@ -13814,6 +19171,16 @@ "target": "npm:is-extglob", "type": "static" }, + { + "source": "npm:is-inside-container", + "target": "npm:is-docker@3.0.0", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, { "source": "npm:is-wsl", "target": "npm:is-docker", @@ -15014,11 +20381,106 @@ "target": "npm:eslint-visitor-keys", "type": "static" }, + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + }, { "source": "npm:keyv", "target": "npm:json-buffer", "type": "static" }, + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.2", + "type": "static" + }, { "source": "npm:levn", "target": "npm:prelude-ls", @@ -15029,6 +20491,26 @@ "target": "npm:type-check", "type": "static" }, + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, { "source": "npm:locate-path", "target": "npm:p-locate", @@ -15044,6 +20526,11 @@ "target": "npm:is-unicode-supported", "type": "static" }, + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:lru-cache", "target": "npm:yallist", @@ -15079,6 +20566,11 @@ "target": "npm:tmpl", "type": "static" }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, { "source": "npm:micromatch", "target": "npm:braces", @@ -15094,11 +20586,51 @@ "target": "npm:mime-db", "type": "static" }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + }, { "source": "npm:minimatch", "target": "npm:brace-expansion", "type": "static" }, + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:npm-package-arg", "target": "npm:hosted-git-info", @@ -15124,6 +20656,11 @@ "target": "npm:path-key", "type": "static" }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, { "source": "npm:nx", "target": "npm:@swc-node/register", @@ -15464,6 +21001,21 @@ "target": "npm:p-limit", "type": "static" }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:is-network-error", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + }, { "source": "npm:parent-module", "target": "npm:callsites", @@ -15504,6 +21056,36 @@ "target": "npm:@napi-rs/nice", "type": "static" }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.2.1", + "type": "static" + }, + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + }, { "source": "npm:portfinder", "target": "npm:async", @@ -15529,6 +21111,456 @@ "target": "npm:source-map-js", "type": "static" }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:read-cache", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-extract-imports", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, { "source": "npm:pretty-format", "target": "npm:@jest/schemas", @@ -15559,6 +21591,11 @@ "target": "npm:side-channel", "type": "static" }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, { "source": "npm:raw-body", "target": "npm:bytes", @@ -15584,6 +21621,11 @@ "target": "npm:safer-buffer", "type": "static" }, + { + "source": "npm:read-cache", + "target": "npm:pify", + "type": "static" + }, { "source": "npm:readable-stream", "target": "npm:inherits", @@ -15599,6 +21641,16 @@ "target": "npm:util-deprecate", "type": "static" }, + { + "source": "npm:readdirp", + "target": "npm:picomatch@2.3.1", + "type": "static" + }, + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + }, { "source": "npm:regenerate-unicode-properties", "target": "npm:regenerate", @@ -15659,6 +21711,11 @@ "target": "npm:supports-preserve-symlinks-flag", "type": "static" }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from@5.0.0", + "type": "static" + }, { "source": "npm:responselike", "target": "npm:lowercase-keys", @@ -15789,11 +21846,256 @@ "target": "npm:queue-microtask", "type": "static" }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:chokidar@4.0.3", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:@bufbuild/protobuf", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:buffer-builder", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:colorjs.io", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sync-child-process", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:varint", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-darwin-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-darwin-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-x64", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:chokidar@4.0.3", + "target": "npm:readdirp@4.1.2", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + }, { "source": "npm:seek-bzip", "target": "npm:commander@6.2.1", "type": "static" }, + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + }, { "source": "npm:semver-truncate", "target": "npm:semver", @@ -15869,6 +22171,71 @@ "target": "npm:ms@2.0.0", "type": "static" }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + }, { "source": "npm:serve-static", "target": "npm:encodeurl", @@ -15889,6 +22256,11 @@ "target": "npm:send", "type": "static" }, + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + }, { "source": "npm:shebang-command", "target": "npm:shebang-regex", @@ -15989,6 +22361,31 @@ "target": "npm:totalist", "type": "static" }, + { + "source": "npm:snake-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:snake-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + }, { "source": "npm:sort-keys", "target": "npm:is-plain-obj", @@ -15999,6 +22396,21 @@ "target": "npm:sort-keys", "type": "static" }, + { + "source": "npm:source-map-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + }, { "source": "npm:source-map-support", "target": "npm:buffer-from", @@ -16009,6 +22421,61 @@ "target": "npm:source-map", "type": "static" }, + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + }, { "source": "npm:stack-utils", "target": "npm:escape-string-regexp@2.0.0", @@ -16104,11 +22571,116 @@ "target": "npm:peek-readable", "type": "static" }, + { + "source": "npm:style-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:source-map@0.7.4", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:normalize-path", + "type": "static" + }, { "source": "npm:supports-color", "target": "npm:has-flag", "type": "static" }, + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:sync-child-process", + "target": "npm:sync-message-port", + "type": "static" + }, { "source": "npm:tar-stream", "target": "npm:bl", @@ -16134,6 +22706,86 @@ "target": "npm:readable-stream", "type": "static" }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support@0.5.21", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.21", + "target": "npm:source-map", + "type": "static" + }, { "source": "npm:test-exclude", "target": "npm:@istanbuljs/schema", @@ -16159,6 +22811,11 @@ "target": "npm:b4a", "type": "static" }, + { + "source": "npm:thingies", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:tinyglobby", "target": "npm:fdir", @@ -16184,11 +22841,51 @@ "target": "npm:ieee754", "type": "static" }, + { + "source": "npm:tree-dump", + "target": "npm:tslib", + "type": "static" + }, { "source": "npm:ts-api-utils", "target": "npm:typescript", "type": "static" }, + { + "source": "npm:ts-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:source-map@0.7.4", + "type": "static" + }, { "source": "npm:tsconfig-paths", "target": "npm:json5", @@ -16204,6 +22901,21 @@ "target": "npm:strip-bom", "type": "static" }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths", + "type": "static" + }, { "source": "npm:type-check", "target": "npm:prelude-ls", @@ -16314,6 +23026,31 @@ "target": "npm:jiti", "type": "static" }, + { + "source": "npm:vite", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:terser", + "type": "static" + }, { "source": "npm:vite", "target": "npm:esbuild", @@ -16494,11 +23231,486 @@ "target": "npm:makeerror", "type": "static" }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, { "source": "npm:wcwidth", "target": "npm:defaults", "type": "static" }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/configtest", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/info", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/serve", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs@4.17.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:@jsonjoy.com/json-pack", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:@jsonjoy.com/util", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:tree-dump", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.2.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open@10.1.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:is-wsl@3.1.0", + "target": "npm:is-inside-container", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:default-browser", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:define-lazy-prop@3.0.0", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:is-inside-container", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:is-wsl@3.1.0", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:typed-assert", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, { "source": "npm:whatwg-encoding", "target": "npm:iconv-lite", diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json index d81685c2f..4676df899 100644 --- a/.nx/workspace-data/project-graph.json +++ b/.nx/workspace-data/project-graph.json @@ -206,8 +206,6 @@ "{projectRoot}/**/*.d.cts.map", "{projectRoot}/**/*.d.mts.map", "{projectRoot}/tsconfig.tsbuildinfo", - "{projectRoot}/dist/**/*.d.ts", - "{projectRoot}/dist/tsconfig.lib.tsbuildinfo", "{projectRoot}/out-tsc/vitest/**/*.d.ts", "{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo" ], @@ -387,9 +385,267 @@ ], "implicitDependencies": [] } + }, + "@triliumnext/server": { + "name": "@triliumnext/server", + "type": "app", + "data": { + "root": "apps/server", + "projectType": "application", + "targets": { + "typecheck": { + "dependsOn": [ + "^typecheck" + ], + "options": { + "cwd": "apps/server", + "command": "tsc --build --emitDeclarationOnly" + }, + "cache": true, + "inputs": [ + "{projectRoot}/package.json", + "{workspaceRoot}/tsconfig.base.json", + "{projectRoot}/tsconfig.json", + "{projectRoot}/tsconfig.app.json", + "{projectRoot}/src/**/*.ts", + "!{projectRoot}/eslint.config.js", + "!{projectRoot}/eslint.config.cjs", + "!{projectRoot}/eslint.config.mjs", + { + "dependentTasksOutputFiles": "**/*.d.ts" + }, + { + "externalDependencies": [ + "typescript" + ] + } + ], + "outputs": [ + "{projectRoot}/dist/**/*.d.ts", + "{projectRoot}/dist/**/*.d.ts.map", + "{projectRoot}/dist/tsconfig.app.tsbuildinfo" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ], + "metadata": { + "technologies": [ + "typescript" + ], + "description": "Runs type-checking for the project.", + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + }, + "lint": { + "cache": true, + "options": { + "cwd": "apps/server", + "command": "eslint ." + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{projectRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + }, + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + }, + "build": { + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ], + "command": "webpack-cli build" + }, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "webpack-cli" + ] + } + ], + "outputs": [ + "{workspaceRoot}/apps/server/dist" + ], + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Runs Webpack build", + "help": { + "command": "npx webpack-cli build --help", + "example": { + "options": { + "json": "stats.json" + }, + "args": [ + "--profile" + ] + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ], + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + }, + "serve": { + "executor": "@nx/js:node", + "defaultConfiguration": "development", + "dependsOn": [ + "build" + ], + "options": { + "buildTarget": "@triliumnext/server:build", + "runBuildTargetDependencies": false + }, + "configurations": { + "development": { + "buildTarget": "@triliumnext/server:build:development" + }, + "production": { + "buildTarget": "@triliumnext/server:build:production" + } + }, + "parallelism": true + }, + "preview": { + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ], + "command": "webpack-cli serve" + }, + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Starts Webpack dev server in production mode", + "help": { + "command": "npx webpack-cli serve --help", + "example": { + "options": { + "args": [ + "--client-progress", + "--history-api-fallback " + ] + } + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ], + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + }, + "serve-static": { + "dependsOn": [ + "build" + ], + "executor": "@nx/web:file-server", + "options": { + "buildTarget": "build", + "spa": true + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ], + "configurations": {}, + "parallelism": true + }, + "build-deps": { + "dependsOn": [ + "^build" + ], + "configurations": {}, + "options": {}, + "parallelism": true, + "executor": "nx:noop" + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "executor": "nx:run-commands", + "options": { + "command": "npx nx watch --projects @triliumnext/server --includeDependentProjects -- npx nx build-deps @triliumnext/server" + }, + "configurations": {}, + "parallelism": true + } + }, + "metadata": { + "targetGroups": {}, + "js": { + "packageName": "@triliumnext/server", + "isInPackageManagerWorkspaces": true + } + }, + "name": "@triliumnext/server", + "tags": [ + "npm:private" + ], + "implicitDependencies": [] + } } }, "externalNodes": { + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.3", + "packageName": "@adobe/css-tools", + "hash": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==" + } + }, "npm:@ampproject/remapping": { "type": "npm", "name": "npm:@ampproject/remapping", @@ -435,6 +691,15 @@ "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" } }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, "npm:semver": { "type": "npm", "name": "npm:semver", @@ -1209,6 +1474,51 @@ "hash": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==" } }, + "npm:@babel/plugin-transform-react-constant-elements": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-constant-elements", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-constant-elements", + "hash": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.25.9", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==" + } + }, "npm:@babel/plugin-transform-regenerator": { "type": "npm", "name": "npm:@babel/plugin-transform-regenerator", @@ -1353,6 +1663,15 @@ "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" } }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.26.3", + "packageName": "@babel/preset-react", + "hash": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==" + } + }, "npm:@babel/preset-typescript": { "type": "npm", "name": "npm:@babel/preset-typescript", @@ -1416,6 +1735,24 @@ "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" } }, + "npm:@bufbuild/protobuf": { + "type": "npm", + "name": "npm:@bufbuild/protobuf", + "data": { + "version": "2.2.5", + "packageName": "@bufbuild/protobuf", + "hash": "sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.7", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" + } + }, "npm:@emnapi/core": { "type": "npm", "name": "npm:@emnapi/core", @@ -2046,6 +2383,15 @@ "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" } }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, "npm:locate-path@5.0.0": { "type": "npm", "name": "npm:locate-path@5.0.0", @@ -2064,6 +2410,15 @@ "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" } }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, "npm:p-limit@2.3.0": { "type": "npm", "name": "npm:p-limit@2.3.0", @@ -2082,6 +2437,15 @@ "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" } }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, "npm:p-locate@4.1.0": { "type": "npm", "name": "npm:p-locate@4.1.0", @@ -2100,6 +2464,15 @@ "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" } }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, "npm:resolve-from@5.0.0": { "type": "npm", "name": "npm:resolve-from@5.0.0", @@ -2307,6 +2680,15 @@ "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" } }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.6", + "packageName": "@jridgewell/source-map", + "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" + } + }, "npm:@jridgewell/sourcemap-codec": { "type": "npm", "name": "npm:@jridgewell/sourcemap-codec", @@ -2325,6 +2707,42 @@ "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" } }, + "npm:@jsonjoy.com/base64": { + "type": "npm", + "name": "npm:@jsonjoy.com/base64", + "data": { + "version": "1.1.2", + "packageName": "@jsonjoy.com/base64", + "hash": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==" + } + }, + "npm:@jsonjoy.com/json-pack": { + "type": "npm", + "name": "npm:@jsonjoy.com/json-pack", + "data": { + "version": "1.2.0", + "packageName": "@jsonjoy.com/json-pack", + "hash": "sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==" + } + }, + "npm:@jsonjoy.com/util": { + "type": "npm", + "name": "npm:@jsonjoy.com/util", + "data": { + "version": "1.5.0", + "packageName": "@jsonjoy.com/util", + "hash": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.5", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" + } + }, "npm:@napi-rs/nice": { "type": "npm", "name": "npm:@napi-rs/nice", @@ -2685,6 +3103,51 @@ "hash": "sha512-jbK3+ZrVygYHMGCbp7NO1/G+ejH6Z74PcWwEKSZDPm7io6fxieO9j+GSzucvUWrY4cfJNC+S//X4tENwVj0g2w==" } }, + "npm:@nx/webpack": { + "type": "npm", + "name": "npm:@nx/webpack", + "data": { + "version": "20.8.0", + "packageName": "@nx/webpack", + "hash": "sha512-zqboigPhlPNMzOIFECkLzkCOfpvOR1BnE7zu2Vyzok18s3dhb1UErar6MuSb6Dh5Mwfe2HELa8iD60bM8PBSQg==" + } + }, + "npm:ajv@8.17.1": { + "type": "npm", + "name": "npm:ajv@8.17.1", + "data": { + "version": "8.17.1", + "packageName": "ajv", + "hash": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, "npm:@nx/workspace": { "type": "npm", "name": "npm:@nx/workspace", @@ -2694,6 +3157,132 @@ "hash": "sha512-FdaHA5ISHSN+RyHswAAx+2A9HC77kWeFgeucdX2NSBs2QK2Lzg2Et639RzR1sYk2gYTP6tOkQXHHGKcg3jmiYQ==" } }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher", + "hash": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==" + } + }, + "npm:@parcel/watcher-android-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-android-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-android-arm64", + "hash": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==" + } + }, + "npm:@parcel/watcher-darwin-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-darwin-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-darwin-arm64", + "hash": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==" + } + }, + "npm:@parcel/watcher-darwin-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-darwin-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-darwin-x64", + "hash": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==" + } + }, + "npm:@parcel/watcher-freebsd-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-freebsd-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-freebsd-x64", + "hash": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==" + } + }, + "npm:@parcel/watcher-linux-arm-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm-glibc", + "hash": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==" + } + }, + "npm:@parcel/watcher-linux-arm-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm-musl", + "hash": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==" + } + }, + "npm:@parcel/watcher-linux-arm64-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm64-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm64-glibc", + "hash": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==" + } + }, + "npm:@parcel/watcher-linux-arm64-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-arm64-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-arm64-musl", + "hash": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==" + } + }, + "npm:@parcel/watcher-linux-x64-glibc": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-x64-glibc", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-x64-glibc", + "hash": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==" + } + }, + "npm:@parcel/watcher-linux-x64-musl": { + "type": "npm", + "name": "npm:@parcel/watcher-linux-x64-musl", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-linux-x64-musl", + "hash": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==" + } + }, + "npm:@parcel/watcher-win32-arm64": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-arm64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-arm64", + "hash": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==" + } + }, + "npm:@parcel/watcher-win32-ia32": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-ia32", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-ia32", + "hash": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==" + } + }, + "npm:@parcel/watcher-win32-x64": { + "type": "npm", + "name": "npm:@parcel/watcher-win32-x64", + "data": { + "version": "2.5.1", + "packageName": "@parcel/watcher-win32-x64", + "hash": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==" + } + }, "npm:@phenomnomnominal/tsquery": { "type": "npm", "name": "npm:@phenomnomnominal/tsquery", @@ -2712,6 +3301,33 @@ "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" } }, + "npm:@pmmmwh/react-refresh-webpack-plugin": { + "type": "npm", + "name": "npm:@pmmmwh/react-refresh-webpack-plugin", + "data": { + "version": "0.5.16", + "packageName": "@pmmmwh/react-refresh-webpack-plugin", + "hash": "sha512-kLQc9xz6QIqd2oIYyXRUiAp79kGpFBm3fEM9ahfG1HI0WI5gdZ2OVHWdmZYnwODt7ISck+QuQ6sBPrtvUBML7Q==" + } + }, + "npm:source-map@0.7.4": { + "type": "npm", + "name": "npm:source-map@0.7.4", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, "npm:@polka/url": { "type": "npm", "name": "npm:@polka/url", @@ -2946,6 +3562,168 @@ "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" } }, + "npm:@svgr/babel-plugin-add-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-add-jsx-attribute", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-add-jsx-attribute", + "hash": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-attribute", + "hash": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-empty-expression": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-empty-expression", + "hash": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==" + } + }, + "npm:@svgr/babel-plugin-replace-jsx-attribute-value": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-replace-jsx-attribute-value", + "hash": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==" + } + }, + "npm:@svgr/babel-plugin-svg-dynamic-title": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-dynamic-title", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-svg-dynamic-title", + "hash": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==" + } + }, + "npm:@svgr/babel-plugin-svg-em-dimensions": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-em-dimensions", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-svg-em-dimensions", + "hash": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==" + } + }, + "npm:@svgr/babel-plugin-transform-react-native-svg": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-react-native-svg", + "data": { + "version": "8.1.0", + "packageName": "@svgr/babel-plugin-transform-react-native-svg", + "hash": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==" + } + }, + "npm:@svgr/babel-plugin-transform-svg-component": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-svg-component", + "data": { + "version": "8.0.0", + "packageName": "@svgr/babel-plugin-transform-svg-component", + "hash": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==" + } + }, + "npm:@svgr/babel-preset": { + "type": "npm", + "name": "npm:@svgr/babel-preset", + "data": { + "version": "8.1.0", + "packageName": "@svgr/babel-preset", + "hash": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==" + } + }, + "npm:@svgr/core": { + "type": "npm", + "name": "npm:@svgr/core", + "data": { + "version": "8.1.0", + "packageName": "@svgr/core", + "hash": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:cosmiconfig@8.3.6": { + "type": "npm", + "name": "npm:cosmiconfig@8.3.6", + "data": { + "version": "8.3.6", + "packageName": "cosmiconfig", + "hash": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "7.1.0", + "packageName": "cosmiconfig", + "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" + } + }, + "npm:@svgr/hast-util-to-babel-ast": { + "type": "npm", + "name": "npm:@svgr/hast-util-to-babel-ast", + "data": { + "version": "8.0.0", + "packageName": "@svgr/hast-util-to-babel-ast", + "hash": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==" + } + }, + "npm:@svgr/plugin-jsx": { + "type": "npm", + "name": "npm:@svgr/plugin-jsx", + "data": { + "version": "8.1.0", + "packageName": "@svgr/plugin-jsx", + "hash": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==" + } + }, + "npm:@svgr/plugin-svgo": { + "type": "npm", + "name": "npm:@svgr/plugin-svgo", + "data": { + "version": "8.1.0", + "packageName": "@svgr/plugin-svgo", + "hash": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==" + } + }, + "npm:@svgr/webpack": { + "type": "npm", + "name": "npm:@svgr/webpack", + "data": { + "version": "8.1.0", + "packageName": "@svgr/webpack", + "hash": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==" + } + }, "npm:@swc-node/core": { "type": "npm", "name": "npm:@swc-node/core", @@ -3009,24 +3787,6 @@ "hash": "sha512-Q5FsI3Cw0fGMXhmsg7c08i4EmXCrcl+WnAxb6LYOLHw4JFFC3yzmx9LaXZ7QMbA+JZXbigU2TirI7RAfO0Qlnw==" } }, - "npm:source-map@0.7.4": { - "type": "npm", - "name": "npm:source-map@0.7.4", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, "npm:@swc/core": { "type": "npm", "name": "npm:@swc/core", @@ -3171,6 +3931,15 @@ "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" } }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, "npm:@tybys/wasm-util": { "type": "npm", "name": "npm:@tybys/wasm-util", @@ -3216,6 +3985,60 @@ "hash": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==" } }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "9.6.1", + "packageName": "@types/eslint", + "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, "npm:@types/estree": { "type": "npm", "name": "npm:@types/estree", @@ -3225,6 +4048,24 @@ "hash": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==" } }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.19.6", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==" + } + }, "npm:@types/graceful-fs": { "type": "npm", "name": "npm:@types/graceful-fs", @@ -3243,6 +4084,24 @@ "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" } }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.16", + "packageName": "@types/http-proxy", + "hash": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==" + } + }, "npm:@types/istanbul-lib-coverage": { "type": "npm", "name": "npm:@types/istanbul-lib-coverage", @@ -3279,6 +4138,15 @@ "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" } }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, "npm:@types/node": { "type": "npm", "name": "npm:@types/node", @@ -3288,6 +4156,15 @@ "hash": "sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==" } }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.11", + "packageName": "@types/node-forge", + "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" + } + }, "npm:@types/parse-json": { "type": "npm", "name": "npm:@types/parse-json", @@ -3297,6 +4174,69 @@ "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" } }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.18", + "packageName": "@types/qs", + "hash": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.2", + "packageName": "@types/retry", + "hash": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.7", + "packageName": "@types/serve-static", + "hash": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, "npm:@types/stack-utils": { "type": "npm", "name": "npm:@types/stack-utils", @@ -3306,6 +4246,15 @@ "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" } }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.18.1", + "packageName": "@types/ws", + "hash": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==" + } + }, "npm:@types/yargs": { "type": "npm", "name": "npm:@types/yargs", @@ -3495,6 +4444,168 @@ "hash": "sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==" } }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.13.2", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.14.1", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==" + } + }, + "npm:@webpack-cli/configtest": { + "type": "npm", + "name": "npm:@webpack-cli/configtest", + "data": { + "version": "2.1.1", + "packageName": "@webpack-cli/configtest", + "hash": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==" + } + }, + "npm:@webpack-cli/info": { + "type": "npm", + "name": "npm:@webpack-cli/info", + "data": { + "version": "2.0.2", + "packageName": "@webpack-cli/info", + "hash": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==" + } + }, + "npm:@webpack-cli/serve": { + "type": "npm", + "name": "npm:@webpack-cli/serve", + "data": { + "version": "2.0.5", + "packageName": "@webpack-cli/serve", + "hash": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==" + } + }, "npm:@xhmikosr/archive-type": { "type": "npm", "name": "npm:@xhmikosr/archive-type", @@ -3621,6 +4732,24 @@ "hash": "sha512-siPY6BD5dQ2SZPl3I0OZBHL27ZqZvLEosObsZRQ1NUB8qcxegwt0T9eKtV96JMFQpIz1elhkzqOg4c/Ri6Dp9A==" } }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, "npm:@yarnpkg/lockfile": { "type": "npm", "name": "npm:@yarnpkg/lockfile", @@ -3684,13 +4813,31 @@ "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" } }, - "npm:ajv": { + "npm:ajv-formats": { "type": "npm", - "name": "npm:ajv", + "name": "npm:ajv-formats", "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv-keywords@3.5.2": { + "type": "npm", + "name": "npm:ajv-keywords@3.5.2", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" } }, "npm:ansi-colors": { @@ -3711,6 +4858,24 @@ "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" } }, + "npm:ansi-html": { + "type": "npm", + "name": "npm:ansi-html", + "data": { + "version": "0.0.9", + "packageName": "ansi-html", + "hash": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, "npm:anymatch": { "type": "npm", "name": "npm:anymatch", @@ -3774,6 +4939,15 @@ "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" } }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, "npm:assertion-error": { "type": "npm", "name": "npm:assertion-error", @@ -3801,6 +4975,15 @@ "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" } }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.21", + "packageName": "autoprefixer", + "hash": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==" + } + }, "npm:axios": { "type": "npm", "name": "npm:axios", @@ -3828,6 +5011,15 @@ "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" } }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.2.1", + "packageName": "babel-loader", + "hash": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==" + } + }, "npm:babel-plugin-const-enum": { "type": "npm", "name": "npm:babel-plugin-const-enum", @@ -4008,6 +5200,24 @@ "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, "npm:bin-version": { "type": "npm", "name": "npm:bin-version", @@ -4026,6 +5236,15 @@ "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" } }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.3.0", + "packageName": "binary-extensions", + "hash": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" + } + }, "npm:bl": { "type": "npm", "name": "npm:bl", @@ -4116,6 +5335,24 @@ "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" } }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.3.0", + "packageName": "bonjour-service", + "hash": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, "npm:braces": { "type": "npm", "name": "npm:braces", @@ -4152,6 +5389,15 @@ "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" } }, + "npm:buffer-builder": { + "type": "npm", + "name": "npm:buffer-builder", + "data": { + "version": "0.2.0", + "packageName": "buffer-builder", + "hash": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==" + } + }, "npm:buffer-crc32": { "type": "npm", "name": "npm:buffer-crc32", @@ -4170,6 +5416,15 @@ "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" } }, + "npm:bundle-name": { + "type": "npm", + "name": "npm:bundle-name", + "data": { + "version": "4.1.0", + "packageName": "bundle-name", + "hash": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==" + } + }, "npm:bytes": { "type": "npm", "name": "npm:bytes", @@ -4233,22 +5488,13 @@ "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" } }, - "npm:camelcase": { + "npm:caniuse-api": { "type": "npm", - "name": "npm:camelcase", + "name": "npm:caniuse-api", "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" } }, "npm:caniuse-lite": { @@ -4296,6 +5542,51 @@ "hash": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==" } }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.6.0", + "packageName": "chokidar", + "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" + } + }, + "npm:chokidar@4.0.3": { + "type": "npm", + "name": "npm:chokidar@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "chokidar", + "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" + } + }, + "npm:glob-parent@5.1.2": { + "type": "npm", + "name": "npm:glob-parent@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.4", + "packageName": "chrome-trace-event", + "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" + } + }, "npm:ci-info": { "type": "npm", "name": "npm:ci-info", @@ -4350,6 +5641,15 @@ "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" } }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, "npm:co": { "type": "npm", "name": "npm:co", @@ -4386,6 +5686,15 @@ "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" } }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, "npm:colorette": { "type": "npm", "name": "npm:colorette", @@ -4395,6 +5704,15 @@ "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" } }, + "npm:colorjs.io": { + "type": "npm", + "name": "npm:colorjs.io", + "data": { + "version": "0.5.2", + "packageName": "colorjs.io", + "hash": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==" + } + }, "npm:columnify": { "type": "npm", "name": "npm:columnify", @@ -4431,6 +5749,78 @@ "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" } }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@10.0.1": { + "type": "npm", + "name": "npm:commander@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "commander", + "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.8.0", + "packageName": "compression", + "hash": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==" + } + }, + "npm:negotiator@0.6.4": { + "type": "npm", + "name": "npm:negotiator@0.6.4", + "data": { + "version": "0.6.4", + "packageName": "negotiator", + "hash": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, "npm:concat-map": { "type": "npm", "name": "npm:concat-map", @@ -4449,6 +5839,15 @@ "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" } }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, "npm:content-disposition": { "type": "npm", "name": "npm:content-disposition", @@ -4494,6 +5893,24 @@ "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" } }, + "npm:copy-anything": { + "type": "npm", + "name": "npm:copy-anything", + "data": { + "version": "2.0.6", + "packageName": "copy-anything", + "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, "npm:core-js-compat": { "type": "npm", "name": "npm:core-js-compat", @@ -4503,6 +5920,24 @@ "hash": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==" } }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.41.0", + "packageName": "core-js-pure", + "hash": "sha512-71Gzp96T9YPk63aUvE5Q5qP+DryB4ZloUZPSOebGM88VNw8VNfvdA7z6kGA8iGOTEzAomsRidp4jXSmUIJsL+Q==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, "npm:corser": { "type": "npm", "name": "npm:corser", @@ -4512,15 +5947,6 @@ "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" } }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, "npm:cross-spawn": { "type": "npm", "name": "npm:cross-spawn", @@ -4530,6 +5956,132 @@ "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" } }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "7.2.0", + "packageName": "css-declaration-sorter", + "hash": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.11.0", + "packageName": "css-loader", + "hash": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "5.0.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-tree@2.2.1": { + "type": "npm", + "name": "npm:css-tree@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "css-tree", + "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "6.1.2", + "packageName": "cssnano", + "hash": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "6.1.2", + "packageName": "cssnano-preset-default", + "hash": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "4.0.2", + "packageName": "cssnano-utils", + "hash": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "5.0.5", + "packageName": "csso", + "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" + } + }, + "npm:mdn-data@2.0.28": { + "type": "npm", + "name": "npm:mdn-data@2.0.28", + "data": { + "version": "2.0.28", + "packageName": "mdn-data", + "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, "npm:decompress-response": { "type": "npm", "name": "npm:decompress-response", @@ -4593,6 +6145,24 @@ "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" } }, + "npm:default-browser": { + "type": "npm", + "name": "npm:default-browser", + "data": { + "version": "5.2.1", + "packageName": "default-browser", + "hash": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==" + } + }, + "npm:default-browser-id": { + "type": "npm", + "name": "npm:default-browser-id", + "data": { + "version": "5.0.0", + "packageName": "default-browser-id", + "hash": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==" + } + }, "npm:defer-to-connect": { "type": "npm", "name": "npm:defer-to-connect", @@ -4611,6 +6181,15 @@ "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" } }, + "npm:define-lazy-prop@3.0.0": { + "type": "npm", + "name": "npm:define-lazy-prop@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" + } + }, "npm:delayed-stream": { "type": "npm", "name": "npm:delayed-stream", @@ -4629,6 +6208,15 @@ "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" } }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, "npm:destroy": { "type": "npm", "name": "npm:destroy", @@ -4638,6 +6226,15 @@ "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" } }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "1.0.3", + "packageName": "detect-libc", + "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + } + }, "npm:detect-newline": { "type": "npm", "name": "npm:detect-newline", @@ -4647,6 +6244,15 @@ "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" } }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, "npm:detect-port": { "type": "npm", "name": "npm:detect-port", @@ -4665,6 +6271,69 @@ "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" } }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.2.2", + "packageName": "domutils", + "hash": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, "npm:dotenv": { "type": "npm", "name": "npm:dotenv", @@ -4737,6 +6406,15 @@ "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" } }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, "npm:encodeurl": { "type": "npm", "name": "npm:encodeurl", @@ -4764,6 +6442,15 @@ "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" } }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.18.1", + "packageName": "enhanced-resolve", + "hash": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==" + } + }, "npm:enquirer": { "type": "npm", "name": "npm:enquirer", @@ -4773,6 +6460,33 @@ "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" } }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.14.0", + "packageName": "envinfo", + "hash": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, "npm:error-ex": { "type": "npm", "name": "npm:error-ex", @@ -4782,6 +6496,15 @@ "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" } }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, "npm:es-define-property": { "type": "npm", "name": "npm:es-define-property", @@ -4908,6 +6631,15 @@ "hash": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==" } }, + "npm:eslint-scope@5.1.1": { + "type": "npm", + "name": "npm:eslint-scope@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, "npm:espree": { "type": "npm", "name": "npm:espree", @@ -4962,6 +6694,15 @@ "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" } }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, "npm:estree-walker": { "type": "npm", "name": "npm:estree-walker", @@ -4998,6 +6739,15 @@ "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" } }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, "npm:execa": { "type": "npm", "name": "npm:execa", @@ -5088,24 +6838,6 @@ "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" } }, - "npm:glob-parent@5.1.2": { - "type": "npm", - "name": "npm:glob-parent@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, "npm:fast-json-stable-stringify": { "type": "npm", "name": "npm:fast-json-stable-stringify", @@ -5124,6 +6856,24 @@ "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" } }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.0.6", + "packageName": "fast-uri", + "hash": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==" + } + }, "npm:fastq": { "type": "npm", "name": "npm:fastq", @@ -5133,6 +6883,15 @@ "hash": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==" } }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, "npm:fb-watchman": { "type": "npm", "name": "npm:fb-watchman", @@ -5268,6 +7027,15 @@ "hash": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==" } }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, "npm:find-versions": { "type": "npm", "name": "npm:find-versions", @@ -5340,6 +7108,33 @@ "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" } }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "7.2.13", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.3.1", + "packageName": "schema-utils", + "hash": "sha512-jjlZ7UknkyQxGnHF1w8wDgWfdtnW0hBX7tmDp04zBwDBZ/6tPJI1+RWfBHGMA4+0nAjGptp+eDpIYP6mldJbqg==" + } + }, "npm:form-data": { "type": "npm", "name": "npm:form-data", @@ -5367,6 +7162,15 @@ "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" } }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.3.7", + "packageName": "fraction.js", + "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + } + }, "npm:fresh": { "type": "npm", "name": "npm:fresh", @@ -5394,6 +7198,24 @@ "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" } }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.6", + "packageName": "fs-monkey", + "hash": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" + } + }, "npm:fs.realpath": { "type": "npm", "name": "npm:fs.realpath", @@ -5466,6 +7288,42 @@ "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" } }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, "npm:gopd": { "type": "npm", "name": "npm:gopd", @@ -5502,6 +7360,15 @@ "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" } }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, "npm:harmony-reflect": { "type": "npm", "name": "npm:harmony-reflect", @@ -5583,6 +7450,51 @@ "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" } }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, "npm:html-encoding-sniffer": { "type": "npm", "name": "npm:html-encoding-sniffer", @@ -5592,6 +7504,15 @@ "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" } }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.6.0", + "packageName": "html-entities", + "hash": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==" + } + }, "npm:html-escaper": { "type": "npm", "name": "npm:html-escaper", @@ -5610,6 +7531,15 @@ "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" } }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, "npm:http-errors": { "type": "npm", "name": "npm:http-errors", @@ -5619,6 +7549,24 @@ "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" } }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.10", + "packageName": "http-parser-js", + "hash": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==" + } + }, "npm:http-proxy": { "type": "npm", "name": "npm:http-proxy", @@ -5628,6 +7576,33 @@ "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" } }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.9", + "packageName": "http-proxy-middleware", + "hash": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, "npm:http-server": { "type": "npm", "name": "npm:http-server", @@ -5655,6 +7630,24 @@ "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" } }, + "npm:hyperdyperid": { + "type": "npm", + "name": "npm:hyperdyperid", + "data": { + "version": "1.2.0", + "packageName": "hyperdyperid", + "hash": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, "npm:identity-obj-proxy": { "type": "npm", "name": "npm:identity-obj-proxy", @@ -5682,6 +7675,24 @@ "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" } }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "0.5.5", + "packageName": "image-size", + "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "5.1.1", + "packageName": "immutable", + "hash": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==" + } + }, "npm:import-fresh": { "type": "npm", "name": "npm:import-fresh", @@ -5691,6 +7702,33 @@ "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" } }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.2.0", + "packageName": "import-local", + "hash": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==" + } + }, + "npm:pkg-dir@4.2.0": { + "type": "npm", + "name": "npm:pkg-dir@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, "npm:imurmurhash": { "type": "npm", "name": "npm:imurmurhash", @@ -5718,6 +7756,15 @@ "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" } }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, "npm:inspect-with-kind": { "type": "npm", "name": "npm:inspect-with-kind", @@ -5727,6 +7774,15 @@ "hash": "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==" } }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "3.1.1", + "packageName": "interpret", + "hash": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==" + } + }, "npm:ipaddr.js": { "type": "npm", "name": "npm:ipaddr.js", @@ -5736,6 +7792,15 @@ "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" } }, + "npm:ipaddr.js@2.2.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "ipaddr.js", + "hash": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==" + } + }, "npm:is-arrayish": { "type": "npm", "name": "npm:is-arrayish", @@ -5745,6 +7810,15 @@ "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" } }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, "npm:is-core-module": { "type": "npm", "name": "npm:is-core-module", @@ -5763,6 +7837,15 @@ "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" } }, + "npm:is-docker@3.0.0": { + "type": "npm", + "name": "npm:is-docker@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-docker", + "hash": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + } + }, "npm:is-extglob": { "type": "npm", "name": "npm:is-extglob", @@ -5799,6 +7882,15 @@ "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" } }, + "npm:is-inside-container": { + "type": "npm", + "name": "npm:is-inside-container", + "data": { + "version": "1.0.0", + "packageName": "is-inside-container", + "hash": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==" + } + }, "npm:is-interactive": { "type": "npm", "name": "npm:is-interactive", @@ -5808,6 +7900,15 @@ "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" } }, + "npm:is-network-error": { + "type": "npm", + "name": "npm:is-network-error", + "data": { + "version": "1.1.0", + "packageName": "is-network-error", + "hash": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==" + } + }, "npm:is-number": { "type": "npm", "name": "npm:is-number", @@ -5817,13 +7918,13 @@ "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" } }, - "npm:is-plain-obj": { + "npm:is-plain-object": { "type": "npm", - "name": "npm:is-plain-obj", + "name": "npm:is-plain-object", "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" } }, "npm:is-unicode-supported": { @@ -5835,6 +7936,15 @@ "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" } }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "3.14.1", + "packageName": "is-what", + "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + } + }, "npm:is-wsl": { "type": "npm", "name": "npm:is-wsl", @@ -5844,6 +7954,24 @@ "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" } }, + "npm:is-wsl@3.1.0": { + "type": "npm", + "name": "npm:is-wsl@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "is-wsl", + "hash": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, "npm:isexe": { "type": "npm", "name": "npm:isexe", @@ -5853,6 +7981,15 @@ "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" } }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, "npm:istanbul-lib-coverage": { "type": "npm", "name": "npm:istanbul-lib-coverage", @@ -6114,6 +8251,15 @@ "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" } }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, "npm:supports-color@8.1.1": { "type": "npm", "name": "npm:supports-color@8.1.1", @@ -6186,15 +8332,6 @@ "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" } }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, "npm:json-stable-stringify-without-jsonify": { "type": "npm", "name": "npm:json-stable-stringify-without-jsonify", @@ -6231,6 +8368,15 @@ "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" } }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, "npm:keyv": { "type": "npm", "name": "npm:keyv", @@ -6249,6 +8395,78 @@ "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" } }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.10.0", + "packageName": "launch-editor", + "hash": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==" + } + }, + "npm:less": { + "type": "npm", + "name": "npm:less", + "data": { + "version": "4.1.3", + "packageName": "less", + "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" + } + }, + "npm:less-loader": { + "type": "npm", + "name": "npm:less-loader", + "data": { + "version": "11.1.0", + "packageName": "less-loader", + "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, "npm:leven": { "type": "npm", "name": "npm:leven", @@ -6267,6 +8485,24 @@ "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" } }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "4.0.2", + "packageName": "license-webpack-plugin", + "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "3.1.3", + "packageName": "lilconfig", + "hash": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==" + } + }, "npm:lines-and-columns": { "type": "npm", "name": "npm:lines-and-columns", @@ -6285,6 +8521,24 @@ "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" } }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, "npm:lodash.debounce": { "type": "npm", "name": "npm:lodash.debounce", @@ -6294,6 +8548,15 @@ "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" } }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, "npm:lodash.merge": { "type": "npm", "name": "npm:lodash.merge", @@ -6303,6 +8566,15 @@ "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" } }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, "npm:log-symbols": { "type": "npm", "name": "npm:log-symbols", @@ -6321,6 +8593,15 @@ "hash": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==" } }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, "npm:lowercase-keys": { "type": "npm", "name": "npm:lowercase-keys", @@ -6348,15 +8629,6 @@ "hash": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==" } }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, "npm:makeerror": { "type": "npm", "name": "npm:makeerror", @@ -6384,6 +8656,24 @@ "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" } }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.5.3", + "packageName": "memfs", + "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" + } + }, + "npm:memfs@4.17.0": { + "type": "npm", + "name": "npm:memfs@4.17.0", + "data": { + "version": "4.17.0", + "packageName": "memfs", + "hash": "sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==" + } + }, "npm:merge-descriptors": { "type": "npm", "name": "npm:merge-descriptors", @@ -6465,6 +8755,24 @@ "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" } }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.4.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, "npm:minimist": { "type": "npm", "name": "npm:minimist", @@ -6492,6 +8800,15 @@ "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" } }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, "npm:nanoid": { "type": "npm", "name": "npm:nanoid", @@ -6510,13 +8827,58 @@ "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" } }, - "npm:negotiator": { + "npm:needle": { "type": "npm", - "name": "npm:negotiator", + "name": "npm:needle", "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "version": "3.3.1", + "packageName": "needle", + "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "7.1.1", + "packageName": "node-addon-api", + "hash": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" } }, "npm:node-int64": { @@ -6555,6 +8917,15 @@ "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" } }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + } + }, "npm:normalize-url": { "type": "npm", "name": "npm:normalize-url", @@ -6582,6 +8953,15 @@ "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" } }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, "npm:nx": { "type": "npm", "name": "npm:nx", @@ -6618,6 +8998,15 @@ "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" } }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, "npm:on-finished": { "type": "npm", "name": "npm:on-finished", @@ -6627,6 +9016,15 @@ "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" } }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, "npm:once": { "type": "npm", "name": "npm:once", @@ -6654,6 +9052,15 @@ "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" } }, + "npm:open@10.1.1": { + "type": "npm", + "name": "npm:open@10.1.1", + "data": { + "version": "10.1.1", + "packageName": "open", + "hash": "sha512-zy1wx4+P3PfhXSEPJNtZmJXfhkkIaxU1VauWIrDZw1O7uJRDRJtKr9n3Ic4NgbA16KyOxOXO2ng9gYwCdXuSXA==" + } + }, "npm:opener": { "type": "npm", "name": "npm:opener", @@ -6690,6 +9097,15 @@ "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" } }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "6.2.1", + "packageName": "p-retry", + "hash": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==" + } + }, "npm:p-try": { "type": "npm", "name": "npm:p-try", @@ -6726,6 +9142,24 @@ "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" } }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "4.0.0", + "packageName": "parse5", + "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + }, "npm:parseurl": { "type": "npm", "name": "npm:parseurl", @@ -6744,6 +9178,15 @@ "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" } }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, "npm:path-is-absolute": { "type": "npm", "name": "npm:path-is-absolute", @@ -6861,6 +9304,24 @@ "hash": "sha512-Fq0FERJWFEUpB4eSY59wSNwXD4RYqR+nR/WiEVcZW8IWfVBxJJafcgTEZDQo8k3w0sUarJ8RyVbbUF4GQ2LGbQ==" } }, + "npm:yocto-queue@1.2.1": { + "type": "npm", + "name": "npm:yocto-queue@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "yocto-queue", + "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, "npm:portfinder": { "type": "npm", "name": "npm:portfinder", @@ -6879,6 +9340,330 @@ "hash": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==" } }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "9.0.1", + "packageName": "postcss-calc", + "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "6.1.0", + "packageName": "postcss-colormin", + "hash": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "6.1.0", + "packageName": "postcss-convert-values", + "hash": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "6.0.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-empty", + "hash": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "6.0.2", + "packageName": "postcss-discard-overridden", + "hash": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==" + } + }, + "npm:postcss-import": { + "type": "npm", + "name": "npm:postcss-import", + "data": { + "version": "14.1.0", + "packageName": "postcss-import", + "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "6.2.1", + "packageName": "postcss-loader", + "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "6.0.5", + "packageName": "postcss-merge-longhand", + "hash": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "6.1.1", + "packageName": "postcss-merge-rules", + "hash": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "6.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "6.0.3", + "packageName": "postcss-minify-gradients", + "hash": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "6.1.0", + "packageName": "postcss-minify-params", + "hash": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "6.0.4", + "packageName": "postcss-minify-selectors", + "hash": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.1.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.2.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==" + } + }, + "npm:postcss-selector-parser@7.1.0": { + "type": "npm", + "name": "npm:postcss-selector-parser@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "postcss-selector-parser", + "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.1.2", + "packageName": "postcss-selector-parser", + "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.2.1", + "packageName": "postcss-modules-scope", + "hash": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-charset", + "hash": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-positions", + "hash": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-string", + "hash": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "6.1.0", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-url", + "hash": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "6.0.2", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "6.0.2", + "packageName": "postcss-ordered-values", + "hash": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "6.1.0", + "packageName": "postcss-reduce-initial", + "hash": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "6.0.2", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "6.0.3", + "packageName": "postcss-svgo", + "hash": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "6.0.4", + "packageName": "postcss-unique-selectors", + "hash": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, "npm:prelude-ls": { "type": "npm", "name": "npm:prelude-ls", @@ -6906,6 +9691,15 @@ "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" } }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, "npm:proxy-addr": { "type": "npm", "name": "npm:proxy-addr", @@ -6924,6 +9718,15 @@ "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" } }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + } + }, "npm:punycode": { "type": "npm", "name": "npm:punycode", @@ -6960,6 +9763,15 @@ "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" } }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, "npm:range-parser": { "type": "npm", "name": "npm:range-parser", @@ -6987,13 +9799,49 @@ "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" } }, - "npm:readable-stream": { + "npm:react-refresh": { "type": "npm", - "name": "npm:readable-stream", + "name": "npm:react-refresh", "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + "version": "0.10.0", + "packageName": "react-refresh", + "hash": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==" + } + }, + "npm:read-cache": { + "type": "npm", + "name": "npm:read-cache", + "data": { + "version": "1.0.0", + "packageName": "read-cache", + "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:readdirp@4.1.2": { + "type": "npm", + "name": "npm:readdirp@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "readdirp", + "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.8.0", + "packageName": "rechoir", + "hash": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==" } }, "npm:regenerate": { @@ -7068,6 +9916,15 @@ "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" } }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, "npm:requires-port": { "type": "npm", "name": "npm:requires-port", @@ -7095,6 +9952,15 @@ "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" } }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, "npm:resolve.exports": { "type": "npm", "name": "npm:resolve.exports", @@ -7122,6 +9988,15 @@ "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" } }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, "npm:reusify": { "type": "npm", "name": "npm:reusify", @@ -7140,6 +10015,15 @@ "hash": "sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==" } }, + "npm:run-applescript": { + "type": "npm", + "name": "npm:run-applescript", + "data": { + "version": "7.0.0", + "packageName": "run-applescript", + "hash": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==" + } + }, "npm:run-parallel": { "type": "npm", "name": "npm:run-parallel", @@ -7149,6 +10033,15 @@ "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" } }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.2", + "packageName": "rxjs", + "hash": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==" + } + }, "npm:safer-buffer": { "type": "npm", "name": "npm:safer-buffer", @@ -7158,6 +10051,222 @@ "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" } }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.87.0", + "packageName": "sass", + "hash": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==" + } + }, + "npm:sass-embedded": { + "type": "npm", + "name": "npm:sass-embedded", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded", + "hash": "sha512-1IA3iTJNh4BkkA/nidKiVwbmkxr9o6LsPegycHMX/JYs255zpocN5GdLF1+onohQCJxbs5ldr8osKV7qNaNBjg==" + } + }, + "npm:sass-embedded-android-arm": { + "type": "npm", + "name": "npm:sass-embedded-android-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-arm", + "hash": "sha512-Z20u/Y1kFDpMbgiloR5YPLxNuMVeKQRC8e/n68oAAxf3u7rDSmNn2msi7USqgT1f2zdBBNawn/ifbFEla6JiHw==" + } + }, + "npm:sass-embedded-android-arm64": { + "type": "npm", + "name": "npm:sass-embedded-android-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-arm64", + "hash": "sha512-uqeZoBuXm3W2KhxolScAAfWOLHL21e50g7AxlLmG0he7WZsWw6e9kSnmq301iLIFp4kvmXYXbXbNKAeu9ItRYA==" + } + }, + "npm:sass-embedded-android-ia32": { + "type": "npm", + "name": "npm:sass-embedded-android-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-ia32", + "hash": "sha512-hSWTqo2Igdig528cUb1W1+emw9d1J4+nqOoR4tERS04zcwRRFNDiuBT0o5meV7nkEwE982F+h57YdcRXj8gTtg==" + } + }, + "npm:sass-embedded-android-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-android-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-riscv64", + "hash": "sha512-kBAPSjiTBLy5ua/0LRNAJwOAARhzFU7gP35fYORJcdBuz1lkIVPVnid1lh9qQ6Ce9MOJcr7VKFtGnTuqVeig5A==" + } + }, + "npm:sass-embedded-android-x64": { + "type": "npm", + "name": "npm:sass-embedded-android-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-android-x64", + "hash": "sha512-ZHMrNdtdMSpJUYco2MesnlPwDTZftD3pqkkOMI2pbqarPoFUKJtP5k80nwCM0sJGtqfNE+O16w9yPght0CMiJg==" + } + }, + "npm:sass-embedded-darwin-arm64": { + "type": "npm", + "name": "npm:sass-embedded-darwin-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-darwin-arm64", + "hash": "sha512-7TK1JWJdCIRSdZv5CJv/HpDz/wIfwUy2FoPz9sVOEj1pDTH0N+VfJd5VutCddIdoQN9jr0ap8vwkc65FbAxV2A==" + } + }, + "npm:sass-embedded-darwin-x64": { + "type": "npm", + "name": "npm:sass-embedded-darwin-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-darwin-x64", + "hash": "sha512-2JiQzt7FmgUC4MYT2QvbeH/Bi3e76WEhaYoc5P3WyTW8unsHksyTdMuTuYe0Qf9usIyt6bmm5no/4BBw7c8Cig==" + } + }, + "npm:sass-embedded-linux-arm": { + "type": "npm", + "name": "npm:sass-embedded-linux-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-arm", + "hash": "sha512-z5P6INMsGXiUcq1sRRbksyQUhalFFYjTEexuxfSYdK3U2YQMADHubQh8pGzkWvFRPOpnh83RiGuwvpaARYHnsw==" + } + }, + "npm:sass-embedded-linux-arm64": { + "type": "npm", + "name": "npm:sass-embedded-linux-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-arm64", + "hash": "sha512-5z+mwJCbGZcg+q+MwdEVSh0ogFK7OSAe175Gsozzr/Izw34Q+RGUw9O82jsV2c4YNuTAQvzEHgIO5cvNvt3Quw==" + } + }, + "npm:sass-embedded-linux-ia32": { + "type": "npm", + "name": "npm:sass-embedded-linux-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-ia32", + "hash": "sha512-Xzcp+YPp0iakGL148Jl57CO+MxLuj2jsry3M+rc1cSnDlvkjNVs6TMxaL70GFeV5HdU2V60voYcgE7adDUtJjw==" + } + }, + "npm:sass-embedded-linux-musl-arm": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-arm", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-arm", + "hash": "sha512-4PyqOWhRzyu06RRmpCCBOJdF4BOv7s446wrV6yODtEyyfSIDx3MJabo3KT0oJ1lTWSI/aU3R89bKx0JFXcIHHw==" + } + }, + "npm:sass-embedded-linux-musl-arm64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-arm64", + "hash": "sha512-HWE5eTRCoKzFZWsxOjDMTF5m4DDTQ0n7NJxSYiUXPBDydr9viPXbGOMYG7WVJLjiF7upr7DYo/mfp/SNTMlZyg==" + } + }, + "npm:sass-embedded-linux-musl-ia32": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-ia32", + "hash": "sha512-aQaPvlRn3kh93PLQvl6BcFKu8Ji92+42blFEkg6nMVvmugD5ZwH2TGFrX25ibx4CYxRpMS4ssF7a0i7vy5HB1Q==" + } + }, + "npm:sass-embedded-linux-musl-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-riscv64", + "hash": "sha512-o5DxcqiFzET3KRWo+futHr/lhAMBP3tJGGx8YIgpHQYfvDMbsvE0hiFC+nZ/GF9dbcGd+ceIQwfvE5mcc7Gsjw==" + } + }, + "npm:sass-embedded-linux-musl-x64": { + "type": "npm", + "name": "npm:sass-embedded-linux-musl-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-musl-x64", + "hash": "sha512-dKxWsu9Wu/CyfzQmHdeiGqrRSzJ85VUjbSx+aP1/7ttmps3SSg+YW95PuqnCOa7GSuSreC3dKKpXHTywUxMLQA==" + } + }, + "npm:sass-embedded-linux-riscv64": { + "type": "npm", + "name": "npm:sass-embedded-linux-riscv64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-riscv64", + "hash": "sha512-Sy3ESZ4FwBiijvmTA9n+0p0w3MNCue1AgINVPzpAY27EFi0h49eqQm9SWfOkFqmkFS2zFRYowdQOr5Bbr2gOXA==" + } + }, + "npm:sass-embedded-linux-x64": { + "type": "npm", + "name": "npm:sass-embedded-linux-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-linux-x64", + "hash": "sha512-+UfjakOcHHKTnEqB3EZ+KqzezQOe1emvy4Rs+eQhLyfekpYuNze/qlRvYxfKTmrtvDiUrIto8MXsyZfMLzkuMA==" + } + }, + "npm:sass-embedded-win32-arm64": { + "type": "npm", + "name": "npm:sass-embedded-win32-arm64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-arm64", + "hash": "sha512-m1DS6FYUE0/fv+vt38uQB/kxR4UjnyD+2zcSc298pFmA0aYh/XZIPWw7RxG1HL3KLE1ZrGyu3254MPoxRhs3ig==" + } + }, + "npm:sass-embedded-win32-ia32": { + "type": "npm", + "name": "npm:sass-embedded-win32-ia32", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-ia32", + "hash": "sha512-JztXLo59GMe2E6g+kCsyiERYhtZgkcyDYx6CrXoSTE5WaE+RbxRiCCCv8/1+hf406f08pUxJ8G0Ody7M5urtBA==" + } + }, + "npm:sass-embedded-win32-x64": { + "type": "npm", + "name": "npm:sass-embedded-win32-x64", + "data": { + "version": "1.87.0", + "packageName": "sass-embedded-win32-x64", + "hash": "sha512-4nQErpauvhgSo+7ClumGdjdf9sGx+U9yBgvhI0+zUw+D5YvraVgvA0Lk8Wuwntx2PqnvKUk8YDr/vxHJostv4Q==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "16.0.5", + "packageName": "sass-loader", + "hash": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.4.1", + "packageName": "sax", + "hash": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" + } + }, "npm:secure-compare": { "type": "npm", "name": "npm:secure-compare", @@ -7176,6 +10285,24 @@ "hash": "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg==" } }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, "npm:semver-regex": { "type": "npm", "name": "npm:semver-regex", @@ -7203,13 +10330,31 @@ "hash": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==" } }, - "npm:serve-static": { + "npm:serialize-javascript": { "type": "npm", - "name": "npm:serve-static", + "name": "npm:serialize-javascript", "data": { - "version": "1.16.2", - "packageName": "serve-static", - "hash": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==" + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" } }, "npm:setprototypeof": { @@ -7221,6 +10366,42 @@ "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" } }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.16.2", + "packageName": "serve-static", + "hash": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, "npm:shebang-command": { "type": "npm", "name": "npm:shebang-command", @@ -7239,6 +10420,15 @@ "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" } }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.2", + "packageName": "shell-quote", + "hash": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==" + } + }, "npm:side-channel": { "type": "npm", "name": "npm:side-channel", @@ -7293,13 +10483,22 @@ "hash": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==" } }, - "npm:slash": { + "npm:snake-case": { "type": "npm", - "name": "npm:slash", + "name": "npm:snake-case", "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "version": "3.0.4", + "packageName": "snake-case", + "hash": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" } }, "npm:sort-keys": { @@ -7329,6 +10528,33 @@ "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" } }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "5.0.0", + "packageName": "source-map-loader", + "hash": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, "npm:sprintf-js": { "type": "npm", "name": "npm:sprintf-js", @@ -7356,13 +10582,13 @@ "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" } }, - "npm:statuses": { + "npm:stackframe": { "type": "npm", - "name": "npm:statuses", + "name": "npm:stackframe", "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" } }, "npm:std-env": { @@ -7383,15 +10609,6 @@ "hash": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==" } }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, "npm:string-length": { "type": "npm", "name": "npm:string-length", @@ -7455,6 +10672,42 @@ "hash": "sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==" } }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.4", + "packageName": "style-loader", + "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "6.1.1", + "packageName": "stylehacks", + "hash": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==" + } + }, + "npm:stylus": { + "type": "npm", + "name": "npm:stylus", + "data": { + "version": "0.64.0", + "packageName": "stylus", + "hash": "sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==" + } + }, + "npm:stylus-loader": { + "type": "npm", + "name": "npm:stylus-loader", + "data": { + "version": "7.1.3", + "packageName": "stylus-loader", + "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" + } + }, "npm:supports-preserve-symlinks-flag": { "type": "npm", "name": "npm:supports-preserve-symlinks-flag", @@ -7464,6 +10717,69 @@ "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" } }, + "npm:svg-parser": { + "type": "npm", + "name": "npm:svg-parser", + "data": { + "version": "2.0.4", + "packageName": "svg-parser", + "hash": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "3.3.2", + "packageName": "svgo", + "hash": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==" + } + }, + "npm:sync-child-process": { + "type": "npm", + "name": "npm:sync-child-process", + "data": { + "version": "1.0.2", + "packageName": "sync-child-process", + "hash": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==" + } + }, + "npm:sync-message-port": { + "type": "npm", + "name": "npm:sync-message-port", + "data": { + "version": "1.1.3", + "packageName": "sync-message-port", + "hash": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.39.0", + "packageName": "terser", + "hash": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.14", + "packageName": "terser-webpack-plugin", + "hash": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==" + } + }, "npm:text-decoder": { "type": "npm", "name": "npm:text-decoder", @@ -7473,6 +10789,15 @@ "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" } }, + "npm:thingies": { + "type": "npm", + "name": "npm:thingies", + "data": { + "version": "1.21.0", + "packageName": "thingies", + "hash": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==" + } + }, "npm:through": { "type": "npm", "name": "npm:through", @@ -7482,6 +10807,15 @@ "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" } }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, "npm:tinybench": { "type": "npm", "name": "npm:tinybench", @@ -7590,6 +10924,15 @@ "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" } }, + "npm:tree-dump": { + "type": "npm", + "name": "npm:tree-dump", + "data": { + "version": "1.0.2", + "packageName": "tree-dump", + "hash": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==" + } + }, "npm:ts-api-utils": { "type": "npm", "name": "npm:ts-api-utils", @@ -7599,6 +10942,15 @@ "hash": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==" } }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.5.2", + "packageName": "ts-loader", + "hash": "sha512-Qo4piXvOTWcMGIgRiuFa6nHNm+54HbYaZCKqc9eeZCLRy3XqafQgwX2F7mofrbJG3g7EEb+lkiR+z2Lic2s3Zw==" + } + }, "npm:tsconfig-paths": { "type": "npm", "name": "npm:tsconfig-paths", @@ -7608,6 +10960,15 @@ "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" } }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, "npm:tslib": { "type": "npm", "name": "npm:tslib", @@ -7653,6 +11014,15 @@ "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" } }, + "npm:typed-assert": { + "type": "npm", + "name": "npm:typed-assert", + "data": { + "version": "1.0.9", + "packageName": "typed-assert", + "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" + } + }, "npm:typescript": { "type": "npm", "name": "npm:typescript", @@ -7734,6 +11104,15 @@ "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" } }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, "npm:unpipe": { "type": "npm", "name": "npm:unpipe", @@ -7788,6 +11167,15 @@ "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" } }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, "npm:v8-to-istanbul": { "type": "npm", "name": "npm:v8-to-istanbul", @@ -7806,6 +11194,15 @@ "hash": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==" } }, + "npm:varint": { + "type": "npm", + "name": "npm:varint", + "data": { + "version": "6.0.0", + "packageName": "varint", + "hash": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" + } + }, "npm:vary": { "type": "npm", "name": "npm:vary", @@ -7851,6 +11248,24 @@ "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" } }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.2", + "packageName": "watchpack", + "hash": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, "npm:wcwidth": { "type": "npm", "name": "npm:wcwidth", @@ -7860,6 +11275,96 @@ "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" } }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.98.0", + "packageName": "webpack", + "hash": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==" + } + }, + "npm:webpack-cli": { + "type": "npm", + "name": "npm:webpack-cli", + "data": { + "version": "5.1.4", + "packageName": "webpack-cli", + "hash": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "7.4.2", + "packageName": "webpack-dev-middleware", + "hash": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "5.2.1", + "packageName": "webpack-dev-server", + "hash": "sha512-ml/0HIj9NLpVKOMq+SuBPLHcmbG+TGIjXRHsYfZwocUBIqEvws8NnS/V9AFQ5FKP+tgn5adwVwRrTEpGL33QFQ==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.10.0", + "packageName": "webpack-merge", + "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" + } + }, + "npm:webpack-node-externals": { + "type": "npm", + "name": "npm:webpack-node-externals", + "data": { + "version": "3.0.0", + "packageName": "webpack-node-externals", + "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-subresource-integrity": { + "type": "npm", + "name": "npm:webpack-subresource-integrity", + "data": { + "version": "5.1.0", + "packageName": "webpack-subresource-integrity", + "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, "npm:whatwg-encoding": { "type": "npm", "name": "npm:whatwg-encoding", @@ -7887,6 +11392,15 @@ "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" } }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.1", + "packageName": "wildcard", + "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" + } + }, "npm:word-wrap": { "type": "npm", "name": "npm:word-wrap", @@ -7923,6 +11437,15 @@ "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" } }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.18.1", + "packageName": "ws", + "hash": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==" + } + }, "npm:y18n": { "type": "npm", "name": "npm:y18n", @@ -7967,15 +11490,6 @@ "packageName": "yauzl", "hash": "sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==" } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } } }, "dependencies": { @@ -8008,6 +11522,113 @@ "type": "static" } ], + "@triliumnext/server": [ + { + "source": "@triliumnext/server", + "target": "npm:express", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "@triliumnext/commons", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:qs", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:chokidar", + "type": "dynamic" + }, + { + "source": "@triliumnext/server", + "target": "npm:vitest", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:axios", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "@triliumnext/turndown-plugin-gfm", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:sax", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "@triliumnext/server", + "target": "npm:@nx/webpack", + "type": "static" + } + ], "npm:@ampproject/remapping": [ { "source": "npm:@ampproject/remapping", @@ -9381,6 +13002,91 @@ "type": "static" } ], + "npm:@babel/plugin-transform-react-constant-elements": [ + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-display-name": [ + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx": [ + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-development": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-pure-annotations": [ + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], "npm:@babel/plugin-transform-regenerator": [ { "source": "npm:@babel/plugin-transform-regenerator", @@ -9998,6 +13704,43 @@ "type": "static" } ], + "npm:@babel/preset-react": [ + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + } + ], "npm:@babel/preset-typescript": [ { "source": "npm:@babel/preset-typescript", @@ -10887,6 +14630,18 @@ "type": "static" } ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], "npm:@jridgewell/trace-mapping": [ { "source": "npm:@jridgewell/trace-mapping", @@ -10899,6 +14654,47 @@ "type": "static" } ], + "npm:@jsonjoy.com/base64": [ + { + "source": "npm:@jsonjoy.com/base64", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@jsonjoy.com/json-pack": [ + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:@jsonjoy.com/base64", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:@jsonjoy.com/util", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:hyperdyperid", + "type": "static" + }, + { + "source": "npm:@jsonjoy.com/json-pack", + "target": "npm:thingies", + "type": "static" + } + ], + "npm:@jsonjoy.com/util": [ + { + "source": "npm:@jsonjoy.com/util", + "target": "npm:tslib", + "type": "static" + } + ], "npm:@napi-rs/nice": [ { "source": "npm:@napi-rs/nice", @@ -11530,6 +15326,220 @@ "type": "static" } ], + "npm:@nx/webpack": [ + { + "source": "npm:@nx/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:less-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:license-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-import", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:sass-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:stylus-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:ts-loader", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tsconfig-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-node-externals", + "type": "static" + }, + { + "source": "npm:@nx/webpack", + "target": "npm:webpack-subresource-integrity", + "type": "static" + } + ], + "npm:ajv@8.17.1": [ + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.17.1", + "target": "npm:require-from-string", + "type": "static" + } + ], "npm:@nx/workspace": [ { "source": "npm:@nx/workspace", @@ -11572,6 +15582,93 @@ "type": "static" } ], + "npm:@parcel/watcher": [ + { + "source": "npm:@parcel/watcher", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-android-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-darwin-x64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-freebsd-x64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm64-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-x64-glibc", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-arm64", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-ia32", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:@parcel/watcher-win32-x64", + "type": "static" + } + ], "npm:@phenomnomnominal/tsquery": [ { "source": "npm:@phenomnomnominal/tsquery", @@ -11584,6 +15681,63 @@ "type": "static" } ], + "npm:@pmmmwh/react-refresh-webpack-plugin": [ + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:ansi-html", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:source-map@0.7.4", + "type": "static" + } + ], "npm:@sinonjs/commons": [ { "source": "npm:@sinonjs/commons", @@ -11598,6 +15752,266 @@ "type": "static" } ], + "npm:@svgr/babel-plugin-add-jsx-attribute": [ + { + "source": "npm:@svgr/babel-plugin-add-jsx-attribute", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-remove-jsx-attribute": [ + { + "source": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-remove-jsx-empty-expression": [ + { + "source": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-replace-jsx-attribute-value": [ + { + "source": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-svg-dynamic-title": [ + { + "source": "npm:@svgr/babel-plugin-svg-dynamic-title", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-svg-em-dimensions": [ + { + "source": "npm:@svgr/babel-plugin-svg-em-dimensions", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-transform-react-native-svg": [ + { + "source": "npm:@svgr/babel-plugin-transform-react-native-svg", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-plugin-transform-svg-component": [ + { + "source": "npm:@svgr/babel-plugin-transform-svg-component", + "target": "npm:@babel/core", + "type": "static" + } + ], + "npm:@svgr/babel-preset": [ + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-add-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-dynamic-title", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-em-dimensions", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-react-native-svg", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-svg-component", + "type": "static" + } + ], + "npm:@svgr/core": [ + { + "source": "npm:@svgr/core", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:snake-case", + "type": "static" + } + ], + "npm:cosmiconfig@8.3.6": [ + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.3.6", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:@svgr/hast-util-to-babel-ast": [ + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:entities", + "type": "static" + } + ], + "npm:@svgr/plugin-jsx": [ + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/hast-util-to-babel-ast", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:svg-parser", + "type": "static" + } + ], + "npm:@svgr/plugin-svgo": [ + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:cosmiconfig@8.3.6", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:@svgr/webpack": [ + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/plugin-transform-react-constant-elements", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-svgo", + "type": "static" + } + ], "npm:@swc-node/core": [ { "source": "npm:@swc-node/core", @@ -11876,6 +16290,112 @@ "type": "static" } ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/eslint-scope": [ + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + } + ], "npm:@types/graceful-fs": [ { "source": "npm:@types/graceful-fs", @@ -11883,6 +16403,13 @@ "type": "static" } ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + } + ], "npm:@types/istanbul-lib-report": [ { "source": "npm:@types/istanbul-lib-report", @@ -11897,6 +16424,63 @@ "type": "static" } ], + "npm:@types/node-forge": [ + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/send": [ + { + "source": "npm:@types/send", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/send", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + } + ], "npm:@types/yargs": [ { "source": "npm:@types/yargs", @@ -12358,6 +16942,242 @@ "type": "static" } ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webpack-cli/configtest": [ + { + "source": "npm:@webpack-cli/configtest", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/configtest", + "target": "npm:webpack-cli", + "type": "static" + } + ], + "npm:@webpack-cli/info": [ + { + "source": "npm:@webpack-cli/info", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/info", + "target": "npm:webpack-cli", + "type": "static" + } + ], + "npm:@webpack-cli/serve": [ + { + "source": "npm:@webpack-cli/serve", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@webpack-cli/serve", + "target": "npm:webpack-cli", + "type": "static" + } + ], "npm:@xhmikosr/archive-type": [ { "source": "npm:@xhmikosr/archive-type", @@ -12645,6 +17465,20 @@ "type": "static" } ], + "npm:ajv-formats": [ + { + "source": "npm:ajv-formats", + "target": "npm:ajv@8.17.1", + "type": "static" + } + ], + "npm:ajv-keywords": [ + { + "source": "npm:ajv-keywords", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], "npm:ansi-escapes": [ { "source": "npm:ansi-escapes", @@ -12671,6 +17505,43 @@ "type": "static" } ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], "npm:axios": [ { "source": "npm:axios", @@ -12730,6 +17601,28 @@ "type": "static" } ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], "npm:babel-plugin-const-enum": [ { "source": "npm:babel-plugin-const-enum", @@ -13155,6 +18048,18 @@ "type": "static" } ], + "npm:bonjour-service": [ + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + } + ], "npm:brace-expansion": [ { "source": "npm:brace-expansion", @@ -13210,6 +18115,13 @@ "type": "static" } ], + "npm:bundle-name": [ + { + "source": "npm:bundle-name", + "target": "npm:run-applescript", + "type": "static" + } + ], "npm:cacheable-request": [ { "source": "npm:cacheable-request", @@ -13271,6 +18183,28 @@ "type": "static" } ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], "npm:chai": [ { "source": "npm:chai", @@ -13310,6 +18244,55 @@ "type": "static" } ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent@5.1.2", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:glob-parent@5.1.2": [ + { + "source": "npm:glob-parent@5.1.2", + "target": "npm:is-glob", + "type": "static" + } + ], "npm:cli-cursor": [ { "source": "npm:cli-cursor", @@ -13334,6 +18317,23 @@ "type": "static" } ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], "npm:color-convert": [ { "source": "npm:color-convert", @@ -13360,6 +18360,50 @@ "type": "static" } ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:negotiator@0.6.4", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], "npm:content-disposition": [ { "source": "npm:content-disposition", @@ -13367,6 +18411,50 @@ "type": "static" } ], + "npm:copy-anything": [ + { + "source": "npm:copy-anything", + "target": "npm:is-what", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], "npm:core-js-compat": [ { "source": "npm:core-js-compat", @@ -13418,6 +18506,336 @@ "type": "static" } ], + "npm:css-declaration-sorter": [ + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-minimizer-webpack-plugin": [ + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssnano": [ + { + "source": "npm:cssnano", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano-utils": [ + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:csso": [ + { + "source": "npm:csso", + "target": "npm:css-tree@2.2.1", + "type": "static" + } + ], + "npm:css-tree@2.2.1": [ + { + "source": "npm:css-tree@2.2.1", + "target": "npm:mdn-data@2.0.28", + "type": "static" + }, + { + "source": "npm:css-tree@2.2.1", + "target": "npm:source-map-js", + "type": "static" + } + ], "npm:debug": [ { "source": "npm:debug", @@ -13439,6 +18857,18 @@ "type": "static" } ], + "npm:default-browser": [ + { + "source": "npm:default-browser", + "target": "npm:bundle-name", + "type": "static" + }, + { + "source": "npm:default-browser", + "target": "npm:default-browser-id", + "type": "static" + } + ], "npm:defaults": [ { "source": "npm:defaults", @@ -13458,6 +18888,73 @@ "type": "static" } ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dot-case": [ + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + } + ], "npm:dotenv-expand": [ { "source": "npm:dotenv-expand", @@ -13496,6 +18993,18 @@ "type": "static" } ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], "npm:enquirer": [ { "source": "npm:enquirer", @@ -13503,6 +19012,13 @@ "type": "static" } ], + "npm:errno": [ + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + } + ], "npm:error-ex": [ { "source": "npm:error-ex", @@ -13510,6 +19026,13 @@ "type": "static" } ], + "npm:error-stack-parser": [ + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + } + ], "npm:es-object-atoms": [ { "source": "npm:es-object-atoms", @@ -14182,13 +19705,6 @@ "type": "static" } ], - "npm:glob-parent@5.1.2": [ - { - "source": "npm:glob-parent@5.1.2", - "target": "npm:is-glob", - "type": "static" - } - ], "npm:fastq": [ { "source": "npm:fastq", @@ -14196,6 +19712,13 @@ "type": "static" } ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], "npm:fb-watchman": [ { "source": "npm:fb-watchman", @@ -14323,6 +19846,18 @@ "type": "static" } ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + } + ], "npm:find-up": [ { "source": "npm:find-up", @@ -14366,6 +19901,102 @@ "type": "static" } ], + "npm:fork-ts-checker-webpack-plugin": [ + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch@3.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:ajv-keywords@3.5.2": [ + { + "source": "npm:ajv-keywords@3.5.2", + "target": "npm:ajv", + "type": "static" + } + ], + "npm:schema-utils@3.3.0": [ + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords@3.5.2", + "type": "static" + } + ], "npm:form-data": [ { "source": "npm:form-data", @@ -14395,6 +20026,23 @@ "type": "static" } ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], "npm:get-intrinsic": [ { "source": "npm:get-intrinsic", @@ -14498,6 +20146,38 @@ "type": "static" } ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], "npm:got": [ { "source": "npm:got", @@ -14576,6 +20256,72 @@ "type": "static" } ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:readable-stream@2.3.8": [ + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:string_decoder@1.1.1": [ + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], "npm:html-encoding-sniffer": [ { "source": "npm:html-encoding-sniffer", @@ -14627,6 +20373,38 @@ "type": "static" } ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], "npm:http-server": [ { "source": "npm:http-server", @@ -14713,6 +20491,13 @@ "type": "static" } ], + "npm:icss-utils": [ + { + "source": "npm:icss-utils", + "target": "npm:postcss", + "type": "static" + } + ], "npm:identity-obj-proxy": [ { "source": "npm:identity-obj-proxy", @@ -14732,6 +20517,25 @@ "type": "static" } ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir@4.2.0", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:pkg-dir@4.2.0": [ + { + "source": "npm:pkg-dir@4.2.0", + "target": "npm:find-up@4.1.0", + "type": "static" + } + ], "npm:inflight": [ { "source": "npm:inflight", @@ -14751,6 +20555,13 @@ "type": "static" } ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], "npm:is-core-module": [ { "source": "npm:is-core-module", @@ -14765,6 +20576,20 @@ "type": "static" } ], + "npm:is-inside-container": [ + { + "source": "npm:is-inside-container", + "target": "npm:is-docker@3.0.0", + "type": "static" + } + ], + "npm:is-plain-object": [ + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + } + ], "npm:is-wsl": [ { "source": "npm:is-wsl", @@ -15926,6 +21751,18 @@ "type": "static" } ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], "npm:keyv": [ { "source": "npm:keyv", @@ -15933,6 +21770,99 @@ "type": "static" } ], + "npm:launch-editor": [ + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + } + ], + "npm:less": [ + { + "source": "npm:less", + "target": "npm:copy-anything", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:needle", + "type": "static" + }, + { + "source": "npm:less", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:less-loader": [ + { + "source": "npm:less-loader", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:less-loader", + "target": "npm:klona", + "type": "static" + } + ], + "npm:make-dir@2.1.0": [ + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.2", + "type": "static" + } + ], "npm:levn": [ { "source": "npm:levn", @@ -15945,6 +21875,30 @@ "type": "static" } ], + "npm:license-webpack-plugin": [ + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:loader-utils": [ + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + } + ], "npm:locate-path": [ { "source": "npm:locate-path", @@ -15964,6 +21918,13 @@ "type": "static" } ], + "npm:lower-case": [ + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + } + ], "npm:lru-cache": [ { "source": "npm:lru-cache", @@ -16009,6 +21970,13 @@ "type": "static" } ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], "npm:micromatch": [ { "source": "npm:micromatch", @@ -16028,6 +21996,18 @@ "type": "static" } ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + } + ], "npm:minimatch": [ { "source": "npm:minimatch", @@ -16035,6 +22015,42 @@ "type": "static" } ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:needle": [ + { + "source": "npm:needle", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:needle", + "target": "npm:sax", + "type": "static" + } + ], + "npm:no-case": [ + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + } + ], "npm:npm-package-arg": [ { "source": "npm:npm-package-arg", @@ -16064,6 +22080,13 @@ "type": "static" } ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], "npm:nx": [ { "source": "npm:nx", @@ -16422,6 +22445,23 @@ "type": "static" } ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:is-network-error", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + } + ], "npm:parent-module": [ { "source": "npm:parent-module", @@ -16470,6 +22510,46 @@ "type": "static" } ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up@6.3.0", + "type": "static" + } + ], + "npm:find-up@6.3.0": [ + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + } + ], + "npm:locate-path@7.2.0": [ + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + } + ], + "npm:p-limit@4.0.0": [ + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.2.1", + "type": "static" + } + ], + "npm:p-locate@6.0.0": [ + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + } + ], "npm:portfinder": [ { "source": "npm:portfinder", @@ -16499,6 +22579,516 @@ "type": "static" } ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-discard-comments": [ + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-duplicates": [ + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-empty": [ + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-overridden": [ + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-import": [ + { + "source": "npm:postcss-import", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:read-cache", + "type": "static" + }, + { + "source": "npm:postcss-import", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:postcss-loader": [ + { + "source": "npm:postcss-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-extract-imports": [ + { + "source": "npm:postcss-modules-extract-imports", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser@7.1.0", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-selector-parser@7.1.0": [ + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@7.1.0", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser@7.1.0", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + } + ], + "npm:postcss-normalize-charset": [ + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], "npm:pretty-format": [ { "source": "npm:pretty-format", @@ -16535,6 +23125,13 @@ "type": "static" } ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], "npm:raw-body": [ { "source": "npm:raw-body", @@ -16557,6 +23154,13 @@ "type": "static" } ], + "npm:read-cache": [ + { + "source": "npm:read-cache", + "target": "npm:pify", + "type": "static" + } + ], "npm:readable-stream": [ { "source": "npm:readable-stream", @@ -16574,6 +23178,20 @@ "type": "static" } ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:rechoir": [ + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + } + ], "npm:regenerate-unicode-properties": [ { "source": "npm:regenerate-unicode-properties", @@ -16644,6 +23262,13 @@ "type": "static" } ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from@5.0.0", + "type": "static" + } + ], "npm:responselike": [ { "source": "npm:responselike", @@ -16782,6 +23407,228 @@ "type": "static" } ], + "npm:rxjs": [ + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:sass": [ + { + "source": "npm:sass", + "target": "npm:chokidar@4.0.3", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:@parcel/watcher", + "type": "static" + } + ], + "npm:sass-embedded": [ + { + "source": "npm:sass-embedded", + "target": "npm:@bufbuild/protobuf", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:buffer-builder", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:colorjs.io", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sync-child-process", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:varint", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-android-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-darwin-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-darwin-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-arm", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-musl-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-linux-x64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-arm64", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-ia32", + "type": "static" + }, + { + "source": "npm:sass-embedded", + "target": "npm:sass-embedded-win32-x64", + "type": "static" + } + ], + "npm:sass-loader": [ + { + "source": "npm:sass-loader", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:chokidar@4.0.3": [ + { + "source": "npm:chokidar@4.0.3", + "target": "npm:readdirp@4.1.2", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@8.17.1", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], "npm:seek-bzip": [ { "source": "npm:seek-bzip", @@ -16789,6 +23636,18 @@ "type": "static" } ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], "npm:semver-truncate": [ { "source": "npm:semver-truncate", @@ -16863,6 +23722,72 @@ "type": "static" } ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + } + ], "npm:serve-static": [ { "source": "npm:serve-static", @@ -16885,6 +23810,13 @@ "type": "static" } ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + } + ], "npm:shebang-command": [ { "source": "npm:shebang-command", @@ -16997,6 +23929,35 @@ "type": "static" } ], + "npm:snake-case": [ + { + "source": "npm:snake-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:snake-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], "npm:sort-keys": [ { "source": "npm:sort-keys", @@ -17011,6 +23972,23 @@ "type": "static" } ], + "npm:source-map-loader": [ + { + "source": "npm:source-map-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + } + ], "npm:source-map-support": [ { "source": "npm:source-map-support", @@ -17023,6 +24001,65 @@ "type": "static" } ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], "npm:stack-utils": [ { "source": "npm:stack-utils", @@ -17138,6 +24175,79 @@ "type": "static" } ], + "npm:style-loader": [ + { + "source": "npm:style-loader", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:stylus": [ + { + "source": "npm:stylus", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:stylus", + "target": "npm:source-map@0.7.4", + "type": "static" + } + ], + "npm:stylus-loader": [ + { + "source": "npm:stylus-loader", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylus-loader", + "target": "npm:normalize-path", + "type": "static" + } + ], "npm:supports-color": [ { "source": "npm:supports-color", @@ -17145,6 +24255,50 @@ "type": "static" } ], + "npm:svgo": [ + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:sync-child-process": [ + { + "source": "npm:sync-child-process", + "target": "npm:sync-message-port", + "type": "static" + } + ], "npm:tar-stream": [ { "source": "npm:tar-stream", @@ -17172,6 +24326,77 @@ "type": "static" } ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support@0.5.21", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], "npm:test-exclude": [ { "source": "npm:test-exclude", @@ -17196,6 +24421,13 @@ "type": "static" } ], + "npm:thingies": [ + { + "source": "npm:thingies", + "target": "npm:tslib", + "type": "static" + } + ], "npm:tinyglobby": [ { "source": "npm:tinyglobby", @@ -17227,6 +24459,13 @@ "type": "static" } ], + "npm:tree-dump": [ + { + "source": "npm:tree-dump", + "target": "npm:tslib", + "type": "static" + } + ], "npm:ts-api-utils": [ { "source": "npm:ts-api-utils", @@ -17234,6 +24473,43 @@ "type": "static" } ], + "npm:ts-loader": [ + { + "source": "npm:ts-loader", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:source-map@0.7.4", + "type": "static" + } + ], "npm:tsconfig-paths": [ { "source": "npm:tsconfig-paths", @@ -17251,6 +24527,23 @@ "type": "static" } ], + "npm:tsconfig-paths-webpack-plugin": [ + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths", + "type": "static" + } + ], "npm:type-check": [ { "source": "npm:type-check", @@ -17380,6 +24673,31 @@ "target": "npm:jiti", "type": "static" }, + { + "source": "npm:vite", + "target": "npm:less", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sass-embedded", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:stylus", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:terser", + "type": "static" + }, { "source": "npm:vite", "target": "npm:esbuild", @@ -17567,6 +24885,25 @@ "type": "static" } ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], "npm:wcwidth": [ { "source": "npm:wcwidth", @@ -17574,6 +24911,488 @@ "type": "static" } ], + "npm:webpack": [ + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope@5.1.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:webpack-cli": [ + { + "source": "npm:webpack-cli", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/configtest", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/info", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/serve", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs@4.17.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:memfs@4.17.0": [ + { + "source": "npm:memfs@4.17.0", + "target": "npm:@jsonjoy.com/json-pack", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:@jsonjoy.com/util", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:tree-dump", + "type": "static" + }, + { + "source": "npm:memfs@4.17.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.2.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open@10.1.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", + "type": "static" + } + ], + "npm:is-wsl@3.1.0": [ + { + "source": "npm:is-wsl@3.1.0", + "target": "npm:is-inside-container", + "type": "static" + } + ], + "npm:open@10.1.1": [ + { + "source": "npm:open@10.1.1", + "target": "npm:default-browser", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:define-lazy-prop@3.0.0", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:is-inside-container", + "type": "static" + }, + { + "source": "npm:open@10.1.1", + "target": "npm:is-wsl@3.1.0", + "type": "static" + } + ], + "npm:webpack-merge": [ + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + } + ], + "npm:webpack-subresource-integrity": [ + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:webpack-subresource-integrity", + "target": "npm:typed-assert", + "type": "static" + } + ], + "npm:eslint-scope@5.1.1": [ + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@5.1.1", + "target": "npm:estraverse@4.3.0", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], "npm:whatwg-encoding": [ { "source": "npm:whatwg-encoding", @@ -17698,5 +25517,5 @@ }, "version": "6.0", "errors": [], - "computedAt": 1745331056585 + "computedAt": 1745331640093 } \ No newline at end of file diff --git a/.nx/workspace-data/source-maps.json b/.nx/workspace-data/source-maps.json index 7257f6b71..dbeaf4987 100644 --- a/.nx/workspace-data/source-maps.json +++ b/.nx/workspace-data/source-maps.json @@ -1,4 +1,378 @@ { + "apps/server": { + "root": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "projectType": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets": [ + "apps/server/tsconfig.app.json", + "@nx/js/typescript" + ], + "targets.typecheck": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.dependsOn": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.cache": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.inputs": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.outputs": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.syncGenerators": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.executor": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options.cwd": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options.command": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.technologies": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.technologies.0": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.description": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help.command": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help.example": [ + "apps/server/tsconfig.json", + "@nx/js/typescript" + ], + "targets.lint": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.cache": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.inputs": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.outputs": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.executor": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options.cwd": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options.command": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.technologies": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.technologies.0": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.description": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help.command": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help.example": [ + "apps/server/eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.build": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.options": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.cache": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.dependsOn": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.inputs": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.outputs": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.syncGenerators": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.executor": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.options.cwd": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.options.args": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.options.command": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.technologies": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.technologies.0": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.description": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.help": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.help.command": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build.metadata.help.example": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.options": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.syncGenerators": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.executor": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.options.cwd": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.options.args": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.options.command": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.technologies": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.technologies.0": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.description": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.help": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.help.command": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.preview.metadata.help.example": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build-deps": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.build-deps.dependsOn": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.watch-deps": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.watch-deps.dependsOn": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.watch-deps.executor": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.watch-deps.options": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "targets.watch-deps.options.command": [ + "apps/server/webpack.config.cjs", + "@nx/webpack/plugin" + ], + "name": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "tags": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.executor": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.defaultConfiguration": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.dependsOn": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.options": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.configurations": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.options.buildTarget": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.options.runBuildTargetDependencies": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.configurations.development": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.configurations.development.buildTarget": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.configurations.production": [ + "apps/server/package.json", + "nx/core/package-json" + ], + "targets.serve.configurations.production.buildTarget": [ + "apps/server/package.json", + "nx/core/package-json" + ] + }, "packages/commons": { "root": [ "packages/commons/package.json", diff --git a/.nx/workspace-data/tsc-2568428459166798129.hash b/.nx/workspace-data/tsc-2568428459166798129.hash index e112f6769..4aba4c378 100644 --- a/.nx/workspace-data/tsc-2568428459166798129.hash +++ b/.nx/workspace-data/tsc-2568428459166798129.hash @@ -1 +1 @@ -{"11869391778795483303__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.js","{projectRoot}/*.ts","{projectRoot}/*.js","{projectRoot}/spec/**/*.ts","!{projectRoot}/node_modules/**/*","!{projectRoot}/spec-es6/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15245114416479820821__regroup/tsconfig.webpack.json":{"targets":{}},"13561622157985728922__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14093822253295871777__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"7047387383306593424__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15278217660991004003__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14098683966078983814__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4523360418648941323__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15502824874048194340__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5174094915127372198__regroup/tsconfig.webpack.json":{"targets":{}},"9941204692689511145__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"8111885867260379424__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5075580413691806581__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"426201073132973769__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15053296202139263368__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10868516203616069637__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"9659040931357452508_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/tsconfig.spec.json","{projectRoot}/src/**/*.ts","{projectRoot}/vite.config.ts","{projectRoot}/vite.config.mts","{projectRoot}/vitest.config.ts","{projectRoot}/vitest.config.mts","{projectRoot}/src/**/*.test.ts","{projectRoot}/src/**/*.spec.ts","{projectRoot}/src/**/*.test.tsx","{projectRoot}/src/**/*.spec.tsx","{projectRoot}/src/**/*.test.js","{projectRoot}/src/**/*.spec.js","{projectRoot}/src/**/*.test.jsx","{projectRoot}/src/**/*.spec.jsx","{projectRoot}/src/**/*.d.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/**/*.d.ts.map","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10173870156370054417_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","!{projectRoot}/vite.config.ts","!{projectRoot}/vite.config.mts","!{projectRoot}/vitest.config.ts","!{projectRoot}/vitest.config.mts","!{projectRoot}/src/**/*.test.ts","!{projectRoot}/src/**/*.spec.ts","!{projectRoot}/src/**/*.test.tsx","!{projectRoot}/src/**/*.spec.tsx","!{projectRoot}/src/**/*.test.js","!{projectRoot}/src/**/*.spec.js","!{projectRoot}/src/**/*.test.jsx","!{projectRoot}/src/**/*.spec.jsx","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11264567673388099205_packages/commons/tsconfig.spec.json":{"targets":{}},"16782754694229818149_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"6708952039663629775_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"17963845691318875640_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"16724140825541265297_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"446711750461411440_packages/commons/tsconfig.spec.json":{"targets":{}},"3583048222942495945_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10685646216986991918_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"12052439073960207432_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"11543128045602451525_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11989379759940113972_packages/commons/tsconfig.spec.json":{"targets":{}},"6633854095138480774_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4051508563218644354_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"9973278072213781835_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14305784527737301942_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"430931643453205819_packages/commons/tsconfig.spec.json":{"targets":{}},"8754161402161349464_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14556271566748501968_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}}} \ No newline at end of file +{"11869391778795483303__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.js","{projectRoot}/*.ts","{projectRoot}/*.js","{projectRoot}/spec/**/*.ts","!{projectRoot}/node_modules/**/*","!{projectRoot}/spec-es6/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15245114416479820821__regroup/tsconfig.webpack.json":{"targets":{}},"13561622157985728922__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14093822253295871777__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"7047387383306593424__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15278217660991004003__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14098683966078983814__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4523360418648941323__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15502824874048194340__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5174094915127372198__regroup/tsconfig.webpack.json":{"targets":{}},"9941204692689511145__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"8111885867260379424__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5075580413691806581__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"426201073132973769__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15053296202139263368__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10868516203616069637__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"9659040931357452508_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/tsconfig.spec.json","{projectRoot}/src/**/*.ts","{projectRoot}/vite.config.ts","{projectRoot}/vite.config.mts","{projectRoot}/vitest.config.ts","{projectRoot}/vitest.config.mts","{projectRoot}/src/**/*.test.ts","{projectRoot}/src/**/*.spec.ts","{projectRoot}/src/**/*.test.tsx","{projectRoot}/src/**/*.spec.tsx","{projectRoot}/src/**/*.test.js","{projectRoot}/src/**/*.spec.js","{projectRoot}/src/**/*.test.jsx","{projectRoot}/src/**/*.spec.jsx","{projectRoot}/src/**/*.d.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/**/*.d.ts.map","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10173870156370054417_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","!{projectRoot}/vite.config.ts","!{projectRoot}/vite.config.mts","!{projectRoot}/vitest.config.ts","!{projectRoot}/vitest.config.mts","!{projectRoot}/src/**/*.test.ts","!{projectRoot}/src/**/*.spec.ts","!{projectRoot}/src/**/*.test.tsx","!{projectRoot}/src/**/*.spec.tsx","!{projectRoot}/src/**/*.test.js","!{projectRoot}/src/**/*.spec.js","!{projectRoot}/src/**/*.test.jsx","!{projectRoot}/src/**/*.spec.jsx","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11264567673388099205_packages/commons/tsconfig.spec.json":{"targets":{}},"16782754694229818149_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"6708952039663629775_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"17963845691318875640_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"16724140825541265297_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"446711750461411440_packages/commons/tsconfig.spec.json":{"targets":{}},"3583048222942495945_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10685646216986991918_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"12052439073960207432_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"11543128045602451525_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11989379759940113972_packages/commons/tsconfig.spec.json":{"targets":{}},"6633854095138480774_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4051508563218644354_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"9973278072213781835_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14305784527737301942_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"430931643453205819_packages/commons/tsconfig.spec.json":{"targets":{}},"8754161402161349464_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14556271566748501968_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"1218543614511154024_apps/server/tsconfig.app.json":{"targets":{}},"13022090216736643664_apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.app.json","{projectRoot}/src/**/*.ts","!{projectRoot}/eslint.config.js","!{projectRoot}/eslint.config.cjs","!{projectRoot}/eslint.config.mjs","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.app.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"6633546298440938957_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"1269165483612597225_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"6576260687656218119_packages/commons/tsconfig.spec.json":{"targets":{}},"5853182699724184825_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"1700684929880200726_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"13092194863715381383_apps/server/tsconfig.app.json":{"targets":{}},"10692448312077625632_apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.app.json","{projectRoot}/src/**/*.ts","!{projectRoot}/eslint.config.js","!{projectRoot}/eslint.config.cjs","!{projectRoot}/eslint.config.mjs",{"dependentTasksOutputFiles":"**/*.d.ts"},{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.app.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15558445217977666350_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production",{"dependentTasksOutputFiles":"**/*.d.ts"},{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}}} \ No newline at end of file diff --git a/.nx/workspace-data/tsconfig-files.hash b/.nx/workspace-data/tsconfig-files.hash index 20cfc0d57..f255ee7fb 100644 --- a/.nx/workspace-data/tsconfig-files.hash +++ b/.nx/workspace-data/tsconfig-files.hash @@ -1 +1 @@ -{"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"},{"path":"packages/turndown-plugin-gfm","originalPath":"./packages/turndown-plugin-gfm"}]},"extendedFilesHash":"8900268571896142108|","hash":"8784381935299652134"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"},"packages/turndown-plugin-gfm/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"15856989918287211863"},"packages/turndown-plugin-gfm/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/turndown-plugin-gfm/src","outDir":"packages/turndown-plugin-gfm/dist","tsBuildInfoFile":"packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3418659308031652674"}}} \ No newline at end of file +{"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"},{"path":"packages/turndown-plugin-gfm","originalPath":"./packages/turndown-plugin-gfm"},{"path":"apps/server","originalPath":"./apps/server"}]},"extendedFilesHash":"8900268571896142108|","hash":"16310354267596464911"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"},"packages/turndown-plugin-gfm/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"15856989918287211863"},"packages/turndown-plugin-gfm/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/turndown-plugin-gfm/src","outDir":"packages/turndown-plugin-gfm/dist","tsBuildInfoFile":"packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3418659308031652674"},"apps/server/tsconfig.app.json":{"data":{"options":{"rootDir":"apps/server/src","outDir":"apps/server/dist","tsBuildInfoFile":"apps/server/dist/tsconfig.app.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"../../packages/turndown-plugin-gfm/tsconfig.lib.json"},{"path":"packages/commons/tsconfig.lib.json","originalPath":"../../packages/commons/tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3694477791020167376"},"apps/server/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm","originalPath":"../../packages/turndown-plugin-gfm"},{"path":"packages/commons","originalPath":"../../packages/commons"},{"path":"apps/server/tsconfig.app.json","originalPath":"./tsconfig.app.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"5761948780426366458"}}} \ No newline at end of file diff --git a/.nx/workspace-data/vite-9347777721732807074.hash b/.nx/workspace-data/vite-9347777721732807074.hash index cfd4bb87b..0ce3d7581 100644 --- a/.nx/workspace-data/vite-9347777721732807074.hash +++ b/.nx/workspace-data/vite-9347777721732807074.hash @@ -538,5 +538,275 @@ }, "metadata": {}, "projectType": "application" + }, + "430956368856284591packages/commons/vite.config.ts": { + "targets": { + "test": { + "command": "vitest", + "options": { + "cwd": "packages/commons" + }, + "cache": true, + "inputs": [ + "default", + "^production", + { + "externalDependencies": [ + "vitest" + ] + }, + { + "env": "CI" + } + ], + "outputs": [ + "{projectRoot}/test-output/vitest/coverage" + ], + "metadata": { + "technologies": [ + "vite" + ], + "description": "Run Vite tests", + "help": { + "command": "npx vitest --help", + "example": { + "options": { + "bail": 1, + "coverage": true + } + } + } + } + }, + "typecheck": { + "cache": true, + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "typescript" + ] + } + ], + "command": "tsc --build --emitDeclarationOnly", + "options": { + "cwd": "packages/commons" + }, + "metadata": { + "description": "Runs type-checking for the project.", + "technologies": [ + "typescript" + ], + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "dependsOn": [ + "^typecheck" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons" + } + }, + "metadata": {}, + "projectType": "application" + }, + "2565236826186505184packages/commons/vite.config.ts": { + "targets": { + "test": { + "command": "vitest", + "options": { + "cwd": "packages/commons" + }, + "cache": true, + "inputs": [ + "default", + "^production", + { + "externalDependencies": [ + "vitest" + ] + }, + { + "env": "CI" + } + ], + "outputs": [ + "{projectRoot}/test-output/vitest/coverage" + ], + "metadata": { + "technologies": [ + "vite" + ], + "description": "Run Vite tests", + "help": { + "command": "npx vitest --help", + "example": { + "options": { + "bail": 1, + "coverage": true + } + } + } + } + }, + "typecheck": { + "cache": true, + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "typescript" + ] + } + ], + "command": "tsc --build --emitDeclarationOnly", + "options": { + "cwd": "packages/commons" + }, + "metadata": { + "description": "Runs type-checking for the project.", + "technologies": [ + "typescript" + ], + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "dependsOn": [ + "^typecheck" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons" + } + }, + "metadata": {}, + "projectType": "application" + }, + "17978826188511034385packages/commons/vite.config.ts": { + "targets": { + "test": { + "command": "vitest", + "options": { + "cwd": "packages/commons" + }, + "cache": true, + "inputs": [ + "default", + "^production", + { + "externalDependencies": [ + "vitest" + ] + }, + { + "env": "CI" + } + ], + "outputs": [ + "{projectRoot}/test-output/vitest/coverage" + ], + "metadata": { + "technologies": [ + "vite" + ], + "description": "Run Vite tests", + "help": { + "command": "npx vitest --help", + "example": { + "options": { + "bail": 1, + "coverage": true + } + } + } + } + }, + "typecheck": { + "cache": true, + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "typescript" + ] + } + ], + "command": "tsc --build --emitDeclarationOnly", + "options": { + "cwd": "packages/commons" + }, + "metadata": { + "description": "Runs type-checking for the project.", + "technologies": [ + "typescript" + ], + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "dependsOn": [ + "^typecheck" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons" + } + }, + "metadata": {}, + "projectType": "application" } } \ No newline at end of file diff --git a/.nx/workspace-data/webpack-5621830741124012108.hash b/.nx/workspace-data/webpack-5621830741124012108.hash new file mode 100644 index 000000000..555f9fcb7 --- /dev/null +++ b/.nx/workspace-data/webpack-5621830741124012108.hash @@ -0,0 +1,266 @@ +{ + "4292219826307574011": { + "targets": { + "build": { + "command": "webpack-cli build", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ] + }, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "webpack-cli" + ] + } + ], + "outputs": [ + "{workspaceRoot}/apps/server/dist" + ], + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Runs Webpack build", + "help": { + "command": "npx webpack-cli build --help", + "example": { + "options": { + "json": "stats.json" + }, + "args": [ + "--profile" + ] + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "serve": { + "command": "webpack-cli serve", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=development" + ] + }, + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Starts Webpack dev server", + "help": { + "command": "npx webpack-cli serve --help", + "example": { + "options": { + "args": [ + "--client-progress", + "--history-api-fallback " + ] + } + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "preview": { + "command": "webpack-cli serve", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ] + }, + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Starts Webpack dev server in production mode", + "help": { + "command": "npx webpack-cli serve --help", + "example": { + "options": { + "args": [ + "--client-progress", + "--history-api-fallback " + ] + } + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "serve-static": { + "dependsOn": [ + "build" + ], + "executor": "@nx/web:file-server", + "options": { + "buildTarget": "build", + "spa": true + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/server --includeDependentProjects -- npx nx build-deps @triliumnext/server" + } + }, + "metadata": {} + }, + "5623873423254742817": { + "targets": { + "build": { + "command": "webpack-cli build", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ] + }, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "webpack-cli" + ] + } + ], + "outputs": [ + "{workspaceRoot}/apps/server/dist" + ], + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Runs Webpack build", + "help": { + "command": "npx webpack-cli build --help", + "example": { + "options": { + "json": "stats.json" + }, + "args": [ + "--profile" + ] + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "serve": { + "command": "webpack-cli serve", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=development" + ] + }, + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Starts Webpack dev server", + "help": { + "command": "npx webpack-cli serve --help", + "example": { + "options": { + "args": [ + "--client-progress", + "--history-api-fallback " + ] + } + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "preview": { + "command": "webpack-cli serve", + "options": { + "cwd": "apps/server", + "args": [ + "--node-env=production" + ] + }, + "metadata": { + "technologies": [ + "webpack" + ], + "description": "Starts Webpack dev server in production mode", + "help": { + "command": "npx webpack-cli serve --help", + "example": { + "options": { + "args": [ + "--client-progress", + "--history-api-fallback " + ] + } + } + } + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "serve-static": { + "dependsOn": [ + "build" + ], + "executor": "@nx/web:file-server", + "options": { + "buildTarget": "build", + "spa": true + }, + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/server --includeDependentProjects -- npx nx build-deps @triliumnext/server" + } + }, + "metadata": {} + } +} \ No newline at end of file diff --git a/apps/server/tsconfig.app.json b/apps/server/tsconfig.app.json index b293e155d..8eb611f1e 100644 --- a/apps/server/tsconfig.app.json +++ b/apps/server/tsconfig.app.json @@ -16,5 +16,13 @@ "eslint.config.js", "eslint.config.cjs", "eslint.config.mjs" + ], + "references": [ + { + "path": "../../packages/turndown-plugin-gfm/tsconfig.lib.json" + }, + { + "path": "../../packages/commons/tsconfig.lib.json" + } ] } diff --git a/apps/server/tsconfig.json b/apps/server/tsconfig.json index 816e3f36f..4e631031b 100644 --- a/apps/server/tsconfig.json +++ b/apps/server/tsconfig.json @@ -3,6 +3,12 @@ "files": [], "include": [], "references": [ + { + "path": "../../packages/turndown-plugin-gfm" + }, + { + "path": "../../packages/commons" + }, { "path": "./tsconfig.app.json" } diff --git a/apps/server/webpack.config.js b/apps/server/webpack.config.cjs similarity index 100% rename from apps/server/webpack.config.js rename to apps/server/webpack.config.cjs diff --git a/tsconfig.json b/tsconfig.json index a93fc7ee1..7cbfafa9b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,9 +9,6 @@ { "path": "./packages/turndown-plugin-gfm" }, - { - "path": "./apps/server-e2e" - }, { "path": "./apps/server" }