├── .editorconfig
├── .eslintrc.json
├── .gitattributes
├── .github
├── contributing.md
└── workflows
│ └── test.yml
├── .gitignore
├── .verb.md
├── README.md
├── index.ts
├── package.json
├── pnpm-lock.yaml
├── prettier.config.js
├── test
├── .eslintrc.json
└── detect-case.test.ts
├── tsconfig.json
└── tsup.config.ts
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org/
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | end_of_line = lf
7 | indent_size = 2
8 | indent_style = space
9 | insert_final_newline = true
10 | trim_trailing_whitespace = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "eslint:recommended"
4 | ],
5 |
6 | "env": {
7 | "es2021": true,
8 | "node": true
9 | },
10 |
11 | "parserOptions":{
12 | "ecmaVersion": 12
13 | },
14 |
15 | "rules": {
16 | "accessor-pairs": 2,
17 | "arrow-spacing": [2, { "before": true, "after": true }],
18 | "block-spacing": [2, "always"],
19 | "brace-style": [2, "1tbs", { "allowSingleLine": true }],
20 | "comma-dangle": [2, "never"],
21 | "comma-spacing": [2, { "before": false, "after": true }],
22 | "comma-style": [2, "last"],
23 | "constructor-super": 2,
24 | "curly": [2, "multi-line"],
25 | "dot-location": [2, "property"],
26 | "eol-last": 2,
27 | "eqeqeq": [2, "allow-null"],
28 | "generator-star-spacing": [2, { "before": true, "after": true }],
29 | "handle-callback-err": [2, "^(err|error)$" ],
30 | "indent": [2, 2, { "SwitchCase": 1 }],
31 | "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
32 | "keyword-spacing": [2, { "before": true, "after": true }],
33 | "new-cap": [2, { "newIsCap": true, "capIsNew": false }],
34 | "new-parens": 2,
35 | "no-array-constructor": 2,
36 | "no-caller": 2,
37 | "no-class-assign": 2,
38 | "no-cond-assign": 2,
39 | "no-console": 0,
40 | "no-const-assign": 2,
41 | "no-control-regex": 0,
42 | "no-debugger": 2,
43 | "no-delete-var": 2,
44 | "no-dupe-args": 2,
45 | "no-dupe-class-members": 2,
46 | "no-dupe-keys": 2,
47 | "no-duplicate-case": 2,
48 | "no-empty-character-class": 2,
49 | "no-eval": 2,
50 | "no-ex-assign": 2,
51 | "no-extend-native": 2,
52 | "no-extra-bind": 2,
53 | "no-extra-boolean-cast": 2,
54 | "no-extra-parens": [2, "functions"],
55 | "no-fallthrough": 2,
56 | "no-floating-decimal": 2,
57 | "no-func-assign": 2,
58 | "no-implied-eval": 2,
59 | "no-implicit-coercion": 2,
60 | "no-inner-declarations": [2, "functions"],
61 | "no-invalid-regexp": 2,
62 | "no-irregular-whitespace": 2,
63 | "no-iterator": 2,
64 | "no-label-var": 2,
65 | "no-labels": 2,
66 | "no-lone-blocks": 2,
67 | "no-lonely-if": 2,
68 | "no-mixed-spaces-and-tabs": 2,
69 | "no-multi-spaces": 0,
70 | "no-multi-str": 2,
71 | "no-multiple-empty-lines": [2, { "max": 1 }],
72 | "no-native-reassign": 2,
73 | "no-negated-in-lhs": 2,
74 | "no-new": 2,
75 | "no-new-func": 2,
76 | "no-new-object": 2,
77 | "no-new-require": 2,
78 | "no-new-wrappers": 2,
79 | "no-obj-calls": 2,
80 | "no-octal": 2,
81 | "no-octal-escape": 2,
82 | "no-proto": 2,
83 | "no-redeclare": 2,
84 | "no-regex-spaces": 2,
85 | "no-return-assign": 2,
86 | "no-self-compare": 2,
87 | "no-sequences": 2,
88 | "no-shadow-restricted-names": 2,
89 | "no-spaced-func": 2,
90 | "no-sparse-arrays": 2,
91 | "no-this-before-super": 2,
92 | "no-throw-literal": 2,
93 | "no-trailing-spaces": 2,
94 | "no-undef": 2,
95 | "no-undef-init": 2,
96 | "no-unexpected-multiline": 2,
97 | "no-unneeded-ternary": [2, { "defaultAssignment": false }],
98 | "no-unreachable": 2,
99 | "no-unused-expressions": 0,
100 | "no-unused-vars": [2, { "vars": "all", "args": "none" }],
101 | "no-useless-call": 2,
102 | "no-with": 2,
103 | "object-curly-spacing": ["error", "always", { "objectsInObjects": true }],
104 | "one-var": [2, { "initialized": "never" }],
105 | "operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }],
106 | "padded-blocks": [0, "never"],
107 | "prefer-const": 2,
108 | "quotes": [2, "single", "avoid-escape"],
109 | "radix": 2,
110 | "semi": [2, "always"],
111 | "semi-spacing": [2, { "before": false, "after": true }],
112 | "space-before-blocks": [2, "always"],
113 | "space-before-function-paren": [2, "never"],
114 | "space-in-parens": [2, "never"],
115 | "space-infix-ops": 2,
116 | "space-unary-ops": [2, { "words": true, "nonwords": false }],
117 | "spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
118 | "strict": 2,
119 | "use-isnan": 2,
120 | "valid-typeof": 2,
121 | "wrap-iife": [2, "any"],
122 | "yoda": [2, "never"]
123 | }
124 | }
125 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
--------------------------------------------------------------------------------
/.github/contributing.md:
--------------------------------------------------------------------------------
1 | # Contributing to replace-case
2 |
3 | First and foremost, thank you! We appreciate that you want to contribute to replace-case, your time is valuable, and your contributions mean a lot to us.
4 |
5 | **What does "contributing" mean?**
6 |
7 | Creating an issue is the simplest form of contributing to a project. But there are many ways to contribute, including the following:
8 |
9 | - Updating or correcting documentation
10 | - Feature requests
11 | - Bug reports
12 |
13 | If you'd like to learn more about contributing in general, the [Guide to Idiomatic Contributing](https://github.com/jonschlinkert/idiomatic-contributing) has a lot of useful information.
14 |
15 | **Showing support for replace-case**
16 |
17 | Please keep in mind that open source software is built by people like you, who spend their free time creating things the rest the community can use.
18 |
19 | Don't have time to contribute? No worries, here are some other ways to show your support for replace-case:
20 |
21 | - star the [project](https://github.com/jonschlinkert/replace-case)
22 | - tweet your support for replace-case
23 |
24 | ## Issues
25 |
26 | ### Before creating an issue
27 |
28 | Please try to determine if the issue is caused by an underlying library, and if so, create the issue there. Sometimes this is difficult to know. We only ask that you attempt to give a reasonable attempt to find out. Oftentimes the readme will have advice about where to go to create issues.
29 |
30 | Try to follow these guidelines
31 |
32 | - **Investigate the issue**:
33 | - **Check the readme** - oftentimes you will find notes about creating issues, and where to go depending on the type of issue.
34 | - Create the issue in the appropriate repository.
35 |
36 | ### Creating an issue
37 |
38 | Please be as descriptive as possible when creating an issue. Give us the information we need to successfully answer your question or address your issue by answering the following in your issue:
39 |
40 | - **version**: please note the version of replace-case are you using
41 | - **extensions, plugins, helpers, etc** (if applicable): please list any extensions you're using
42 | - **error messages**: please paste any error messages into the issue, or a [gist](https://gist.github.com/)
43 |
44 | ## Above and beyond
45 |
46 | Here are some tips for creating idiomatic issues. Taking just a little bit extra time will make your issue easier to read, easier to resolve, more likely to be found by others who have the same or similar issue in the future.
47 |
48 | - read the [Guide to Idiomatic Contributing](https://github.com/jonschlinkert/idiomatic-contributing)
49 | - take some time to learn basic markdown. This [markdown cheatsheet](https://gist.github.com/jonschlinkert/5854601) is super helpful, as is the GitHub guide to [basic markdown](https://help.github.com/articles/markdown-basics/).
50 | - Learn about [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). And if you want to really go above and beyond, read [mastering markdown](https://guides.github.com/features/mastering-markdown/).
51 | - use backticks to wrap code. This ensures that code will retain its format, making it much more readable to others
52 | - use syntax highlighting by adding the correct language name after the first "code fence"
53 |
54 |
55 | [node-glob]: https://github.com/isaacs/node-glob
56 | [micromatch]: https://github.com/jonschlinkert/micromatch
57 | [so]: http://stackoverflow.com/questions/tagged/replace-case
58 |
--------------------------------------------------------------------------------
/.github/workflows/test.yml:
--------------------------------------------------------------------------------
1 | name: Tests
2 | on: [push, pull_request]
3 | env:
4 | CI: true
5 |
6 | jobs:
7 | run:
8 | runs-on: ${{ matrix.os }}
9 |
10 | strategy:
11 | fail-fast: false
12 | matrix:
13 | os: [ubuntu-latest, windows-latest, macos-latest]
14 | node: [16, 18, 20, 22]
15 |
16 | name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
17 | steps:
18 | - name: Clone repository
19 | uses: actions/checkout@v2
20 |
21 | - name: Set Node.js version
22 | uses: actions/setup-node@v2
23 | with:
24 | node-version: ${{ matrix.node }}
25 |
26 | - run: node --version
27 | - run: npm --version
28 |
29 | - name: Install npm dependencies
30 | run: npm install
31 |
32 | - name: Run tsup
33 | run: npm run tsup
34 |
35 | - name: Run tests
36 | run: npm run test
37 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # always ignore files
2 | *.sublime-*
3 | *.code-*
4 | *.log
5 | .DS_Store
6 | .env
7 | .env.*
8 |
9 | # always ignore dirs
10 | temp
11 | tmp
12 | vendor
13 |
14 | # test related, or directories generated by tests
15 | test/actual
16 | actual
17 | coverage
18 | .nyc*
19 |
20 | # package managers
21 | node_modules
22 | package-lock.json
23 | yarn.lock
24 |
25 | # misc
26 | _gh_pages
27 | _draft
28 | _drafts
29 | _inbox
30 | bower_components
31 | vendor
32 | temp
33 | tmp
34 |
35 | # AI
36 |
37 | *.generated.*
38 | *.updated.*
39 | .chat
40 | .smith
41 | dist
42 |
--------------------------------------------------------------------------------
/.verb.md:
--------------------------------------------------------------------------------
1 | ## Usage
2 |
3 | The main export is a function that takes a string as the only argument.
4 |
5 | ```js
6 | const detectCase = require('{%= name %}');
7 | // or
8 | const { detectCase } = require('{%= name %}');
9 | // or
10 | import detectCase from '{%= name %}';
11 | // or
12 | import { detectCase } from '{%= name %}';
13 |
14 | console.log(detectCase('foo')); // lowercase
15 | console.log(detectCase('FOO')); // uppercase
16 | console.log(detectCase('Foo')); // titlecase
17 | console.log(detectCase('A Good Year')); // titlecase
18 | console.log(detectCase('A very long year')); // sentencecase
19 | console.log(detectCase('FooBar')); // pascalcase
20 | console.log(detectCase('fooBar')); // camelcase
21 | console.log(detectCase('foo_bar')); // snakecase
22 | console.log(detectCase('FOO_BAR')); // uppersnake
23 | console.log(detectCase('1223344')); // unknown
24 | ```
25 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # detect-case [](https://www.npmjs.com/package/detect-case) [](https://npmjs.org/package/detect-case) [](https://npmjs.org/package/detect-case)
2 |
3 | > Detects the casing of the input string (camelcase, lowercase, snakecase etc).
4 |
5 | Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
6 |
7 | ## Install
8 |
9 | Install with [npm](https://www.npmjs.com/):
10 |
11 | ```sh
12 | $ npm install --save detect-case
13 | ```
14 |
15 | ## Usage
16 |
17 | The main export is a function that takes a string as the only argument.
18 |
19 | ```js
20 | const detectCase = require('detect-case');
21 | // or
22 | const { detectCase } = require('detect-case');
23 | // or
24 | import detectCase from 'detect-case';
25 | // or
26 | import { detectCase } from 'detect-case';
27 |
28 | console.log(detectCase('foo')); // lowercase
29 | console.log(detectCase('FOO')); // uppercase
30 | console.log(detectCase('Foo')); // titlecase
31 | console.log(detectCase('A Good Year')); // titlecase
32 | console.log(detectCase('A very long year')); // sentencecase
33 | console.log(detectCase('FooBar')); // pascalcase
34 | console.log(detectCase('fooBar')); // camelcase
35 | console.log(detectCase('foo_bar')); // snakecase
36 | console.log(detectCase('FOO_BAR')); // uppersnake
37 | console.log(detectCase('1223344')); // unknown
38 | ```
39 |
40 | ## About
41 |
42 |
43 | Contributing
44 |
45 | Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
46 |
47 | Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
48 |
49 |
50 |
51 |
52 | Running Tests
53 |
54 | Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
55 |
56 | ```sh
57 | $ npm install && npm test
58 | ```
59 |
60 |
61 |
62 |
63 | Building docs
64 |
65 | _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
66 |
67 | To generate the readme, run the following command:
68 |
69 | ```sh
70 | $ npm install -g verbose/verb#dev verb-generate-readme && verb
71 | ```
72 |
73 |
74 |
75 | ### Author
76 |
77 | **Jon Schlinkert**
78 |
79 | * [GitHub Profile](https://github.com/jonschlinkert)
80 | * [Twitter Profile](https://twitter.com/jonschlinkert)
81 | * [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
82 |
83 | ### License
84 |
85 | Copyright © 2025, [Jon Schlinkert](https://github.com/jonschlinkert).
86 | Released under the MIT License.
87 |
88 | ***
89 |
90 | _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on January 26, 2025._
--------------------------------------------------------------------------------
/index.ts:
--------------------------------------------------------------------------------
1 | export const WORD_SPLIT_REGEX_STRICT = /([\p{Lu}]+[\p{Ll}]*|[\p{Ll}]+|[\p{N}]+)/gu;
2 | export const WORD_SPLIT_REGEX = /([\p{Lu}(.,-]+[\p{Ll})]*|[\p{Ll}()]+|[\p{N}()]+)/gu;
3 |
4 | export const splitString = (input: unknown, strict = true): string[] => {
5 | const regex = strict ? WORD_SPLIT_REGEX_STRICT : WORD_SPLIT_REGEX;
6 | return input ? (String(input).match(regex) || []).filter(Boolean) : [];
7 | };
8 |
9 | const isPascalCase = (input: string): boolean => {
10 | return /^([A-Z][a-zA-Z]*)+$/.test(input);
11 | };
12 |
13 | export const detectCase = (input: string): string => {
14 | if (typeof input !== 'string') {
15 | throw new TypeError('Expected input to be a string');
16 | }
17 |
18 | if (!input) return 'unknown';
19 | if (!/[a-z]/i.test(input)) return 'unknown';
20 |
21 | if (input.includes('_')) {
22 | if (/^([A-Z][A-Z0-9_]+)+$/.test(input)) return 'uppersnake';
23 | if (/^([a-z][a-z0-9_]+)+$/.test(input)) return 'snakecase';
24 | return 'mixedcase';
25 | }
26 |
27 | if (input.includes('-')) {
28 | if (/^([a-z][a-z0-9-]+)+$/.test(input)) return 'kebabcase';
29 | return 'mixedcase';
30 | }
31 |
32 | if (/^[a-z ]+$/.test(input)) return 'lowercase';
33 | if (/^[A-Z][A-Z0-9_]*$/.test(input)) return 'uppercase';
34 |
35 | const words = input.split(/\s+/);
36 | if (words.length > 1 && words.every((word) => isPascalCase(word))) {
37 | return 'titlecase';
38 | }
39 |
40 | // The exception to previous is when the first word is a number
41 | // making the second word a candidate for pascal case
42 | if (words.length > 1 && (/^[0-9]+$/.test(words[0]) && isPascalCase(words[1]))) {
43 | return 'titlecase';
44 | }
45 |
46 | if (words.length > 1 && isPascalCase(words[0])) {
47 | return 'sentencecase';
48 | }
49 |
50 | if (isPascalCase(input)) return 'pascalcase';
51 | if (/^(?:[0-9]+\s+)?(?:[A-Z]\w*\s+)+$/.test(input)) return 'titlecase';
52 | if (/^([a-z][a-z0-9]*[A-Z]+[a-z0-9]*)+$/.test(input)) return 'camelcase';
53 | if (/[.!?;:,](?!(?:\s|$))/.test(input)) return 'unknown';
54 | return 'mixedcase';
55 | };
56 |
57 | export default detectCase;
58 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "detect-case",
3 | "description": "Detects the casing of the input string (camelcase, lowercase, snakecase etc).",
4 | "version": "2.0.0",
5 | "license": "MIT",
6 | "homepage": "https://github.com/jonschlinkert/detect-case",
7 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
8 | "repository": "jonschlinkert/detect-case",
9 | "bugs": {
10 | "url": "https://github.com/jonschlinkert/detect-case/issues"
11 | },
12 | "main": "dist/index.js",
13 | "module": "dist/index.mjs",
14 | "files": [
15 | "dist"
16 | ],
17 | "scripts": {
18 | "clean": "rm -rf dist",
19 | "eslint": "npx eslint --ext .ts .",
20 | "test": "ts-mocha -r esbuild-register 'test/*.test.ts'",
21 | "tsup": "npm run clean && npx tsup"
22 | },
23 | "exports": {
24 | ".": {
25 | "import": "./dist/index.mjs",
26 | "require": "./dist/index.js"
27 | },
28 | "./*": {
29 | "import": "./dist/*.mjs",
30 | "require": "./dist/*.js"
31 | }
32 | },
33 | "devDependencies": {
34 | "@types/node": "^22.10.5",
35 | "esbuild-register": "^3.6.0",
36 | "eslint": "^8.57.0",
37 | "gulp-format-md": "^2.0.0",
38 | "prettier": "^3.4.2",
39 | "ts-mocha": "^10.0.0",
40 | "ts-node": "^10.9.2",
41 | "tsconfig-paths": "^4.2.0",
42 | "tsup": "^8.3.5",
43 | "typescript": "^5.7.2"
44 | },
45 | "keywords": [
46 | "camel",
47 | "camelcase",
48 | "case-sensitive",
49 | "case",
50 | "detect",
51 | "exec",
52 | "lowercase",
53 | "match",
54 | "matches",
55 | "occurrence",
56 | "occurrences",
57 | "pattern",
58 | "patterns",
59 | "regex",
60 | "regular expression",
61 | "replace",
62 | "replacement",
63 | "snake",
64 | "snakecase",
65 | "string",
66 | "substring",
67 | "title",
68 | "titlecase",
69 | "uppercase"
70 | ],
71 | "verb": {
72 | "toc": false,
73 | "layout": "default",
74 | "tasks": [
75 | "readme"
76 | ],
77 | "plugins": [
78 | "gulp-format-md"
79 | ],
80 | "lint": {
81 | "reflinks": true
82 | }
83 | }
84 | }
85 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | devDependencies:
11 | '@types/node':
12 | specifier: ^22.10.5
13 | version: 22.10.10
14 | esbuild-register:
15 | specifier: ^3.6.0
16 | version: 3.6.0(esbuild@0.24.2)
17 | eslint:
18 | specifier: ^8.57.0
19 | version: 8.57.1
20 | gulp-format-md:
21 | specifier: ^2.0.0
22 | version: 2.0.0
23 | prettier:
24 | specifier: ^3.4.2
25 | version: 3.4.2
26 | ts-mocha:
27 | specifier: ^10.0.0
28 | version: 10.0.0(mocha@6.2.3)
29 | ts-node:
30 | specifier: ^10.9.2
31 | version: 10.9.2(@types/node@22.10.10)(typescript@5.7.3)
32 | tsconfig-paths:
33 | specifier: ^4.2.0
34 | version: 4.2.0
35 | tsup:
36 | specifier: ^8.3.5
37 | version: 8.3.6(typescript@5.7.3)
38 | typescript:
39 | specifier: ^5.7.2
40 | version: 5.7.3
41 |
42 | packages:
43 |
44 | '@cspotcode/source-map-support@0.8.1':
45 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
46 | engines: {node: '>=12'}
47 |
48 | '@esbuild/aix-ppc64@0.24.2':
49 | resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
50 | engines: {node: '>=18'}
51 | cpu: [ppc64]
52 | os: [aix]
53 |
54 | '@esbuild/android-arm64@0.24.2':
55 | resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
56 | engines: {node: '>=18'}
57 | cpu: [arm64]
58 | os: [android]
59 |
60 | '@esbuild/android-arm@0.24.2':
61 | resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
62 | engines: {node: '>=18'}
63 | cpu: [arm]
64 | os: [android]
65 |
66 | '@esbuild/android-x64@0.24.2':
67 | resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
68 | engines: {node: '>=18'}
69 | cpu: [x64]
70 | os: [android]
71 |
72 | '@esbuild/darwin-arm64@0.24.2':
73 | resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
74 | engines: {node: '>=18'}
75 | cpu: [arm64]
76 | os: [darwin]
77 |
78 | '@esbuild/darwin-x64@0.24.2':
79 | resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
80 | engines: {node: '>=18'}
81 | cpu: [x64]
82 | os: [darwin]
83 |
84 | '@esbuild/freebsd-arm64@0.24.2':
85 | resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
86 | engines: {node: '>=18'}
87 | cpu: [arm64]
88 | os: [freebsd]
89 |
90 | '@esbuild/freebsd-x64@0.24.2':
91 | resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
92 | engines: {node: '>=18'}
93 | cpu: [x64]
94 | os: [freebsd]
95 |
96 | '@esbuild/linux-arm64@0.24.2':
97 | resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
98 | engines: {node: '>=18'}
99 | cpu: [arm64]
100 | os: [linux]
101 |
102 | '@esbuild/linux-arm@0.24.2':
103 | resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
104 | engines: {node: '>=18'}
105 | cpu: [arm]
106 | os: [linux]
107 |
108 | '@esbuild/linux-ia32@0.24.2':
109 | resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
110 | engines: {node: '>=18'}
111 | cpu: [ia32]
112 | os: [linux]
113 |
114 | '@esbuild/linux-loong64@0.24.2':
115 | resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
116 | engines: {node: '>=18'}
117 | cpu: [loong64]
118 | os: [linux]
119 |
120 | '@esbuild/linux-mips64el@0.24.2':
121 | resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
122 | engines: {node: '>=18'}
123 | cpu: [mips64el]
124 | os: [linux]
125 |
126 | '@esbuild/linux-ppc64@0.24.2':
127 | resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
128 | engines: {node: '>=18'}
129 | cpu: [ppc64]
130 | os: [linux]
131 |
132 | '@esbuild/linux-riscv64@0.24.2':
133 | resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
134 | engines: {node: '>=18'}
135 | cpu: [riscv64]
136 | os: [linux]
137 |
138 | '@esbuild/linux-s390x@0.24.2':
139 | resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
140 | engines: {node: '>=18'}
141 | cpu: [s390x]
142 | os: [linux]
143 |
144 | '@esbuild/linux-x64@0.24.2':
145 | resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
146 | engines: {node: '>=18'}
147 | cpu: [x64]
148 | os: [linux]
149 |
150 | '@esbuild/netbsd-arm64@0.24.2':
151 | resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
152 | engines: {node: '>=18'}
153 | cpu: [arm64]
154 | os: [netbsd]
155 |
156 | '@esbuild/netbsd-x64@0.24.2':
157 | resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
158 | engines: {node: '>=18'}
159 | cpu: [x64]
160 | os: [netbsd]
161 |
162 | '@esbuild/openbsd-arm64@0.24.2':
163 | resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
164 | engines: {node: '>=18'}
165 | cpu: [arm64]
166 | os: [openbsd]
167 |
168 | '@esbuild/openbsd-x64@0.24.2':
169 | resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
170 | engines: {node: '>=18'}
171 | cpu: [x64]
172 | os: [openbsd]
173 |
174 | '@esbuild/sunos-x64@0.24.2':
175 | resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
176 | engines: {node: '>=18'}
177 | cpu: [x64]
178 | os: [sunos]
179 |
180 | '@esbuild/win32-arm64@0.24.2':
181 | resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
182 | engines: {node: '>=18'}
183 | cpu: [arm64]
184 | os: [win32]
185 |
186 | '@esbuild/win32-ia32@0.24.2':
187 | resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
188 | engines: {node: '>=18'}
189 | cpu: [ia32]
190 | os: [win32]
191 |
192 | '@esbuild/win32-x64@0.24.2':
193 | resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
194 | engines: {node: '>=18'}
195 | cpu: [x64]
196 | os: [win32]
197 |
198 | '@eslint-community/eslint-utils@4.4.1':
199 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
200 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
201 | peerDependencies:
202 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
203 |
204 | '@eslint-community/regexpp@4.12.1':
205 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
206 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
207 |
208 | '@eslint/eslintrc@2.1.4':
209 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
210 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
211 |
212 | '@eslint/js@8.57.1':
213 | resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
214 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
215 |
216 | '@humanwhocodes/config-array@0.13.0':
217 | resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
218 | engines: {node: '>=10.10.0'}
219 | deprecated: Use @eslint/config-array instead
220 |
221 | '@humanwhocodes/module-importer@1.0.1':
222 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
223 | engines: {node: '>=12.22'}
224 |
225 | '@humanwhocodes/object-schema@2.0.3':
226 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
227 | deprecated: Use @eslint/object-schema instead
228 |
229 | '@isaacs/cliui@8.0.2':
230 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
231 | engines: {node: '>=12'}
232 |
233 | '@jridgewell/gen-mapping@0.3.8':
234 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
235 | engines: {node: '>=6.0.0'}
236 |
237 | '@jridgewell/resolve-uri@3.1.2':
238 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
239 | engines: {node: '>=6.0.0'}
240 |
241 | '@jridgewell/set-array@1.2.1':
242 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
243 | engines: {node: '>=6.0.0'}
244 |
245 | '@jridgewell/sourcemap-codec@1.5.0':
246 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
247 |
248 | '@jridgewell/trace-mapping@0.3.25':
249 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
250 |
251 | '@jridgewell/trace-mapping@0.3.9':
252 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
253 |
254 | '@nodelib/fs.scandir@2.1.5':
255 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
256 | engines: {node: '>= 8'}
257 |
258 | '@nodelib/fs.stat@2.0.5':
259 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
260 | engines: {node: '>= 8'}
261 |
262 | '@nodelib/fs.walk@1.2.8':
263 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
264 | engines: {node: '>= 8'}
265 |
266 | '@pkgjs/parseargs@0.11.0':
267 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
268 | engines: {node: '>=14'}
269 |
270 | '@rollup/rollup-android-arm-eabi@4.32.0':
271 | resolution: {integrity: sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==}
272 | cpu: [arm]
273 | os: [android]
274 |
275 | '@rollup/rollup-android-arm64@4.32.0':
276 | resolution: {integrity: sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==}
277 | cpu: [arm64]
278 | os: [android]
279 |
280 | '@rollup/rollup-darwin-arm64@4.32.0':
281 | resolution: {integrity: sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==}
282 | cpu: [arm64]
283 | os: [darwin]
284 |
285 | '@rollup/rollup-darwin-x64@4.32.0':
286 | resolution: {integrity: sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==}
287 | cpu: [x64]
288 | os: [darwin]
289 |
290 | '@rollup/rollup-freebsd-arm64@4.32.0':
291 | resolution: {integrity: sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==}
292 | cpu: [arm64]
293 | os: [freebsd]
294 |
295 | '@rollup/rollup-freebsd-x64@4.32.0':
296 | resolution: {integrity: sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==}
297 | cpu: [x64]
298 | os: [freebsd]
299 |
300 | '@rollup/rollup-linux-arm-gnueabihf@4.32.0':
301 | resolution: {integrity: sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==}
302 | cpu: [arm]
303 | os: [linux]
304 |
305 | '@rollup/rollup-linux-arm-musleabihf@4.32.0':
306 | resolution: {integrity: sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==}
307 | cpu: [arm]
308 | os: [linux]
309 |
310 | '@rollup/rollup-linux-arm64-gnu@4.32.0':
311 | resolution: {integrity: sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==}
312 | cpu: [arm64]
313 | os: [linux]
314 |
315 | '@rollup/rollup-linux-arm64-musl@4.32.0':
316 | resolution: {integrity: sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==}
317 | cpu: [arm64]
318 | os: [linux]
319 |
320 | '@rollup/rollup-linux-loongarch64-gnu@4.32.0':
321 | resolution: {integrity: sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==}
322 | cpu: [loong64]
323 | os: [linux]
324 |
325 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.0':
326 | resolution: {integrity: sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==}
327 | cpu: [ppc64]
328 | os: [linux]
329 |
330 | '@rollup/rollup-linux-riscv64-gnu@4.32.0':
331 | resolution: {integrity: sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==}
332 | cpu: [riscv64]
333 | os: [linux]
334 |
335 | '@rollup/rollup-linux-s390x-gnu@4.32.0':
336 | resolution: {integrity: sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==}
337 | cpu: [s390x]
338 | os: [linux]
339 |
340 | '@rollup/rollup-linux-x64-gnu@4.32.0':
341 | resolution: {integrity: sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==}
342 | cpu: [x64]
343 | os: [linux]
344 |
345 | '@rollup/rollup-linux-x64-musl@4.32.0':
346 | resolution: {integrity: sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==}
347 | cpu: [x64]
348 | os: [linux]
349 |
350 | '@rollup/rollup-win32-arm64-msvc@4.32.0':
351 | resolution: {integrity: sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==}
352 | cpu: [arm64]
353 | os: [win32]
354 |
355 | '@rollup/rollup-win32-ia32-msvc@4.32.0':
356 | resolution: {integrity: sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==}
357 | cpu: [ia32]
358 | os: [win32]
359 |
360 | '@rollup/rollup-win32-x64-msvc@4.32.0':
361 | resolution: {integrity: sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==}
362 | cpu: [x64]
363 | os: [win32]
364 |
365 | '@tsconfig/node10@1.0.11':
366 | resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
367 |
368 | '@tsconfig/node12@1.0.11':
369 | resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
370 |
371 | '@tsconfig/node14@1.0.3':
372 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
373 |
374 | '@tsconfig/node16@1.0.4':
375 | resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
376 |
377 | '@types/estree@1.0.6':
378 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
379 |
380 | '@types/json5@0.0.29':
381 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
382 |
383 | '@types/node@22.10.10':
384 | resolution: {integrity: sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww==}
385 |
386 | '@ungap/structured-clone@1.3.0':
387 | resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
388 |
389 | acorn-jsx@5.3.2:
390 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
391 | peerDependencies:
392 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
393 |
394 | acorn-walk@8.3.4:
395 | resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
396 | engines: {node: '>=0.4.0'}
397 |
398 | acorn@8.14.0:
399 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
400 | engines: {node: '>=0.4.0'}
401 | hasBin: true
402 |
403 | ajv@6.12.6:
404 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
405 |
406 | ansi-colors@3.2.3:
407 | resolution: {integrity: sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==}
408 | engines: {node: '>=6'}
409 |
410 | ansi-regex@3.0.1:
411 | resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
412 | engines: {node: '>=4'}
413 |
414 | ansi-regex@4.1.1:
415 | resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
416 | engines: {node: '>=6'}
417 |
418 | ansi-regex@5.0.1:
419 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
420 | engines: {node: '>=8'}
421 |
422 | ansi-regex@6.1.0:
423 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
424 | engines: {node: '>=12'}
425 |
426 | ansi-styles@3.2.1:
427 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
428 | engines: {node: '>=4'}
429 |
430 | ansi-styles@4.3.0:
431 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
432 | engines: {node: '>=8'}
433 |
434 | ansi-styles@6.2.1:
435 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
436 | engines: {node: '>=12'}
437 |
438 | any-promise@1.3.0:
439 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
440 |
441 | arg@4.1.3:
442 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
443 |
444 | argparse@1.0.10:
445 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
446 |
447 | argparse@2.0.1:
448 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
449 |
450 | array-buffer-byte-length@1.0.2:
451 | resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
452 | engines: {node: '>= 0.4'}
453 |
454 | array.prototype.reduce@1.0.7:
455 | resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==}
456 | engines: {node: '>= 0.4'}
457 |
458 | arraybuffer.prototype.slice@1.0.4:
459 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
460 | engines: {node: '>= 0.4'}
461 |
462 | arrify@1.0.1:
463 | resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
464 | engines: {node: '>=0.10.0'}
465 |
466 | async-function@1.0.0:
467 | resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
468 | engines: {node: '>= 0.4'}
469 |
470 | autolinker@0.28.1:
471 | resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==}
472 |
473 | available-typed-arrays@1.0.7:
474 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
475 | engines: {node: '>= 0.4'}
476 |
477 | balanced-match@1.0.2:
478 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
479 |
480 | brace-expansion@1.1.11:
481 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
482 |
483 | brace-expansion@2.0.1:
484 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
485 |
486 | browser-stdout@1.3.1:
487 | resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
488 |
489 | buffer-from@1.1.2:
490 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
491 |
492 | bundle-require@5.1.0:
493 | resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
494 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
495 | peerDependencies:
496 | esbuild: '>=0.18'
497 |
498 | cac@6.7.14:
499 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
500 | engines: {node: '>=8'}
501 |
502 | call-bind-apply-helpers@1.0.1:
503 | resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
504 | engines: {node: '>= 0.4'}
505 |
506 | call-bind@1.0.8:
507 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
508 | engines: {node: '>= 0.4'}
509 |
510 | call-bound@1.0.3:
511 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
512 | engines: {node: '>= 0.4'}
513 |
514 | callsites@3.1.0:
515 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
516 | engines: {node: '>=6'}
517 |
518 | camelcase@5.3.1:
519 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
520 | engines: {node: '>=6'}
521 |
522 | chalk@2.4.2:
523 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
524 | engines: {node: '>=4'}
525 |
526 | chalk@4.1.2:
527 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
528 | engines: {node: '>=10'}
529 |
530 | chokidar@4.0.3:
531 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
532 | engines: {node: '>= 14.16.0'}
533 |
534 | cliui@5.0.0:
535 | resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==}
536 |
537 | color-convert@1.9.3:
538 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
539 |
540 | color-convert@2.0.1:
541 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
542 | engines: {node: '>=7.0.0'}
543 |
544 | color-name@1.1.3:
545 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
546 |
547 | color-name@1.1.4:
548 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
549 |
550 | commander@4.1.1:
551 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
552 | engines: {node: '>= 6'}
553 |
554 | concat-map@0.0.1:
555 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
556 |
557 | concat-with-sourcemaps@1.1.0:
558 | resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==}
559 |
560 | consola@3.4.0:
561 | resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
562 | engines: {node: ^14.18.0 || >=16.10.0}
563 |
564 | core-util-is@1.0.3:
565 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
566 |
567 | create-require@1.1.1:
568 | resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
569 |
570 | cross-spawn@7.0.6:
571 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
572 | engines: {node: '>= 8'}
573 |
574 | data-view-buffer@1.0.2:
575 | resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
576 | engines: {node: '>= 0.4'}
577 |
578 | data-view-byte-length@1.0.2:
579 | resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
580 | engines: {node: '>= 0.4'}
581 |
582 | data-view-byte-offset@1.0.1:
583 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
584 | engines: {node: '>= 0.4'}
585 |
586 | debug@3.2.6:
587 | resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==}
588 | deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
589 | peerDependencies:
590 | supports-color: '*'
591 | peerDependenciesMeta:
592 | supports-color:
593 | optional: true
594 |
595 | debug@4.4.0:
596 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
597 | engines: {node: '>=6.0'}
598 | peerDependencies:
599 | supports-color: '*'
600 | peerDependenciesMeta:
601 | supports-color:
602 | optional: true
603 |
604 | decamelize@1.2.0:
605 | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
606 | engines: {node: '>=0.10.0'}
607 |
608 | deep-is@0.1.4:
609 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
610 |
611 | define-data-property@1.1.4:
612 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
613 | engines: {node: '>= 0.4'}
614 |
615 | define-properties@1.2.1:
616 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
617 | engines: {node: '>= 0.4'}
618 |
619 | diff@3.5.0:
620 | resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==}
621 | engines: {node: '>=0.3.1'}
622 |
623 | diff@4.0.2:
624 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
625 | engines: {node: '>=0.3.1'}
626 |
627 | doctrine@3.0.0:
628 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
629 | engines: {node: '>=6.0.0'}
630 |
631 | dunder-proto@1.0.1:
632 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
633 | engines: {node: '>= 0.4'}
634 |
635 | eastasianwidth@0.2.0:
636 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
637 |
638 | emoji-regex@7.0.3:
639 | resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==}
640 |
641 | emoji-regex@8.0.0:
642 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
643 |
644 | emoji-regex@9.2.2:
645 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
646 |
647 | es-abstract@1.23.9:
648 | resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
649 | engines: {node: '>= 0.4'}
650 |
651 | es-array-method-boxes-properly@1.0.0:
652 | resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
653 |
654 | es-define-property@1.0.1:
655 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
656 | engines: {node: '>= 0.4'}
657 |
658 | es-errors@1.3.0:
659 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
660 | engines: {node: '>= 0.4'}
661 |
662 | es-object-atoms@1.1.1:
663 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
664 | engines: {node: '>= 0.4'}
665 |
666 | es-set-tostringtag@2.1.0:
667 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
668 | engines: {node: '>= 0.4'}
669 |
670 | es-to-primitive@1.3.0:
671 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
672 | engines: {node: '>= 0.4'}
673 |
674 | esbuild-register@3.6.0:
675 | resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
676 | peerDependencies:
677 | esbuild: '>=0.12 <1'
678 |
679 | esbuild@0.24.2:
680 | resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
681 | engines: {node: '>=18'}
682 | hasBin: true
683 |
684 | escape-string-regexp@1.0.5:
685 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
686 | engines: {node: '>=0.8.0'}
687 |
688 | escape-string-regexp@4.0.0:
689 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
690 | engines: {node: '>=10'}
691 |
692 | eslint-scope@7.2.2:
693 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
694 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
695 |
696 | eslint-visitor-keys@3.4.3:
697 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
698 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
699 |
700 | eslint@8.57.1:
701 | resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
702 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
703 | deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
704 | hasBin: true
705 |
706 | espree@9.6.1:
707 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
708 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
709 |
710 | esprima@4.0.1:
711 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
712 | engines: {node: '>=4'}
713 | hasBin: true
714 |
715 | esquery@1.6.0:
716 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
717 | engines: {node: '>=0.10'}
718 |
719 | esrecurse@4.3.0:
720 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
721 | engines: {node: '>=4.0'}
722 |
723 | estraverse@5.3.0:
724 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
725 | engines: {node: '>=4.0'}
726 |
727 | esutils@2.0.3:
728 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
729 | engines: {node: '>=0.10.0'}
730 |
731 | extend-shallow@2.0.1:
732 | resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
733 | engines: {node: '>=0.10.0'}
734 |
735 | fast-deep-equal@3.1.3:
736 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
737 |
738 | fast-json-stable-stringify@2.1.0:
739 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
740 |
741 | fast-levenshtein@2.0.6:
742 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
743 |
744 | fastq@1.18.0:
745 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
746 |
747 | fdir@6.4.3:
748 | resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
749 | peerDependencies:
750 | picomatch: ^3 || ^4
751 | peerDependenciesMeta:
752 | picomatch:
753 | optional: true
754 |
755 | file-entry-cache@6.0.1:
756 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
757 | engines: {node: ^10.12.0 || >=12.0.0}
758 |
759 | fill-range@6.0.0:
760 | resolution: {integrity: sha512-HaePWycCxz/O/VsefR6fRhhZ+64gSwUAy5GIN1gX+8Z+JPFWvNsz2qaeYLq/hS3RgC06MlkZFSE+4UObHvbpXw==}
761 | engines: {node: '>=4.0'}
762 |
763 | find-up@3.0.0:
764 | resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
765 | engines: {node: '>=6'}
766 |
767 | find-up@5.0.0:
768 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
769 | engines: {node: '>=10'}
770 |
771 | flat-cache@3.2.0:
772 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
773 | engines: {node: ^10.12.0 || >=12.0.0}
774 |
775 | flat@4.1.1:
776 | resolution: {integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==}
777 | hasBin: true
778 |
779 | flatted@3.3.2:
780 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
781 |
782 | for-each@0.3.4:
783 | resolution: {integrity: sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==}
784 | engines: {node: '>= 0.4'}
785 |
786 | foreground-child@3.3.0:
787 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
788 | engines: {node: '>=14'}
789 |
790 | fs.realpath@1.0.0:
791 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
792 |
793 | fsevents@2.3.3:
794 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
795 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
796 | os: [darwin]
797 |
798 | function-bind@1.1.2:
799 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
800 |
801 | function.prototype.name@1.1.8:
802 | resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
803 | engines: {node: '>= 0.4'}
804 |
805 | functions-have-names@1.2.3:
806 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
807 |
808 | get-caller-file@2.0.5:
809 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
810 | engines: {node: 6.* || 8.* || >= 10.*}
811 |
812 | get-intrinsic@1.2.7:
813 | resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
814 | engines: {node: '>= 0.4'}
815 |
816 | get-proto@1.0.1:
817 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
818 | engines: {node: '>= 0.4'}
819 |
820 | get-symbol-description@1.1.0:
821 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
822 | engines: {node: '>= 0.4'}
823 |
824 | gfm-code-block-regex@1.0.0:
825 | resolution: {integrity: sha512-aP0XZhL1LNyCT3r89k4MfUCT5FYcUAWbBb2HmFlBvOgYVtDXGYqyG6pRmxwJqwbLRGyK/kdt8IrsJVmuxPVvDw==}
826 | engines: {node: '>=0.10.0'}
827 |
828 | gfm-code-blocks@1.0.0:
829 | resolution: {integrity: sha512-MdJip0Y/0UArlhvBE5heNAFgR/aJr5rdcnodC6nJK1yPKmEfhe89h9LZVn724mqcslAj5rOYT07oQoHr1tmDuw==}
830 | engines: {node: '>=0.10.0'}
831 |
832 | glob-parent@6.0.2:
833 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
834 | engines: {node: '>=10.13.0'}
835 |
836 | glob@10.4.5:
837 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
838 | hasBin: true
839 |
840 | glob@7.1.3:
841 | resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==}
842 | deprecated: Glob versions prior to v9 are no longer supported
843 |
844 | globals@13.24.0:
845 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
846 | engines: {node: '>=8'}
847 |
848 | globalthis@1.0.4:
849 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
850 | engines: {node: '>= 0.4'}
851 |
852 | gopd@1.2.0:
853 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
854 | engines: {node: '>= 0.4'}
855 |
856 | graphemer@1.4.0:
857 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
858 |
859 | growl@1.10.5:
860 | resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==}
861 | engines: {node: '>=4.x'}
862 |
863 | gulp-format-md@2.0.0:
864 | resolution: {integrity: sha512-hn5CxC/Pzog+HYzoS5tx9404Dw3d/E3TZcPSbcCoL3PJNN2PN43rycut1AGLi1NiLAqI4E8t1xNCbLfof6mP9A==}
865 | engines: {node: '>=8'}
866 |
867 | gulp-header@1.8.12:
868 | resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==}
869 | deprecated: Removed event-stream from gulp-header
870 |
871 | has-bigints@1.1.0:
872 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
873 | engines: {node: '>= 0.4'}
874 |
875 | has-flag@3.0.0:
876 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
877 | engines: {node: '>=4'}
878 |
879 | has-flag@4.0.0:
880 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
881 | engines: {node: '>=8'}
882 |
883 | has-property-descriptors@1.0.2:
884 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
885 |
886 | has-proto@1.2.0:
887 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
888 | engines: {node: '>= 0.4'}
889 |
890 | has-symbols@1.1.0:
891 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
892 | engines: {node: '>= 0.4'}
893 |
894 | has-tostringtag@1.0.2:
895 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
896 | engines: {node: '>= 0.4'}
897 |
898 | hasown@2.0.2:
899 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
900 | engines: {node: '>= 0.4'}
901 |
902 | he@1.2.0:
903 | resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
904 | hasBin: true
905 |
906 | ignore@5.3.2:
907 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
908 | engines: {node: '>= 4'}
909 |
910 | import-fresh@3.3.0:
911 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
912 | engines: {node: '>=6'}
913 |
914 | imurmurhash@0.1.4:
915 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
916 | engines: {node: '>=0.8.19'}
917 |
918 | inflight@1.0.6:
919 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
920 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
921 |
922 | inherits@2.0.4:
923 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
924 |
925 | internal-slot@1.1.0:
926 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
927 | engines: {node: '>= 0.4'}
928 |
929 | is-array-buffer@3.0.5:
930 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
931 | engines: {node: '>= 0.4'}
932 |
933 | is-async-function@2.1.1:
934 | resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
935 | engines: {node: '>= 0.4'}
936 |
937 | is-bigint@1.1.0:
938 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
939 | engines: {node: '>= 0.4'}
940 |
941 | is-boolean-object@1.2.1:
942 | resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
943 | engines: {node: '>= 0.4'}
944 |
945 | is-buffer@2.0.5:
946 | resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
947 | engines: {node: '>=4'}
948 |
949 | is-callable@1.2.7:
950 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
951 | engines: {node: '>= 0.4'}
952 |
953 | is-data-view@1.0.2:
954 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
955 | engines: {node: '>= 0.4'}
956 |
957 | is-date-object@1.1.0:
958 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
959 | engines: {node: '>= 0.4'}
960 |
961 | is-extendable@0.1.1:
962 | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
963 | engines: {node: '>=0.10.0'}
964 |
965 | is-extglob@2.1.1:
966 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
967 | engines: {node: '>=0.10.0'}
968 |
969 | is-finalizationregistry@1.1.1:
970 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
971 | engines: {node: '>= 0.4'}
972 |
973 | is-fullwidth-code-point@2.0.0:
974 | resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
975 | engines: {node: '>=4'}
976 |
977 | is-fullwidth-code-point@3.0.0:
978 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
979 | engines: {node: '>=8'}
980 |
981 | is-generator-function@1.1.0:
982 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
983 | engines: {node: '>= 0.4'}
984 |
985 | is-glob@4.0.3:
986 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
987 | engines: {node: '>=0.10.0'}
988 |
989 | is-map@2.0.3:
990 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
991 | engines: {node: '>= 0.4'}
992 |
993 | is-number-object@1.1.1:
994 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
995 | engines: {node: '>= 0.4'}
996 |
997 | is-number@7.0.0:
998 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
999 | engines: {node: '>=0.12.0'}
1000 |
1001 | is-path-inside@3.0.3:
1002 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1003 | engines: {node: '>=8'}
1004 |
1005 | is-regex@1.2.1:
1006 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
1007 | engines: {node: '>= 0.4'}
1008 |
1009 | is-set@2.0.3:
1010 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1011 | engines: {node: '>= 0.4'}
1012 |
1013 | is-shared-array-buffer@1.0.4:
1014 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
1015 | engines: {node: '>= 0.4'}
1016 |
1017 | is-string@1.1.1:
1018 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
1019 | engines: {node: '>= 0.4'}
1020 |
1021 | is-symbol@1.1.1:
1022 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
1023 | engines: {node: '>= 0.4'}
1024 |
1025 | is-typed-array@1.1.15:
1026 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
1027 | engines: {node: '>= 0.4'}
1028 |
1029 | is-weakmap@2.0.2:
1030 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1031 | engines: {node: '>= 0.4'}
1032 |
1033 | is-weakref@1.1.0:
1034 | resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
1035 | engines: {node: '>= 0.4'}
1036 |
1037 | is-weakset@2.0.4:
1038 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
1039 | engines: {node: '>= 0.4'}
1040 |
1041 | isarray@1.0.0:
1042 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
1043 |
1044 | isarray@2.0.5:
1045 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1046 |
1047 | isexe@2.0.0:
1048 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1049 |
1050 | isobject@3.0.1:
1051 | resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
1052 | engines: {node: '>=0.10.0'}
1053 |
1054 | jackspeak@3.4.3:
1055 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
1056 |
1057 | joycon@3.1.1:
1058 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
1059 | engines: {node: '>=10'}
1060 |
1061 | js-yaml@3.13.1:
1062 | resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==}
1063 | hasBin: true
1064 |
1065 | js-yaml@4.1.0:
1066 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1067 | hasBin: true
1068 |
1069 | json-buffer@3.0.1:
1070 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1071 |
1072 | json-schema-traverse@0.4.1:
1073 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1074 |
1075 | json-stable-stringify-without-jsonify@1.0.1:
1076 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1077 |
1078 | json5@1.0.2:
1079 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1080 | hasBin: true
1081 |
1082 | json5@2.2.3:
1083 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1084 | engines: {node: '>=6'}
1085 | hasBin: true
1086 |
1087 | keyv@4.5.4:
1088 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1089 |
1090 | levn@0.4.1:
1091 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1092 | engines: {node: '>= 0.8.0'}
1093 |
1094 | lilconfig@3.1.3:
1095 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1096 | engines: {node: '>=14'}
1097 |
1098 | lines-and-columns@1.2.4:
1099 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1100 |
1101 | list-item@2.0.0:
1102 | resolution: {integrity: sha512-hxCRzLagZIT8txXzLxcefV7oHelVzLlZ76W5DMNHqW8x/42O6D6f9m6Tt09qhLsOHynUXGe4YwZySEmGjHgOTw==}
1103 | engines: {node: '>=4'}
1104 |
1105 | load-tsconfig@0.2.5:
1106 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
1107 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1108 |
1109 | locate-path@3.0.0:
1110 | resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
1111 | engines: {node: '>=6'}
1112 |
1113 | locate-path@6.0.0:
1114 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1115 | engines: {node: '>=10'}
1116 |
1117 | lodash._reinterpolate@3.0.0:
1118 | resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
1119 |
1120 | lodash.merge@4.6.2:
1121 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1122 |
1123 | lodash.sortby@4.7.0:
1124 | resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
1125 |
1126 | lodash.template@4.5.0:
1127 | resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
1128 | deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead.
1129 |
1130 | lodash.templatesettings@4.2.0:
1131 | resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
1132 |
1133 | lodash@4.17.21:
1134 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
1135 |
1136 | log-symbols@2.2.0:
1137 | resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
1138 | engines: {node: '>=4'}
1139 |
1140 | lru-cache@10.4.3:
1141 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1142 |
1143 | make-error@1.3.6:
1144 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
1145 |
1146 | markdown-utils@1.0.0:
1147 | resolution: {integrity: sha512-d09qgYTIYrLEwMgVeaQpQMp+PpPZGsunX5IHY1mFEWLLT9U2tmlzvcUBIEnYNzsE48OKOzXyPWGOVaO3oLTOwQ==}
1148 | engines: {node: '>=4'}
1149 |
1150 | math-intrinsics@1.1.0:
1151 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1152 | engines: {node: '>= 0.4'}
1153 |
1154 | minimatch@3.0.4:
1155 | resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
1156 |
1157 | minimatch@3.1.2:
1158 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1159 |
1160 | minimatch@9.0.5:
1161 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1162 | engines: {node: '>=16 || 14 >=14.17'}
1163 |
1164 | minimist@1.2.8:
1165 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1166 |
1167 | minipass@7.1.2:
1168 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1169 | engines: {node: '>=16 || 14 >=14.17'}
1170 |
1171 | mkdirp@0.5.4:
1172 | resolution: {integrity: sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==}
1173 | deprecated: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)
1174 | hasBin: true
1175 |
1176 | mocha@6.2.3:
1177 | resolution: {integrity: sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==}
1178 | engines: {node: '>= 6.0.0'}
1179 | hasBin: true
1180 |
1181 | ms@2.1.1:
1182 | resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==}
1183 |
1184 | ms@2.1.3:
1185 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1186 |
1187 | mz@2.7.0:
1188 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1189 |
1190 | natural-compare@1.4.0:
1191 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1192 |
1193 | node-environment-flags@1.0.5:
1194 | resolution: {integrity: sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==}
1195 |
1196 | object-assign@4.1.1:
1197 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1198 | engines: {node: '>=0.10.0'}
1199 |
1200 | object-inspect@1.13.3:
1201 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
1202 | engines: {node: '>= 0.4'}
1203 |
1204 | object-keys@1.1.1:
1205 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1206 | engines: {node: '>= 0.4'}
1207 |
1208 | object.assign@4.1.0:
1209 | resolution: {integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==}
1210 | engines: {node: '>= 0.4'}
1211 |
1212 | object.assign@4.1.7:
1213 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
1214 | engines: {node: '>= 0.4'}
1215 |
1216 | object.getownpropertydescriptors@2.1.8:
1217 | resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==}
1218 | engines: {node: '>= 0.8'}
1219 |
1220 | once@1.4.0:
1221 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1222 |
1223 | optionator@0.9.4:
1224 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1225 | engines: {node: '>= 0.8.0'}
1226 |
1227 | own-keys@1.0.1:
1228 | resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
1229 | engines: {node: '>= 0.4'}
1230 |
1231 | p-limit@2.3.0:
1232 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
1233 | engines: {node: '>=6'}
1234 |
1235 | p-limit@3.1.0:
1236 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1237 | engines: {node: '>=10'}
1238 |
1239 | p-locate@3.0.0:
1240 | resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
1241 | engines: {node: '>=6'}
1242 |
1243 | p-locate@5.0.0:
1244 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1245 | engines: {node: '>=10'}
1246 |
1247 | p-try@2.2.0:
1248 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
1249 | engines: {node: '>=6'}
1250 |
1251 | package-json-from-dist@1.0.1:
1252 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
1253 |
1254 | parent-module@1.0.1:
1255 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1256 | engines: {node: '>=6'}
1257 |
1258 | path-exists@3.0.0:
1259 | resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
1260 | engines: {node: '>=4'}
1261 |
1262 | path-exists@4.0.0:
1263 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1264 | engines: {node: '>=8'}
1265 |
1266 | path-is-absolute@1.0.1:
1267 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1268 | engines: {node: '>=0.10.0'}
1269 |
1270 | path-key@3.1.1:
1271 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1272 | engines: {node: '>=8'}
1273 |
1274 | path-scurry@1.11.1:
1275 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1276 | engines: {node: '>=16 || 14 >=14.18'}
1277 |
1278 | picocolors@1.1.1:
1279 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1280 |
1281 | picomatch@4.0.2:
1282 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
1283 | engines: {node: '>=12'}
1284 |
1285 | pirates@4.0.6:
1286 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1287 | engines: {node: '>= 6'}
1288 |
1289 | possible-typed-array-names@1.0.0:
1290 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1291 | engines: {node: '>= 0.4'}
1292 |
1293 | postcss-load-config@6.0.1:
1294 | resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
1295 | engines: {node: '>= 18'}
1296 | peerDependencies:
1297 | jiti: '>=1.21.0'
1298 | postcss: '>=8.0.9'
1299 | tsx: ^4.8.1
1300 | yaml: ^2.4.2
1301 | peerDependenciesMeta:
1302 | jiti:
1303 | optional: true
1304 | postcss:
1305 | optional: true
1306 | tsx:
1307 | optional: true
1308 | yaml:
1309 | optional: true
1310 |
1311 | prelude-ls@1.2.1:
1312 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1313 | engines: {node: '>= 0.8.0'}
1314 |
1315 | prettier@3.4.2:
1316 | resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
1317 | engines: {node: '>=14'}
1318 | hasBin: true
1319 |
1320 | pretty-remarkable@1.0.0:
1321 | resolution: {integrity: sha512-uFNIULmMgcMZs++dCRwMLoQdwkjprIleWEOYk6LzwoRZ874QVBKut+SCFQsYsWz1Eh+9wYdI86XsI5TQiMRfHA==}
1322 | engines: {node: '>=4.0'}
1323 |
1324 | process-nextick-args@2.0.1:
1325 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
1326 |
1327 | punycode@2.3.1:
1328 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1329 | engines: {node: '>=6'}
1330 |
1331 | queue-microtask@1.2.3:
1332 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1333 |
1334 | readable-stream@2.3.8:
1335 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
1336 |
1337 | readdirp@4.1.1:
1338 | resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==}
1339 | engines: {node: '>= 14.18.0'}
1340 |
1341 | reflect.getprototypeof@1.0.10:
1342 | resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
1343 | engines: {node: '>= 0.4'}
1344 |
1345 | regexp.prototype.flags@1.5.4:
1346 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
1347 | engines: {node: '>= 0.4'}
1348 |
1349 | remarkable@1.7.4:
1350 | resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==}
1351 | engines: {node: '>= 0.10.0'}
1352 | hasBin: true
1353 |
1354 | require-directory@2.1.1:
1355 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
1356 | engines: {node: '>=0.10.0'}
1357 |
1358 | require-main-filename@2.0.0:
1359 | resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
1360 |
1361 | resolve-from@4.0.0:
1362 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1363 | engines: {node: '>=4'}
1364 |
1365 | resolve-from@5.0.0:
1366 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
1367 | engines: {node: '>=8'}
1368 |
1369 | reusify@1.0.4:
1370 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1371 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1372 |
1373 | rimraf@3.0.2:
1374 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1375 | deprecated: Rimraf versions prior to v4 are no longer supported
1376 | hasBin: true
1377 |
1378 | rollup@4.32.0:
1379 | resolution: {integrity: sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==}
1380 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1381 | hasBin: true
1382 |
1383 | run-parallel@1.2.0:
1384 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1385 |
1386 | safe-array-concat@1.1.3:
1387 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
1388 | engines: {node: '>=0.4'}
1389 |
1390 | safe-buffer@5.1.2:
1391 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
1392 |
1393 | safe-push-apply@1.0.0:
1394 | resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
1395 | engines: {node: '>= 0.4'}
1396 |
1397 | safe-regex-test@1.1.0:
1398 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
1399 | engines: {node: '>= 0.4'}
1400 |
1401 | sections@1.0.0:
1402 | resolution: {integrity: sha512-fIM8mM3bPainFNKxQn3K+fCl2ZPYdo13GrUDPmjvQfK3b3jeC1E4c0t/irS0qcsG6JLTJNxjNOX6k10URz0ZJg==}
1403 | engines: {node: '>=0.10.0'}
1404 |
1405 | semver@5.7.2:
1406 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
1407 | hasBin: true
1408 |
1409 | set-blocking@2.0.0:
1410 | resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
1411 |
1412 | set-function-length@1.2.2:
1413 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1414 | engines: {node: '>= 0.4'}
1415 |
1416 | set-function-name@2.0.2:
1417 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1418 | engines: {node: '>= 0.4'}
1419 |
1420 | set-proto@1.0.0:
1421 | resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
1422 | engines: {node: '>= 0.4'}
1423 |
1424 | shebang-command@2.0.0:
1425 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1426 | engines: {node: '>=8'}
1427 |
1428 | shebang-regex@3.0.0:
1429 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1430 | engines: {node: '>=8'}
1431 |
1432 | side-channel-list@1.0.0:
1433 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
1434 | engines: {node: '>= 0.4'}
1435 |
1436 | side-channel-map@1.0.1:
1437 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
1438 | engines: {node: '>= 0.4'}
1439 |
1440 | side-channel-weakmap@1.0.2:
1441 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
1442 | engines: {node: '>= 0.4'}
1443 |
1444 | side-channel@1.1.0:
1445 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
1446 | engines: {node: '>= 0.4'}
1447 |
1448 | signal-exit@4.1.0:
1449 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1450 | engines: {node: '>=14'}
1451 |
1452 | sort-by-value@0.1.0:
1453 | resolution: {integrity: sha512-hTkhmGnyccPZcgIGtvC32Oipl2Qf8rRd/G1beErsgJurdO9i35PDeeR+vEsbpvGibzQuNB1P2yhFn9E/daD2rw==}
1454 | engines: {node: '>=4'}
1455 |
1456 | source-map-support@0.5.21:
1457 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
1458 |
1459 | source-map@0.6.1:
1460 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
1461 | engines: {node: '>=0.10.0'}
1462 |
1463 | source-map@0.8.0-beta.0:
1464 | resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
1465 | engines: {node: '>= 8'}
1466 |
1467 | sprintf-js@1.0.3:
1468 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
1469 |
1470 | string-width@2.1.1:
1471 | resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
1472 | engines: {node: '>=4'}
1473 |
1474 | string-width@3.1.0:
1475 | resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==}
1476 | engines: {node: '>=6'}
1477 |
1478 | string-width@4.2.3:
1479 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1480 | engines: {node: '>=8'}
1481 |
1482 | string-width@5.1.2:
1483 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1484 | engines: {node: '>=12'}
1485 |
1486 | string.prototype.trim@1.2.10:
1487 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
1488 | engines: {node: '>= 0.4'}
1489 |
1490 | string.prototype.trimend@1.0.9:
1491 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
1492 | engines: {node: '>= 0.4'}
1493 |
1494 | string.prototype.trimstart@1.0.8:
1495 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1496 | engines: {node: '>= 0.4'}
1497 |
1498 | string_decoder@1.1.1:
1499 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
1500 |
1501 | strip-ansi@4.0.0:
1502 | resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
1503 | engines: {node: '>=4'}
1504 |
1505 | strip-ansi@5.2.0:
1506 | resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
1507 | engines: {node: '>=6'}
1508 |
1509 | strip-ansi@6.0.1:
1510 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1511 | engines: {node: '>=8'}
1512 |
1513 | strip-ansi@7.1.0:
1514 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1515 | engines: {node: '>=12'}
1516 |
1517 | strip-bom@3.0.0:
1518 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1519 | engines: {node: '>=4'}
1520 |
1521 | strip-json-comments@2.0.1:
1522 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
1523 | engines: {node: '>=0.10.0'}
1524 |
1525 | strip-json-comments@3.1.1:
1526 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1527 | engines: {node: '>=8'}
1528 |
1529 | sucrase@3.35.0:
1530 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1531 | engines: {node: '>=16 || 14 >=14.17'}
1532 | hasBin: true
1533 |
1534 | supports-color@5.5.0:
1535 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
1536 | engines: {node: '>=4'}
1537 |
1538 | supports-color@6.0.0:
1539 | resolution: {integrity: sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==}
1540 | engines: {node: '>=6'}
1541 |
1542 | supports-color@7.2.0:
1543 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1544 | engines: {node: '>=8'}
1545 |
1546 | text-table@0.2.0:
1547 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1548 |
1549 | thenify-all@1.6.0:
1550 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1551 | engines: {node: '>=0.8'}
1552 |
1553 | thenify@3.3.1:
1554 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1555 |
1556 | through2@2.0.5:
1557 | resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
1558 |
1559 | tinyexec@0.3.2:
1560 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1561 |
1562 | tinyglobby@0.2.10:
1563 | resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
1564 | engines: {node: '>=12.0.0'}
1565 |
1566 | to-regex-range@4.0.3:
1567 | resolution: {integrity: sha512-AtJgwCeygrdcfleD1nolmv8TSJcsPvSsvnqQRzc1AkEa//+RRTseKZpaXOfZk2/U1B+bz0sRpkaF1oHX5YmHKg==}
1568 | engines: {node: '>=4.0'}
1569 |
1570 | tr46@1.0.1:
1571 | resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
1572 |
1573 | tree-kill@1.2.2:
1574 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
1575 | hasBin: true
1576 |
1577 | ts-interface-checker@0.1.13:
1578 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1579 |
1580 | ts-mocha@10.0.0:
1581 | resolution: {integrity: sha512-VRfgDO+iiuJFlNB18tzOfypJ21xn2xbuZyDvJvqpTbWgkAgD17ONGr8t+Tl8rcBtOBdjXp5e/Rk+d39f7XBHRw==}
1582 | engines: {node: '>= 6.X.X'}
1583 | hasBin: true
1584 | peerDependencies:
1585 | mocha: ^3.X.X || ^4.X.X || ^5.X.X || ^6.X.X || ^7.X.X || ^8.X.X || ^9.X.X || ^10.X.X
1586 |
1587 | ts-node@10.9.2:
1588 | resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
1589 | hasBin: true
1590 | peerDependencies:
1591 | '@swc/core': '>=1.2.50'
1592 | '@swc/wasm': '>=1.2.50'
1593 | '@types/node': '*'
1594 | typescript: '>=2.7'
1595 | peerDependenciesMeta:
1596 | '@swc/core':
1597 | optional: true
1598 | '@swc/wasm':
1599 | optional: true
1600 |
1601 | ts-node@7.0.1:
1602 | resolution: {integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==}
1603 | engines: {node: '>=4.2.0'}
1604 | hasBin: true
1605 |
1606 | tsconfig-paths@3.15.0:
1607 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
1608 |
1609 | tsconfig-paths@4.2.0:
1610 | resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
1611 | engines: {node: '>=6'}
1612 |
1613 | tsup@8.3.6:
1614 | resolution: {integrity: sha512-XkVtlDV/58S9Ye0JxUUTcrQk4S+EqlOHKzg6Roa62rdjL1nGWNUstG0xgI4vanHdfIpjP448J8vlN0oK6XOJ5g==}
1615 | engines: {node: '>=18'}
1616 | hasBin: true
1617 | peerDependencies:
1618 | '@microsoft/api-extractor': ^7.36.0
1619 | '@swc/core': ^1
1620 | postcss: ^8.4.12
1621 | typescript: '>=4.5.0'
1622 | peerDependenciesMeta:
1623 | '@microsoft/api-extractor':
1624 | optional: true
1625 | '@swc/core':
1626 | optional: true
1627 | postcss:
1628 | optional: true
1629 | typescript:
1630 | optional: true
1631 |
1632 | type-check@0.4.0:
1633 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1634 | engines: {node: '>= 0.8.0'}
1635 |
1636 | type-fest@0.20.2:
1637 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1638 | engines: {node: '>=10'}
1639 |
1640 | typed-array-buffer@1.0.3:
1641 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
1642 | engines: {node: '>= 0.4'}
1643 |
1644 | typed-array-byte-length@1.0.3:
1645 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
1646 | engines: {node: '>= 0.4'}
1647 |
1648 | typed-array-byte-offset@1.0.4:
1649 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
1650 | engines: {node: '>= 0.4'}
1651 |
1652 | typed-array-length@1.0.7:
1653 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
1654 | engines: {node: '>= 0.4'}
1655 |
1656 | typescript@5.7.3:
1657 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
1658 | engines: {node: '>=14.17'}
1659 | hasBin: true
1660 |
1661 | unbox-primitive@1.1.0:
1662 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
1663 | engines: {node: '>= 0.4'}
1664 |
1665 | undici-types@6.20.0:
1666 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
1667 |
1668 | uri-js@4.4.1:
1669 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1670 |
1671 | util-deprecate@1.0.2:
1672 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1673 |
1674 | v8-compile-cache-lib@3.0.1:
1675 | resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
1676 |
1677 | webidl-conversions@4.0.2:
1678 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
1679 |
1680 | whatwg-url@7.1.0:
1681 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
1682 |
1683 | which-boxed-primitive@1.1.1:
1684 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
1685 | engines: {node: '>= 0.4'}
1686 |
1687 | which-builtin-type@1.2.1:
1688 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
1689 | engines: {node: '>= 0.4'}
1690 |
1691 | which-collection@1.0.2:
1692 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1693 | engines: {node: '>= 0.4'}
1694 |
1695 | which-module@2.0.1:
1696 | resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
1697 |
1698 | which-typed-array@1.1.18:
1699 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
1700 | engines: {node: '>= 0.4'}
1701 |
1702 | which@1.3.1:
1703 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
1704 | hasBin: true
1705 |
1706 | which@2.0.2:
1707 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1708 | engines: {node: '>= 8'}
1709 | hasBin: true
1710 |
1711 | wide-align@1.1.3:
1712 | resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==}
1713 |
1714 | word-wrap@1.2.5:
1715 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1716 | engines: {node: '>=0.10.0'}
1717 |
1718 | wrap-ansi@5.1.0:
1719 | resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==}
1720 | engines: {node: '>=6'}
1721 |
1722 | wrap-ansi@7.0.0:
1723 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1724 | engines: {node: '>=10'}
1725 |
1726 | wrap-ansi@8.1.0:
1727 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1728 | engines: {node: '>=12'}
1729 |
1730 | wrappy@1.0.2:
1731 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1732 |
1733 | xtend@4.0.2:
1734 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1735 | engines: {node: '>=0.4'}
1736 |
1737 | y18n@4.0.3:
1738 | resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
1739 |
1740 | yargs-parser@13.1.2:
1741 | resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==}
1742 |
1743 | yargs-unparser@1.6.0:
1744 | resolution: {integrity: sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==}
1745 | engines: {node: '>=6'}
1746 |
1747 | yargs@13.3.2:
1748 | resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==}
1749 |
1750 | yn@2.0.0:
1751 | resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==}
1752 | engines: {node: '>=4'}
1753 |
1754 | yn@3.1.1:
1755 | resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
1756 | engines: {node: '>=6'}
1757 |
1758 | yocto-queue@0.1.0:
1759 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1760 | engines: {node: '>=10'}
1761 |
1762 | snapshots:
1763 |
1764 | '@cspotcode/source-map-support@0.8.1':
1765 | dependencies:
1766 | '@jridgewell/trace-mapping': 0.3.9
1767 |
1768 | '@esbuild/aix-ppc64@0.24.2':
1769 | optional: true
1770 |
1771 | '@esbuild/android-arm64@0.24.2':
1772 | optional: true
1773 |
1774 | '@esbuild/android-arm@0.24.2':
1775 | optional: true
1776 |
1777 | '@esbuild/android-x64@0.24.2':
1778 | optional: true
1779 |
1780 | '@esbuild/darwin-arm64@0.24.2':
1781 | optional: true
1782 |
1783 | '@esbuild/darwin-x64@0.24.2':
1784 | optional: true
1785 |
1786 | '@esbuild/freebsd-arm64@0.24.2':
1787 | optional: true
1788 |
1789 | '@esbuild/freebsd-x64@0.24.2':
1790 | optional: true
1791 |
1792 | '@esbuild/linux-arm64@0.24.2':
1793 | optional: true
1794 |
1795 | '@esbuild/linux-arm@0.24.2':
1796 | optional: true
1797 |
1798 | '@esbuild/linux-ia32@0.24.2':
1799 | optional: true
1800 |
1801 | '@esbuild/linux-loong64@0.24.2':
1802 | optional: true
1803 |
1804 | '@esbuild/linux-mips64el@0.24.2':
1805 | optional: true
1806 |
1807 | '@esbuild/linux-ppc64@0.24.2':
1808 | optional: true
1809 |
1810 | '@esbuild/linux-riscv64@0.24.2':
1811 | optional: true
1812 |
1813 | '@esbuild/linux-s390x@0.24.2':
1814 | optional: true
1815 |
1816 | '@esbuild/linux-x64@0.24.2':
1817 | optional: true
1818 |
1819 | '@esbuild/netbsd-arm64@0.24.2':
1820 | optional: true
1821 |
1822 | '@esbuild/netbsd-x64@0.24.2':
1823 | optional: true
1824 |
1825 | '@esbuild/openbsd-arm64@0.24.2':
1826 | optional: true
1827 |
1828 | '@esbuild/openbsd-x64@0.24.2':
1829 | optional: true
1830 |
1831 | '@esbuild/sunos-x64@0.24.2':
1832 | optional: true
1833 |
1834 | '@esbuild/win32-arm64@0.24.2':
1835 | optional: true
1836 |
1837 | '@esbuild/win32-ia32@0.24.2':
1838 | optional: true
1839 |
1840 | '@esbuild/win32-x64@0.24.2':
1841 | optional: true
1842 |
1843 | '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
1844 | dependencies:
1845 | eslint: 8.57.1
1846 | eslint-visitor-keys: 3.4.3
1847 |
1848 | '@eslint-community/regexpp@4.12.1': {}
1849 |
1850 | '@eslint/eslintrc@2.1.4':
1851 | dependencies:
1852 | ajv: 6.12.6
1853 | debug: 4.4.0
1854 | espree: 9.6.1
1855 | globals: 13.24.0
1856 | ignore: 5.3.2
1857 | import-fresh: 3.3.0
1858 | js-yaml: 4.1.0
1859 | minimatch: 3.1.2
1860 | strip-json-comments: 3.1.1
1861 | transitivePeerDependencies:
1862 | - supports-color
1863 |
1864 | '@eslint/js@8.57.1': {}
1865 |
1866 | '@humanwhocodes/config-array@0.13.0':
1867 | dependencies:
1868 | '@humanwhocodes/object-schema': 2.0.3
1869 | debug: 4.4.0
1870 | minimatch: 3.1.2
1871 | transitivePeerDependencies:
1872 | - supports-color
1873 |
1874 | '@humanwhocodes/module-importer@1.0.1': {}
1875 |
1876 | '@humanwhocodes/object-schema@2.0.3': {}
1877 |
1878 | '@isaacs/cliui@8.0.2':
1879 | dependencies:
1880 | string-width: 5.1.2
1881 | string-width-cjs: string-width@4.2.3
1882 | strip-ansi: 7.1.0
1883 | strip-ansi-cjs: strip-ansi@6.0.1
1884 | wrap-ansi: 8.1.0
1885 | wrap-ansi-cjs: wrap-ansi@7.0.0
1886 |
1887 | '@jridgewell/gen-mapping@0.3.8':
1888 | dependencies:
1889 | '@jridgewell/set-array': 1.2.1
1890 | '@jridgewell/sourcemap-codec': 1.5.0
1891 | '@jridgewell/trace-mapping': 0.3.25
1892 |
1893 | '@jridgewell/resolve-uri@3.1.2': {}
1894 |
1895 | '@jridgewell/set-array@1.2.1': {}
1896 |
1897 | '@jridgewell/sourcemap-codec@1.5.0': {}
1898 |
1899 | '@jridgewell/trace-mapping@0.3.25':
1900 | dependencies:
1901 | '@jridgewell/resolve-uri': 3.1.2
1902 | '@jridgewell/sourcemap-codec': 1.5.0
1903 |
1904 | '@jridgewell/trace-mapping@0.3.9':
1905 | dependencies:
1906 | '@jridgewell/resolve-uri': 3.1.2
1907 | '@jridgewell/sourcemap-codec': 1.5.0
1908 |
1909 | '@nodelib/fs.scandir@2.1.5':
1910 | dependencies:
1911 | '@nodelib/fs.stat': 2.0.5
1912 | run-parallel: 1.2.0
1913 |
1914 | '@nodelib/fs.stat@2.0.5': {}
1915 |
1916 | '@nodelib/fs.walk@1.2.8':
1917 | dependencies:
1918 | '@nodelib/fs.scandir': 2.1.5
1919 | fastq: 1.18.0
1920 |
1921 | '@pkgjs/parseargs@0.11.0':
1922 | optional: true
1923 |
1924 | '@rollup/rollup-android-arm-eabi@4.32.0':
1925 | optional: true
1926 |
1927 | '@rollup/rollup-android-arm64@4.32.0':
1928 | optional: true
1929 |
1930 | '@rollup/rollup-darwin-arm64@4.32.0':
1931 | optional: true
1932 |
1933 | '@rollup/rollup-darwin-x64@4.32.0':
1934 | optional: true
1935 |
1936 | '@rollup/rollup-freebsd-arm64@4.32.0':
1937 | optional: true
1938 |
1939 | '@rollup/rollup-freebsd-x64@4.32.0':
1940 | optional: true
1941 |
1942 | '@rollup/rollup-linux-arm-gnueabihf@4.32.0':
1943 | optional: true
1944 |
1945 | '@rollup/rollup-linux-arm-musleabihf@4.32.0':
1946 | optional: true
1947 |
1948 | '@rollup/rollup-linux-arm64-gnu@4.32.0':
1949 | optional: true
1950 |
1951 | '@rollup/rollup-linux-arm64-musl@4.32.0':
1952 | optional: true
1953 |
1954 | '@rollup/rollup-linux-loongarch64-gnu@4.32.0':
1955 | optional: true
1956 |
1957 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.0':
1958 | optional: true
1959 |
1960 | '@rollup/rollup-linux-riscv64-gnu@4.32.0':
1961 | optional: true
1962 |
1963 | '@rollup/rollup-linux-s390x-gnu@4.32.0':
1964 | optional: true
1965 |
1966 | '@rollup/rollup-linux-x64-gnu@4.32.0':
1967 | optional: true
1968 |
1969 | '@rollup/rollup-linux-x64-musl@4.32.0':
1970 | optional: true
1971 |
1972 | '@rollup/rollup-win32-arm64-msvc@4.32.0':
1973 | optional: true
1974 |
1975 | '@rollup/rollup-win32-ia32-msvc@4.32.0':
1976 | optional: true
1977 |
1978 | '@rollup/rollup-win32-x64-msvc@4.32.0':
1979 | optional: true
1980 |
1981 | '@tsconfig/node10@1.0.11': {}
1982 |
1983 | '@tsconfig/node12@1.0.11': {}
1984 |
1985 | '@tsconfig/node14@1.0.3': {}
1986 |
1987 | '@tsconfig/node16@1.0.4': {}
1988 |
1989 | '@types/estree@1.0.6': {}
1990 |
1991 | '@types/json5@0.0.29':
1992 | optional: true
1993 |
1994 | '@types/node@22.10.10':
1995 | dependencies:
1996 | undici-types: 6.20.0
1997 |
1998 | '@ungap/structured-clone@1.3.0': {}
1999 |
2000 | acorn-jsx@5.3.2(acorn@8.14.0):
2001 | dependencies:
2002 | acorn: 8.14.0
2003 |
2004 | acorn-walk@8.3.4:
2005 | dependencies:
2006 | acorn: 8.14.0
2007 |
2008 | acorn@8.14.0: {}
2009 |
2010 | ajv@6.12.6:
2011 | dependencies:
2012 | fast-deep-equal: 3.1.3
2013 | fast-json-stable-stringify: 2.1.0
2014 | json-schema-traverse: 0.4.1
2015 | uri-js: 4.4.1
2016 |
2017 | ansi-colors@3.2.3: {}
2018 |
2019 | ansi-regex@3.0.1: {}
2020 |
2021 | ansi-regex@4.1.1: {}
2022 |
2023 | ansi-regex@5.0.1: {}
2024 |
2025 | ansi-regex@6.1.0: {}
2026 |
2027 | ansi-styles@3.2.1:
2028 | dependencies:
2029 | color-convert: 1.9.3
2030 |
2031 | ansi-styles@4.3.0:
2032 | dependencies:
2033 | color-convert: 2.0.1
2034 |
2035 | ansi-styles@6.2.1: {}
2036 |
2037 | any-promise@1.3.0: {}
2038 |
2039 | arg@4.1.3: {}
2040 |
2041 | argparse@1.0.10:
2042 | dependencies:
2043 | sprintf-js: 1.0.3
2044 |
2045 | argparse@2.0.1: {}
2046 |
2047 | array-buffer-byte-length@1.0.2:
2048 | dependencies:
2049 | call-bound: 1.0.3
2050 | is-array-buffer: 3.0.5
2051 |
2052 | array.prototype.reduce@1.0.7:
2053 | dependencies:
2054 | call-bind: 1.0.8
2055 | define-properties: 1.2.1
2056 | es-abstract: 1.23.9
2057 | es-array-method-boxes-properly: 1.0.0
2058 | es-errors: 1.3.0
2059 | es-object-atoms: 1.1.1
2060 | is-string: 1.1.1
2061 |
2062 | arraybuffer.prototype.slice@1.0.4:
2063 | dependencies:
2064 | array-buffer-byte-length: 1.0.2
2065 | call-bind: 1.0.8
2066 | define-properties: 1.2.1
2067 | es-abstract: 1.23.9
2068 | es-errors: 1.3.0
2069 | get-intrinsic: 1.2.7
2070 | is-array-buffer: 3.0.5
2071 |
2072 | arrify@1.0.1: {}
2073 |
2074 | async-function@1.0.0: {}
2075 |
2076 | autolinker@0.28.1:
2077 | dependencies:
2078 | gulp-header: 1.8.12
2079 |
2080 | available-typed-arrays@1.0.7:
2081 | dependencies:
2082 | possible-typed-array-names: 1.0.0
2083 |
2084 | balanced-match@1.0.2: {}
2085 |
2086 | brace-expansion@1.1.11:
2087 | dependencies:
2088 | balanced-match: 1.0.2
2089 | concat-map: 0.0.1
2090 |
2091 | brace-expansion@2.0.1:
2092 | dependencies:
2093 | balanced-match: 1.0.2
2094 |
2095 | browser-stdout@1.3.1: {}
2096 |
2097 | buffer-from@1.1.2: {}
2098 |
2099 | bundle-require@5.1.0(esbuild@0.24.2):
2100 | dependencies:
2101 | esbuild: 0.24.2
2102 | load-tsconfig: 0.2.5
2103 |
2104 | cac@6.7.14: {}
2105 |
2106 | call-bind-apply-helpers@1.0.1:
2107 | dependencies:
2108 | es-errors: 1.3.0
2109 | function-bind: 1.1.2
2110 |
2111 | call-bind@1.0.8:
2112 | dependencies:
2113 | call-bind-apply-helpers: 1.0.1
2114 | es-define-property: 1.0.1
2115 | get-intrinsic: 1.2.7
2116 | set-function-length: 1.2.2
2117 |
2118 | call-bound@1.0.3:
2119 | dependencies:
2120 | call-bind-apply-helpers: 1.0.1
2121 | get-intrinsic: 1.2.7
2122 |
2123 | callsites@3.1.0: {}
2124 |
2125 | camelcase@5.3.1: {}
2126 |
2127 | chalk@2.4.2:
2128 | dependencies:
2129 | ansi-styles: 3.2.1
2130 | escape-string-regexp: 1.0.5
2131 | supports-color: 5.5.0
2132 |
2133 | chalk@4.1.2:
2134 | dependencies:
2135 | ansi-styles: 4.3.0
2136 | supports-color: 7.2.0
2137 |
2138 | chokidar@4.0.3:
2139 | dependencies:
2140 | readdirp: 4.1.1
2141 |
2142 | cliui@5.0.0:
2143 | dependencies:
2144 | string-width: 3.1.0
2145 | strip-ansi: 5.2.0
2146 | wrap-ansi: 5.1.0
2147 |
2148 | color-convert@1.9.3:
2149 | dependencies:
2150 | color-name: 1.1.3
2151 |
2152 | color-convert@2.0.1:
2153 | dependencies:
2154 | color-name: 1.1.4
2155 |
2156 | color-name@1.1.3: {}
2157 |
2158 | color-name@1.1.4: {}
2159 |
2160 | commander@4.1.1: {}
2161 |
2162 | concat-map@0.0.1: {}
2163 |
2164 | concat-with-sourcemaps@1.1.0:
2165 | dependencies:
2166 | source-map: 0.6.1
2167 |
2168 | consola@3.4.0: {}
2169 |
2170 | core-util-is@1.0.3: {}
2171 |
2172 | create-require@1.1.1: {}
2173 |
2174 | cross-spawn@7.0.6:
2175 | dependencies:
2176 | path-key: 3.1.1
2177 | shebang-command: 2.0.0
2178 | which: 2.0.2
2179 |
2180 | data-view-buffer@1.0.2:
2181 | dependencies:
2182 | call-bound: 1.0.3
2183 | es-errors: 1.3.0
2184 | is-data-view: 1.0.2
2185 |
2186 | data-view-byte-length@1.0.2:
2187 | dependencies:
2188 | call-bound: 1.0.3
2189 | es-errors: 1.3.0
2190 | is-data-view: 1.0.2
2191 |
2192 | data-view-byte-offset@1.0.1:
2193 | dependencies:
2194 | call-bound: 1.0.3
2195 | es-errors: 1.3.0
2196 | is-data-view: 1.0.2
2197 |
2198 | debug@3.2.6(supports-color@6.0.0):
2199 | dependencies:
2200 | ms: 2.1.1
2201 | optionalDependencies:
2202 | supports-color: 6.0.0
2203 |
2204 | debug@4.4.0:
2205 | dependencies:
2206 | ms: 2.1.3
2207 |
2208 | decamelize@1.2.0: {}
2209 |
2210 | deep-is@0.1.4: {}
2211 |
2212 | define-data-property@1.1.4:
2213 | dependencies:
2214 | es-define-property: 1.0.1
2215 | es-errors: 1.3.0
2216 | gopd: 1.2.0
2217 |
2218 | define-properties@1.2.1:
2219 | dependencies:
2220 | define-data-property: 1.1.4
2221 | has-property-descriptors: 1.0.2
2222 | object-keys: 1.1.1
2223 |
2224 | diff@3.5.0: {}
2225 |
2226 | diff@4.0.2: {}
2227 |
2228 | doctrine@3.0.0:
2229 | dependencies:
2230 | esutils: 2.0.3
2231 |
2232 | dunder-proto@1.0.1:
2233 | dependencies:
2234 | call-bind-apply-helpers: 1.0.1
2235 | es-errors: 1.3.0
2236 | gopd: 1.2.0
2237 |
2238 | eastasianwidth@0.2.0: {}
2239 |
2240 | emoji-regex@7.0.3: {}
2241 |
2242 | emoji-regex@8.0.0: {}
2243 |
2244 | emoji-regex@9.2.2: {}
2245 |
2246 | es-abstract@1.23.9:
2247 | dependencies:
2248 | array-buffer-byte-length: 1.0.2
2249 | arraybuffer.prototype.slice: 1.0.4
2250 | available-typed-arrays: 1.0.7
2251 | call-bind: 1.0.8
2252 | call-bound: 1.0.3
2253 | data-view-buffer: 1.0.2
2254 | data-view-byte-length: 1.0.2
2255 | data-view-byte-offset: 1.0.1
2256 | es-define-property: 1.0.1
2257 | es-errors: 1.3.0
2258 | es-object-atoms: 1.1.1
2259 | es-set-tostringtag: 2.1.0
2260 | es-to-primitive: 1.3.0
2261 | function.prototype.name: 1.1.8
2262 | get-intrinsic: 1.2.7
2263 | get-proto: 1.0.1
2264 | get-symbol-description: 1.1.0
2265 | globalthis: 1.0.4
2266 | gopd: 1.2.0
2267 | has-property-descriptors: 1.0.2
2268 | has-proto: 1.2.0
2269 | has-symbols: 1.1.0
2270 | hasown: 2.0.2
2271 | internal-slot: 1.1.0
2272 | is-array-buffer: 3.0.5
2273 | is-callable: 1.2.7
2274 | is-data-view: 1.0.2
2275 | is-regex: 1.2.1
2276 | is-shared-array-buffer: 1.0.4
2277 | is-string: 1.1.1
2278 | is-typed-array: 1.1.15
2279 | is-weakref: 1.1.0
2280 | math-intrinsics: 1.1.0
2281 | object-inspect: 1.13.3
2282 | object-keys: 1.1.1
2283 | object.assign: 4.1.7
2284 | own-keys: 1.0.1
2285 | regexp.prototype.flags: 1.5.4
2286 | safe-array-concat: 1.1.3
2287 | safe-push-apply: 1.0.0
2288 | safe-regex-test: 1.1.0
2289 | set-proto: 1.0.0
2290 | string.prototype.trim: 1.2.10
2291 | string.prototype.trimend: 1.0.9
2292 | string.prototype.trimstart: 1.0.8
2293 | typed-array-buffer: 1.0.3
2294 | typed-array-byte-length: 1.0.3
2295 | typed-array-byte-offset: 1.0.4
2296 | typed-array-length: 1.0.7
2297 | unbox-primitive: 1.1.0
2298 | which-typed-array: 1.1.18
2299 |
2300 | es-array-method-boxes-properly@1.0.0: {}
2301 |
2302 | es-define-property@1.0.1: {}
2303 |
2304 | es-errors@1.3.0: {}
2305 |
2306 | es-object-atoms@1.1.1:
2307 | dependencies:
2308 | es-errors: 1.3.0
2309 |
2310 | es-set-tostringtag@2.1.0:
2311 | dependencies:
2312 | es-errors: 1.3.0
2313 | get-intrinsic: 1.2.7
2314 | has-tostringtag: 1.0.2
2315 | hasown: 2.0.2
2316 |
2317 | es-to-primitive@1.3.0:
2318 | dependencies:
2319 | is-callable: 1.2.7
2320 | is-date-object: 1.1.0
2321 | is-symbol: 1.1.1
2322 |
2323 | esbuild-register@3.6.0(esbuild@0.24.2):
2324 | dependencies:
2325 | debug: 4.4.0
2326 | esbuild: 0.24.2
2327 | transitivePeerDependencies:
2328 | - supports-color
2329 |
2330 | esbuild@0.24.2:
2331 | optionalDependencies:
2332 | '@esbuild/aix-ppc64': 0.24.2
2333 | '@esbuild/android-arm': 0.24.2
2334 | '@esbuild/android-arm64': 0.24.2
2335 | '@esbuild/android-x64': 0.24.2
2336 | '@esbuild/darwin-arm64': 0.24.2
2337 | '@esbuild/darwin-x64': 0.24.2
2338 | '@esbuild/freebsd-arm64': 0.24.2
2339 | '@esbuild/freebsd-x64': 0.24.2
2340 | '@esbuild/linux-arm': 0.24.2
2341 | '@esbuild/linux-arm64': 0.24.2
2342 | '@esbuild/linux-ia32': 0.24.2
2343 | '@esbuild/linux-loong64': 0.24.2
2344 | '@esbuild/linux-mips64el': 0.24.2
2345 | '@esbuild/linux-ppc64': 0.24.2
2346 | '@esbuild/linux-riscv64': 0.24.2
2347 | '@esbuild/linux-s390x': 0.24.2
2348 | '@esbuild/linux-x64': 0.24.2
2349 | '@esbuild/netbsd-arm64': 0.24.2
2350 | '@esbuild/netbsd-x64': 0.24.2
2351 | '@esbuild/openbsd-arm64': 0.24.2
2352 | '@esbuild/openbsd-x64': 0.24.2
2353 | '@esbuild/sunos-x64': 0.24.2
2354 | '@esbuild/win32-arm64': 0.24.2
2355 | '@esbuild/win32-ia32': 0.24.2
2356 | '@esbuild/win32-x64': 0.24.2
2357 |
2358 | escape-string-regexp@1.0.5: {}
2359 |
2360 | escape-string-regexp@4.0.0: {}
2361 |
2362 | eslint-scope@7.2.2:
2363 | dependencies:
2364 | esrecurse: 4.3.0
2365 | estraverse: 5.3.0
2366 |
2367 | eslint-visitor-keys@3.4.3: {}
2368 |
2369 | eslint@8.57.1:
2370 | dependencies:
2371 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
2372 | '@eslint-community/regexpp': 4.12.1
2373 | '@eslint/eslintrc': 2.1.4
2374 | '@eslint/js': 8.57.1
2375 | '@humanwhocodes/config-array': 0.13.0
2376 | '@humanwhocodes/module-importer': 1.0.1
2377 | '@nodelib/fs.walk': 1.2.8
2378 | '@ungap/structured-clone': 1.3.0
2379 | ajv: 6.12.6
2380 | chalk: 4.1.2
2381 | cross-spawn: 7.0.6
2382 | debug: 4.4.0
2383 | doctrine: 3.0.0
2384 | escape-string-regexp: 4.0.0
2385 | eslint-scope: 7.2.2
2386 | eslint-visitor-keys: 3.4.3
2387 | espree: 9.6.1
2388 | esquery: 1.6.0
2389 | esutils: 2.0.3
2390 | fast-deep-equal: 3.1.3
2391 | file-entry-cache: 6.0.1
2392 | find-up: 5.0.0
2393 | glob-parent: 6.0.2
2394 | globals: 13.24.0
2395 | graphemer: 1.4.0
2396 | ignore: 5.3.2
2397 | imurmurhash: 0.1.4
2398 | is-glob: 4.0.3
2399 | is-path-inside: 3.0.3
2400 | js-yaml: 4.1.0
2401 | json-stable-stringify-without-jsonify: 1.0.1
2402 | levn: 0.4.1
2403 | lodash.merge: 4.6.2
2404 | minimatch: 3.1.2
2405 | natural-compare: 1.4.0
2406 | optionator: 0.9.4
2407 | strip-ansi: 6.0.1
2408 | text-table: 0.2.0
2409 | transitivePeerDependencies:
2410 | - supports-color
2411 |
2412 | espree@9.6.1:
2413 | dependencies:
2414 | acorn: 8.14.0
2415 | acorn-jsx: 5.3.2(acorn@8.14.0)
2416 | eslint-visitor-keys: 3.4.3
2417 |
2418 | esprima@4.0.1: {}
2419 |
2420 | esquery@1.6.0:
2421 | dependencies:
2422 | estraverse: 5.3.0
2423 |
2424 | esrecurse@4.3.0:
2425 | dependencies:
2426 | estraverse: 5.3.0
2427 |
2428 | estraverse@5.3.0: {}
2429 |
2430 | esutils@2.0.3: {}
2431 |
2432 | extend-shallow@2.0.1:
2433 | dependencies:
2434 | is-extendable: 0.1.1
2435 |
2436 | fast-deep-equal@3.1.3: {}
2437 |
2438 | fast-json-stable-stringify@2.1.0: {}
2439 |
2440 | fast-levenshtein@2.0.6: {}
2441 |
2442 | fastq@1.18.0:
2443 | dependencies:
2444 | reusify: 1.0.4
2445 |
2446 | fdir@6.4.3(picomatch@4.0.2):
2447 | optionalDependencies:
2448 | picomatch: 4.0.2
2449 |
2450 | file-entry-cache@6.0.1:
2451 | dependencies:
2452 | flat-cache: 3.2.0
2453 |
2454 | fill-range@6.0.0:
2455 | dependencies:
2456 | is-number: 7.0.0
2457 | to-regex-range: 4.0.3
2458 |
2459 | find-up@3.0.0:
2460 | dependencies:
2461 | locate-path: 3.0.0
2462 |
2463 | find-up@5.0.0:
2464 | dependencies:
2465 | locate-path: 6.0.0
2466 | path-exists: 4.0.0
2467 |
2468 | flat-cache@3.2.0:
2469 | dependencies:
2470 | flatted: 3.3.2
2471 | keyv: 4.5.4
2472 | rimraf: 3.0.2
2473 |
2474 | flat@4.1.1:
2475 | dependencies:
2476 | is-buffer: 2.0.5
2477 |
2478 | flatted@3.3.2: {}
2479 |
2480 | for-each@0.3.4:
2481 | dependencies:
2482 | is-callable: 1.2.7
2483 |
2484 | foreground-child@3.3.0:
2485 | dependencies:
2486 | cross-spawn: 7.0.6
2487 | signal-exit: 4.1.0
2488 |
2489 | fs.realpath@1.0.0: {}
2490 |
2491 | fsevents@2.3.3:
2492 | optional: true
2493 |
2494 | function-bind@1.1.2: {}
2495 |
2496 | function.prototype.name@1.1.8:
2497 | dependencies:
2498 | call-bind: 1.0.8
2499 | call-bound: 1.0.3
2500 | define-properties: 1.2.1
2501 | functions-have-names: 1.2.3
2502 | hasown: 2.0.2
2503 | is-callable: 1.2.7
2504 |
2505 | functions-have-names@1.2.3: {}
2506 |
2507 | get-caller-file@2.0.5: {}
2508 |
2509 | get-intrinsic@1.2.7:
2510 | dependencies:
2511 | call-bind-apply-helpers: 1.0.1
2512 | es-define-property: 1.0.1
2513 | es-errors: 1.3.0
2514 | es-object-atoms: 1.1.1
2515 | function-bind: 1.1.2
2516 | get-proto: 1.0.1
2517 | gopd: 1.2.0
2518 | has-symbols: 1.1.0
2519 | hasown: 2.0.2
2520 | math-intrinsics: 1.1.0
2521 |
2522 | get-proto@1.0.1:
2523 | dependencies:
2524 | dunder-proto: 1.0.1
2525 | es-object-atoms: 1.1.1
2526 |
2527 | get-symbol-description@1.1.0:
2528 | dependencies:
2529 | call-bound: 1.0.3
2530 | es-errors: 1.3.0
2531 | get-intrinsic: 1.2.7
2532 |
2533 | gfm-code-block-regex@1.0.0: {}
2534 |
2535 | gfm-code-blocks@1.0.0:
2536 | dependencies:
2537 | gfm-code-block-regex: 1.0.0
2538 |
2539 | glob-parent@6.0.2:
2540 | dependencies:
2541 | is-glob: 4.0.3
2542 |
2543 | glob@10.4.5:
2544 | dependencies:
2545 | foreground-child: 3.3.0
2546 | jackspeak: 3.4.3
2547 | minimatch: 9.0.5
2548 | minipass: 7.1.2
2549 | package-json-from-dist: 1.0.1
2550 | path-scurry: 1.11.1
2551 |
2552 | glob@7.1.3:
2553 | dependencies:
2554 | fs.realpath: 1.0.0
2555 | inflight: 1.0.6
2556 | inherits: 2.0.4
2557 | minimatch: 3.1.2
2558 | once: 1.4.0
2559 | path-is-absolute: 1.0.1
2560 |
2561 | globals@13.24.0:
2562 | dependencies:
2563 | type-fest: 0.20.2
2564 |
2565 | globalthis@1.0.4:
2566 | dependencies:
2567 | define-properties: 1.2.1
2568 | gopd: 1.2.0
2569 |
2570 | gopd@1.2.0: {}
2571 |
2572 | graphemer@1.4.0: {}
2573 |
2574 | growl@1.10.5: {}
2575 |
2576 | gulp-format-md@2.0.0:
2577 | dependencies:
2578 | pretty-remarkable: 1.0.0
2579 | remarkable: 1.7.4
2580 | sections: 1.0.0
2581 | through2: 2.0.5
2582 |
2583 | gulp-header@1.8.12:
2584 | dependencies:
2585 | concat-with-sourcemaps: 1.1.0
2586 | lodash.template: 4.5.0
2587 | through2: 2.0.5
2588 |
2589 | has-bigints@1.1.0: {}
2590 |
2591 | has-flag@3.0.0: {}
2592 |
2593 | has-flag@4.0.0: {}
2594 |
2595 | has-property-descriptors@1.0.2:
2596 | dependencies:
2597 | es-define-property: 1.0.1
2598 |
2599 | has-proto@1.2.0:
2600 | dependencies:
2601 | dunder-proto: 1.0.1
2602 |
2603 | has-symbols@1.1.0: {}
2604 |
2605 | has-tostringtag@1.0.2:
2606 | dependencies:
2607 | has-symbols: 1.1.0
2608 |
2609 | hasown@2.0.2:
2610 | dependencies:
2611 | function-bind: 1.1.2
2612 |
2613 | he@1.2.0: {}
2614 |
2615 | ignore@5.3.2: {}
2616 |
2617 | import-fresh@3.3.0:
2618 | dependencies:
2619 | parent-module: 1.0.1
2620 | resolve-from: 4.0.0
2621 |
2622 | imurmurhash@0.1.4: {}
2623 |
2624 | inflight@1.0.6:
2625 | dependencies:
2626 | once: 1.4.0
2627 | wrappy: 1.0.2
2628 |
2629 | inherits@2.0.4: {}
2630 |
2631 | internal-slot@1.1.0:
2632 | dependencies:
2633 | es-errors: 1.3.0
2634 | hasown: 2.0.2
2635 | side-channel: 1.1.0
2636 |
2637 | is-array-buffer@3.0.5:
2638 | dependencies:
2639 | call-bind: 1.0.8
2640 | call-bound: 1.0.3
2641 | get-intrinsic: 1.2.7
2642 |
2643 | is-async-function@2.1.1:
2644 | dependencies:
2645 | async-function: 1.0.0
2646 | call-bound: 1.0.3
2647 | get-proto: 1.0.1
2648 | has-tostringtag: 1.0.2
2649 | safe-regex-test: 1.1.0
2650 |
2651 | is-bigint@1.1.0:
2652 | dependencies:
2653 | has-bigints: 1.1.0
2654 |
2655 | is-boolean-object@1.2.1:
2656 | dependencies:
2657 | call-bound: 1.0.3
2658 | has-tostringtag: 1.0.2
2659 |
2660 | is-buffer@2.0.5: {}
2661 |
2662 | is-callable@1.2.7: {}
2663 |
2664 | is-data-view@1.0.2:
2665 | dependencies:
2666 | call-bound: 1.0.3
2667 | get-intrinsic: 1.2.7
2668 | is-typed-array: 1.1.15
2669 |
2670 | is-date-object@1.1.0:
2671 | dependencies:
2672 | call-bound: 1.0.3
2673 | has-tostringtag: 1.0.2
2674 |
2675 | is-extendable@0.1.1: {}
2676 |
2677 | is-extglob@2.1.1: {}
2678 |
2679 | is-finalizationregistry@1.1.1:
2680 | dependencies:
2681 | call-bound: 1.0.3
2682 |
2683 | is-fullwidth-code-point@2.0.0: {}
2684 |
2685 | is-fullwidth-code-point@3.0.0: {}
2686 |
2687 | is-generator-function@1.1.0:
2688 | dependencies:
2689 | call-bound: 1.0.3
2690 | get-proto: 1.0.1
2691 | has-tostringtag: 1.0.2
2692 | safe-regex-test: 1.1.0
2693 |
2694 | is-glob@4.0.3:
2695 | dependencies:
2696 | is-extglob: 2.1.1
2697 |
2698 | is-map@2.0.3: {}
2699 |
2700 | is-number-object@1.1.1:
2701 | dependencies:
2702 | call-bound: 1.0.3
2703 | has-tostringtag: 1.0.2
2704 |
2705 | is-number@7.0.0: {}
2706 |
2707 | is-path-inside@3.0.3: {}
2708 |
2709 | is-regex@1.2.1:
2710 | dependencies:
2711 | call-bound: 1.0.3
2712 | gopd: 1.2.0
2713 | has-tostringtag: 1.0.2
2714 | hasown: 2.0.2
2715 |
2716 | is-set@2.0.3: {}
2717 |
2718 | is-shared-array-buffer@1.0.4:
2719 | dependencies:
2720 | call-bound: 1.0.3
2721 |
2722 | is-string@1.1.1:
2723 | dependencies:
2724 | call-bound: 1.0.3
2725 | has-tostringtag: 1.0.2
2726 |
2727 | is-symbol@1.1.1:
2728 | dependencies:
2729 | call-bound: 1.0.3
2730 | has-symbols: 1.1.0
2731 | safe-regex-test: 1.1.0
2732 |
2733 | is-typed-array@1.1.15:
2734 | dependencies:
2735 | which-typed-array: 1.1.18
2736 |
2737 | is-weakmap@2.0.2: {}
2738 |
2739 | is-weakref@1.1.0:
2740 | dependencies:
2741 | call-bound: 1.0.3
2742 |
2743 | is-weakset@2.0.4:
2744 | dependencies:
2745 | call-bound: 1.0.3
2746 | get-intrinsic: 1.2.7
2747 |
2748 | isarray@1.0.0: {}
2749 |
2750 | isarray@2.0.5: {}
2751 |
2752 | isexe@2.0.0: {}
2753 |
2754 | isobject@3.0.1: {}
2755 |
2756 | jackspeak@3.4.3:
2757 | dependencies:
2758 | '@isaacs/cliui': 8.0.2
2759 | optionalDependencies:
2760 | '@pkgjs/parseargs': 0.11.0
2761 |
2762 | joycon@3.1.1: {}
2763 |
2764 | js-yaml@3.13.1:
2765 | dependencies:
2766 | argparse: 1.0.10
2767 | esprima: 4.0.1
2768 |
2769 | js-yaml@4.1.0:
2770 | dependencies:
2771 | argparse: 2.0.1
2772 |
2773 | json-buffer@3.0.1: {}
2774 |
2775 | json-schema-traverse@0.4.1: {}
2776 |
2777 | json-stable-stringify-without-jsonify@1.0.1: {}
2778 |
2779 | json5@1.0.2:
2780 | dependencies:
2781 | minimist: 1.2.8
2782 | optional: true
2783 |
2784 | json5@2.2.3: {}
2785 |
2786 | keyv@4.5.4:
2787 | dependencies:
2788 | json-buffer: 3.0.1
2789 |
2790 | levn@0.4.1:
2791 | dependencies:
2792 | prelude-ls: 1.2.1
2793 | type-check: 0.4.0
2794 |
2795 | lilconfig@3.1.3: {}
2796 |
2797 | lines-and-columns@1.2.4: {}
2798 |
2799 | list-item@2.0.0:
2800 | dependencies:
2801 | fill-range: 6.0.0
2802 | is-number: 7.0.0
2803 |
2804 | load-tsconfig@0.2.5: {}
2805 |
2806 | locate-path@3.0.0:
2807 | dependencies:
2808 | p-locate: 3.0.0
2809 | path-exists: 3.0.0
2810 |
2811 | locate-path@6.0.0:
2812 | dependencies:
2813 | p-locate: 5.0.0
2814 |
2815 | lodash._reinterpolate@3.0.0: {}
2816 |
2817 | lodash.merge@4.6.2: {}
2818 |
2819 | lodash.sortby@4.7.0: {}
2820 |
2821 | lodash.template@4.5.0:
2822 | dependencies:
2823 | lodash._reinterpolate: 3.0.0
2824 | lodash.templatesettings: 4.2.0
2825 |
2826 | lodash.templatesettings@4.2.0:
2827 | dependencies:
2828 | lodash._reinterpolate: 3.0.0
2829 |
2830 | lodash@4.17.21: {}
2831 |
2832 | log-symbols@2.2.0:
2833 | dependencies:
2834 | chalk: 2.4.2
2835 |
2836 | lru-cache@10.4.3: {}
2837 |
2838 | make-error@1.3.6: {}
2839 |
2840 | markdown-utils@1.0.0:
2841 | dependencies:
2842 | is-number: 7.0.0
2843 | list-item: 2.0.0
2844 |
2845 | math-intrinsics@1.1.0: {}
2846 |
2847 | minimatch@3.0.4:
2848 | dependencies:
2849 | brace-expansion: 1.1.11
2850 |
2851 | minimatch@3.1.2:
2852 | dependencies:
2853 | brace-expansion: 1.1.11
2854 |
2855 | minimatch@9.0.5:
2856 | dependencies:
2857 | brace-expansion: 2.0.1
2858 |
2859 | minimist@1.2.8: {}
2860 |
2861 | minipass@7.1.2: {}
2862 |
2863 | mkdirp@0.5.4:
2864 | dependencies:
2865 | minimist: 1.2.8
2866 |
2867 | mocha@6.2.3:
2868 | dependencies:
2869 | ansi-colors: 3.2.3
2870 | browser-stdout: 1.3.1
2871 | debug: 3.2.6(supports-color@6.0.0)
2872 | diff: 3.5.0
2873 | escape-string-regexp: 1.0.5
2874 | find-up: 3.0.0
2875 | glob: 7.1.3
2876 | growl: 1.10.5
2877 | he: 1.2.0
2878 | js-yaml: 3.13.1
2879 | log-symbols: 2.2.0
2880 | minimatch: 3.0.4
2881 | mkdirp: 0.5.4
2882 | ms: 2.1.1
2883 | node-environment-flags: 1.0.5
2884 | object.assign: 4.1.0
2885 | strip-json-comments: 2.0.1
2886 | supports-color: 6.0.0
2887 | which: 1.3.1
2888 | wide-align: 1.1.3
2889 | yargs: 13.3.2
2890 | yargs-parser: 13.1.2
2891 | yargs-unparser: 1.6.0
2892 |
2893 | ms@2.1.1: {}
2894 |
2895 | ms@2.1.3: {}
2896 |
2897 | mz@2.7.0:
2898 | dependencies:
2899 | any-promise: 1.3.0
2900 | object-assign: 4.1.1
2901 | thenify-all: 1.6.0
2902 |
2903 | natural-compare@1.4.0: {}
2904 |
2905 | node-environment-flags@1.0.5:
2906 | dependencies:
2907 | object.getownpropertydescriptors: 2.1.8
2908 | semver: 5.7.2
2909 |
2910 | object-assign@4.1.1: {}
2911 |
2912 | object-inspect@1.13.3: {}
2913 |
2914 | object-keys@1.1.1: {}
2915 |
2916 | object.assign@4.1.0:
2917 | dependencies:
2918 | define-properties: 1.2.1
2919 | function-bind: 1.1.2
2920 | has-symbols: 1.1.0
2921 | object-keys: 1.1.1
2922 |
2923 | object.assign@4.1.7:
2924 | dependencies:
2925 | call-bind: 1.0.8
2926 | call-bound: 1.0.3
2927 | define-properties: 1.2.1
2928 | es-object-atoms: 1.1.1
2929 | has-symbols: 1.1.0
2930 | object-keys: 1.1.1
2931 |
2932 | object.getownpropertydescriptors@2.1.8:
2933 | dependencies:
2934 | array.prototype.reduce: 1.0.7
2935 | call-bind: 1.0.8
2936 | define-properties: 1.2.1
2937 | es-abstract: 1.23.9
2938 | es-object-atoms: 1.1.1
2939 | gopd: 1.2.0
2940 | safe-array-concat: 1.1.3
2941 |
2942 | once@1.4.0:
2943 | dependencies:
2944 | wrappy: 1.0.2
2945 |
2946 | optionator@0.9.4:
2947 | dependencies:
2948 | deep-is: 0.1.4
2949 | fast-levenshtein: 2.0.6
2950 | levn: 0.4.1
2951 | prelude-ls: 1.2.1
2952 | type-check: 0.4.0
2953 | word-wrap: 1.2.5
2954 |
2955 | own-keys@1.0.1:
2956 | dependencies:
2957 | get-intrinsic: 1.2.7
2958 | object-keys: 1.1.1
2959 | safe-push-apply: 1.0.0
2960 |
2961 | p-limit@2.3.0:
2962 | dependencies:
2963 | p-try: 2.2.0
2964 |
2965 | p-limit@3.1.0:
2966 | dependencies:
2967 | yocto-queue: 0.1.0
2968 |
2969 | p-locate@3.0.0:
2970 | dependencies:
2971 | p-limit: 2.3.0
2972 |
2973 | p-locate@5.0.0:
2974 | dependencies:
2975 | p-limit: 3.1.0
2976 |
2977 | p-try@2.2.0: {}
2978 |
2979 | package-json-from-dist@1.0.1: {}
2980 |
2981 | parent-module@1.0.1:
2982 | dependencies:
2983 | callsites: 3.1.0
2984 |
2985 | path-exists@3.0.0: {}
2986 |
2987 | path-exists@4.0.0: {}
2988 |
2989 | path-is-absolute@1.0.1: {}
2990 |
2991 | path-key@3.1.1: {}
2992 |
2993 | path-scurry@1.11.1:
2994 | dependencies:
2995 | lru-cache: 10.4.3
2996 | minipass: 7.1.2
2997 |
2998 | picocolors@1.1.1: {}
2999 |
3000 | picomatch@4.0.2: {}
3001 |
3002 | pirates@4.0.6: {}
3003 |
3004 | possible-typed-array-names@1.0.0: {}
3005 |
3006 | postcss-load-config@6.0.1:
3007 | dependencies:
3008 | lilconfig: 3.1.3
3009 |
3010 | prelude-ls@1.2.1: {}
3011 |
3012 | prettier@3.4.2: {}
3013 |
3014 | pretty-remarkable@1.0.0:
3015 | dependencies:
3016 | markdown-utils: 1.0.0
3017 |
3018 | process-nextick-args@2.0.1: {}
3019 |
3020 | punycode@2.3.1: {}
3021 |
3022 | queue-microtask@1.2.3: {}
3023 |
3024 | readable-stream@2.3.8:
3025 | dependencies:
3026 | core-util-is: 1.0.3
3027 | inherits: 2.0.4
3028 | isarray: 1.0.0
3029 | process-nextick-args: 2.0.1
3030 | safe-buffer: 5.1.2
3031 | string_decoder: 1.1.1
3032 | util-deprecate: 1.0.2
3033 |
3034 | readdirp@4.1.1: {}
3035 |
3036 | reflect.getprototypeof@1.0.10:
3037 | dependencies:
3038 | call-bind: 1.0.8
3039 | define-properties: 1.2.1
3040 | es-abstract: 1.23.9
3041 | es-errors: 1.3.0
3042 | es-object-atoms: 1.1.1
3043 | get-intrinsic: 1.2.7
3044 | get-proto: 1.0.1
3045 | which-builtin-type: 1.2.1
3046 |
3047 | regexp.prototype.flags@1.5.4:
3048 | dependencies:
3049 | call-bind: 1.0.8
3050 | define-properties: 1.2.1
3051 | es-errors: 1.3.0
3052 | get-proto: 1.0.1
3053 | gopd: 1.2.0
3054 | set-function-name: 2.0.2
3055 |
3056 | remarkable@1.7.4:
3057 | dependencies:
3058 | argparse: 1.0.10
3059 | autolinker: 0.28.1
3060 |
3061 | require-directory@2.1.1: {}
3062 |
3063 | require-main-filename@2.0.0: {}
3064 |
3065 | resolve-from@4.0.0: {}
3066 |
3067 | resolve-from@5.0.0: {}
3068 |
3069 | reusify@1.0.4: {}
3070 |
3071 | rimraf@3.0.2:
3072 | dependencies:
3073 | glob: 7.1.3
3074 |
3075 | rollup@4.32.0:
3076 | dependencies:
3077 | '@types/estree': 1.0.6
3078 | optionalDependencies:
3079 | '@rollup/rollup-android-arm-eabi': 4.32.0
3080 | '@rollup/rollup-android-arm64': 4.32.0
3081 | '@rollup/rollup-darwin-arm64': 4.32.0
3082 | '@rollup/rollup-darwin-x64': 4.32.0
3083 | '@rollup/rollup-freebsd-arm64': 4.32.0
3084 | '@rollup/rollup-freebsd-x64': 4.32.0
3085 | '@rollup/rollup-linux-arm-gnueabihf': 4.32.0
3086 | '@rollup/rollup-linux-arm-musleabihf': 4.32.0
3087 | '@rollup/rollup-linux-arm64-gnu': 4.32.0
3088 | '@rollup/rollup-linux-arm64-musl': 4.32.0
3089 | '@rollup/rollup-linux-loongarch64-gnu': 4.32.0
3090 | '@rollup/rollup-linux-powerpc64le-gnu': 4.32.0
3091 | '@rollup/rollup-linux-riscv64-gnu': 4.32.0
3092 | '@rollup/rollup-linux-s390x-gnu': 4.32.0
3093 | '@rollup/rollup-linux-x64-gnu': 4.32.0
3094 | '@rollup/rollup-linux-x64-musl': 4.32.0
3095 | '@rollup/rollup-win32-arm64-msvc': 4.32.0
3096 | '@rollup/rollup-win32-ia32-msvc': 4.32.0
3097 | '@rollup/rollup-win32-x64-msvc': 4.32.0
3098 | fsevents: 2.3.3
3099 |
3100 | run-parallel@1.2.0:
3101 | dependencies:
3102 | queue-microtask: 1.2.3
3103 |
3104 | safe-array-concat@1.1.3:
3105 | dependencies:
3106 | call-bind: 1.0.8
3107 | call-bound: 1.0.3
3108 | get-intrinsic: 1.2.7
3109 | has-symbols: 1.1.0
3110 | isarray: 2.0.5
3111 |
3112 | safe-buffer@5.1.2: {}
3113 |
3114 | safe-push-apply@1.0.0:
3115 | dependencies:
3116 | es-errors: 1.3.0
3117 | isarray: 2.0.5
3118 |
3119 | safe-regex-test@1.1.0:
3120 | dependencies:
3121 | call-bound: 1.0.3
3122 | es-errors: 1.3.0
3123 | is-regex: 1.2.1
3124 |
3125 | sections@1.0.0:
3126 | dependencies:
3127 | gfm-code-blocks: 1.0.0
3128 | sort-by-value: 0.1.0
3129 |
3130 | semver@5.7.2: {}
3131 |
3132 | set-blocking@2.0.0: {}
3133 |
3134 | set-function-length@1.2.2:
3135 | dependencies:
3136 | define-data-property: 1.1.4
3137 | es-errors: 1.3.0
3138 | function-bind: 1.1.2
3139 | get-intrinsic: 1.2.7
3140 | gopd: 1.2.0
3141 | has-property-descriptors: 1.0.2
3142 |
3143 | set-function-name@2.0.2:
3144 | dependencies:
3145 | define-data-property: 1.1.4
3146 | es-errors: 1.3.0
3147 | functions-have-names: 1.2.3
3148 | has-property-descriptors: 1.0.2
3149 |
3150 | set-proto@1.0.0:
3151 | dependencies:
3152 | dunder-proto: 1.0.1
3153 | es-errors: 1.3.0
3154 | es-object-atoms: 1.1.1
3155 |
3156 | shebang-command@2.0.0:
3157 | dependencies:
3158 | shebang-regex: 3.0.0
3159 |
3160 | shebang-regex@3.0.0: {}
3161 |
3162 | side-channel-list@1.0.0:
3163 | dependencies:
3164 | es-errors: 1.3.0
3165 | object-inspect: 1.13.3
3166 |
3167 | side-channel-map@1.0.1:
3168 | dependencies:
3169 | call-bound: 1.0.3
3170 | es-errors: 1.3.0
3171 | get-intrinsic: 1.2.7
3172 | object-inspect: 1.13.3
3173 |
3174 | side-channel-weakmap@1.0.2:
3175 | dependencies:
3176 | call-bound: 1.0.3
3177 | es-errors: 1.3.0
3178 | get-intrinsic: 1.2.7
3179 | object-inspect: 1.13.3
3180 | side-channel-map: 1.0.1
3181 |
3182 | side-channel@1.1.0:
3183 | dependencies:
3184 | es-errors: 1.3.0
3185 | object-inspect: 1.13.3
3186 | side-channel-list: 1.0.0
3187 | side-channel-map: 1.0.1
3188 | side-channel-weakmap: 1.0.2
3189 |
3190 | signal-exit@4.1.0: {}
3191 |
3192 | sort-by-value@0.1.0:
3193 | dependencies:
3194 | extend-shallow: 2.0.1
3195 | isobject: 3.0.1
3196 |
3197 | source-map-support@0.5.21:
3198 | dependencies:
3199 | buffer-from: 1.1.2
3200 | source-map: 0.6.1
3201 |
3202 | source-map@0.6.1: {}
3203 |
3204 | source-map@0.8.0-beta.0:
3205 | dependencies:
3206 | whatwg-url: 7.1.0
3207 |
3208 | sprintf-js@1.0.3: {}
3209 |
3210 | string-width@2.1.1:
3211 | dependencies:
3212 | is-fullwidth-code-point: 2.0.0
3213 | strip-ansi: 4.0.0
3214 |
3215 | string-width@3.1.0:
3216 | dependencies:
3217 | emoji-regex: 7.0.3
3218 | is-fullwidth-code-point: 2.0.0
3219 | strip-ansi: 5.2.0
3220 |
3221 | string-width@4.2.3:
3222 | dependencies:
3223 | emoji-regex: 8.0.0
3224 | is-fullwidth-code-point: 3.0.0
3225 | strip-ansi: 6.0.1
3226 |
3227 | string-width@5.1.2:
3228 | dependencies:
3229 | eastasianwidth: 0.2.0
3230 | emoji-regex: 9.2.2
3231 | strip-ansi: 7.1.0
3232 |
3233 | string.prototype.trim@1.2.10:
3234 | dependencies:
3235 | call-bind: 1.0.8
3236 | call-bound: 1.0.3
3237 | define-data-property: 1.1.4
3238 | define-properties: 1.2.1
3239 | es-abstract: 1.23.9
3240 | es-object-atoms: 1.1.1
3241 | has-property-descriptors: 1.0.2
3242 |
3243 | string.prototype.trimend@1.0.9:
3244 | dependencies:
3245 | call-bind: 1.0.8
3246 | call-bound: 1.0.3
3247 | define-properties: 1.2.1
3248 | es-object-atoms: 1.1.1
3249 |
3250 | string.prototype.trimstart@1.0.8:
3251 | dependencies:
3252 | call-bind: 1.0.8
3253 | define-properties: 1.2.1
3254 | es-object-atoms: 1.1.1
3255 |
3256 | string_decoder@1.1.1:
3257 | dependencies:
3258 | safe-buffer: 5.1.2
3259 |
3260 | strip-ansi@4.0.0:
3261 | dependencies:
3262 | ansi-regex: 3.0.1
3263 |
3264 | strip-ansi@5.2.0:
3265 | dependencies:
3266 | ansi-regex: 4.1.1
3267 |
3268 | strip-ansi@6.0.1:
3269 | dependencies:
3270 | ansi-regex: 5.0.1
3271 |
3272 | strip-ansi@7.1.0:
3273 | dependencies:
3274 | ansi-regex: 6.1.0
3275 |
3276 | strip-bom@3.0.0: {}
3277 |
3278 | strip-json-comments@2.0.1: {}
3279 |
3280 | strip-json-comments@3.1.1: {}
3281 |
3282 | sucrase@3.35.0:
3283 | dependencies:
3284 | '@jridgewell/gen-mapping': 0.3.8
3285 | commander: 4.1.1
3286 | glob: 10.4.5
3287 | lines-and-columns: 1.2.4
3288 | mz: 2.7.0
3289 | pirates: 4.0.6
3290 | ts-interface-checker: 0.1.13
3291 |
3292 | supports-color@5.5.0:
3293 | dependencies:
3294 | has-flag: 3.0.0
3295 |
3296 | supports-color@6.0.0:
3297 | dependencies:
3298 | has-flag: 3.0.0
3299 |
3300 | supports-color@7.2.0:
3301 | dependencies:
3302 | has-flag: 4.0.0
3303 |
3304 | text-table@0.2.0: {}
3305 |
3306 | thenify-all@1.6.0:
3307 | dependencies:
3308 | thenify: 3.3.1
3309 |
3310 | thenify@3.3.1:
3311 | dependencies:
3312 | any-promise: 1.3.0
3313 |
3314 | through2@2.0.5:
3315 | dependencies:
3316 | readable-stream: 2.3.8
3317 | xtend: 4.0.2
3318 |
3319 | tinyexec@0.3.2: {}
3320 |
3321 | tinyglobby@0.2.10:
3322 | dependencies:
3323 | fdir: 6.4.3(picomatch@4.0.2)
3324 | picomatch: 4.0.2
3325 |
3326 | to-regex-range@4.0.3:
3327 | dependencies:
3328 | is-number: 7.0.0
3329 |
3330 | tr46@1.0.1:
3331 | dependencies:
3332 | punycode: 2.3.1
3333 |
3334 | tree-kill@1.2.2: {}
3335 |
3336 | ts-interface-checker@0.1.13: {}
3337 |
3338 | ts-mocha@10.0.0(mocha@6.2.3):
3339 | dependencies:
3340 | mocha: 6.2.3
3341 | ts-node: 7.0.1
3342 | optionalDependencies:
3343 | tsconfig-paths: 3.15.0
3344 |
3345 | ts-node@10.9.2(@types/node@22.10.10)(typescript@5.7.3):
3346 | dependencies:
3347 | '@cspotcode/source-map-support': 0.8.1
3348 | '@tsconfig/node10': 1.0.11
3349 | '@tsconfig/node12': 1.0.11
3350 | '@tsconfig/node14': 1.0.3
3351 | '@tsconfig/node16': 1.0.4
3352 | '@types/node': 22.10.10
3353 | acorn: 8.14.0
3354 | acorn-walk: 8.3.4
3355 | arg: 4.1.3
3356 | create-require: 1.1.1
3357 | diff: 4.0.2
3358 | make-error: 1.3.6
3359 | typescript: 5.7.3
3360 | v8-compile-cache-lib: 3.0.1
3361 | yn: 3.1.1
3362 |
3363 | ts-node@7.0.1:
3364 | dependencies:
3365 | arrify: 1.0.1
3366 | buffer-from: 1.1.2
3367 | diff: 3.5.0
3368 | make-error: 1.3.6
3369 | minimist: 1.2.8
3370 | mkdirp: 0.5.4
3371 | source-map-support: 0.5.21
3372 | yn: 2.0.0
3373 |
3374 | tsconfig-paths@3.15.0:
3375 | dependencies:
3376 | '@types/json5': 0.0.29
3377 | json5: 1.0.2
3378 | minimist: 1.2.8
3379 | strip-bom: 3.0.0
3380 | optional: true
3381 |
3382 | tsconfig-paths@4.2.0:
3383 | dependencies:
3384 | json5: 2.2.3
3385 | minimist: 1.2.8
3386 | strip-bom: 3.0.0
3387 |
3388 | tsup@8.3.6(typescript@5.7.3):
3389 | dependencies:
3390 | bundle-require: 5.1.0(esbuild@0.24.2)
3391 | cac: 6.7.14
3392 | chokidar: 4.0.3
3393 | consola: 3.4.0
3394 | debug: 4.4.0
3395 | esbuild: 0.24.2
3396 | joycon: 3.1.1
3397 | picocolors: 1.1.1
3398 | postcss-load-config: 6.0.1
3399 | resolve-from: 5.0.0
3400 | rollup: 4.32.0
3401 | source-map: 0.8.0-beta.0
3402 | sucrase: 3.35.0
3403 | tinyexec: 0.3.2
3404 | tinyglobby: 0.2.10
3405 | tree-kill: 1.2.2
3406 | optionalDependencies:
3407 | typescript: 5.7.3
3408 | transitivePeerDependencies:
3409 | - jiti
3410 | - supports-color
3411 | - tsx
3412 | - yaml
3413 |
3414 | type-check@0.4.0:
3415 | dependencies:
3416 | prelude-ls: 1.2.1
3417 |
3418 | type-fest@0.20.2: {}
3419 |
3420 | typed-array-buffer@1.0.3:
3421 | dependencies:
3422 | call-bound: 1.0.3
3423 | es-errors: 1.3.0
3424 | is-typed-array: 1.1.15
3425 |
3426 | typed-array-byte-length@1.0.3:
3427 | dependencies:
3428 | call-bind: 1.0.8
3429 | for-each: 0.3.4
3430 | gopd: 1.2.0
3431 | has-proto: 1.2.0
3432 | is-typed-array: 1.1.15
3433 |
3434 | typed-array-byte-offset@1.0.4:
3435 | dependencies:
3436 | available-typed-arrays: 1.0.7
3437 | call-bind: 1.0.8
3438 | for-each: 0.3.4
3439 | gopd: 1.2.0
3440 | has-proto: 1.2.0
3441 | is-typed-array: 1.1.15
3442 | reflect.getprototypeof: 1.0.10
3443 |
3444 | typed-array-length@1.0.7:
3445 | dependencies:
3446 | call-bind: 1.0.8
3447 | for-each: 0.3.4
3448 | gopd: 1.2.0
3449 | is-typed-array: 1.1.15
3450 | possible-typed-array-names: 1.0.0
3451 | reflect.getprototypeof: 1.0.10
3452 |
3453 | typescript@5.7.3: {}
3454 |
3455 | unbox-primitive@1.1.0:
3456 | dependencies:
3457 | call-bound: 1.0.3
3458 | has-bigints: 1.1.0
3459 | has-symbols: 1.1.0
3460 | which-boxed-primitive: 1.1.1
3461 |
3462 | undici-types@6.20.0: {}
3463 |
3464 | uri-js@4.4.1:
3465 | dependencies:
3466 | punycode: 2.3.1
3467 |
3468 | util-deprecate@1.0.2: {}
3469 |
3470 | v8-compile-cache-lib@3.0.1: {}
3471 |
3472 | webidl-conversions@4.0.2: {}
3473 |
3474 | whatwg-url@7.1.0:
3475 | dependencies:
3476 | lodash.sortby: 4.7.0
3477 | tr46: 1.0.1
3478 | webidl-conversions: 4.0.2
3479 |
3480 | which-boxed-primitive@1.1.1:
3481 | dependencies:
3482 | is-bigint: 1.1.0
3483 | is-boolean-object: 1.2.1
3484 | is-number-object: 1.1.1
3485 | is-string: 1.1.1
3486 | is-symbol: 1.1.1
3487 |
3488 | which-builtin-type@1.2.1:
3489 | dependencies:
3490 | call-bound: 1.0.3
3491 | function.prototype.name: 1.1.8
3492 | has-tostringtag: 1.0.2
3493 | is-async-function: 2.1.1
3494 | is-date-object: 1.1.0
3495 | is-finalizationregistry: 1.1.1
3496 | is-generator-function: 1.1.0
3497 | is-regex: 1.2.1
3498 | is-weakref: 1.1.0
3499 | isarray: 2.0.5
3500 | which-boxed-primitive: 1.1.1
3501 | which-collection: 1.0.2
3502 | which-typed-array: 1.1.18
3503 |
3504 | which-collection@1.0.2:
3505 | dependencies:
3506 | is-map: 2.0.3
3507 | is-set: 2.0.3
3508 | is-weakmap: 2.0.2
3509 | is-weakset: 2.0.4
3510 |
3511 | which-module@2.0.1: {}
3512 |
3513 | which-typed-array@1.1.18:
3514 | dependencies:
3515 | available-typed-arrays: 1.0.7
3516 | call-bind: 1.0.8
3517 | call-bound: 1.0.3
3518 | for-each: 0.3.4
3519 | gopd: 1.2.0
3520 | has-tostringtag: 1.0.2
3521 |
3522 | which@1.3.1:
3523 | dependencies:
3524 | isexe: 2.0.0
3525 |
3526 | which@2.0.2:
3527 | dependencies:
3528 | isexe: 2.0.0
3529 |
3530 | wide-align@1.1.3:
3531 | dependencies:
3532 | string-width: 2.1.1
3533 |
3534 | word-wrap@1.2.5: {}
3535 |
3536 | wrap-ansi@5.1.0:
3537 | dependencies:
3538 | ansi-styles: 3.2.1
3539 | string-width: 3.1.0
3540 | strip-ansi: 5.2.0
3541 |
3542 | wrap-ansi@7.0.0:
3543 | dependencies:
3544 | ansi-styles: 4.3.0
3545 | string-width: 4.2.3
3546 | strip-ansi: 6.0.1
3547 |
3548 | wrap-ansi@8.1.0:
3549 | dependencies:
3550 | ansi-styles: 6.2.1
3551 | string-width: 5.1.2
3552 | strip-ansi: 7.1.0
3553 |
3554 | wrappy@1.0.2: {}
3555 |
3556 | xtend@4.0.2: {}
3557 |
3558 | y18n@4.0.3: {}
3559 |
3560 | yargs-parser@13.1.2:
3561 | dependencies:
3562 | camelcase: 5.3.1
3563 | decamelize: 1.2.0
3564 |
3565 | yargs-unparser@1.6.0:
3566 | dependencies:
3567 | flat: 4.1.1
3568 | lodash: 4.17.21
3569 | yargs: 13.3.2
3570 |
3571 | yargs@13.3.2:
3572 | dependencies:
3573 | cliui: 5.0.0
3574 | find-up: 3.0.0
3575 | get-caller-file: 2.0.5
3576 | require-directory: 2.1.1
3577 | require-main-filename: 2.0.0
3578 | set-blocking: 2.0.0
3579 | string-width: 3.1.0
3580 | which-module: 2.0.1
3581 | y18n: 4.0.3
3582 | yargs-parser: 13.1.2
3583 |
3584 | yn@2.0.0: {}
3585 |
3586 | yn@3.1.1: {}
3587 |
3588 | yocto-queue@0.1.0: {}
3589 |
--------------------------------------------------------------------------------
/prettier.config.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | trailingComma: 'none',
5 | tabWidth: 2,
6 | semi: true,
7 | singleQuote: true,
8 | printWidth: 90,
9 | arrowParens: 'avoid',
10 | bracketSpacing: true,
11 | jsxBracketSameLine: false,
12 | jsxSingleQuote: false,
13 | quoteProps: 'consistent'
14 | };
15 |
--------------------------------------------------------------------------------
/test/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "../.eslintrc.json"
4 | ],
5 |
6 | "env": {
7 | "mocha": true
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/test/detect-case.test.ts:
--------------------------------------------------------------------------------
1 | import assert from 'node:assert/strict';
2 | import detect from '..';
3 |
4 | describe('detect-case', () => {
5 | it('should handle invalid inputs', () => {
6 | assert.equal(detect(''), 'unknown', '');
7 | assert.equal(detect('123'), 'unknown', '123');
8 | assert.equal(detect('!@#'), 'unknown', '!@#');
9 | assert.throws(() => detect(null), TypeError);
10 | });
11 |
12 | it('should detect single characters', () => {
13 | assert.equal(detect('a'), 'lowercase', 'a');
14 | assert.equal(detect('A'), 'uppercase', 'A');
15 | assert.equal(detect('1'), 'unknown', '1');
16 | assert.equal(detect('-'), 'unknown', '-');
17 | });
18 |
19 | it('should detect pascalcase', () => {
20 | assert.equal(detect('Pascal'), 'pascalcase', 'Pascal');
21 | assert.equal(detect('PascalCase'), 'pascalcase', 'PascalCase');
22 | assert.equal(detect('XMLHttpRequest'), 'pascalcase', 'XMLHttpRequest');
23 | assert.equal(detect('AClass'), 'pascalcase', 'AClass');
24 | assert.equal(detect('PaScAl'), 'pascalcase', 'PaScAl');
25 | assert.equal(detect('PaScAlCase'), 'pascalcase', 'PaScAlCase');
26 | });
27 |
28 | it('should detect camelcase', () => {
29 | assert.equal(detect('camelCase'), 'camelcase', 'camelCase');
30 | assert.equal(detect('camel'), 'lowercase', 'camel');
31 | assert.equal(detect('innerHTML'), 'camelcase', 'innerHTML');
32 | assert.equal(detect('dataType1'), 'camelcase', 'dataType1');
33 | assert.equal(detect('myXMLParser'), 'camelcase', 'myXMLParser');
34 | assert.equal(detect('getID'), 'camelcase', 'getID');
35 | assert.equal(detect('aB'), 'camelcase', 'aB');
36 | });
37 |
38 | it('should detect mixedcase', () => {
39 | assert.equal(detect('a_b-c'), 'mixedcase', 'a_b-c');
40 | assert.equal(detect('Fo_ob1_r'), 'mixedcase', 'Fo_ob1_r');
41 | assert.equal(detect('Foo_b9ar'), 'mixedcase', 'Foo_b9ar');
42 | assert.equal(detect('Foo_bar_baz'), 'mixedcase', 'Foo_bar_baz');
43 | assert.equal(detect('Fo122345'), 'mixedcase', 'Fo122345');
44 | assert.equal(detect('M123ed'), 'mixedcase', 'M123ed');
45 | assert.equal(detect('M1x3d'), 'mixedcase', 'M1x3d');
46 | assert.equal(detect('Class1'), 'mixedcase', 'Class1');
47 | assert.equal(detect('Class1Name2'), 'mixedcase', 'Class1Name2');
48 | assert.equal(detect('abc123'), 'mixedcase', 'abc123');
49 | assert.equal(detect('a1b2c3'), 'mixedcase', 'a1b2c3');
50 | });
51 |
52 | it('should detect titlecase', () => {
53 | assert.equal(detect('Title Case'), 'titlecase', 'Title Case');
54 | assert.equal(detect('A Title Case'), 'titlecase', 'A Title Case');
55 | assert.equal(detect('Page'), 'pascalcase', 'Page');
56 | assert.equal(detect('Ab'), 'pascalcase', 'Ab');
57 | assert.equal(detect('A'), 'uppercase', 'A');
58 | assert.equal(detect('2024 Annual Report'), 'titlecase', '2024 Annual Report');
59 | });
60 |
61 | it('should detect sentencecase', () => {
62 | assert.equal(detect('Sentence case'), 'sentencecase', 'Sentence case');
63 | assert.equal(detect('A sentence case'), 'sentencecase', 'A sentence case');
64 | assert.equal(detect('A long year, was 2024'), 'sentencecase', 'A long year, was 2024');
65 | assert.equal(detect('A long year, was 2024.'), 'sentencecase', 'A long year, was 2024.');
66 | assert.equal(detect('The cat saw John run.'), 'sentencecase', 'A long year, was 2024.');
67 | assert.equal(detect('THE CAT SAW JOHN.'), 'sentencecase', 'A long year, was 2024.');
68 | });
69 |
70 | it('should detect uppercase', () => {
71 | assert.equal(detect('UPPERCASE'), 'uppercase', 'UPPERCASE');
72 | assert.equal(detect('ABC'), 'uppercase', 'ABC');
73 | assert.equal(detect('ABC123'), 'uppercase', 'ABC123');
74 | assert.equal(detect('A1B2C3'), 'uppercase', 'A1B2C3');
75 | assert.equal(detect('AB'), 'uppercase', 'AB');
76 | });
77 |
78 | it('should detect lowercase', () => {
79 | assert.equal(detect('lowercase'), 'lowercase', 'lowercase');
80 | assert.equal(detect('abc'), 'lowercase', 'abc');
81 | assert.equal(detect('abc xyz'), 'lowercase', 'abc');
82 | });
83 |
84 | it('should detect kebabcase', () => {
85 | assert.equal(detect('kebab-case'), 'kebabcase', 'kebab-case');
86 | assert.equal(detect('my-component'), 'kebabcase', 'my-component');
87 | assert.equal(detect('my-component-1'), 'kebabcase', 'my-component-1');
88 | assert.equal(detect('a-b-c'), 'kebabcase', 'a-b-c');
89 | assert.equal(detect('abc-123'), 'kebabcase', 'abc-123');
90 | assert.equal(detect('a-'), 'kebabcase', 'a-');
91 | });
92 |
93 | it('should detect snakecase', () => {
94 | assert.equal(detect('snake_case'), 'snakecase', 'snake_case');
95 | assert.equal(detect('my_variable'), 'snakecase', 'my_variable');
96 | assert.equal(detect('my_variable_1'), 'snakecase', 'my_variable_1');
97 | assert.equal(detect('a_b_c'), 'snakecase', 'a_b_c');
98 | assert.equal(detect('abc_123'), 'snakecase', 'abc_123');
99 | assert.equal(detect('a_'), 'snakecase', 'a_');
100 | });
101 |
102 | it('should detect uppersnake', () => {
103 | assert.equal(detect('UPPER_SNAKE'), 'uppersnake', 'UPPER_SNAKE');
104 | assert.equal(detect('MY_CONSTANT'), 'uppersnake', 'MY_CONSTANT');
105 | assert.equal(detect('MY_CONSTANT_1'), 'uppersnake', 'MY_CONSTANT_1');
106 | assert.equal(detect('ABC_123'), 'uppersnake', 'ABC_123');
107 | assert.equal(detect('A_B_C'), 'uppersnake', 'A_B_C');
108 | assert.equal(detect('A_'), 'uppersnake', 'A_');
109 | });
110 |
111 | it('should handle edge cases', () => {
112 | assert.equal(detect('123ABC'), 'mixedcase', '123ABC');
113 | assert.equal(detect('123abc'), 'mixedcase', '123abc');
114 | assert.equal(detect('abc!def'), 'unknown', 'abc!def');
115 | assert.equal(detect('ABC!DEF'), 'unknown', 'ABC!DEF');
116 | });
117 | });
118 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "baseUrl": ".",
4 | "allowJs": true,
5 | "allowSyntheticDefaultImports": true,
6 | "checkJs": false,
7 | "esModuleInterop": true,
8 | "isolatedModules": true,
9 | "moduleResolution": "NodeNext",
10 | "module": "NodeNext",
11 | "noEmit": true,
12 | "forceConsistentCasingInFileNames": true,
13 | "lib": ["ES2022"],
14 | "resolveJsonModule": true,
15 | "strict": true,
16 | "target": "ES2022",
17 | "types": ["node"],
18 | "paths": { "~/*": ["src/*"] }
19 | },
20 | "ts-node": {
21 | "transpileOnly": true
22 | },
23 | "include": ["*.ts", "src", "test"],
24 | "exclude": ["node_modules", "dist", "tmp", "temp"]
25 | }
26 |
--------------------------------------------------------------------------------
/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'tsup';
2 |
3 | export default defineConfig({
4 | clean: true,
5 | entry: ['index.ts'],
6 | cjsInterop: true,
7 | format: ['cjs', 'esm'],
8 | keepNames: true,
9 | minify: false,
10 | shims: true,
11 | splitting: false,
12 | sourcemap: true,
13 | target: 'node20'
14 | });
15 |
--------------------------------------------------------------------------------