├── .devcontainer
└── devcontainer.json
├── .github
├── FUNDING.yml
└── workflows
│ ├── main.yml
│ └── release.yml
├── resources
└── screenshots
│ └── sidebar.png
├── .gitignore
├── versions.json
├── .prettierrc
├── tsconfig.json
├── manifest.json
├── styles.css
├── package.json
├── esbuild.config.mjs
├── README.md
├── .eslintrc.js
├── LICENSE
├── main.ts
└── yarn.lock
/.devcontainer/devcontainer.json:
--------------------------------------------------------------------------------
1 | {
2 | "image": "node:lts-buster"
3 | }
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [tgrosinger]
2 | custom: ["https://paypal.me/tgrosinger", "https://buymeacoffee.com/tgrosinger"]
3 |
--------------------------------------------------------------------------------
/resources/screenshots/sidebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tgrosinger/recent-files-obsidian/HEAD/resources/screenshots/sidebar.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Intellij
2 | *.iml
3 | .idea
4 |
5 | # npm
6 | node_modules
7 | package-lock.json
8 | yarn-cache
9 |
10 | # build
11 | main.js
12 | *.js.map
--------------------------------------------------------------------------------
/versions.json:
--------------------------------------------------------------------------------
1 | {
2 | "1.6.0": "1.7.2",
3 | "1.5.0": "1.6.3",
4 | "1.3.9": "1.5.3",
5 | "1.3.6": "1.3.2",
6 | "1.3.4": "0.16.3",
7 | "1.0.0": "0.11.6",
8 | "0.1.0": "0.9.12"
9 | }
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true,
3 | "tabWidth": 2,
4 | "trailingComma": "all",
5 | "overrides": [
6 | {
7 | "files": ".prettierrc",
8 | "options": {
9 | "parser": "json"
10 | }
11 | },
12 | {
13 | "files": "*.yml",
14 | "options": {
15 | "tabWidth": 2,
16 | "singleQuote": false
17 | }
18 | }
19 | ]
20 | }
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 | on:
3 | push:
4 | branches: [main]
5 | pull_request:
6 | branches: [main]
7 | jobs:
8 | eslint:
9 | runs-on: ubuntu-latest
10 | steps:
11 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
12 | - uses: actions/checkout@v2
13 |
14 | - name: Install modules
15 | run: yarn
16 |
17 | - name: Run build
18 | run: yarn run build
19 |
20 | - name: Run ESLint
21 | run: yarn run eslint
22 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "baseUrl": ".",
4 | "inlineSourceMap": true,
5 | "inlineSources": true,
6 | "module": "ESNext",
7 | "target": "ES6",
8 | "allowJs": true,
9 | "noImplicitAny": true,
10 | "moduleResolution": "node",
11 | "importHelpers": true,
12 | "isolatedModules": true,
13 | "strictNullChecks": true,
14 | "lib": [
15 | "DOM",
16 | "ES5",
17 | "ES6",
18 | "ES7"
19 | ]
20 | },
21 | "include": [
22 | "**/*.ts"
23 | ]
24 | }
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "recent-files-obsidian",
3 | "name": "Recent Files",
4 | "version": "1.7.5",
5 | "minAppVersion": "0.16.3",
6 | "description": "List files by most recently opened",
7 | "author": "Tony Grosinger",
8 | "authorUrl": "https://grosinger.net",
9 | "isDesktopOnly": false,
10 | "fundingUrl": {
11 | "Github Sponsor": "https://github.com/sponsors/tgrosinger",
12 | "Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
13 | "Paypal": "https://paypal.me/tgrosinger"
14 | },
15 | "donation": "https://buymeacoffee.com/tgrosinger"
16 | }
--------------------------------------------------------------------------------
/styles.css:
--------------------------------------------------------------------------------
1 | .recent-files-file {
2 | .tree-item-spacer {
3 | flex-grow: 1;
4 | }
5 | }
6 |
7 | .recent-files-title {
8 | justify-content: flex-start;
9 | align-items: unset;
10 | }
11 |
12 | .recent-files-file-delete {
13 | justify-content: right;
14 | display: none;
15 | }
16 |
17 | .recent-files-title:hover .recent-files-file-delete {
18 | display: flex;
19 | cursor: var(--cursor);
20 | }
21 |
22 | .recent-files-file-delete:hover {
23 | color: var(--nav-item-color-hover);
24 | }
25 |
26 | .recent-files-donation {
27 | width: 70%;
28 | margin: 0 auto;
29 | text-align: center;
30 | }
31 |
32 | .recent-files-donate-button {
33 | margin: 10px;
34 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "recent-files-obsidian",
3 | "version": "1.7.5",
4 | "description": "List files by most recently opened",
5 | "main": "main.js",
6 | "scripts": {
7 | "dev": "node esbuild.config.mjs",
8 | "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
9 | "eslint": "eslint . --ext .ts,.tsx --fix"
10 | },
11 | "keywords": [],
12 | "author": "Tony Grosinger",
13 | "license": "GPL-3.0",
14 | "devDependencies": {
15 | "@types/node": "20.11.6",
16 | "@typescript-eslint/eslint-plugin": "6.19.1",
17 | "@typescript-eslint/parser": "6.19.1",
18 | "builtin-modules": "3.3.0",
19 | "esbuild": "0.21.3",
20 | "eslint": "8.56.0",
21 | "eslint-plugin-babel": "5.3.1",
22 | "eslint-plugin-import": "2.29.1",
23 | "eslint-plugin-jsdoc": "48.0.2",
24 | "eslint-plugin-prefer-arrow": "1.2.3",
25 | "eslint-plugin-simple-import-sort": "10.0.0",
26 | "front-matter-plugin-api-provider": "0.1.4-alpha",
27 | "obsidian": "https://github.com/obsidianmd/obsidian-api/archive/23947b58d372ea02225324308e31d36b4aa95869.tar.gz",
28 | "tslib": "2.6.2",
29 | "typescript": "5.3.3"
30 | }
31 | }
--------------------------------------------------------------------------------
/esbuild.config.mjs:
--------------------------------------------------------------------------------
1 | import esbuild from "esbuild";
2 | import process from "process";
3 | import builtins from "builtin-modules";
4 |
5 | const banner =
6 | `/*
7 | THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
8 | if you want to view the source, please visit the github repository of this plugin
9 | */
10 | `;
11 |
12 | const prod = (process.argv[2] === "production");
13 |
14 | const context = await esbuild.context({
15 | banner: {
16 | js: banner,
17 | },
18 | entryPoints: ["main.ts"],
19 | bundle: true,
20 | external: [
21 | "obsidian",
22 | "electron",
23 | "@codemirror/autocomplete",
24 | "@codemirror/collab",
25 | "@codemirror/commands",
26 | "@codemirror/language",
27 | "@codemirror/lint",
28 | "@codemirror/search",
29 | "@codemirror/state",
30 | "@codemirror/view",
31 | "@lezer/common",
32 | "@lezer/highlight",
33 | "@lezer/lr",
34 | ...builtins],
35 | format: "cjs",
36 | target: "es2018",
37 | logLevel: "info",
38 | sourcemap: prod ? false : "inline",
39 | treeShaking: true,
40 | outfile: "main.js",
41 | minify: prod,
42 | });
43 |
44 | if (prod) {
45 | await context.rebuild();
46 | process.exit(0);
47 | } else {
48 | await context.watch();
49 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Recent Files for Obsidian
2 |
3 | This plugin displays a list of most recently opened files in the sidebar.
4 | Optionally, exclude certain paths, frontmatter tags, or bookmarked files.
5 |
6 | That's all there is to it!
7 |
8 | As with the file explorer view, you can:
9 |
10 | * Click items to open, ctrl-click to open in a new pane, right-click for a menu
11 | * Drag items to an editor to drop a link, to a header to open in a specific pane, or to a file explorer folder to move the file
12 | * Hover or ctrl-hover to view a content preview (as configured by the "Recent Files" toggle in the "Page Preview" settings)
13 |
14 | ## Screenshots
15 |
16 | 
17 |
18 | ## Other Plugin Support
19 |
20 | If you use the [Front Matter Title plugin](https://github.com/snezhig/obsidian-front-matter-title), enable the explorer module to name files in the Recent Files sidebar from the note frontmatter title.
21 |
22 | ## Pricing
23 |
24 | This plugin is provided to everyone for free, however if you would like to
25 | say thanks or help support continued development, feel free to send a little
26 | my way through one of the following methods:
27 |
28 | [](https://github.com/sponsors/tgrosinger)
29 | [](https://paypal.me/tgrosinger)
30 | [](https://www.buymeacoffee.com/tgrosinger)
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: Release
2 | on:
3 | push:
4 | tags: ["*"]
5 | env:
6 | PLUGIN_NAME: recent-files-obsidian
7 | jobs:
8 | build:
9 | runs-on: ubuntu-latest
10 | steps:
11 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
12 | - uses: actions/checkout@v2
13 |
14 | - name: Install modules
15 | run: yarn
16 |
17 | - name: Run build
18 | run: yarn run build
19 |
20 | - name: Package
21 | run: |
22 | mkdir ${{ env.PLUGIN_NAME }}
23 | cp main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}
24 | zip -r ${{ env.PLUGIN_NAME}}.zip ${{ env.PLUGIN_NAME }}
25 | echo "tag_name=$(git tag --sort version:refname | tail -n 1)" >> $GITHUB_OUTPUT
26 |
27 | - name: Create Release
28 | id: create_release
29 | uses: actions/create-release@v1
30 | env:
31 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32 | VERSION: ${{ github.ref }}
33 | with:
34 | tag_name: ${{ github.ref }}
35 | release_name: ${{ github.ref }}
36 | draft: true
37 | prerelease: false
38 |
39 | - name: Upload artifacts
40 | id: upload-artifacts
41 | uses: actions/upload-release-asset@v1
42 | env:
43 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44 | with:
45 | upload_url: ${{ steps.create_release.outputs.upload_url }}
46 | asset_path: ./${{ env.PLUGIN_NAME }}.zip
47 | asset_name: ${{ env.PLUGIN_NAME }}-${{ github.ref }}.zip
48 | asset_content_type: application/zip
49 |
50 | - name: Upload main.js
51 | id: upload-main
52 | uses: actions/upload-release-asset@v1
53 | env:
54 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55 | with:
56 | upload_url: ${{ steps.create_release.outputs.upload_url }}
57 | asset_path: ./main.js
58 | asset_name: main.js
59 | asset_content_type: text/javascript
60 |
61 | - name: Upload manifest.json
62 | id: upload-manifest
63 | uses: actions/upload-release-asset@v1
64 | env:
65 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66 | with:
67 | upload_url: ${{ steps.create_release.outputs.upload_url }}
68 | asset_path: ./manifest.json
69 | asset_name: manifest.json
70 | asset_content_type: application/json
71 |
72 | - name: Upload styles.css
73 | id: upload-styles
74 | uses: actions/upload-release-asset@v1
75 | env:
76 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77 | with:
78 | upload_url: ${{ steps.create_release.outputs.upload_url }}
79 | asset_path: ./styles.css
80 | asset_name: styles.css
81 | asset_content_type: text/css
82 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | parser: "@typescript-eslint/parser",
4 | parserOptions: {
5 | ecmaVersion: 2020,
6 | sourceType: "module",
7 | project: ["./tsconfig.json"],
8 | },
9 | plugins: [
10 | "@typescript-eslint",
11 | "babel",
12 | "import",
13 | "jsdoc",
14 | "prefer-arrow",
15 | ],
16 | rules: {
17 | "@typescript-eslint/array-type": "error",
18 | "@typescript-eslint/await-thenable": "error",
19 | "@typescript-eslint/consistent-type-assertions": "error",
20 | "@typescript-eslint/consistent-type-definitions": "error",
21 | "@typescript-eslint/explicit-function-return-type": [
22 | "error",
23 | { allowExpressions: true },
24 | ],
25 | "@typescript-eslint/explicit-member-accessibility": [
26 | "error",
27 | {
28 | accessibility: "explicit",
29 | overrides: {
30 | accessors: "explicit",
31 | constructors: "off",
32 | parameterProperties: "explicit",
33 | },
34 | },
35 | ],
36 | "@typescript-eslint/member-ordering": [
37 | "error",
38 | {
39 | default: [
40 | "public-static-field",
41 | "protected-static-field",
42 | "private-static-field",
43 | "public-static-method",
44 | "protected-static-method",
45 | "private-static-method",
46 | "public-instance-field",
47 | "protected-instance-field",
48 | "private-instance-field",
49 | "constructor",
50 | "public-instance-method",
51 | "protected-instance-method",
52 | "private-instance-method",
53 | ],
54 | },
55 | ],
56 | "@typescript-eslint/naming-convention": [
57 | "error",
58 | {
59 | selector: "variable",
60 | format: ["camelCase", "PascalCase", "snake_case", "UPPER_CASE"],
61 | leadingUnderscore: "allow",
62 | },
63 | { selector: "typeLike", format: ["PascalCase"] },
64 | { selector: "enumMember", format: ["PascalCase"] },
65 | ],
66 | "@typescript-eslint/no-explicit-any": "error",
67 | "@typescript-eslint/no-extraneous-class": "error",
68 | "@typescript-eslint/no-namespace": "error",
69 | "@typescript-eslint/no-non-null-assertion": "error",
70 | "@typescript-eslint/no-explicit-any": "error",
71 | "@typescript-eslint/no-this-alias": ["error", { allowDestructuring: true }],
72 | "@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
73 | "@typescript-eslint/no-unnecessary-type-assertion": "error",
74 | "@typescript-eslint/no-unused-expressions": "error",
75 | "@typescript-eslint/prefer-function-type": "error",
76 | "@typescript-eslint/prefer-readonly": "error",
77 | "@typescript-eslint/quotes": ["error", "single", { avoidEscape: true }],
78 | "arrow-body-style": ["error", "as-needed"],
79 | "babel/no-invalid-this": "error",
80 | "constructor-super": "error",
81 | curly: ["error", "multi-line"],
82 | eqeqeq: "error",
83 | "import/no-duplicates": "error",
84 | "jsdoc/check-alignment": "error",
85 | "new-parens": "error",
86 | "no-caller": "error",
87 | "no-cond-assign": ["error", "always"],
88 | "no-debugger": "error",
89 | "no-duplicate-case": "error",
90 | "no-else-return": "error",
91 | "no-empty": "error",
92 | "no-eval": "error",
93 | "no-fallthrough": "error",
94 | "no-new-wrappers": "error",
95 | "no-param-reassign": "error",
96 | "no-restricted-globals": [
97 | "error",
98 | "length",
99 | "name",
100 | {
101 | name: "isFinite",
102 | message: "Use the more strict Number.isFinite.",
103 | },
104 | {
105 | name: "isNaN",
106 | message: "Use the more strict Number.isNaN.",
107 | },
108 | ],
109 | "no-restricted-properties": [
110 | "error",
111 | {
112 | property: "bind",
113 | message: "Native? Use an arrow function. jQuery? Use .on()",
114 | },
115 | ],
116 | "no-return-await": "error",
117 | "no-self-compare": "error",
118 | "no-shadow": "off",
119 | "@typescript-eslint/no-shadow": "error",
120 | "no-sequences": "error",
121 | "no-sparse-arrays": "error",
122 | "no-template-curly-in-string": "error",
123 | "no-throw-literal": "error",
124 | "no-unsafe-finally": "error",
125 | "no-var": "error",
126 | "no-with": "error",
127 | "object-shorthand": "error",
128 | "one-var": ["error", "never"],
129 | "prefer-arrow/prefer-arrow-functions": "error",
130 | "prefer-const": ["error", { destructuring: "all" }],
131 | "prefer-object-spread": "error",
132 | "prefer-rest-params": "error",
133 | radix: "error",
134 | "spaced-comment": [
135 | "error",
136 | "always",
137 | {
138 | line: { markers: ["#region", "#endregion"] },
139 | block: { balanced: true },
140 | },
141 | ],
142 | "use-isnan": "error",
143 | "linebreak-style": ["error", "unix"],
144 | },
145 | };
146 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/main.ts:
--------------------------------------------------------------------------------
1 | import {
2 | addIcon,
3 | App,
4 | ItemView,
5 | Keymap,
6 | Menu,
7 | Notice,
8 | PaneType,
9 | Plugin,
10 | PluginSettingTab,
11 | setIcon,
12 | setTooltip,
13 | Setting,
14 | TAbstractFile,
15 | TFile,
16 | WorkspaceLeaf,
17 | } from 'obsidian';
18 |
19 | import { getApiSafe } from 'front-matter-plugin-api-provider';
20 |
21 | interface FilePath {
22 | path: string;
23 | basename: string;
24 | }
25 |
26 | interface BookmarkedFile {
27 | ctime: number;
28 | path: string;
29 | type: string;
30 | }
31 |
32 | interface RecentFilesData {
33 | recentFiles: FilePath[];
34 | omittedPaths: string[];
35 | omittedTags: string[];
36 | omitBookmarks: boolean;
37 | updateOn: 'file-edit' | 'file-open';
38 | maxLength?: number;
39 | }
40 |
41 | const defaultMaxLength: number = 50;
42 |
43 | const DEFAULT_DATA: RecentFilesData = {
44 | recentFiles: [],
45 | omittedPaths: [],
46 | omittedTags: [],
47 | updateOn: 'file-open',
48 | omitBookmarks: false,
49 | };
50 |
51 | const RecentFilesListViewType = 'recent-files';
52 |
53 | class RecentFilesListView extends ItemView {
54 | private readonly plugin: RecentFilesPlugin;
55 | private readonly data: RecentFilesData;
56 |
57 | constructor(
58 | leaf: WorkspaceLeaf,
59 | plugin: RecentFilesPlugin,
60 | data: RecentFilesData,
61 | ) {
62 | super(leaf);
63 |
64 | this.plugin = plugin;
65 | this.data = data;
66 | }
67 |
68 | public async onOpen(): Promise {
69 | this.redraw();
70 | }
71 |
72 | public getViewType(): string {
73 | return RecentFilesListViewType;
74 | }
75 |
76 | public getDisplayText(): string {
77 | return 'Recent Files';
78 | }
79 |
80 | public getIcon(): string {
81 | return 'clock';
82 | }
83 |
84 | public onPaneMenu(menu: Menu): void {
85 | menu
86 | .addItem((item) => {
87 | item
88 | .setTitle('Clear list')
89 | .setIcon('sweep')
90 | .onClick(async () => {
91 | this.data.recentFiles = [];
92 | await this.plugin.saveData();
93 | this.redraw();
94 | });
95 | })
96 | .addItem((item) => {
97 | item
98 | .setTitle('Close')
99 | .setIcon('cross')
100 | .onClick(() => {
101 | this.app.workspace.detachLeavesOfType(RecentFilesListViewType);
102 | });
103 | });
104 | }
105 |
106 | public readonly redraw = (): void => {
107 | const openFile = this.app.workspace.getActiveFile();
108 |
109 | const rootEl = createDiv({ cls: 'nav-folder mod-root' });
110 | const childrenEl = rootEl.createDiv({ cls: 'nav-folder-children' });
111 |
112 | // Add support for the Front Matter Title plugin (https://github.com/snezhig/obsidian-front-matter-title)
113 | // Get the plugin's safe API and check if the plugin is enabled.
114 | // If the plugin is not installed, this will not create an error.
115 | const frontMatterApi = getApiSafe(this.app);
116 | // We query the "explorer" feature because it is the closest in form to this plugin's features.
117 | const frontMatterEnabled = frontMatterApi && frontMatterApi.getEnabledFeatures().contains('explorer');
118 | const frontMatterResolver = frontMatterEnabled
119 | ? frontMatterApi.getResolverFactory()?.createResolver('explorer')
120 | : null;
121 |
122 | this.data.recentFiles.forEach((currentFile) => {
123 | const navFile = childrenEl.createDiv({
124 | cls: 'tree-item nav-file recent-files-file',
125 | });
126 | const navFileTitle = navFile.createDiv({
127 | cls: 'tree-item-self is-clickable nav-file-title recent-files-title',
128 | });
129 | const navFileTitleContent = navFileTitle.createDiv({
130 | cls: 'tree-item-inner nav-file-title-content',
131 | });
132 | const navFileTag = navFileTitle.createDiv({
133 | cls: 'nav-file-tag'
134 | });
135 | const navFileSpacer = navFileTitle.createDiv({
136 | cls: 'tree-item-spacer'
137 | });
138 |
139 | // If the Front Matter Title plugin is enabled, get the file's title from the plugin.
140 | const title = frontMatterResolver
141 | ? frontMatterResolver.resolve(currentFile.path) ?? currentFile.basename
142 | : currentFile.basename;
143 |
144 | navFileTitleContent.setText(title);
145 |
146 | const tFile = this.app.vault.getFileByPath(currentFile.path);
147 | const extension = tFile?.extension
148 | if (extension && extension !== 'md') {
149 | navFileTag.setText(extension)
150 | }
151 |
152 | setTooltip(navFile, currentFile.path);
153 |
154 | if (openFile && currentFile.path === openFile.path) {
155 | navFileTitle.addClass('is-active');
156 | }
157 |
158 | navFileTitle.setAttr('draggable', 'true');
159 | navFileTitle.addEventListener('dragstart', (event: DragEvent) => {
160 | if (!currentFile?.path) return;
161 |
162 | const file = this.app.metadataCache.getFirstLinkpathDest(
163 | currentFile.path,
164 | '',
165 | );
166 |
167 | // eslint-disable-next-line @typescript-eslint/no-explicit-any
168 | const dragManager = (this.app as any).dragManager;
169 | const dragData = dragManager.dragFile(event, file);
170 | dragManager.onDragStart(event, dragData);
171 | });
172 |
173 | navFileTitle.addEventListener('mouseover', (event: MouseEvent) => {
174 | if (!currentFile?.path) return;
175 |
176 | this.app.workspace.trigger('hover-link', {
177 | event,
178 | source: RecentFilesListViewType,
179 | hoverParent: rootEl,
180 | targetEl: navFile,
181 | linktext: currentFile.path,
182 | });
183 | });
184 |
185 | navFileTitle.addEventListener('contextmenu', (event: MouseEvent) => {
186 | if (!currentFile?.path) return;
187 |
188 | const menu = new Menu();
189 | menu.addItem((item) =>
190 | item
191 | .setSection('action')
192 | .setTitle('Open in new tab')
193 | .setIcon('file-plus')
194 | .onClick(() => {
195 | this.focusFile(currentFile, 'tab');
196 | }),
197 | );
198 | const file = this.app.vault.getAbstractFileByPath(currentFile?.path);
199 | this.app.workspace.trigger(
200 | 'file-menu',
201 | menu,
202 | file,
203 | 'link-context-menu',
204 | );
205 | menu.showAtPosition({ x: event.clientX, y: event.clientY });
206 | });
207 |
208 | navFileTitle.addEventListener('click', (event: MouseEvent) => {
209 | if (!currentFile) return;
210 |
211 | const newLeaf = Keymap.isModEvent(event);
212 | this.focusFile(currentFile, newLeaf);
213 | });
214 |
215 | navFileTitleContent.addEventListener('mousedown', (event: MouseEvent) => {
216 | if (!currentFile) return;
217 |
218 | if (event.button === 1) {
219 | event.preventDefault();
220 | this.focusFile(currentFile, 'tab');
221 | }
222 | });
223 |
224 | const navFileDelete = navFileTitle.createDiv({
225 | cls: 'recent-files-file-delete menu-item-icon',
226 | });
227 | setIcon(navFileDelete, 'lucide-x');
228 | navFileDelete.addEventListener('click', async (event) => {
229 | event.stopPropagation();
230 |
231 | await this.removeFile(currentFile);
232 | this.redraw();
233 | });
234 | });
235 |
236 | this.contentEl.setChildrenInPlace([rootEl]);
237 | };
238 |
239 | private readonly removeFile = async (file: FilePath): Promise => {
240 | this.data.recentFiles = this.data.recentFiles.filter(
241 | (currFile) => currFile.path !== file.path,
242 | );
243 | await this.plugin.saveData();
244 | };
245 |
246 | /**
247 | * Open the provided file in the most recent leaf.
248 | *
249 | * @param shouldSplit Whether the file should be opened in a new split, or in
250 | * the most recent split. If the most recent split is pinned, this is set to
251 | * true.
252 | */
253 | private readonly focusFile = (file: FilePath, newLeaf: boolean | PaneType): void => {
254 | const targetFile = this.app.vault
255 | .getFiles()
256 | .find((f) => f.path === file.path);
257 |
258 | if (targetFile) {
259 | const leaf = this.app.workspace.getLeaf(newLeaf);
260 | leaf.openFile(targetFile);
261 | } else {
262 | new Notice('Cannot find a file with that name');
263 | this.data.recentFiles = this.data.recentFiles.filter(
264 | (fp) => fp.path !== file.path,
265 | );
266 | this.plugin.saveData();
267 | this.redraw();
268 | }
269 | };
270 | }
271 |
272 | export default class RecentFilesPlugin extends Plugin {
273 | public data: RecentFilesData;
274 | public view: RecentFilesListView | undefined;
275 |
276 | public async onload(): Promise {
277 | console.log('Recent Files: Loading plugin v' + this.manifest.version);
278 |
279 | await this.loadData();
280 |
281 | addIcon('sweep', sweepIcon);
282 |
283 | this.registerView(
284 | RecentFilesListViewType,
285 | (leaf) => (this.view = new RecentFilesListView(leaf, this, this.data)),
286 | );
287 |
288 | this.addCommand({
289 | id: 'recent-files-open',
290 | name: 'Open',
291 | callback: async () => {
292 | let leaf: WorkspaceLeaf | null;
293 | [leaf] = this.app.workspace.getLeavesOfType(
294 | RecentFilesListViewType,
295 | );
296 | if (!leaf) {
297 | leaf = this.app.workspace.getLeftLeaf(false);
298 | await leaf?.setViewState({ type: RecentFilesListViewType });
299 | }
300 |
301 | if (leaf) {
302 | this.app.workspace.revealLeaf(leaf);
303 | }
304 | },
305 | });
306 |
307 | // eslint-disable-next-line @typescript-eslint/no-explicit-any
308 | (this.app.workspace as any).registerHoverLinkSource(
309 | RecentFilesListViewType,
310 | {
311 | display: 'Recent Files',
312 | defaultMod: true,
313 | },
314 | );
315 |
316 | this.registerEvent(this.app.vault.on('rename', this.handleRename));
317 | this.registerEvent(this.app.vault.on('delete', this.handleDelete));
318 | this.registerEvent(this.app.workspace.on('file-open', this.onFileOpen));
319 |
320 | this.addSettingTab(new RecentFilesSettingTab(this.app, this));
321 | }
322 |
323 | public onunload(): void {
324 | // eslint-disable-next-line @typescript-eslint/no-explicit-any
325 | (this.app.workspace as any).unregisterHoverLinkSource(
326 | RecentFilesListViewType,
327 | );
328 | }
329 |
330 | public async loadData(): Promise {
331 | this.data = Object.assign(DEFAULT_DATA, await super.loadData());
332 | }
333 |
334 | public async saveData(): Promise {
335 | await super.saveData(this.data);
336 | }
337 |
338 | public async onExternalSettingsChange(): Promise {
339 | await this.loadData();
340 | await this.pruneLength();
341 | await this.pruneOmittedFiles();
342 | this.view?.redraw();
343 | }
344 |
345 | public readonly pruneOmittedFiles = async (): Promise => {
346 | const lengthBefore = this.data.recentFiles.length;
347 | this.data.recentFiles = this.data.recentFiles.filter(this.shouldAddFile);
348 | if (lengthBefore !== this.data.recentFiles.length) {
349 | await this.saveData();
350 | }
351 | };
352 |
353 | public readonly pruneLength = async (): Promise => {
354 | const toRemove =
355 | this.data.recentFiles.length - (this.data.maxLength || defaultMaxLength);
356 | if (toRemove > 0) {
357 | this.data.recentFiles.splice(
358 | this.data.recentFiles.length - toRemove,
359 | toRemove,
360 | );
361 | await this.saveData();
362 | }
363 | };
364 |
365 | public readonly shouldAddFile = (file: FilePath): boolean => {
366 | // Matches for ignored Paths
367 | const patterns: string[] = this.data.omittedPaths.filter(
368 | (path) => path.length > 0,
369 | );
370 | const fileMatchesRegex = (pattern: string): boolean => {
371 | try {
372 | return new RegExp(pattern).test(file.path);
373 | } catch (err) {
374 | console.error('Recent Files: Invalid regex pattern: ' + pattern);
375 | return false;
376 | }
377 | };
378 |
379 | if (patterns.some(fileMatchesRegex)) {
380 | return false;
381 | }
382 |
383 | // Matches for ignored Tags
384 | const tfile = this.app.vault.getFileByPath(file.path);
385 | if (tfile) {
386 | const omittedTags: string[] = this.data.omittedTags.filter(
387 | (tag) => tag.length > 0,
388 | );
389 |
390 | /*
391 | Tag(s) may be rendered in one of two ways. If only one tag is
392 | present, as a string:
393 | ```yaml
394 | tags: tag1
395 | ```
396 |
397 | or, if one or more tags are present, in an array:
398 | ```yaml
399 | tags:
400 | - tag1
401 | - journal/tag2
402 | ```
403 |
404 | If there are no tags, the `frontmatter.tags` array is empty.
405 | */
406 | const fileTags: string | string[] = this.app.metadataCache.getFileCache(tfile)?.frontmatter?.tags;
407 |
408 | /*
409 | Calling toString() here will flatten an array, or return the string.
410 | i.e., ["tag1", "journal/tag2"] will become "tag1,journal/tag2"
411 |
412 | Thus, permitting a normal regex match.
413 |
414 | Though undocumented, passing an array into RegExp.test() works as it is
415 | coerced it into a string as described.
416 | */
417 | const tagMatchesRegex = (pattern: string): boolean => {
418 | try {
419 | return new RegExp(pattern).test(fileTags.toString());
420 | } catch (err) {
421 | console.error('Recent Files: Invalid regex pattern: ' + pattern);
422 | return false;
423 | }
424 | };
425 |
426 | if (omittedTags.some(tagMatchesRegex)) {
427 | return false;
428 | }
429 | }
430 |
431 | // Matches for Bookmarks
432 | // @ts-ignore
433 | const bookmarksPlugin = this.app.internalPlugins.getEnabledPluginById('bookmarks');
434 | if (tfile && this.data.omitBookmarks && bookmarksPlugin) {
435 | const bookmarkedFiles: BookmarkedFile[] = bookmarksPlugin.items;
436 | if (bookmarkedFiles.some(({ path }) => path === tfile.path)) {
437 | return false;
438 | }
439 | }
440 |
441 | return true;
442 | };
443 |
444 | public onUserEnable(): void {
445 | // Open our view automatically only when the plugin is first enabled.
446 | this.app.workspace.ensureSideLeaf(RecentFilesListViewType, 'left', { reveal: true });
447 | }
448 |
449 | private readonly update = async (openedFile: TFile): Promise => {
450 | if (!openedFile) {
451 | return;
452 | }
453 |
454 | await this.updateData(openedFile);
455 |
456 | // Update the view if there is one.
457 | const leaf = this.app.workspace.getLeavesOfType(RecentFilesListViewType).first();
458 | if (leaf && leaf.view instanceof RecentFilesListView) {
459 | leaf.view.redraw();
460 | }
461 | };
462 |
463 | private readonly onFileOpen = async (openedFile: TFile): Promise => {
464 | if (!openedFile) {
465 | return;
466 | }
467 | if (this.data.updateOn === 'file-edit') {
468 | this.app.workspace.off('quick-preview', this.waitingForEdit);
469 | this.registerEvent(this.app.workspace.on('quick-preview', this.waitingForEdit))
470 | } else {
471 | this.update(openedFile);
472 | }
473 | // Update the view if there is one.
474 | // We redraw the leaf to handle active file highlighting.
475 | const leaf = this.app.workspace.getLeavesOfType(RecentFilesListViewType).first();
476 | if (leaf && leaf.view instanceof RecentFilesListView) {
477 | leaf.view.redraw();
478 | }
479 | }
480 |
481 | private readonly waitingForEdit = async (editedFile: TFile, data: string): Promise => {
482 | this.update(editedFile);
483 | this.app.workspace.off('quick-preview', this.waitingForEdit);
484 | }
485 |
486 | private readonly updateData = async (file: TFile): Promise => {
487 | const lengthBefore = this.data.recentFiles.length;
488 | this.data.recentFiles = this.data.recentFiles.filter(
489 | (currFile) => currFile.path !== file.path,
490 | );
491 | let needsSave = lengthBefore !== this.data.recentFiles.length;
492 |
493 | if (this.shouldAddFile(file)) {
494 | this.data.recentFiles.unshift({
495 | basename: file.basename,
496 | path: file.path,
497 | });
498 | needsSave = true;
499 | }
500 |
501 | await this.pruneLength();
502 | if (needsSave) {
503 | await this.saveData();
504 | }
505 | };
506 |
507 | private readonly handleRename = async (
508 | file: TAbstractFile,
509 | oldPath: string,
510 | ): Promise => {
511 |
512 | const entry = this.data.recentFiles.find(
513 | (recentFile) => recentFile.path === oldPath,
514 | );
515 | if (entry) {
516 | entry.path = file.path;
517 | entry.basename = this.trimExtension(file.name);
518 | this.view?.redraw();
519 | await this.saveData();
520 | }
521 | };
522 |
523 | private readonly handleDelete = async (
524 | file: TAbstractFile,
525 | ): Promise => {
526 | const beforeLen = this.data.recentFiles.length;
527 | this.data.recentFiles = this.data.recentFiles.filter(
528 | (recentFile) => recentFile.path !== file.path,
529 | );
530 |
531 | if (beforeLen !== this.data.recentFiles.length) {
532 | this.view?.redraw();
533 | await this.saveData();
534 | }
535 | };
536 |
537 | // trimExtension can be used to turn a filename into a basename when
538 | // interacting with a TAbstractFile that does not have a basename property.
539 | // private readonly trimExtension = (name: string): string => name.split('.')[0];
540 | // from: https://stackoverflow.com/a/4250408/617864
541 | private readonly trimExtension = (name: string): string =>
542 | name.replace(/\.[^/.]+$/, '');
543 | }
544 |
545 | class RecentFilesSettingTab extends PluginSettingTab {
546 | private readonly plugin: RecentFilesPlugin;
547 |
548 | constructor(app: App, plugin: RecentFilesPlugin) {
549 | super(app, plugin);
550 | this.plugin = plugin;
551 | }
552 |
553 | public display(): void {
554 | const { containerEl } = this;
555 | containerEl.empty();
556 |
557 | const patternFragment = document.createDocumentFragment();
558 | const link = document.createElement('a');
559 | link.href =
560 | 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#writing_a_regular_expression_pattern';
561 | link.text = 'MDN - Regular expressions';
562 | patternFragment.append('RegExp patterns to ignore. One pattern per line. See ');
563 | patternFragment.append(link);
564 | patternFragment.append(' for help.');
565 |
566 | new Setting(containerEl)
567 | .setName('Omitted pathname patterns')
568 | .setDesc(patternFragment)
569 | .addTextArea((textArea) => {
570 | textArea.inputEl.setAttr('rows', 6);
571 | textArea
572 | .setPlaceholder('^daily/\n\\.png$\nfoobar.*baz')
573 | .setValue(this.plugin.data.omittedPaths.join('\n'));
574 | textArea.inputEl.onblur = (e: FocusEvent) => {
575 | const patterns = (e.target as HTMLInputElement).value;
576 | this.plugin.data.omittedPaths = patterns.split('\n');
577 | this.plugin.pruneOmittedFiles();
578 | this.plugin.view?.redraw();
579 | };
580 | });
581 |
582 |
583 | const tagFragment = document.createDocumentFragment();
584 | tagFragment.append('Frontmatter-tag patterns to ignore. One pattern' +
585 | ' per line.');
586 |
587 | new Setting(containerEl)
588 | .setName('Omitted frontmatter-tag patterns')
589 | .setDesc(tagFragment)
590 | .addTextArea((textArea) => {
591 | textArea.inputEl.setAttr('rows', 6);
592 | textArea
593 | .setPlaceholder('ignore\narchive/a/b')
594 | .setValue(this.plugin.data.omittedTags.join('\n'));
595 | textArea.inputEl.onblur = (e: FocusEvent) => {
596 | const patterns = (e.target as HTMLInputElement).value;
597 | this.plugin.data.omittedTags = patterns.split('\n');
598 | this.plugin.pruneOmittedFiles();
599 | this.plugin.view?.redraw();
600 | };
601 | });
602 |
603 | new Setting(containerEl)
604 | .setName('Omit bookmarked files')
605 | .addToggle((toggle) => {
606 | toggle
607 | .setValue(this.plugin.data.omitBookmarks)
608 | .onChange((value) => {
609 | this.plugin.data.omitBookmarks = value;
610 | this.plugin.pruneOmittedFiles();
611 | this.plugin.view?.redraw();
612 | });
613 | });
614 |
615 | new Setting(containerEl)
616 | .setName('Update list when file is:')
617 | .addDropdown((dropdown) => {
618 | dropdown
619 | .addOption('file-open', 'Opened')
620 | .addOption('file-edit', 'Changed')
621 | .setValue(this.plugin.data.updateOn)
622 | .onChange((value: 'file-edit' | 'file-open') => {
623 | this.plugin.data.updateOn = value;
624 | this.plugin.pruneOmittedFiles();
625 | this.plugin.view?.redraw();
626 | });
627 | });
628 |
629 | new Setting(containerEl)
630 | .setName('List length')
631 | .setDesc('Maximum number of filenames to keep in the list.')
632 | .addText((text) => {
633 | text.inputEl.setAttr('type', 'number');
634 | text.inputEl.setAttr('placeholder', defaultMaxLength);
635 | text
636 | .setValue(this.plugin.data.maxLength?.toString() || '')
637 | .onChange((value) => {
638 | const parsed = parseInt(value, 10);
639 | if (!Number.isNaN(parsed) && parsed <= 0) {
640 | new Notice('List length must be a positive integer');
641 | return;
642 | }
643 | });
644 | text.inputEl.onblur = (e: FocusEvent) => {
645 | const maxfiles = (e.target as HTMLInputElement).value;
646 | const parsed = parseInt(maxfiles, 10);
647 | this.plugin.data.maxLength = parsed;
648 | this.plugin.pruneLength();
649 | this.plugin.view?.redraw();
650 | };
651 | });
652 |
653 | const div = containerEl.createEl('div', {
654 | cls: 'recent-files-donation',
655 | });
656 |
657 | const donateText = document.createElement('p');
658 | donateText.appendText(
659 | 'If this plugin adds value for you and you would like to help support ' +
660 | 'continued development, please use the buttons below:',
661 | );
662 | div.appendChild(donateText);
663 |
664 | const parser = new DOMParser();
665 |
666 | div.appendChild(
667 | createDonateButton(
668 | 'https://paypal.me/tgrosinger',
669 | parser.parseFromString(paypal, 'text/xml').documentElement,
670 | ),
671 | );
672 |
673 | div.appendChild(
674 | createDonateButton(
675 | 'https://www.buymeacoffee.com/tgrosinger',
676 | parser.parseFromString(buyMeACoffee, 'text/xml').documentElement,
677 | ),
678 | );
679 | }
680 | }
681 |
682 | const createDonateButton = (link: string, img: HTMLElement): HTMLElement => {
683 | const a = document.createElement('a');
684 | a.setAttribute('href', link);
685 | a.addClass('recent-files-donate-button');
686 | a.appendChild(img);
687 | return a;
688 | };
689 |
690 | const sweepIcon = `
691 | `;
699 |
700 | const buyMeACoffee = `
701 | `;
723 |
724 | const paypal = `
725 | `;
733 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@aashutoshrathi/word-wrap@^1.2.3":
6 | version "1.2.6"
7 | resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz"
8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
9 |
10 | "@es-joy/jsdoccomment@~0.41.0":
11 | version "0.41.0"
12 | resolved "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz"
13 | integrity sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==
14 | dependencies:
15 | comment-parser "1.4.1"
16 | esquery "^1.5.0"
17 | jsdoc-type-pratt-parser "~4.0.0"
18 |
19 | "@esbuild/aix-ppc64@0.21.3":
20 | version "0.21.3"
21 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz#78d3e6dcd19c1cb91f3940143e86dad1094aee81"
22 | integrity sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==
23 |
24 | "@esbuild/android-arm64@0.21.3":
25 | version "0.21.3"
26 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz#5eea56c21d61734942e050840d881eb7bedc3993"
27 | integrity sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==
28 |
29 | "@esbuild/android-arm@0.21.3":
30 | version "0.21.3"
31 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.3.tgz#7fda92e3231043c071ea6aa76c92accea86439fd"
32 | integrity sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==
33 |
34 | "@esbuild/android-x64@0.21.3":
35 | version "0.21.3"
36 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.3.tgz#625d139bde81b81f54ff493b1381ca0f540200f3"
37 | integrity sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==
38 |
39 | "@esbuild/darwin-arm64@0.21.3":
40 | version "0.21.3"
41 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz#fa25f38a43ff4c469589d1dc93448d534d7f313b"
42 | integrity sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==
43 |
44 | "@esbuild/darwin-x64@0.21.3":
45 | version "0.21.3"
46 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz#2e450b8214f179a56b4559b2f107060e2b792c7e"
47 | integrity sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==
48 |
49 | "@esbuild/freebsd-arm64@0.21.3":
50 | version "0.21.3"
51 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz#f6b29e07bce25c545f6f7bb031d3be6a6ea1dc50"
52 | integrity sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==
53 |
54 | "@esbuild/freebsd-x64@0.21.3":
55 | version "0.21.3"
56 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz#1a5da2bf89f8d67102820d893d271a270ae55751"
57 | integrity sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==
58 |
59 | "@esbuild/linux-arm64@0.21.3":
60 | version "0.21.3"
61 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz#355f6624c1ac6f5f68841a327ac90b98c679626c"
62 | integrity sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==
63 |
64 | "@esbuild/linux-arm@0.21.3":
65 | version "0.21.3"
66 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz#872a476ca18a962a98700024c447a79279db1d45"
67 | integrity sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==
68 |
69 | "@esbuild/linux-ia32@0.21.3":
70 | version "0.21.3"
71 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz#da713eb80ff6c011ed01aa4deebb5fc758906046"
72 | integrity sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==
73 |
74 | "@esbuild/linux-loong64@0.21.3":
75 | version "0.21.3"
76 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz#a7c5dc9e961009018d23ec53a43baa8c03c5a1d5"
77 | integrity sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==
78 |
79 | "@esbuild/linux-mips64el@0.21.3":
80 | version "0.21.3"
81 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz#b97543f3d8655365729f3702ed07f6e41be5e48e"
82 | integrity sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==
83 |
84 | "@esbuild/linux-ppc64@0.21.3":
85 | version "0.21.3"
86 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz#23b9064d5bc0bf28a115a2f9cf69f3b01cdfe01c"
87 | integrity sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==
88 |
89 | "@esbuild/linux-riscv64@0.21.3":
90 | version "0.21.3"
91 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz#4f2536327f6d444c0573bd35bbd3a67897dbd5da"
92 | integrity sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==
93 |
94 | "@esbuild/linux-s390x@0.21.3":
95 | version "0.21.3"
96 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz#05e6f3a12a0dcd60672f25e8789a83cd3affa487"
97 | integrity sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==
98 |
99 | "@esbuild/linux-x64@0.21.3":
100 | version "0.21.3"
101 | resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz"
102 | integrity sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==
103 |
104 | "@esbuild/netbsd-x64@0.21.3":
105 | version "0.21.3"
106 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz#309d8c323632e9c70ee92cf5414fa65b5eb7e00e"
107 | integrity sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==
108 |
109 | "@esbuild/openbsd-x64@0.21.3":
110 | version "0.21.3"
111 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz#28820f9431fe00f2b04aac57511754213ff060eb"
112 | integrity sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==
113 |
114 | "@esbuild/sunos-x64@0.21.3":
115 | version "0.21.3"
116 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz#a1f7f98b85bd221fe0f545d01abc0e6123ae60dc"
117 | integrity sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==
118 |
119 | "@esbuild/win32-arm64@0.21.3":
120 | version "0.21.3"
121 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz#c6c3c0b1a1dfc6327ef4db6aa4fb6efd9df531f7"
122 | integrity sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==
123 |
124 | "@esbuild/win32-ia32@0.21.3":
125 | version "0.21.3"
126 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz#471b8d2cad1bd6479eee5acf04bba2c0e4d37e24"
127 | integrity sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==
128 |
129 | "@esbuild/win32-x64@0.21.3":
130 | version "0.21.3"
131 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz#899c03576c4c28c83228f0e64dfa10edae99c9a2"
132 | integrity sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==
133 |
134 | "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
135 | version "4.4.0"
136 | resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
137 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
138 | dependencies:
139 | eslint-visitor-keys "^3.3.0"
140 |
141 | "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1":
142 | version "4.10.0"
143 | resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz"
144 | integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
145 |
146 | "@eslint/eslintrc@^2.1.4":
147 | version "2.1.4"
148 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz"
149 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
150 | dependencies:
151 | ajv "^6.12.4"
152 | debug "^4.3.2"
153 | espree "^9.6.0"
154 | globals "^13.19.0"
155 | ignore "^5.2.0"
156 | import-fresh "^3.2.1"
157 | js-yaml "^4.1.0"
158 | minimatch "^3.1.2"
159 | strip-json-comments "^3.1.1"
160 |
161 | "@eslint/js@8.56.0":
162 | version "8.56.0"
163 | resolved "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz"
164 | integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==
165 |
166 | "@humanwhocodes/config-array@^0.11.13":
167 | version "0.11.14"
168 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz"
169 | integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==
170 | dependencies:
171 | "@humanwhocodes/object-schema" "^2.0.2"
172 | debug "^4.3.1"
173 | minimatch "^3.0.5"
174 |
175 | "@humanwhocodes/module-importer@^1.0.1":
176 | version "1.0.1"
177 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
178 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
179 |
180 | "@humanwhocodes/object-schema@^2.0.2":
181 | version "2.0.2"
182 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz"
183 | integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==
184 |
185 | "@nodelib/fs.scandir@2.1.5":
186 | version "2.1.5"
187 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
188 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
189 | dependencies:
190 | "@nodelib/fs.stat" "2.0.5"
191 | run-parallel "^1.1.9"
192 |
193 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
194 | version "2.0.5"
195 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
196 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
197 |
198 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
199 | version "1.2.8"
200 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
201 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
202 | dependencies:
203 | "@nodelib/fs.scandir" "2.1.5"
204 | fastq "^1.6.0"
205 |
206 | "@types/codemirror@5.60.8":
207 | version "5.60.8"
208 | resolved "https://registry.npmjs.org/@types/codemirror/-/codemirror-5.60.8.tgz"
209 | integrity sha512-VjFgDF/eB+Aklcy15TtOTLQeMjTo07k7KAjql8OK5Dirr7a6sJY4T1uVBDuTVG9VEmn1uUsohOpYnVfgC6/jyw==
210 | dependencies:
211 | "@types/tern" "*"
212 |
213 | "@types/estree@*":
214 | version "0.0.39"
215 | resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"
216 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
217 |
218 | "@types/json-schema@^7.0.12":
219 | version "7.0.15"
220 | resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz"
221 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
222 |
223 | "@types/json5@^0.0.29":
224 | version "0.0.29"
225 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
226 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
227 |
228 | "@types/node@20.11.6":
229 | version "20.11.6"
230 | resolved "https://registry.npmjs.org/@types/node/-/node-20.11.6.tgz"
231 | integrity sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==
232 | dependencies:
233 | undici-types "~5.26.4"
234 |
235 | "@types/semver@^7.5.0":
236 | version "7.5.6"
237 | resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz"
238 | integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==
239 |
240 | "@types/tern@*":
241 | version "0.23.9"
242 | resolved "https://registry.npmjs.org/@types/tern/-/tern-0.23.9.tgz"
243 | integrity sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==
244 | dependencies:
245 | "@types/estree" "*"
246 |
247 | "@typescript-eslint/eslint-plugin@6.19.1":
248 | version "6.19.1"
249 | resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.1.tgz"
250 | integrity sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==
251 | dependencies:
252 | "@eslint-community/regexpp" "^4.5.1"
253 | "@typescript-eslint/scope-manager" "6.19.1"
254 | "@typescript-eslint/type-utils" "6.19.1"
255 | "@typescript-eslint/utils" "6.19.1"
256 | "@typescript-eslint/visitor-keys" "6.19.1"
257 | debug "^4.3.4"
258 | graphemer "^1.4.0"
259 | ignore "^5.2.4"
260 | natural-compare "^1.4.0"
261 | semver "^7.5.4"
262 | ts-api-utils "^1.0.1"
263 |
264 | "@typescript-eslint/parser@6.19.1":
265 | version "6.19.1"
266 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.1.tgz"
267 | integrity sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==
268 | dependencies:
269 | "@typescript-eslint/scope-manager" "6.19.1"
270 | "@typescript-eslint/types" "6.19.1"
271 | "@typescript-eslint/typescript-estree" "6.19.1"
272 | "@typescript-eslint/visitor-keys" "6.19.1"
273 | debug "^4.3.4"
274 |
275 | "@typescript-eslint/scope-manager@6.19.1":
276 | version "6.19.1"
277 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.1.tgz"
278 | integrity sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==
279 | dependencies:
280 | "@typescript-eslint/types" "6.19.1"
281 | "@typescript-eslint/visitor-keys" "6.19.1"
282 |
283 | "@typescript-eslint/type-utils@6.19.1":
284 | version "6.19.1"
285 | resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.1.tgz"
286 | integrity sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==
287 | dependencies:
288 | "@typescript-eslint/typescript-estree" "6.19.1"
289 | "@typescript-eslint/utils" "6.19.1"
290 | debug "^4.3.4"
291 | ts-api-utils "^1.0.1"
292 |
293 | "@typescript-eslint/types@6.19.1":
294 | version "6.19.1"
295 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.1.tgz"
296 | integrity sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==
297 |
298 | "@typescript-eslint/typescript-estree@6.19.1":
299 | version "6.19.1"
300 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.1.tgz"
301 | integrity sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==
302 | dependencies:
303 | "@typescript-eslint/types" "6.19.1"
304 | "@typescript-eslint/visitor-keys" "6.19.1"
305 | debug "^4.3.4"
306 | globby "^11.1.0"
307 | is-glob "^4.0.3"
308 | minimatch "9.0.3"
309 | semver "^7.5.4"
310 | ts-api-utils "^1.0.1"
311 |
312 | "@typescript-eslint/utils@6.19.1":
313 | version "6.19.1"
314 | resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.1.tgz"
315 | integrity sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==
316 | dependencies:
317 | "@eslint-community/eslint-utils" "^4.4.0"
318 | "@types/json-schema" "^7.0.12"
319 | "@types/semver" "^7.5.0"
320 | "@typescript-eslint/scope-manager" "6.19.1"
321 | "@typescript-eslint/types" "6.19.1"
322 | "@typescript-eslint/typescript-estree" "6.19.1"
323 | semver "^7.5.4"
324 |
325 | "@typescript-eslint/visitor-keys@6.19.1":
326 | version "6.19.1"
327 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.1.tgz"
328 | integrity sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==
329 | dependencies:
330 | "@typescript-eslint/types" "6.19.1"
331 | eslint-visitor-keys "^3.4.1"
332 |
333 | "@ungap/structured-clone@^1.2.0":
334 | version "1.2.0"
335 | resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz"
336 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
337 |
338 | acorn-jsx@^5.3.2:
339 | version "5.3.2"
340 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
341 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
342 |
343 | acorn@^8.9.0:
344 | version "8.11.3"
345 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz"
346 | integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
347 |
348 | ajv@^6.12.4:
349 | version "6.12.6"
350 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
351 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
352 | dependencies:
353 | fast-deep-equal "^3.1.1"
354 | fast-json-stable-stringify "^2.0.0"
355 | json-schema-traverse "^0.4.1"
356 | uri-js "^4.2.2"
357 |
358 | ansi-regex@^5.0.1:
359 | version "5.0.1"
360 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
361 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
362 |
363 | ansi-styles@^4.1.0:
364 | version "4.3.0"
365 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
366 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
367 | dependencies:
368 | color-convert "^2.0.1"
369 |
370 | are-docs-informative@^0.0.2:
371 | version "0.0.2"
372 | resolved "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz"
373 | integrity sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==
374 |
375 | argparse@^2.0.1:
376 | version "2.0.1"
377 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
378 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
379 |
380 | array-buffer-byte-length@^1.0.0:
381 | version "1.0.0"
382 | resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz"
383 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
384 | dependencies:
385 | call-bind "^1.0.2"
386 | is-array-buffer "^3.0.1"
387 |
388 | array-includes@^3.1.7:
389 | version "3.1.7"
390 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz"
391 | integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==
392 | dependencies:
393 | call-bind "^1.0.2"
394 | define-properties "^1.2.0"
395 | es-abstract "^1.22.1"
396 | get-intrinsic "^1.2.1"
397 | is-string "^1.0.7"
398 |
399 | array-union@^2.1.0:
400 | version "2.1.0"
401 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
402 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
403 |
404 | array.prototype.findlastindex@^1.2.3:
405 | version "1.2.3"
406 | resolved "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz"
407 | integrity sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==
408 | dependencies:
409 | call-bind "^1.0.2"
410 | define-properties "^1.2.0"
411 | es-abstract "^1.22.1"
412 | es-shim-unscopables "^1.0.0"
413 | get-intrinsic "^1.2.1"
414 |
415 | array.prototype.flat@^1.3.2:
416 | version "1.3.2"
417 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz"
418 | integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
419 | dependencies:
420 | call-bind "^1.0.2"
421 | define-properties "^1.2.0"
422 | es-abstract "^1.22.1"
423 | es-shim-unscopables "^1.0.0"
424 |
425 | array.prototype.flatmap@^1.3.2:
426 | version "1.3.2"
427 | resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz"
428 | integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
429 | dependencies:
430 | call-bind "^1.0.2"
431 | define-properties "^1.2.0"
432 | es-abstract "^1.22.1"
433 | es-shim-unscopables "^1.0.0"
434 |
435 | arraybuffer.prototype.slice@^1.0.2:
436 | version "1.0.2"
437 | resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz"
438 | integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==
439 | dependencies:
440 | array-buffer-byte-length "^1.0.0"
441 | call-bind "^1.0.2"
442 | define-properties "^1.2.0"
443 | es-abstract "^1.22.1"
444 | get-intrinsic "^1.2.1"
445 | is-array-buffer "^3.0.2"
446 | is-shared-array-buffer "^1.0.2"
447 |
448 | available-typed-arrays@^1.0.5:
449 | version "1.0.5"
450 | resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"
451 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
452 |
453 | balanced-match@^1.0.0:
454 | version "1.0.2"
455 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
456 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
457 |
458 | brace-expansion@^1.1.7:
459 | version "1.1.11"
460 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
461 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
462 | dependencies:
463 | balanced-match "^1.0.0"
464 | concat-map "0.0.1"
465 |
466 | brace-expansion@^2.0.1:
467 | version "2.0.1"
468 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
469 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
470 | dependencies:
471 | balanced-match "^1.0.0"
472 |
473 | braces@^3.0.2:
474 | version "3.0.2"
475 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
476 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
477 | dependencies:
478 | fill-range "^7.0.1"
479 |
480 | builtin-modules@3.3.0, builtin-modules@^3.3.0:
481 | version "3.3.0"
482 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz"
483 | integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
484 |
485 | call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4, call-bind@^1.0.5:
486 | version "1.0.5"
487 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz"
488 | integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==
489 | dependencies:
490 | function-bind "^1.1.2"
491 | get-intrinsic "^1.2.1"
492 | set-function-length "^1.1.1"
493 |
494 | callsites@^3.0.0:
495 | version "3.1.0"
496 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
497 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
498 |
499 | chalk@^4.0.0:
500 | version "4.1.2"
501 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
502 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
503 | dependencies:
504 | ansi-styles "^4.1.0"
505 | supports-color "^7.1.0"
506 |
507 | color-convert@^2.0.1:
508 | version "2.0.1"
509 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
510 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
511 | dependencies:
512 | color-name "~1.1.4"
513 |
514 | color-name@~1.1.4:
515 | version "1.1.4"
516 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
517 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
518 |
519 | comment-parser@1.4.1:
520 | version "1.4.1"
521 | resolved "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz"
522 | integrity sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==
523 |
524 | concat-map@0.0.1:
525 | version "0.0.1"
526 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
527 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
528 |
529 | cross-spawn@^7.0.2:
530 | version "7.0.3"
531 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
532 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
533 | dependencies:
534 | path-key "^3.1.0"
535 | shebang-command "^2.0.0"
536 | which "^2.0.1"
537 |
538 | debug@^3.2.7:
539 | version "3.2.7"
540 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
541 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
542 | dependencies:
543 | ms "^2.1.1"
544 |
545 | debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
546 | version "4.3.4"
547 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
548 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
549 | dependencies:
550 | ms "2.1.2"
551 |
552 | deep-is@^0.1.3:
553 | version "0.1.4"
554 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
555 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
556 |
557 | define-data-property@^1.0.1, define-data-property@^1.1.1:
558 | version "1.1.1"
559 | resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz"
560 | integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==
561 | dependencies:
562 | get-intrinsic "^1.2.1"
563 | gopd "^1.0.1"
564 | has-property-descriptors "^1.0.0"
565 |
566 | define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1:
567 | version "1.2.1"
568 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"
569 | integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
570 | dependencies:
571 | define-data-property "^1.0.1"
572 | has-property-descriptors "^1.0.0"
573 | object-keys "^1.1.1"
574 |
575 | dir-glob@^3.0.1:
576 | version "3.0.1"
577 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
578 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
579 | dependencies:
580 | path-type "^4.0.0"
581 |
582 | doctrine@^2.1.0:
583 | version "2.1.0"
584 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
585 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
586 | dependencies:
587 | esutils "^2.0.2"
588 |
589 | doctrine@^3.0.0:
590 | version "3.0.0"
591 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
592 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
593 | dependencies:
594 | esutils "^2.0.2"
595 |
596 | es-abstract@^1.22.1:
597 | version "1.22.3"
598 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz"
599 | integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==
600 | dependencies:
601 | array-buffer-byte-length "^1.0.0"
602 | arraybuffer.prototype.slice "^1.0.2"
603 | available-typed-arrays "^1.0.5"
604 | call-bind "^1.0.5"
605 | es-set-tostringtag "^2.0.1"
606 | es-to-primitive "^1.2.1"
607 | function.prototype.name "^1.1.6"
608 | get-intrinsic "^1.2.2"
609 | get-symbol-description "^1.0.0"
610 | globalthis "^1.0.3"
611 | gopd "^1.0.1"
612 | has-property-descriptors "^1.0.0"
613 | has-proto "^1.0.1"
614 | has-symbols "^1.0.3"
615 | hasown "^2.0.0"
616 | internal-slot "^1.0.5"
617 | is-array-buffer "^3.0.2"
618 | is-callable "^1.2.7"
619 | is-negative-zero "^2.0.2"
620 | is-regex "^1.1.4"
621 | is-shared-array-buffer "^1.0.2"
622 | is-string "^1.0.7"
623 | is-typed-array "^1.1.12"
624 | is-weakref "^1.0.2"
625 | object-inspect "^1.13.1"
626 | object-keys "^1.1.1"
627 | object.assign "^4.1.4"
628 | regexp.prototype.flags "^1.5.1"
629 | safe-array-concat "^1.0.1"
630 | safe-regex-test "^1.0.0"
631 | string.prototype.trim "^1.2.8"
632 | string.prototype.trimend "^1.0.7"
633 | string.prototype.trimstart "^1.0.7"
634 | typed-array-buffer "^1.0.0"
635 | typed-array-byte-length "^1.0.0"
636 | typed-array-byte-offset "^1.0.0"
637 | typed-array-length "^1.0.4"
638 | unbox-primitive "^1.0.2"
639 | which-typed-array "^1.1.13"
640 |
641 | es-set-tostringtag@^2.0.1:
642 | version "2.0.2"
643 | resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz"
644 | integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==
645 | dependencies:
646 | get-intrinsic "^1.2.2"
647 | has-tostringtag "^1.0.0"
648 | hasown "^2.0.0"
649 |
650 | es-shim-unscopables@^1.0.0:
651 | version "1.0.2"
652 | resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz"
653 | integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==
654 | dependencies:
655 | hasown "^2.0.0"
656 |
657 | es-to-primitive@^1.2.1:
658 | version "1.2.1"
659 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
660 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
661 | dependencies:
662 | is-callable "^1.1.4"
663 | is-date-object "^1.0.1"
664 | is-symbol "^1.0.2"
665 |
666 | esbuild@0.21.3:
667 | version "0.21.3"
668 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz"
669 | integrity sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==
670 | optionalDependencies:
671 | "@esbuild/aix-ppc64" "0.21.3"
672 | "@esbuild/android-arm" "0.21.3"
673 | "@esbuild/android-arm64" "0.21.3"
674 | "@esbuild/android-x64" "0.21.3"
675 | "@esbuild/darwin-arm64" "0.21.3"
676 | "@esbuild/darwin-x64" "0.21.3"
677 | "@esbuild/freebsd-arm64" "0.21.3"
678 | "@esbuild/freebsd-x64" "0.21.3"
679 | "@esbuild/linux-arm" "0.21.3"
680 | "@esbuild/linux-arm64" "0.21.3"
681 | "@esbuild/linux-ia32" "0.21.3"
682 | "@esbuild/linux-loong64" "0.21.3"
683 | "@esbuild/linux-mips64el" "0.21.3"
684 | "@esbuild/linux-ppc64" "0.21.3"
685 | "@esbuild/linux-riscv64" "0.21.3"
686 | "@esbuild/linux-s390x" "0.21.3"
687 | "@esbuild/linux-x64" "0.21.3"
688 | "@esbuild/netbsd-x64" "0.21.3"
689 | "@esbuild/openbsd-x64" "0.21.3"
690 | "@esbuild/sunos-x64" "0.21.3"
691 | "@esbuild/win32-arm64" "0.21.3"
692 | "@esbuild/win32-ia32" "0.21.3"
693 | "@esbuild/win32-x64" "0.21.3"
694 |
695 | escape-string-regexp@^4.0.0:
696 | version "4.0.0"
697 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
698 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
699 |
700 | eslint-import-resolver-node@^0.3.9:
701 | version "0.3.9"
702 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz"
703 | integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
704 | dependencies:
705 | debug "^3.2.7"
706 | is-core-module "^2.13.0"
707 | resolve "^1.22.4"
708 |
709 | eslint-module-utils@^2.8.0:
710 | version "2.8.0"
711 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz"
712 | integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
713 | dependencies:
714 | debug "^3.2.7"
715 |
716 | eslint-plugin-babel@5.3.1:
717 | version "5.3.1"
718 | resolved "https://registry.npmjs.org/eslint-plugin-babel/-/eslint-plugin-babel-5.3.1.tgz"
719 | integrity sha512-VsQEr6NH3dj664+EyxJwO4FCYm/00JhYb3Sk3ft8o+fpKuIfQ9TaW6uVUfvwMXHcf/lsnRIoyFPsLMyiWCSL/g==
720 | dependencies:
721 | eslint-rule-composer "^0.3.0"
722 |
723 | eslint-plugin-import@2.29.1:
724 | version "2.29.1"
725 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz"
726 | integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
727 | dependencies:
728 | array-includes "^3.1.7"
729 | array.prototype.findlastindex "^1.2.3"
730 | array.prototype.flat "^1.3.2"
731 | array.prototype.flatmap "^1.3.2"
732 | debug "^3.2.7"
733 | doctrine "^2.1.0"
734 | eslint-import-resolver-node "^0.3.9"
735 | eslint-module-utils "^2.8.0"
736 | hasown "^2.0.0"
737 | is-core-module "^2.13.1"
738 | is-glob "^4.0.3"
739 | minimatch "^3.1.2"
740 | object.fromentries "^2.0.7"
741 | object.groupby "^1.0.1"
742 | object.values "^1.1.7"
743 | semver "^6.3.1"
744 | tsconfig-paths "^3.15.0"
745 |
746 | eslint-plugin-jsdoc@48.0.2:
747 | version "48.0.2"
748 | resolved "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.2.tgz"
749 | integrity sha512-CBFl5Jc7+jlV36RwDm+PQ8Uw5r28pn2/uW/OaB+Gw5bFwn4Py/1eYMZ3hGf9S4meUFZ/sRvS+hVif2mRAp6WqQ==
750 | dependencies:
751 | "@es-joy/jsdoccomment" "~0.41.0"
752 | are-docs-informative "^0.0.2"
753 | comment-parser "1.4.1"
754 | debug "^4.3.4"
755 | escape-string-regexp "^4.0.0"
756 | esquery "^1.5.0"
757 | is-builtin-module "^3.2.1"
758 | semver "^7.5.4"
759 | spdx-expression-parse "^4.0.0"
760 |
761 | eslint-plugin-prefer-arrow@1.2.3:
762 | version "1.2.3"
763 | resolved "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz"
764 | integrity sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==
765 |
766 | eslint-plugin-simple-import-sort@10.0.0:
767 | version "10.0.0"
768 | resolved "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz"
769 | integrity sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==
770 |
771 | eslint-rule-composer@^0.3.0:
772 | version "0.3.0"
773 | resolved "https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz"
774 | integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==
775 |
776 | eslint-scope@^7.2.2:
777 | version "7.2.2"
778 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz"
779 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
780 | dependencies:
781 | esrecurse "^4.3.0"
782 | estraverse "^5.2.0"
783 |
784 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
785 | version "3.4.3"
786 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz"
787 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
788 |
789 | eslint@8.56.0:
790 | version "8.56.0"
791 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz"
792 | integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==
793 | dependencies:
794 | "@eslint-community/eslint-utils" "^4.2.0"
795 | "@eslint-community/regexpp" "^4.6.1"
796 | "@eslint/eslintrc" "^2.1.4"
797 | "@eslint/js" "8.56.0"
798 | "@humanwhocodes/config-array" "^0.11.13"
799 | "@humanwhocodes/module-importer" "^1.0.1"
800 | "@nodelib/fs.walk" "^1.2.8"
801 | "@ungap/structured-clone" "^1.2.0"
802 | ajv "^6.12.4"
803 | chalk "^4.0.0"
804 | cross-spawn "^7.0.2"
805 | debug "^4.3.2"
806 | doctrine "^3.0.0"
807 | escape-string-regexp "^4.0.0"
808 | eslint-scope "^7.2.2"
809 | eslint-visitor-keys "^3.4.3"
810 | espree "^9.6.1"
811 | esquery "^1.4.2"
812 | esutils "^2.0.2"
813 | fast-deep-equal "^3.1.3"
814 | file-entry-cache "^6.0.1"
815 | find-up "^5.0.0"
816 | glob-parent "^6.0.2"
817 | globals "^13.19.0"
818 | graphemer "^1.4.0"
819 | ignore "^5.2.0"
820 | imurmurhash "^0.1.4"
821 | is-glob "^4.0.0"
822 | is-path-inside "^3.0.3"
823 | js-yaml "^4.1.0"
824 | json-stable-stringify-without-jsonify "^1.0.1"
825 | levn "^0.4.1"
826 | lodash.merge "^4.6.2"
827 | minimatch "^3.1.2"
828 | natural-compare "^1.4.0"
829 | optionator "^0.9.3"
830 | strip-ansi "^6.0.1"
831 | text-table "^0.2.0"
832 |
833 | espree@^9.6.0, espree@^9.6.1:
834 | version "9.6.1"
835 | resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz"
836 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
837 | dependencies:
838 | acorn "^8.9.0"
839 | acorn-jsx "^5.3.2"
840 | eslint-visitor-keys "^3.4.1"
841 |
842 | esquery@^1.4.2, esquery@^1.5.0:
843 | version "1.5.0"
844 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz"
845 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
846 | dependencies:
847 | estraverse "^5.1.0"
848 |
849 | esrecurse@^4.3.0:
850 | version "4.3.0"
851 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
852 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
853 | dependencies:
854 | estraverse "^5.2.0"
855 |
856 | estraverse@^5.1.0, estraverse@^5.2.0:
857 | version "5.3.0"
858 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
859 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
860 |
861 | esutils@^2.0.2:
862 | version "2.0.3"
863 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
864 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
865 |
866 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
867 | version "3.1.3"
868 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
869 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
870 |
871 | fast-glob@^3.2.9:
872 | version "3.3.2"
873 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz"
874 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
875 | dependencies:
876 | "@nodelib/fs.stat" "^2.0.2"
877 | "@nodelib/fs.walk" "^1.2.3"
878 | glob-parent "^5.1.2"
879 | merge2 "^1.3.0"
880 | micromatch "^4.0.4"
881 |
882 | fast-json-stable-stringify@^2.0.0:
883 | version "2.1.0"
884 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
885 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
886 |
887 | fast-levenshtein@^2.0.6:
888 | version "2.0.6"
889 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
890 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
891 |
892 | fastq@^1.6.0:
893 | version "1.16.0"
894 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz"
895 | integrity sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==
896 | dependencies:
897 | reusify "^1.0.4"
898 |
899 | file-entry-cache@^6.0.1:
900 | version "6.0.1"
901 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
902 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
903 | dependencies:
904 | flat-cache "^3.0.4"
905 |
906 | fill-range@^7.0.1:
907 | version "7.0.1"
908 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
909 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
910 | dependencies:
911 | to-regex-range "^5.0.1"
912 |
913 | find-up@^5.0.0:
914 | version "5.0.0"
915 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
916 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
917 | dependencies:
918 | locate-path "^6.0.0"
919 | path-exists "^4.0.0"
920 |
921 | flat-cache@^3.0.4:
922 | version "3.2.0"
923 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz"
924 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==
925 | dependencies:
926 | flatted "^3.2.9"
927 | keyv "^4.5.3"
928 | rimraf "^3.0.2"
929 |
930 | flatted@^3.2.9:
931 | version "3.2.9"
932 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz"
933 | integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
934 |
935 | for-each@^0.3.3:
936 | version "0.3.3"
937 | resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"
938 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
939 | dependencies:
940 | is-callable "^1.1.3"
941 |
942 | front-matter-plugin-api-provider@0.1.4-alpha:
943 | version "0.1.4-alpha"
944 | resolved "https://registry.npmjs.org/front-matter-plugin-api-provider/-/front-matter-plugin-api-provider-0.1.4-alpha.tgz"
945 | integrity sha512-amv+xSnxY1VUCtNu1y+mr2QZSDBAktiaP67G1CF6LOYnW11fctTKro75rAzDEjW5EkdDwnM5PvJjBHB+IMSYzw==
946 | dependencies:
947 | obsidian "^1.2.8"
948 |
949 | fs.realpath@^1.0.0:
950 | version "1.0.0"
951 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
952 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
953 |
954 | function-bind@^1.1.2:
955 | version "1.1.2"
956 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"
957 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
958 |
959 | function.prototype.name@^1.1.6:
960 | version "1.1.6"
961 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz"
962 | integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
963 | dependencies:
964 | call-bind "^1.0.2"
965 | define-properties "^1.2.0"
966 | es-abstract "^1.22.1"
967 | functions-have-names "^1.2.3"
968 |
969 | functions-have-names@^1.2.3:
970 | version "1.2.3"
971 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
972 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
973 |
974 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2:
975 | version "1.2.2"
976 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz"
977 | integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==
978 | dependencies:
979 | function-bind "^1.1.2"
980 | has-proto "^1.0.1"
981 | has-symbols "^1.0.3"
982 | hasown "^2.0.0"
983 |
984 | get-symbol-description@^1.0.0:
985 | version "1.0.0"
986 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
987 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
988 | dependencies:
989 | call-bind "^1.0.2"
990 | get-intrinsic "^1.1.1"
991 |
992 | glob-parent@^5.1.2:
993 | version "5.1.2"
994 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
995 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
996 | dependencies:
997 | is-glob "^4.0.1"
998 |
999 | glob-parent@^6.0.2:
1000 | version "6.0.2"
1001 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
1002 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
1003 | dependencies:
1004 | is-glob "^4.0.3"
1005 |
1006 | glob@^7.1.3:
1007 | version "7.2.3"
1008 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
1009 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1010 | dependencies:
1011 | fs.realpath "^1.0.0"
1012 | inflight "^1.0.4"
1013 | inherits "2"
1014 | minimatch "^3.1.1"
1015 | once "^1.3.0"
1016 | path-is-absolute "^1.0.0"
1017 |
1018 | globals@^13.19.0:
1019 | version "13.24.0"
1020 | resolved "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz"
1021 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
1022 | dependencies:
1023 | type-fest "^0.20.2"
1024 |
1025 | globalthis@^1.0.3:
1026 | version "1.0.3"
1027 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"
1028 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
1029 | dependencies:
1030 | define-properties "^1.1.3"
1031 |
1032 | globby@^11.1.0:
1033 | version "11.1.0"
1034 | resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
1035 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
1036 | dependencies:
1037 | array-union "^2.1.0"
1038 | dir-glob "^3.0.1"
1039 | fast-glob "^3.2.9"
1040 | ignore "^5.2.0"
1041 | merge2 "^1.4.1"
1042 | slash "^3.0.0"
1043 |
1044 | gopd@^1.0.1:
1045 | version "1.0.1"
1046 | resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz"
1047 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
1048 | dependencies:
1049 | get-intrinsic "^1.1.3"
1050 |
1051 | graphemer@^1.4.0:
1052 | version "1.4.0"
1053 | resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz"
1054 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
1055 |
1056 | has-bigints@^1.0.1, has-bigints@^1.0.2:
1057 | version "1.0.2"
1058 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
1059 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
1060 |
1061 | has-flag@^4.0.0:
1062 | version "4.0.0"
1063 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
1064 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1065 |
1066 | has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1:
1067 | version "1.0.1"
1068 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz"
1069 | integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==
1070 | dependencies:
1071 | get-intrinsic "^1.2.2"
1072 |
1073 | has-proto@^1.0.1:
1074 | version "1.0.1"
1075 | resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"
1076 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
1077 |
1078 | has-symbols@^1.0.2, has-symbols@^1.0.3:
1079 | version "1.0.3"
1080 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
1081 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1082 |
1083 | has-tostringtag@^1.0.0:
1084 | version "1.0.0"
1085 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
1086 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1087 | dependencies:
1088 | has-symbols "^1.0.2"
1089 |
1090 | hasown@^2.0.0:
1091 | version "2.0.0"
1092 | resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz"
1093 | integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==
1094 | dependencies:
1095 | function-bind "^1.1.2"
1096 |
1097 | ignore@^5.2.0, ignore@^5.2.4:
1098 | version "5.3.0"
1099 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz"
1100 | integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==
1101 |
1102 | import-fresh@^3.2.1:
1103 | version "3.3.0"
1104 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
1105 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1106 | dependencies:
1107 | parent-module "^1.0.0"
1108 | resolve-from "^4.0.0"
1109 |
1110 | imurmurhash@^0.1.4:
1111 | version "0.1.4"
1112 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
1113 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1114 |
1115 | inflight@^1.0.4:
1116 | version "1.0.6"
1117 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
1118 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1119 | dependencies:
1120 | once "^1.3.0"
1121 | wrappy "1"
1122 |
1123 | inherits@2:
1124 | version "2.0.4"
1125 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
1126 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1127 |
1128 | internal-slot@^1.0.5:
1129 | version "1.0.6"
1130 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz"
1131 | integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==
1132 | dependencies:
1133 | get-intrinsic "^1.2.2"
1134 | hasown "^2.0.0"
1135 | side-channel "^1.0.4"
1136 |
1137 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
1138 | version "3.0.2"
1139 | resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz"
1140 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
1141 | dependencies:
1142 | call-bind "^1.0.2"
1143 | get-intrinsic "^1.2.0"
1144 | is-typed-array "^1.1.10"
1145 |
1146 | is-bigint@^1.0.1:
1147 | version "1.0.4"
1148 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"
1149 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1150 | dependencies:
1151 | has-bigints "^1.0.1"
1152 |
1153 | is-boolean-object@^1.1.0:
1154 | version "1.1.2"
1155 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
1156 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1157 | dependencies:
1158 | call-bind "^1.0.2"
1159 | has-tostringtag "^1.0.0"
1160 |
1161 | is-builtin-module@^3.2.1:
1162 | version "3.2.1"
1163 | resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz"
1164 | integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
1165 | dependencies:
1166 | builtin-modules "^3.3.0"
1167 |
1168 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
1169 | version "1.2.7"
1170 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
1171 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
1172 |
1173 | is-core-module@^2.13.0, is-core-module@^2.13.1:
1174 | version "2.13.1"
1175 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz"
1176 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
1177 | dependencies:
1178 | hasown "^2.0.0"
1179 |
1180 | is-date-object@^1.0.1:
1181 | version "1.0.5"
1182 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"
1183 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1184 | dependencies:
1185 | has-tostringtag "^1.0.0"
1186 |
1187 | is-extglob@^2.1.1:
1188 | version "2.1.1"
1189 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
1190 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1191 |
1192 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
1193 | version "4.0.3"
1194 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
1195 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1196 | dependencies:
1197 | is-extglob "^2.1.1"
1198 |
1199 | is-negative-zero@^2.0.2:
1200 | version "2.0.2"
1201 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
1202 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1203 |
1204 | is-number-object@^1.0.4:
1205 | version "1.0.7"
1206 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
1207 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1208 | dependencies:
1209 | has-tostringtag "^1.0.0"
1210 |
1211 | is-number@^7.0.0:
1212 | version "7.0.0"
1213 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
1214 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1215 |
1216 | is-path-inside@^3.0.3:
1217 | version "3.0.3"
1218 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
1219 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
1220 |
1221 | is-regex@^1.1.4:
1222 | version "1.1.4"
1223 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
1224 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1225 | dependencies:
1226 | call-bind "^1.0.2"
1227 | has-tostringtag "^1.0.0"
1228 |
1229 | is-shared-array-buffer@^1.0.2:
1230 | version "1.0.2"
1231 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
1232 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1233 | dependencies:
1234 | call-bind "^1.0.2"
1235 |
1236 | is-string@^1.0.5, is-string@^1.0.7:
1237 | version "1.0.7"
1238 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
1239 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1240 | dependencies:
1241 | has-tostringtag "^1.0.0"
1242 |
1243 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1244 | version "1.0.4"
1245 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
1246 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1247 | dependencies:
1248 | has-symbols "^1.0.2"
1249 |
1250 | is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9:
1251 | version "1.1.12"
1252 | resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz"
1253 | integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
1254 | dependencies:
1255 | which-typed-array "^1.1.11"
1256 |
1257 | is-weakref@^1.0.2:
1258 | version "1.0.2"
1259 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
1260 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1261 | dependencies:
1262 | call-bind "^1.0.2"
1263 |
1264 | isarray@^2.0.5:
1265 | version "2.0.5"
1266 | resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"
1267 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
1268 |
1269 | isexe@^2.0.0:
1270 | version "2.0.0"
1271 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
1272 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
1273 |
1274 | js-yaml@^4.1.0:
1275 | version "4.1.0"
1276 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
1277 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1278 | dependencies:
1279 | argparse "^2.0.1"
1280 |
1281 | jsdoc-type-pratt-parser@~4.0.0:
1282 | version "4.0.0"
1283 | resolved "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz"
1284 | integrity sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==
1285 |
1286 | json-buffer@3.0.1:
1287 | version "3.0.1"
1288 | resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz"
1289 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
1290 |
1291 | json-schema-traverse@^0.4.1:
1292 | version "0.4.1"
1293 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
1294 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1295 |
1296 | json-stable-stringify-without-jsonify@^1.0.1:
1297 | version "1.0.1"
1298 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
1299 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1300 |
1301 | json5@^1.0.2:
1302 | version "1.0.2"
1303 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"
1304 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
1305 | dependencies:
1306 | minimist "^1.2.0"
1307 |
1308 | keyv@^4.5.3:
1309 | version "4.5.4"
1310 | resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz"
1311 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
1312 | dependencies:
1313 | json-buffer "3.0.1"
1314 |
1315 | levn@^0.4.1:
1316 | version "0.4.1"
1317 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
1318 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1319 | dependencies:
1320 | prelude-ls "^1.2.1"
1321 | type-check "~0.4.0"
1322 |
1323 | locate-path@^6.0.0:
1324 | version "6.0.0"
1325 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
1326 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1327 | dependencies:
1328 | p-locate "^5.0.0"
1329 |
1330 | lodash.merge@^4.6.2:
1331 | version "4.6.2"
1332 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
1333 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1334 |
1335 | lru-cache@^6.0.0:
1336 | version "6.0.0"
1337 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
1338 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1339 | dependencies:
1340 | yallist "^4.0.0"
1341 |
1342 | merge2@^1.3.0, merge2@^1.4.1:
1343 | version "1.4.1"
1344 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
1345 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1346 |
1347 | micromatch@^4.0.4:
1348 | version "4.0.5"
1349 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
1350 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1351 | dependencies:
1352 | braces "^3.0.2"
1353 | picomatch "^2.3.1"
1354 |
1355 | minimatch@9.0.3:
1356 | version "9.0.3"
1357 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz"
1358 | integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
1359 | dependencies:
1360 | brace-expansion "^2.0.1"
1361 |
1362 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
1363 | version "3.1.2"
1364 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
1365 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1366 | dependencies:
1367 | brace-expansion "^1.1.7"
1368 |
1369 | minimist@^1.2.0, minimist@^1.2.6:
1370 | version "1.2.8"
1371 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
1372 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
1373 |
1374 | moment@2.29.4:
1375 | version "2.29.4"
1376 | resolved "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz"
1377 | integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
1378 |
1379 | ms@2.1.2, ms@^2.1.1:
1380 | version "2.1.2"
1381 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
1382 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1383 |
1384 | natural-compare@^1.4.0:
1385 | version "1.4.0"
1386 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
1387 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1388 |
1389 | object-inspect@^1.13.1, object-inspect@^1.9.0:
1390 | version "1.13.1"
1391 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz"
1392 | integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
1393 |
1394 | object-keys@^1.1.1:
1395 | version "1.1.1"
1396 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
1397 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1398 |
1399 | object.assign@^4.1.4:
1400 | version "4.1.5"
1401 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz"
1402 | integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
1403 | dependencies:
1404 | call-bind "^1.0.5"
1405 | define-properties "^1.2.1"
1406 | has-symbols "^1.0.3"
1407 | object-keys "^1.1.1"
1408 |
1409 | object.fromentries@^2.0.7:
1410 | version "2.0.7"
1411 | resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz"
1412 | integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==
1413 | dependencies:
1414 | call-bind "^1.0.2"
1415 | define-properties "^1.2.0"
1416 | es-abstract "^1.22.1"
1417 |
1418 | object.groupby@^1.0.1:
1419 | version "1.0.1"
1420 | resolved "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz"
1421 | integrity sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==
1422 | dependencies:
1423 | call-bind "^1.0.2"
1424 | define-properties "^1.2.0"
1425 | es-abstract "^1.22.1"
1426 | get-intrinsic "^1.2.1"
1427 |
1428 | object.values@^1.1.7:
1429 | version "1.1.7"
1430 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz"
1431 | integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==
1432 | dependencies:
1433 | call-bind "^1.0.2"
1434 | define-properties "^1.2.0"
1435 | es-abstract "^1.22.1"
1436 |
1437 | obsidian@^1.2.8, "obsidian@https://github.com/obsidianmd/obsidian-api/archive/23947b58d372ea02225324308e31d36b4aa95869.tar.gz":
1438 | version "1.7.2"
1439 | resolved "https://github.com/obsidianmd/obsidian-api/archive/23947b58d372ea02225324308e31d36b4aa95869.tar.gz"
1440 | integrity sha512-tCpXlJNBveJfL7G+rojZJywwxUKUsWOvgbky9fBWwaVVo7eE/bENkWsjqWazGxRU24rTA/M0HDOSo2bkBjKqMw==
1441 | dependencies:
1442 | "@types/codemirror" "5.60.8"
1443 | moment "2.29.4"
1444 |
1445 | once@^1.3.0:
1446 | version "1.4.0"
1447 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
1448 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1449 | dependencies:
1450 | wrappy "1"
1451 |
1452 | optionator@^0.9.3:
1453 | version "0.9.3"
1454 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz"
1455 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
1456 | dependencies:
1457 | "@aashutoshrathi/word-wrap" "^1.2.3"
1458 | deep-is "^0.1.3"
1459 | fast-levenshtein "^2.0.6"
1460 | levn "^0.4.1"
1461 | prelude-ls "^1.2.1"
1462 | type-check "^0.4.0"
1463 |
1464 | p-limit@^3.0.2:
1465 | version "3.1.0"
1466 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
1467 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1468 | dependencies:
1469 | yocto-queue "^0.1.0"
1470 |
1471 | p-locate@^5.0.0:
1472 | version "5.0.0"
1473 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
1474 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1475 | dependencies:
1476 | p-limit "^3.0.2"
1477 |
1478 | parent-module@^1.0.0:
1479 | version "1.0.1"
1480 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
1481 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1482 | dependencies:
1483 | callsites "^3.0.0"
1484 |
1485 | path-exists@^4.0.0:
1486 | version "4.0.0"
1487 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
1488 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1489 |
1490 | path-is-absolute@^1.0.0:
1491 | version "1.0.1"
1492 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
1493 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1494 |
1495 | path-key@^3.1.0:
1496 | version "3.1.1"
1497 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
1498 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1499 |
1500 | path-parse@^1.0.7:
1501 | version "1.0.7"
1502 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
1503 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1504 |
1505 | path-type@^4.0.0:
1506 | version "4.0.0"
1507 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
1508 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1509 |
1510 | picomatch@^2.3.1:
1511 | version "2.3.1"
1512 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
1513 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1514 |
1515 | prelude-ls@^1.2.1:
1516 | version "1.2.1"
1517 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
1518 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1519 |
1520 | punycode@^2.1.0:
1521 | version "2.3.1"
1522 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz"
1523 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
1524 |
1525 | queue-microtask@^1.2.2:
1526 | version "1.2.3"
1527 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
1528 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1529 |
1530 | regexp.prototype.flags@^1.5.1:
1531 | version "1.5.1"
1532 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz"
1533 | integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
1534 | dependencies:
1535 | call-bind "^1.0.2"
1536 | define-properties "^1.2.0"
1537 | set-function-name "^2.0.0"
1538 |
1539 | resolve-from@^4.0.0:
1540 | version "4.0.0"
1541 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
1542 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1543 |
1544 | resolve@^1.22.4:
1545 | version "1.22.8"
1546 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz"
1547 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
1548 | dependencies:
1549 | is-core-module "^2.13.0"
1550 | path-parse "^1.0.7"
1551 | supports-preserve-symlinks-flag "^1.0.0"
1552 |
1553 | reusify@^1.0.4:
1554 | version "1.0.4"
1555 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
1556 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1557 |
1558 | rimraf@^3.0.2:
1559 | version "3.0.2"
1560 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
1561 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1562 | dependencies:
1563 | glob "^7.1.3"
1564 |
1565 | run-parallel@^1.1.9:
1566 | version "1.2.0"
1567 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
1568 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1569 | dependencies:
1570 | queue-microtask "^1.2.2"
1571 |
1572 | safe-array-concat@^1.0.1:
1573 | version "1.1.0"
1574 | resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz"
1575 | integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==
1576 | dependencies:
1577 | call-bind "^1.0.5"
1578 | get-intrinsic "^1.2.2"
1579 | has-symbols "^1.0.3"
1580 | isarray "^2.0.5"
1581 |
1582 | safe-regex-test@^1.0.0:
1583 | version "1.0.2"
1584 | resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz"
1585 | integrity sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==
1586 | dependencies:
1587 | call-bind "^1.0.5"
1588 | get-intrinsic "^1.2.2"
1589 | is-regex "^1.1.4"
1590 |
1591 | semver@^6.3.1:
1592 | version "6.3.1"
1593 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"
1594 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
1595 |
1596 | semver@^7.5.4:
1597 | version "7.5.4"
1598 | resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz"
1599 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
1600 | dependencies:
1601 | lru-cache "^6.0.0"
1602 |
1603 | set-function-length@^1.1.1:
1604 | version "1.2.0"
1605 | resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz"
1606 | integrity sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==
1607 | dependencies:
1608 | define-data-property "^1.1.1"
1609 | function-bind "^1.1.2"
1610 | get-intrinsic "^1.2.2"
1611 | gopd "^1.0.1"
1612 | has-property-descriptors "^1.0.1"
1613 |
1614 | set-function-name@^2.0.0:
1615 | version "2.0.1"
1616 | resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz"
1617 | integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
1618 | dependencies:
1619 | define-data-property "^1.0.1"
1620 | functions-have-names "^1.2.3"
1621 | has-property-descriptors "^1.0.0"
1622 |
1623 | shebang-command@^2.0.0:
1624 | version "2.0.0"
1625 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
1626 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1627 | dependencies:
1628 | shebang-regex "^3.0.0"
1629 |
1630 | shebang-regex@^3.0.0:
1631 | version "3.0.0"
1632 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
1633 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1634 |
1635 | side-channel@^1.0.4:
1636 | version "1.0.4"
1637 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
1638 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1639 | dependencies:
1640 | call-bind "^1.0.0"
1641 | get-intrinsic "^1.0.2"
1642 | object-inspect "^1.9.0"
1643 |
1644 | slash@^3.0.0:
1645 | version "3.0.0"
1646 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
1647 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1648 |
1649 | spdx-exceptions@^2.1.0:
1650 | version "2.3.0"
1651 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"
1652 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
1653 |
1654 | spdx-expression-parse@^4.0.0:
1655 | version "4.0.0"
1656 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz"
1657 | integrity sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==
1658 | dependencies:
1659 | spdx-exceptions "^2.1.0"
1660 | spdx-license-ids "^3.0.0"
1661 |
1662 | spdx-license-ids@^3.0.0:
1663 | version "3.0.16"
1664 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz"
1665 | integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==
1666 |
1667 | string.prototype.trim@^1.2.8:
1668 | version "1.2.8"
1669 | resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz"
1670 | integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
1671 | dependencies:
1672 | call-bind "^1.0.2"
1673 | define-properties "^1.2.0"
1674 | es-abstract "^1.22.1"
1675 |
1676 | string.prototype.trimend@^1.0.7:
1677 | version "1.0.7"
1678 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz"
1679 | integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
1680 | dependencies:
1681 | call-bind "^1.0.2"
1682 | define-properties "^1.2.0"
1683 | es-abstract "^1.22.1"
1684 |
1685 | string.prototype.trimstart@^1.0.7:
1686 | version "1.0.7"
1687 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz"
1688 | integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
1689 | dependencies:
1690 | call-bind "^1.0.2"
1691 | define-properties "^1.2.0"
1692 | es-abstract "^1.22.1"
1693 |
1694 | strip-ansi@^6.0.1:
1695 | version "6.0.1"
1696 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
1697 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1698 | dependencies:
1699 | ansi-regex "^5.0.1"
1700 |
1701 | strip-bom@^3.0.0:
1702 | version "3.0.0"
1703 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
1704 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
1705 |
1706 | strip-json-comments@^3.1.1:
1707 | version "3.1.1"
1708 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
1709 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
1710 |
1711 | supports-color@^7.1.0:
1712 | version "7.2.0"
1713 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
1714 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1715 | dependencies:
1716 | has-flag "^4.0.0"
1717 |
1718 | supports-preserve-symlinks-flag@^1.0.0:
1719 | version "1.0.0"
1720 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
1721 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1722 |
1723 | text-table@^0.2.0:
1724 | version "0.2.0"
1725 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
1726 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
1727 |
1728 | to-regex-range@^5.0.1:
1729 | version "5.0.1"
1730 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
1731 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1732 | dependencies:
1733 | is-number "^7.0.0"
1734 |
1735 | ts-api-utils@^1.0.1:
1736 | version "1.0.3"
1737 | resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz"
1738 | integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==
1739 |
1740 | tsconfig-paths@^3.15.0:
1741 | version "3.15.0"
1742 | resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz"
1743 | integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
1744 | dependencies:
1745 | "@types/json5" "^0.0.29"
1746 | json5 "^1.0.2"
1747 | minimist "^1.2.6"
1748 | strip-bom "^3.0.0"
1749 |
1750 | tslib@2.6.2:
1751 | version "2.6.2"
1752 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"
1753 | integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
1754 |
1755 | type-check@^0.4.0, type-check@~0.4.0:
1756 | version "0.4.0"
1757 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
1758 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
1759 | dependencies:
1760 | prelude-ls "^1.2.1"
1761 |
1762 | type-fest@^0.20.2:
1763 | version "0.20.2"
1764 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
1765 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
1766 |
1767 | typed-array-buffer@^1.0.0:
1768 | version "1.0.0"
1769 | resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz"
1770 | integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
1771 | dependencies:
1772 | call-bind "^1.0.2"
1773 | get-intrinsic "^1.2.1"
1774 | is-typed-array "^1.1.10"
1775 |
1776 | typed-array-byte-length@^1.0.0:
1777 | version "1.0.0"
1778 | resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz"
1779 | integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
1780 | dependencies:
1781 | call-bind "^1.0.2"
1782 | for-each "^0.3.3"
1783 | has-proto "^1.0.1"
1784 | is-typed-array "^1.1.10"
1785 |
1786 | typed-array-byte-offset@^1.0.0:
1787 | version "1.0.0"
1788 | resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz"
1789 | integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
1790 | dependencies:
1791 | available-typed-arrays "^1.0.5"
1792 | call-bind "^1.0.2"
1793 | for-each "^0.3.3"
1794 | has-proto "^1.0.1"
1795 | is-typed-array "^1.1.10"
1796 |
1797 | typed-array-length@^1.0.4:
1798 | version "1.0.4"
1799 | resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"
1800 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
1801 | dependencies:
1802 | call-bind "^1.0.2"
1803 | for-each "^0.3.3"
1804 | is-typed-array "^1.1.9"
1805 |
1806 | typescript@5.3.3:
1807 | version "5.3.3"
1808 | resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz"
1809 | integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
1810 |
1811 | unbox-primitive@^1.0.2:
1812 | version "1.0.2"
1813 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
1814 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
1815 | dependencies:
1816 | call-bind "^1.0.2"
1817 | has-bigints "^1.0.2"
1818 | has-symbols "^1.0.3"
1819 | which-boxed-primitive "^1.0.2"
1820 |
1821 | undici-types@~5.26.4:
1822 | version "5.26.5"
1823 | resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
1824 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
1825 |
1826 | uri-js@^4.2.2:
1827 | version "4.4.1"
1828 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
1829 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
1830 | dependencies:
1831 | punycode "^2.1.0"
1832 |
1833 | which-boxed-primitive@^1.0.2:
1834 | version "1.0.2"
1835 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
1836 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
1837 | dependencies:
1838 | is-bigint "^1.0.1"
1839 | is-boolean-object "^1.1.0"
1840 | is-number-object "^1.0.4"
1841 | is-string "^1.0.5"
1842 | is-symbol "^1.0.3"
1843 |
1844 | which-typed-array@^1.1.11, which-typed-array@^1.1.13:
1845 | version "1.1.13"
1846 | resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz"
1847 | integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==
1848 | dependencies:
1849 | available-typed-arrays "^1.0.5"
1850 | call-bind "^1.0.4"
1851 | for-each "^0.3.3"
1852 | gopd "^1.0.1"
1853 | has-tostringtag "^1.0.0"
1854 |
1855 | which@^2.0.1:
1856 | version "2.0.2"
1857 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
1858 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1859 | dependencies:
1860 | isexe "^2.0.0"
1861 |
1862 | wrappy@1:
1863 | version "1.0.2"
1864 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
1865 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
1866 |
1867 | yallist@^4.0.0:
1868 | version "4.0.0"
1869 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
1870 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1871 |
1872 | yocto-queue@^0.1.0:
1873 | version "0.1.0"
1874 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
1875 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1876 |
--------------------------------------------------------------------------------