├── .github
└── FUNDING.yml
├── .gitignore
├── .npmrc
├── .vscode
└── settings.json
├── README.md
├── broz.js
├── eslint.config.mjs
├── index.js
├── package.json
└── pnpm-lock.yaml
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: antfu
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | shamefully-hoist=true
2 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | // Enable the ESlint flat config support
3 | "eslint.experimental.useFlatConfig": true,
4 |
5 | // Disable the default formatter, use eslint instead
6 | "prettier.enable": false,
7 | "editor.formatOnSave": false,
8 |
9 | // Auto fix
10 | "editor.codeActionsOnSave": {
11 | "source.fixAll": "explicit",
12 | "source.organizeImports": "never"
13 | },
14 |
15 | // Silent the stylistic rules in you IDE, but still auto fix them
16 | "eslint.rules.customizations": [
17 | { "rule": "style/*", "severity": "off" },
18 | { "rule": "*-indent", "severity": "off" },
19 | { "rule": "*-spacing", "severity": "off" },
20 | { "rule": "*-spaces", "severity": "off" },
21 | { "rule": "*-order", "severity": "off" },
22 | { "rule": "*-dangle", "severity": "off" },
23 | { "rule": "*-newline", "severity": "off" },
24 | { "rule": "*quotes", "severity": "off" },
25 | { "rule": "*semi", "severity": "off" }
26 | ],
27 |
28 | // Enable eslint for all supported languages
29 | "eslint.validate": [
30 | "javascript",
31 | "javascriptreact",
32 | "typescript",
33 | "typescriptreact",
34 | "vue",
35 | "html",
36 | "markdown",
37 | "json",
38 | "jsonc",
39 | "yaml"
40 | ]
41 | }
42 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | broz
4 |
5 | a simple, frameless browser for screenshots
6 |
7 | $ npx broz antfu.me
8 |
9 |
10 |
11 |
12 |
13 |
14 | FAQ
15 |
16 | ### Drag the Window
17 |
18 | There is a hidden dragging area in the top left corner:
19 |
20 | 
21 |
22 | ### Close the Window
23 |
24 | You can do that by either:
25 |
26 | - End the process in Terminal by ^C / Ctrl+C
27 | - Keyboard shortcuts ⌘W / ⌘Q / Alt+F4
28 | - Menu:
29 | 
30 |
31 | ### Change the URL
32 |
33 | Just close it and create another :)
34 |
35 | ### Navigation
36 |
37 | - ⌘[ - Backward
38 | - ⌘] - Forward
39 |
40 | The rest is basically the same as Chrome.
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/broz.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | 'use strict'
3 | const { execFileSync } = require('node:child_process')
4 | const path = require('node:path')
5 | const process = require('node:process')
6 |
7 | const args = [path.resolve(__dirname, 'index.js'), ...Array.from(process.argv).slice(2)]
8 | execFileSync(String(require('electron')), args, { stdio: 'inherit' })
9 |
--------------------------------------------------------------------------------
/eslint.config.mjs:
--------------------------------------------------------------------------------
1 | import antfu from '@antfu/eslint-config'
2 |
3 | export default antfu()
4 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | // @ts-check
2 | const process = require('node:process')
3 | const { clipboard, shell, app, BrowserWindow, Menu, MenuItem } = require('electron')
4 | const createState = require('electron-window-state')
5 | const yargs = require('yargs')
6 |
7 | let main = null
8 |
9 | yargs
10 | .scriptName('broz')
11 | .usage('$0 [url]')
12 | .showHelpOnFail(false)
13 | .alias('h', 'help')
14 | .alias('v', 'version')
15 | .command(
16 | '* [url]',
17 | 'launch broz',
18 | args => args
19 | .positional('url', {
20 | type: 'string',
21 | default: 'https://github.com/antfu/broz#readme',
22 | desc: 'launch broz with url, the http:// protocol can be omitted',
23 | })
24 | .option('top', {
25 | type: 'boolean',
26 | default: false,
27 | desc: 'set window always on top',
28 | })
29 | .option('height', {
30 | type: 'number',
31 | default: undefined,
32 | desc: 'set initial window height',
33 | })
34 | .option('width', {
35 | type: 'number',
36 | default: undefined,
37 | desc: 'set initial window width',
38 | })
39 | .option('frame', {
40 | type: 'boolean',
41 | defalt: false,
42 | desc: 'set window has a frame',
43 | }),
44 | async (args) => {
45 | app.setName('Broz')
46 | app.on('window-all-closed', () => app.quit())
47 |
48 | try {
49 | await app.whenReady()
50 | main = createMainWindow(args)
51 |
52 | await main.loadURL(
53 | args.url.includes('://')
54 | ? args.url
55 | : `http://${args.url}`,
56 | )
57 | }
58 | catch (e) {
59 | console.error(e)
60 | process.exit(1)
61 | }
62 | },
63 | )
64 | .help()
65 | .parse()
66 |
67 | const windowSizes = [
68 | { width: 1920, height: 1080 },
69 | { width: 1280, height: 720 },
70 | { width: 1024, height: 768 },
71 | { width: 960, height: 540 },
72 | { width: 640, height: 360 },
73 | { width: 1000, height: 1000 },
74 | { width: 500, height: 500 },
75 | ]
76 |
77 | function createMainWindow(args) {
78 | const state = createState({
79 | defaultWidth: 960,
80 | defaultHeight: 540,
81 | })
82 |
83 | const main = new BrowserWindow({
84 | x: state.x,
85 | y: state.y,
86 | width: args.width ?? state.width,
87 | height: args.height ?? state.height,
88 | show: true,
89 | titleBarStyle: 'hidden',
90 | trafficLightPosition: { x: -100, y: -100 },
91 | frame: args.frame,
92 | })
93 |
94 | state.manage(main)
95 | const debouncedSaveWindowState = debounce(
96 | event => state.saveState(event.sender),
97 | 500,
98 | )
99 |
100 | main.on('resize', debouncedSaveWindowState)
101 | main.on('move', debouncedSaveWindowState)
102 |
103 | const menu = Menu.getApplicationMenu()
104 | // @ts-ignore
105 | menu.insert(1, new MenuItem({
106 | label: 'Broz',
107 | submenu: [
108 | {
109 | label: 'Copy URL',
110 | click: () => {
111 | const win = BrowserWindow.getFocusedWindow() || main
112 | clipboard.writeText(win.webContents.getURL())
113 | },
114 | },
115 | {
116 | label: 'Open in System Browser',
117 | click: () => {
118 | const win = BrowserWindow.getFocusedWindow() || main
119 | shell.openExternal(win.webContents.getURL())
120 | },
121 | },
122 | {
123 | type: 'separator',
124 | },
125 | {
126 | label: 'Resize',
127 | submenu: windowSizes.map(({ width, height }) => ({
128 |
129 | label: `${width} x ${height} (${getRatio(width, height)})`,
130 | click: () => {
131 | const win = BrowserWindow.getFocusedWindow() || main
132 | win.setSize(width, height, true)
133 | state.saveState(win)
134 | },
135 | })),
136 | },
137 | {
138 | label: 'Flip Size',
139 | click: () => {
140 | const win = BrowserWindow.getFocusedWindow() || main
141 | const [width, height] = win.getSize()
142 | main.setSize(height, width)
143 | state.saveState(win)
144 | },
145 | },
146 | {
147 | label: 'Center Window',
148 | click: () => {
149 | const win = BrowserWindow.getFocusedWindow() || main
150 | main.center()
151 | state.saveState(win)
152 | },
153 | },
154 | ],
155 | }))
156 | Menu.setApplicationMenu(menu)
157 |
158 | configureWindow(main, args)
159 |
160 | return main
161 | }
162 |
163 | /**
164 | * @param {BrowserWindow} win
165 | */
166 | function configureWindow(win, args) {
167 | // injecting a dragable area
168 | win.webContents.on('dom-ready', () => {
169 | win.webContents.executeJavaScript(`;(() => {
170 | const el = document.createElement('div')
171 | el.id = 'injected-broz-drag'
172 | const style = document.createElement('style')
173 | style.innerHTML="#injected-broz-drag{position:fixed;left:10px;top:10px;width:40px;height:40px;border-radius:50%;cursor:grab;-webkit-app-region:drag;z-index:99999999;}#injected-broz-drag:hover{background:#8885;}"
174 | document.body.appendChild(el)
175 | document.body.appendChild(style)
176 |
177 | const rootStyle = document.createElement('style')
178 | rootStyle.innerHTML="::-webkit-scrollbar {display: none;}"
179 | document.head.appendChild(rootStyle)
180 |
181 | })()`)
182 | })
183 |
184 | win.webContents.setWindowOpenHandler(() => {
185 | const [x, y] = win.getPosition()
186 | const [width, height] = win.getSize()
187 | return {
188 | action: 'allow',
189 | overrideBrowserWindowOptions: {
190 | x: x + 50,
191 | y: y + 50,
192 | width,
193 | height,
194 | },
195 | }
196 | })
197 |
198 | win.webContents.on('before-input-event', (event, input) => {
199 | if (input.control || input.meta) {
200 | if (input.key === ']') {
201 | win.webContents.goForward()
202 | event.preventDefault()
203 | }
204 | else if (input.key === '[') {
205 | win.webContents.goBack()
206 | event.preventDefault()
207 | }
208 | else if (input.key === '-') {
209 | win.webContents.emit('zoom-changed', event, 'out')
210 | event.preventDefault()
211 | }
212 | else if (input.key === '=') {
213 | win.webContents.emit('zoom-changed', event, 'in')
214 | event.preventDefault()
215 | }
216 | }
217 | })
218 |
219 | win.webContents.on('did-create-window', (win) => {
220 | configureWindow(win, args)
221 | })
222 |
223 | win.webContents.on('zoom-changed', (event, zoomDirection) => {
224 | const currentZoom = win.webContents.getZoomFactor()
225 | if (zoomDirection === 'in')
226 | win.webContents.zoomFactor = currentZoom + 0.15
227 |
228 | if (zoomDirection === 'out')
229 | win.webContents.zoomFactor = currentZoom - 0.15
230 | })
231 |
232 | if (args.top)
233 | win.setAlwaysOnTop(true, 'floating')
234 |
235 | return win
236 | }
237 |
238 | function debounce(fn, delay) {
239 | let timeoutID = null
240 | return function (...args) {
241 | clearTimeout(timeoutID)
242 | timeoutID = setTimeout(() => {
243 | fn(...args)
244 | }, delay)
245 | }
246 | }
247 |
248 | function getRatio(width, height) {
249 | const gcd = (a, b) => b ? gcd(b, a % b) : a
250 | const r = gcd(width, height)
251 | return `${width / r}:${height / r}`
252 | }
253 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "broz",
3 | "version": "0.5.0",
4 | "packageManager": "pnpm@9.15.3",
5 | "description": "A simple, frameless browser for screenshots",
6 | "author": "Anthony Fu ",
7 | "license": "MIT",
8 | "funding": "https://github.com/sponsors/antfu",
9 | "homepage": "https://github.com/antfu/broz",
10 | "repository": {
11 | "type": "git",
12 | "url": "https://github.com/antfu/broz"
13 | },
14 | "bugs": "https://github.com/antfu/broz/issues",
15 | "main": "index.js",
16 | "bin": {
17 | "broz": "./broz.js"
18 | },
19 | "scripts": {
20 | "dev": "electron index.js",
21 | "lint": "eslint .",
22 | "release": "bumpp --commit --tag --push && npm publish"
23 | },
24 | "dependencies": {
25 | "electron": "^33.3.1",
26 | "electron-window-state": "^5.0.3",
27 | "yargs": "^17.7.2"
28 | },
29 | "devDependencies": {
30 | "@antfu/eslint-config": "^3.12.2",
31 | "@types/yargs": "^17.0.33",
32 | "bumpp": "^9.9.3",
33 | "eslint": "^9.17.0",
34 | "typescript": "^5.7.2"
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | electron:
12 | specifier: ^33.3.1
13 | version: 33.3.1
14 | electron-window-state:
15 | specifier: ^5.0.3
16 | version: 5.0.3
17 | yargs:
18 | specifier: ^17.7.2
19 | version: 17.7.2
20 | devDependencies:
21 | '@antfu/eslint-config':
22 | specifier: ^3.12.2
23 | version: 3.12.2(@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)(vitest@0.34.6)
24 | '@types/yargs':
25 | specifier: ^17.0.33
26 | version: 17.0.33
27 | bumpp:
28 | specifier: ^9.9.3
29 | version: 9.9.3
30 | eslint:
31 | specifier: ^9.17.0
32 | version: 9.17.0(jiti@2.4.2)
33 | typescript:
34 | specifier: ^5.7.2
35 | version: 5.7.2
36 |
37 | packages:
38 |
39 | '@aashutoshrathi/word-wrap@1.2.6':
40 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
41 | engines: {node: '>=0.10.0'}
42 |
43 | '@antfu/eslint-config@3.12.2':
44 | resolution: {integrity: sha512-LELQDtu48jenz9o3/1qchjlTG/TyZ3FcpfR5vuB12hPhkavA81T65HZQ8H+9toPHhYqURQ3leN/b09jaOrGdOQ==}
45 | hasBin: true
46 | peerDependencies:
47 | '@eslint-react/eslint-plugin': ^1.19.0
48 | '@prettier/plugin-xml': ^3.4.1
49 | '@unocss/eslint-plugin': '>=0.50.0'
50 | astro-eslint-parser: ^1.0.2
51 | eslint: ^9.10.0
52 | eslint-plugin-astro: ^1.2.0
53 | eslint-plugin-format: '>=0.1.0'
54 | eslint-plugin-react-hooks: ^5.0.0
55 | eslint-plugin-react-refresh: ^0.4.4
56 | eslint-plugin-solid: ^0.14.3
57 | eslint-plugin-svelte: '>=2.35.1'
58 | prettier-plugin-astro: ^0.14.0
59 | prettier-plugin-slidev: ^1.0.5
60 | svelte-eslint-parser: '>=0.37.0'
61 | peerDependenciesMeta:
62 | '@eslint-react/eslint-plugin':
63 | optional: true
64 | '@prettier/plugin-xml':
65 | optional: true
66 | '@unocss/eslint-plugin':
67 | optional: true
68 | astro-eslint-parser:
69 | optional: true
70 | eslint-plugin-astro:
71 | optional: true
72 | eslint-plugin-format:
73 | optional: true
74 | eslint-plugin-react-hooks:
75 | optional: true
76 | eslint-plugin-react-refresh:
77 | optional: true
78 | eslint-plugin-solid:
79 | optional: true
80 | eslint-plugin-svelte:
81 | optional: true
82 | prettier-plugin-astro:
83 | optional: true
84 | prettier-plugin-slidev:
85 | optional: true
86 | svelte-eslint-parser:
87 | optional: true
88 |
89 | '@antfu/install-pkg@0.5.0':
90 | resolution: {integrity: sha512-dKnk2xlAyC7rvTkpkHmu+Qy/2Zc3Vm/l8PtNyIOGDBtXPY3kThfU4ORNEp3V7SXw5XSOb+tOJaUYpfquPzL/Tg==}
91 |
92 | '@antfu/utils@0.7.10':
93 | resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
94 |
95 | '@babel/code-frame@7.12.13':
96 | resolution: {integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==}
97 |
98 | '@babel/helper-string-parser@7.25.9':
99 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
100 | engines: {node: '>=6.9.0'}
101 |
102 | '@babel/helper-validator-identifier@7.25.9':
103 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
104 | engines: {node: '>=6.9.0'}
105 |
106 | '@babel/highlight@7.14.0':
107 | resolution: {integrity: sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==}
108 |
109 | '@babel/parser@7.26.3':
110 | resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
111 | engines: {node: '>=6.0.0'}
112 | hasBin: true
113 |
114 | '@babel/types@7.26.3':
115 | resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
116 | engines: {node: '>=6.9.0'}
117 |
118 | '@clack/core@0.4.0':
119 | resolution: {integrity: sha512-YJCYBsyJfNDaTbvDUVSJ3SgSuPrcujarRgkJ5NLjexDZKvaOiVVJvAQYx8lIgG0qRT8ff0fPgqyBCVivanIZ+A==}
120 |
121 | '@clack/prompts@0.9.0':
122 | resolution: {integrity: sha512-nGsytiExgUr4FL0pR/LeqxA28nz3E0cW7eLTSh3Iod9TGrbBt8Y7BHbV3mmkNC4G0evdYyQ3ZsbiBkk7ektArA==}
123 |
124 | '@electron/get@2.0.3':
125 | resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==}
126 | engines: {node: '>=12'}
127 |
128 | '@es-joy/jsdoccomment@0.49.0':
129 | resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
130 | engines: {node: '>=16'}
131 |
132 | '@esbuild/android-arm64@0.18.20':
133 | resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
134 | engines: {node: '>=12'}
135 | cpu: [arm64]
136 | os: [android]
137 |
138 | '@esbuild/android-arm@0.18.20':
139 | resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
140 | engines: {node: '>=12'}
141 | cpu: [arm]
142 | os: [android]
143 |
144 | '@esbuild/android-x64@0.18.20':
145 | resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
146 | engines: {node: '>=12'}
147 | cpu: [x64]
148 | os: [android]
149 |
150 | '@esbuild/darwin-arm64@0.18.20':
151 | resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
152 | engines: {node: '>=12'}
153 | cpu: [arm64]
154 | os: [darwin]
155 |
156 | '@esbuild/darwin-x64@0.18.20':
157 | resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
158 | engines: {node: '>=12'}
159 | cpu: [x64]
160 | os: [darwin]
161 |
162 | '@esbuild/freebsd-arm64@0.18.20':
163 | resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
164 | engines: {node: '>=12'}
165 | cpu: [arm64]
166 | os: [freebsd]
167 |
168 | '@esbuild/freebsd-x64@0.18.20':
169 | resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
170 | engines: {node: '>=12'}
171 | cpu: [x64]
172 | os: [freebsd]
173 |
174 | '@esbuild/linux-arm64@0.18.20':
175 | resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
176 | engines: {node: '>=12'}
177 | cpu: [arm64]
178 | os: [linux]
179 |
180 | '@esbuild/linux-arm@0.18.20':
181 | resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
182 | engines: {node: '>=12'}
183 | cpu: [arm]
184 | os: [linux]
185 |
186 | '@esbuild/linux-ia32@0.18.20':
187 | resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
188 | engines: {node: '>=12'}
189 | cpu: [ia32]
190 | os: [linux]
191 |
192 | '@esbuild/linux-loong64@0.18.20':
193 | resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
194 | engines: {node: '>=12'}
195 | cpu: [loong64]
196 | os: [linux]
197 |
198 | '@esbuild/linux-mips64el@0.18.20':
199 | resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
200 | engines: {node: '>=12'}
201 | cpu: [mips64el]
202 | os: [linux]
203 |
204 | '@esbuild/linux-ppc64@0.18.20':
205 | resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
206 | engines: {node: '>=12'}
207 | cpu: [ppc64]
208 | os: [linux]
209 |
210 | '@esbuild/linux-riscv64@0.18.20':
211 | resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
212 | engines: {node: '>=12'}
213 | cpu: [riscv64]
214 | os: [linux]
215 |
216 | '@esbuild/linux-s390x@0.18.20':
217 | resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
218 | engines: {node: '>=12'}
219 | cpu: [s390x]
220 | os: [linux]
221 |
222 | '@esbuild/linux-x64@0.18.20':
223 | resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
224 | engines: {node: '>=12'}
225 | cpu: [x64]
226 | os: [linux]
227 |
228 | '@esbuild/netbsd-x64@0.18.20':
229 | resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
230 | engines: {node: '>=12'}
231 | cpu: [x64]
232 | os: [netbsd]
233 |
234 | '@esbuild/openbsd-x64@0.18.20':
235 | resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
236 | engines: {node: '>=12'}
237 | cpu: [x64]
238 | os: [openbsd]
239 |
240 | '@esbuild/sunos-x64@0.18.20':
241 | resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
242 | engines: {node: '>=12'}
243 | cpu: [x64]
244 | os: [sunos]
245 |
246 | '@esbuild/win32-arm64@0.18.20':
247 | resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
248 | engines: {node: '>=12'}
249 | cpu: [arm64]
250 | os: [win32]
251 |
252 | '@esbuild/win32-ia32@0.18.20':
253 | resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
254 | engines: {node: '>=12'}
255 | cpu: [ia32]
256 | os: [win32]
257 |
258 | '@esbuild/win32-x64@0.18.20':
259 | resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
260 | engines: {node: '>=12'}
261 | cpu: [x64]
262 | os: [win32]
263 |
264 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
265 | resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
266 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
267 | peerDependencies:
268 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
269 |
270 | '@eslint-community/eslint-utils@4.4.1':
271 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
272 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
273 | peerDependencies:
274 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
275 |
276 | '@eslint-community/regexpp@4.12.1':
277 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
278 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
279 |
280 | '@eslint/compat@1.2.4':
281 | resolution: {integrity: sha512-S8ZdQj/N69YAtuqFt7653jwcvuUj131+6qGLUyDqfDg1OIoBQ66OCuXC473YQfO2AaxITTutiRQiDwoo7ZLYyg==}
282 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
283 | peerDependencies:
284 | eslint: ^9.10.0
285 | peerDependenciesMeta:
286 | eslint:
287 | optional: true
288 |
289 | '@eslint/config-array@0.19.1':
290 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
291 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
292 |
293 | '@eslint/core@0.9.1':
294 | resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
295 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
296 |
297 | '@eslint/eslintrc@3.2.0':
298 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
299 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
300 |
301 | '@eslint/js@9.17.0':
302 | resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
303 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
304 |
305 | '@eslint/markdown@6.2.1':
306 | resolution: {integrity: sha512-cKVd110hG4ICHmWhIwZJfKmmJBvbiDWyrHODJknAtudKgZtlROGoLX9UEOA0o746zC0hCY4UV4vR+aOGW9S6JQ==}
307 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
308 |
309 | '@eslint/object-schema@2.1.5':
310 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
311 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
312 |
313 | '@eslint/plugin-kit@0.2.4':
314 | resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==}
315 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
316 |
317 | '@humanfs/core@0.19.1':
318 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
319 | engines: {node: '>=18.18.0'}
320 |
321 | '@humanfs/node@0.16.6':
322 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
323 | engines: {node: '>=18.18.0'}
324 |
325 | '@humanwhocodes/module-importer@1.0.1':
326 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
327 | engines: {node: '>=12.22'}
328 |
329 | '@humanwhocodes/retry@0.3.1':
330 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
331 | engines: {node: '>=18.18'}
332 |
333 | '@humanwhocodes/retry@0.4.1':
334 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
335 | engines: {node: '>=18.18'}
336 |
337 | '@jest/schemas@29.6.3':
338 | resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
339 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
340 |
341 | '@jridgewell/sourcemap-codec@1.5.0':
342 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
343 |
344 | '@nodelib/fs.scandir@2.1.5':
345 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
346 | engines: {node: '>= 8'}
347 |
348 | '@nodelib/fs.stat@2.0.5':
349 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
350 | engines: {node: '>= 8'}
351 |
352 | '@nodelib/fs.walk@1.2.8':
353 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
354 | engines: {node: '>= 8'}
355 |
356 | '@pkgr/core@0.1.1':
357 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
358 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
359 |
360 | '@sinclair/typebox@0.27.8':
361 | resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
362 |
363 | '@sindresorhus/is@4.6.0':
364 | resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
365 | engines: {node: '>=10'}
366 |
367 | '@stylistic/eslint-plugin@2.12.1':
368 | resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==}
369 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
370 | peerDependencies:
371 | eslint: '>=8.40.0'
372 |
373 | '@szmarczak/http-timer@4.0.6':
374 | resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
375 | engines: {node: '>=10'}
376 |
377 | '@types/cacheable-request@6.0.3':
378 | resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
379 |
380 | '@types/chai-subset@1.3.3':
381 | resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
382 |
383 | '@types/chai@4.3.6':
384 | resolution: {integrity: sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw==}
385 |
386 | '@types/debug@4.1.12':
387 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
388 |
389 | '@types/doctrine@0.0.9':
390 | resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
391 |
392 | '@types/estree@1.0.6':
393 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
394 |
395 | '@types/http-cache-semantics@4.0.2':
396 | resolution: {integrity: sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==}
397 |
398 | '@types/json-schema@7.0.15':
399 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
400 |
401 | '@types/keyv@3.1.4':
402 | resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
403 |
404 | '@types/mdast@4.0.4':
405 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
406 |
407 | '@types/ms@0.7.34':
408 | resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
409 |
410 | '@types/node@20.17.12':
411 | resolution: {integrity: sha512-vo/wmBgMIiEA23A/knMfn/cf37VnuF52nZh5ZoW0GWt4e4sxNquibrMRJ7UQsA06+MBx9r/H1jsI9grYjQCQlw==}
412 |
413 | '@types/normalize-package-data@2.4.0':
414 | resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==}
415 |
416 | '@types/responselike@1.0.0':
417 | resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
418 |
419 | '@types/unist@3.0.3':
420 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
421 |
422 | '@types/yargs-parser@20.2.0':
423 | resolution: {integrity: sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==}
424 |
425 | '@types/yargs@17.0.33':
426 | resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
427 |
428 | '@types/yauzl@2.10.1':
429 | resolution: {integrity: sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==}
430 |
431 | '@typescript-eslint/eslint-plugin@8.19.1':
432 | resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==}
433 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
434 | peerDependencies:
435 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
436 | eslint: ^8.57.0 || ^9.0.0
437 | typescript: '>=4.8.4 <5.8.0'
438 |
439 | '@typescript-eslint/parser@8.19.1':
440 | resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==}
441 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
442 | peerDependencies:
443 | eslint: ^8.57.0 || ^9.0.0
444 | typescript: '>=4.8.4 <5.8.0'
445 |
446 | '@typescript-eslint/scope-manager@8.19.1':
447 | resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==}
448 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
449 |
450 | '@typescript-eslint/type-utils@8.19.1':
451 | resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==}
452 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
453 | peerDependencies:
454 | eslint: ^8.57.0 || ^9.0.0
455 | typescript: '>=4.8.4 <5.8.0'
456 |
457 | '@typescript-eslint/types@8.19.1':
458 | resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==}
459 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
460 |
461 | '@typescript-eslint/typescript-estree@8.19.1':
462 | resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==}
463 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
464 | peerDependencies:
465 | typescript: '>=4.8.4 <5.8.0'
466 |
467 | '@typescript-eslint/utils@8.19.1':
468 | resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==}
469 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
470 | peerDependencies:
471 | eslint: ^8.57.0 || ^9.0.0
472 | typescript: '>=4.8.4 <5.8.0'
473 |
474 | '@typescript-eslint/visitor-keys@8.19.1':
475 | resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==}
476 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
477 |
478 | '@vitest/eslint-plugin@1.1.24':
479 | resolution: {integrity: sha512-7IaENe4NNy33g0iuuy5bHY69JYYRjpv4lMx6H5Wp30W7ez2baLHwxsXF5TM4wa8JDYZt8ut99Ytoj7GiDO01hw==}
480 | peerDependencies:
481 | '@typescript-eslint/utils': '>= 8.0'
482 | eslint: '>= 8.57.0'
483 | typescript: '>= 5.0.0'
484 | vitest: '*'
485 | peerDependenciesMeta:
486 | typescript:
487 | optional: true
488 | vitest:
489 | optional: true
490 |
491 | '@vitest/expect@0.34.6':
492 | resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==}
493 |
494 | '@vitest/runner@0.34.6':
495 | resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==}
496 |
497 | '@vitest/snapshot@0.34.6':
498 | resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
499 |
500 | '@vitest/spy@0.34.6':
501 | resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
502 |
503 | '@vitest/utils@0.34.6':
504 | resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==}
505 |
506 | '@vue/compiler-core@3.5.13':
507 | resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
508 |
509 | '@vue/compiler-dom@3.5.13':
510 | resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
511 |
512 | '@vue/compiler-sfc@3.5.13':
513 | resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
514 |
515 | '@vue/compiler-ssr@3.5.13':
516 | resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
517 |
518 | '@vue/shared@3.5.13':
519 | resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
520 |
521 | acorn-jsx@5.3.2:
522 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
523 | peerDependencies:
524 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
525 |
526 | acorn-walk@8.2.0:
527 | resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
528 | engines: {node: '>=0.4.0'}
529 |
530 | acorn@8.14.0:
531 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
532 | engines: {node: '>=0.4.0'}
533 | hasBin: true
534 |
535 | ajv@6.12.6:
536 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
537 |
538 | ansi-regex@5.0.1:
539 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
540 | engines: {node: '>=8'}
541 |
542 | ansi-styles@3.2.1:
543 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
544 | engines: {node: '>=4'}
545 |
546 | ansi-styles@4.3.0:
547 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
548 | engines: {node: '>=8'}
549 |
550 | ansi-styles@5.2.0:
551 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
552 | engines: {node: '>=10'}
553 |
554 | are-docs-informative@0.0.2:
555 | resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
556 | engines: {node: '>=14'}
557 |
558 | argparse@2.0.1:
559 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
560 |
561 | assertion-error@1.1.0:
562 | resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
563 |
564 | balanced-match@1.0.2:
565 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
566 |
567 | boolbase@1.0.0:
568 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
569 |
570 | boolean@3.0.3:
571 | resolution: {integrity: sha512-EqrTKXQX6Z3A2nRmMEIlAIfjQOgFnVO2nqZGpbcsPnYGWBwpFqzlrozU1dy+S2iqfYDLh26ef4KrgTxu9xQrxA==}
572 | deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
573 |
574 | brace-expansion@1.1.11:
575 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
576 |
577 | brace-expansion@2.0.1:
578 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
579 |
580 | braces@3.0.3:
581 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
582 | engines: {node: '>=8'}
583 |
584 | browserslist@4.24.3:
585 | resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
586 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
587 | hasBin: true
588 |
589 | buffer-crc32@0.2.13:
590 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
591 |
592 | builtin-modules@3.3.0:
593 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
594 | engines: {node: '>=6'}
595 |
596 | bumpp@9.9.3:
597 | resolution: {integrity: sha512-fEX4zIuFuDLCFaQtBFaiNtlUgYbDjd9fUbJqlDfER7Wz+KUOkEXeDs5qScsHX+jKYvTgD5xdOA4ZYYMAo5rC9A==}
598 | engines: {node: '>=10'}
599 | hasBin: true
600 |
601 | c12@2.0.1:
602 | resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
603 | peerDependencies:
604 | magicast: ^0.3.5
605 | peerDependenciesMeta:
606 | magicast:
607 | optional: true
608 |
609 | cac@6.7.14:
610 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
611 | engines: {node: '>=8'}
612 |
613 | cacheable-lookup@5.0.4:
614 | resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
615 | engines: {node: '>=10.6.0'}
616 |
617 | cacheable-request@7.0.4:
618 | resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
619 | engines: {node: '>=8'}
620 |
621 | callsites@3.1.0:
622 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
623 | engines: {node: '>=6'}
624 |
625 | caniuse-lite@1.0.30001690:
626 | resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
627 |
628 | ccount@2.0.1:
629 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
630 |
631 | chai@4.3.10:
632 | resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
633 | engines: {node: '>=4'}
634 |
635 | chalk@2.4.2:
636 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
637 | engines: {node: '>=4'}
638 |
639 | chalk@4.1.1:
640 | resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==}
641 | engines: {node: '>=10'}
642 |
643 | character-entities@2.0.2:
644 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
645 |
646 | check-error@1.0.3:
647 | resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
648 |
649 | chokidar@4.0.3:
650 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
651 | engines: {node: '>= 14.16.0'}
652 |
653 | chownr@2.0.0:
654 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
655 | engines: {node: '>=10'}
656 |
657 | ci-info@4.1.0:
658 | resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
659 | engines: {node: '>=8'}
660 |
661 | citty@0.1.6:
662 | resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
663 |
664 | clean-regexp@1.0.0:
665 | resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
666 | engines: {node: '>=4'}
667 |
668 | cliui@8.0.1:
669 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
670 | engines: {node: '>=12'}
671 |
672 | clone-response@1.0.2:
673 | resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==}
674 |
675 | color-convert@1.9.3:
676 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
677 |
678 | color-convert@2.0.1:
679 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
680 | engines: {node: '>=7.0.0'}
681 |
682 | color-name@1.1.3:
683 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
684 |
685 | color-name@1.1.4:
686 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
687 |
688 | comment-parser@1.4.1:
689 | resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
690 | engines: {node: '>= 12.0.0'}
691 |
692 | concat-map@0.0.1:
693 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
694 |
695 | confbox@0.1.8:
696 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
697 |
698 | consola@3.3.3:
699 | resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==}
700 | engines: {node: ^14.18.0 || >=16.10.0}
701 |
702 | core-js-compat@3.39.0:
703 | resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
704 |
705 | cross-spawn@7.0.6:
706 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
707 | engines: {node: '>= 8'}
708 |
709 | cssesc@3.0.0:
710 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
711 | engines: {node: '>=4'}
712 | hasBin: true
713 |
714 | debug@3.2.7:
715 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
716 | peerDependencies:
717 | supports-color: '*'
718 | peerDependenciesMeta:
719 | supports-color:
720 | optional: true
721 |
722 | debug@4.4.0:
723 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
724 | engines: {node: '>=6.0'}
725 | peerDependencies:
726 | supports-color: '*'
727 | peerDependenciesMeta:
728 | supports-color:
729 | optional: true
730 |
731 | decode-named-character-reference@1.0.2:
732 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
733 |
734 | decompress-response@6.0.0:
735 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
736 | engines: {node: '>=10'}
737 |
738 | deep-eql@4.1.3:
739 | resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
740 | engines: {node: '>=6'}
741 |
742 | deep-is@0.1.3:
743 | resolution: {integrity: sha512-GtxAN4HvBachZzm4OnWqc45ESpUCMwkYcsjnsPs23FwJbsO+k4t0k9bQCgOmzIlpHO28+WPK/KRbRk0DDHuuDw==}
744 |
745 | defer-to-connect@2.0.1:
746 | resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
747 | engines: {node: '>=10'}
748 |
749 | define-data-property@1.1.0:
750 | resolution: {integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==}
751 | engines: {node: '>= 0.4'}
752 |
753 | define-properties@1.2.1:
754 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
755 | engines: {node: '>= 0.4'}
756 |
757 | defu@6.1.4:
758 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
759 |
760 | dequal@2.0.3:
761 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
762 | engines: {node: '>=6'}
763 |
764 | destr@2.0.3:
765 | resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
766 |
767 | detect-node@2.0.5:
768 | resolution: {integrity: sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==}
769 |
770 | devlop@1.1.0:
771 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
772 |
773 | diff-sequences@29.6.3:
774 | resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
775 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
776 |
777 | doctrine@3.0.0:
778 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
779 | engines: {node: '>=6.0.0'}
780 |
781 | dotenv@16.4.7:
782 | resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
783 | engines: {node: '>=12'}
784 |
785 | electron-to-chromium@1.5.76:
786 | resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==}
787 |
788 | electron-window-state@5.0.3:
789 | resolution: {integrity: sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==}
790 | engines: {node: '>=8.0.0'}
791 |
792 | electron@33.3.1:
793 | resolution: {integrity: sha512-Z7l2bVgpdKxHQMI4i0CirBX2n+iCYKOx5mbzNM3BpOyFELwlobEXKmzCmEnwP+3EcNeIhUQyIEBFQxN06QgdIw==}
794 | engines: {node: '>= 12.20.55'}
795 | hasBin: true
796 |
797 | emoji-regex@8.0.0:
798 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
799 |
800 | end-of-stream@1.4.4:
801 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
802 |
803 | enhanced-resolve@5.17.1:
804 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
805 | engines: {node: '>=10.13.0'}
806 |
807 | entities@4.5.0:
808 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
809 | engines: {node: '>=0.12'}
810 |
811 | env-paths@2.2.1:
812 | resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
813 | engines: {node: '>=6'}
814 |
815 | error-ex@1.3.2:
816 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
817 |
818 | es-module-lexer@1.5.4:
819 | resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
820 |
821 | es6-error@4.1.1:
822 | resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==}
823 |
824 | esbuild@0.18.20:
825 | resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
826 | engines: {node: '>=12'}
827 | hasBin: true
828 |
829 | escalade@3.2.0:
830 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
831 | engines: {node: '>=6'}
832 |
833 | escape-string-regexp@1.0.5:
834 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
835 | engines: {node: '>=0.8.0'}
836 |
837 | escape-string-regexp@4.0.0:
838 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
839 | engines: {node: '>=10'}
840 |
841 | escape-string-regexp@5.0.0:
842 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
843 | engines: {node: '>=12'}
844 |
845 | eslint-compat-utils@0.5.1:
846 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
847 | engines: {node: '>=12'}
848 | peerDependencies:
849 | eslint: '>=6.0.0'
850 |
851 | eslint-compat-utils@0.6.4:
852 | resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==}
853 | engines: {node: '>=12'}
854 | peerDependencies:
855 | eslint: '>=6.0.0'
856 |
857 | eslint-config-flat-gitignore@0.3.0:
858 | resolution: {integrity: sha512-0Ndxo4qGhcewjTzw52TK06Mc00aDtHNTdeeW2JfONgDcLkRO/n/BteMRzNVpLQYxdCC/dFEilfM9fjjpGIJ9Og==}
859 | peerDependencies:
860 | eslint: ^9.5.0
861 |
862 | eslint-flat-config-utils@0.4.0:
863 | resolution: {integrity: sha512-kfd5kQZC+BMO0YwTol6zxjKX1zAsk8JfSAopbKjKqmENTJcew+yBejuvccAg37cvOrN0Mh+DVbeyznuNWEjt4A==}
864 |
865 | eslint-import-resolver-node@0.3.9:
866 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
867 |
868 | eslint-json-compat-utils@0.2.1:
869 | resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
870 | engines: {node: '>=12'}
871 | peerDependencies:
872 | '@eslint/json': '*'
873 | eslint: '*'
874 | jsonc-eslint-parser: ^2.4.0
875 | peerDependenciesMeta:
876 | '@eslint/json':
877 | optional: true
878 |
879 | eslint-merge-processors@0.1.0:
880 | resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==}
881 | peerDependencies:
882 | eslint: '*'
883 |
884 | eslint-plugin-antfu@2.7.0:
885 | resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==}
886 | peerDependencies:
887 | eslint: '*'
888 |
889 | eslint-plugin-command@0.2.7:
890 | resolution: {integrity: sha512-UXJ/1R6kdKDcHhiRqxHJ9RZ3juMR1IWQuSrnwt56qCjxt/am+5+YDt6GKs1FJPnppe6/geEYsO3CR9jc63i0xw==}
891 | peerDependencies:
892 | eslint: '*'
893 |
894 | eslint-plugin-es-x@7.8.0:
895 | resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
896 | engines: {node: ^14.18.0 || >=16.0.0}
897 | peerDependencies:
898 | eslint: '>=8'
899 |
900 | eslint-plugin-import-x@4.6.1:
901 | resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
902 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
903 | peerDependencies:
904 | eslint: ^8.57.0 || ^9.0.0
905 |
906 | eslint-plugin-jsdoc@50.6.1:
907 | resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==}
908 | engines: {node: '>=18'}
909 | peerDependencies:
910 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
911 |
912 | eslint-plugin-jsonc@2.18.2:
913 | resolution: {integrity: sha512-SDhJiSsWt3nItl/UuIv+ti4g3m4gpGkmnUJS9UWR3TrpyNsIcnJoBRD7Kof6cM4Rk3L0wrmY5Tm3z7ZPjR2uGg==}
914 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
915 | peerDependencies:
916 | eslint: '>=6.0.0'
917 |
918 | eslint-plugin-n@17.15.1:
919 | resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
920 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
921 | peerDependencies:
922 | eslint: '>=8.23.0'
923 |
924 | eslint-plugin-no-only-tests@3.3.0:
925 | resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
926 | engines: {node: '>=5.0.0'}
927 |
928 | eslint-plugin-perfectionist@4.6.0:
929 | resolution: {integrity: sha512-kOswTebUK0LlYExRwqz7YQtvyTUIRsKfp8XrwBBeHGh2e8MBOS6K+7VvG6HpmNckyKySi1I96uPeAlptMFGcRQ==}
930 | engines: {node: ^18.0.0 || >=20.0.0}
931 | peerDependencies:
932 | eslint: '>=8.0.0'
933 |
934 | eslint-plugin-regexp@2.7.0:
935 | resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
936 | engines: {node: ^18 || >=20}
937 | peerDependencies:
938 | eslint: '>=8.44.0'
939 |
940 | eslint-plugin-toml@0.12.0:
941 | resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==}
942 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
943 | peerDependencies:
944 | eslint: '>=6.0.0'
945 |
946 | eslint-plugin-unicorn@56.0.1:
947 | resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==}
948 | engines: {node: '>=18.18'}
949 | peerDependencies:
950 | eslint: '>=8.56.0'
951 |
952 | eslint-plugin-unused-imports@4.1.4:
953 | resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
954 | peerDependencies:
955 | '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
956 | eslint: ^9.0.0 || ^8.0.0
957 | peerDependenciesMeta:
958 | '@typescript-eslint/eslint-plugin':
959 | optional: true
960 |
961 | eslint-plugin-vue@9.32.0:
962 | resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
963 | engines: {node: ^14.17.0 || >=16.0.0}
964 | peerDependencies:
965 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
966 |
967 | eslint-plugin-yml@1.16.0:
968 | resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==}
969 | engines: {node: ^14.17.0 || >=16.0.0}
970 | peerDependencies:
971 | eslint: '>=6.0.0'
972 |
973 | eslint-processor-vue-blocks@0.1.2:
974 | resolution: {integrity: sha512-PfpJ4uKHnqeL/fXUnzYkOax3aIenlwewXRX8jFinA1a2yCFnLgMuiH3xvCgvHHUlV2xJWQHbCTdiJWGwb3NqpQ==}
975 | peerDependencies:
976 | '@vue/compiler-sfc': ^3.3.0
977 | eslint: ^8.50.0 || ^9.0.0
978 |
979 | eslint-scope@7.2.2:
980 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
981 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
982 |
983 | eslint-scope@8.2.0:
984 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
985 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
986 |
987 | eslint-visitor-keys@3.4.3:
988 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
989 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
990 |
991 | eslint-visitor-keys@4.2.0:
992 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
993 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
994 |
995 | eslint@9.17.0:
996 | resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
997 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
998 | hasBin: true
999 | peerDependencies:
1000 | jiti: '*'
1001 | peerDependenciesMeta:
1002 | jiti:
1003 | optional: true
1004 |
1005 | espree@10.3.0:
1006 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
1007 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1008 |
1009 | espree@9.6.1:
1010 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1011 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1012 |
1013 | esquery@1.6.0:
1014 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
1015 | engines: {node: '>=0.10'}
1016 |
1017 | esrecurse@4.3.0:
1018 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1019 | engines: {node: '>=4.0'}
1020 |
1021 | estraverse@5.3.0:
1022 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1023 | engines: {node: '>=4.0'}
1024 |
1025 | estree-walker@2.0.2:
1026 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
1027 |
1028 | esutils@2.0.3:
1029 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1030 | engines: {node: '>=0.10.0'}
1031 |
1032 | execa@8.0.1:
1033 | resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
1034 | engines: {node: '>=16.17'}
1035 |
1036 | extract-zip@2.0.1:
1037 | resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
1038 | engines: {node: '>= 10.17.0'}
1039 | hasBin: true
1040 |
1041 | fast-deep-equal@3.1.3:
1042 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1043 |
1044 | fast-glob@3.3.3:
1045 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
1046 | engines: {node: '>=8.6.0'}
1047 |
1048 | fast-json-stable-stringify@2.1.0:
1049 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1050 |
1051 | fast-levenshtein@2.0.6:
1052 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1053 |
1054 | fastq@1.11.0:
1055 | resolution: {integrity: sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==}
1056 |
1057 | fd-slicer@1.1.0:
1058 | resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
1059 |
1060 | fdir@6.4.2:
1061 | resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
1062 | peerDependencies:
1063 | picomatch: ^3 || ^4
1064 | peerDependenciesMeta:
1065 | picomatch:
1066 | optional: true
1067 |
1068 | file-entry-cache@8.0.0:
1069 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
1070 | engines: {node: '>=16.0.0'}
1071 |
1072 | fill-range@7.1.1:
1073 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1074 | engines: {node: '>=8'}
1075 |
1076 | find-up-simple@1.0.0:
1077 | resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==}
1078 | engines: {node: '>=18'}
1079 |
1080 | find-up@4.1.0:
1081 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
1082 | engines: {node: '>=8'}
1083 |
1084 | find-up@5.0.0:
1085 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1086 | engines: {node: '>=10'}
1087 |
1088 | flat-cache@4.0.1:
1089 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
1090 | engines: {node: '>=16'}
1091 |
1092 | flatted@3.3.2:
1093 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
1094 |
1095 | fs-extra@8.1.0:
1096 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
1097 | engines: {node: '>=6 <7 || >=8'}
1098 |
1099 | fs-minipass@2.1.0:
1100 | resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
1101 | engines: {node: '>= 8'}
1102 |
1103 | fsevents@2.3.3:
1104 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1105 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1106 | os: [darwin]
1107 |
1108 | function-bind@1.1.1:
1109 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1110 |
1111 | get-caller-file@2.0.5:
1112 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
1113 | engines: {node: 6.* || 8.* || >= 10.*}
1114 |
1115 | get-func-name@2.0.2:
1116 | resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
1117 |
1118 | get-intrinsic@1.2.1:
1119 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
1120 |
1121 | get-stream@5.2.0:
1122 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
1123 | engines: {node: '>=8'}
1124 |
1125 | get-stream@8.0.1:
1126 | resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
1127 | engines: {node: '>=16'}
1128 |
1129 | get-tsconfig@4.8.1:
1130 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
1131 |
1132 | giget@1.2.3:
1133 | resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
1134 | hasBin: true
1135 |
1136 | glob-parent@5.1.2:
1137 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1138 | engines: {node: '>= 6'}
1139 |
1140 | glob-parent@6.0.2:
1141 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1142 | engines: {node: '>=10.13.0'}
1143 |
1144 | global-agent@3.0.0:
1145 | resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==}
1146 | engines: {node: '>=10.0'}
1147 |
1148 | globals@13.24.0:
1149 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1150 | engines: {node: '>=8'}
1151 |
1152 | globals@14.0.0:
1153 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1154 | engines: {node: '>=18'}
1155 |
1156 | globals@15.14.0:
1157 | resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
1158 | engines: {node: '>=18'}
1159 |
1160 | globalthis@1.0.3:
1161 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
1162 | engines: {node: '>= 0.4'}
1163 |
1164 | gopd@1.0.1:
1165 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1166 |
1167 | got@11.8.6:
1168 | resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
1169 | engines: {node: '>=10.19.0'}
1170 |
1171 | graceful-fs@4.2.6:
1172 | resolution: {integrity: sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==}
1173 |
1174 | graphemer@1.4.0:
1175 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1176 |
1177 | has-flag@3.0.0:
1178 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
1179 | engines: {node: '>=4'}
1180 |
1181 | has-flag@4.0.0:
1182 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1183 | engines: {node: '>=8'}
1184 |
1185 | has-property-descriptors@1.0.0:
1186 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
1187 |
1188 | has-proto@1.0.1:
1189 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
1190 | engines: {node: '>= 0.4'}
1191 |
1192 | has-symbols@1.0.3:
1193 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1194 | engines: {node: '>= 0.4'}
1195 |
1196 | has@1.0.3:
1197 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
1198 | engines: {node: '>= 0.4.0'}
1199 |
1200 | hosted-git-info@2.8.9:
1201 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
1202 |
1203 | http-cache-semantics@4.1.0:
1204 | resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
1205 |
1206 | http2-wrapper@1.0.3:
1207 | resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
1208 | engines: {node: '>=10.19.0'}
1209 |
1210 | human-signals@5.0.0:
1211 | resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
1212 | engines: {node: '>=16.17.0'}
1213 |
1214 | ignore@5.3.2:
1215 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1216 | engines: {node: '>= 4'}
1217 |
1218 | import-fresh@3.3.0:
1219 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1220 | engines: {node: '>=6'}
1221 |
1222 | imurmurhash@0.1.4:
1223 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1224 | engines: {node: '>=0.8.19'}
1225 |
1226 | indent-string@4.0.0:
1227 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
1228 | engines: {node: '>=8'}
1229 |
1230 | is-arrayish@0.2.1:
1231 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
1232 |
1233 | is-builtin-module@3.2.1:
1234 | resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
1235 | engines: {node: '>=6'}
1236 |
1237 | is-core-module@2.13.0:
1238 | resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
1239 |
1240 | is-extglob@2.1.1:
1241 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1242 | engines: {node: '>=0.10.0'}
1243 |
1244 | is-fullwidth-code-point@3.0.0:
1245 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1246 | engines: {node: '>=8'}
1247 |
1248 | is-glob@4.0.3:
1249 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1250 | engines: {node: '>=0.10.0'}
1251 |
1252 | is-number@7.0.0:
1253 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1254 | engines: {node: '>=0.12.0'}
1255 |
1256 | is-stream@3.0.0:
1257 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
1258 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1259 |
1260 | isexe@2.0.0:
1261 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1262 |
1263 | jiti@2.4.2:
1264 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
1265 | hasBin: true
1266 |
1267 | js-tokens@4.0.0:
1268 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1269 |
1270 | js-yaml@4.1.0:
1271 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1272 | hasBin: true
1273 |
1274 | jsdoc-type-pratt-parser@4.1.0:
1275 | resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
1276 | engines: {node: '>=12.0.0'}
1277 |
1278 | jsesc@0.5.0:
1279 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
1280 | hasBin: true
1281 |
1282 | jsesc@3.0.2:
1283 | resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
1284 | engines: {node: '>=6'}
1285 | hasBin: true
1286 |
1287 | json-buffer@3.0.1:
1288 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1289 |
1290 | json-parse-even-better-errors@2.3.1:
1291 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
1292 |
1293 | json-schema-traverse@0.4.1:
1294 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1295 |
1296 | json-stable-stringify-without-jsonify@1.0.1:
1297 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1298 |
1299 | json-stringify-safe@5.0.1:
1300 | resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
1301 |
1302 | jsonc-eslint-parser@2.4.0:
1303 | resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
1304 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1305 |
1306 | jsonc-parser@3.3.1:
1307 | resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
1308 |
1309 | jsonfile@4.0.0:
1310 | resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
1311 |
1312 | keyv@4.5.4:
1313 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1314 |
1315 | kleur@3.0.3:
1316 | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
1317 | engines: {node: '>=6'}
1318 |
1319 | levn@0.4.1:
1320 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1321 | engines: {node: '>= 0.8.0'}
1322 |
1323 | lines-and-columns@1.1.6:
1324 | resolution: {integrity: sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ==}
1325 |
1326 | local-pkg@0.4.3:
1327 | resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
1328 | engines: {node: '>=14'}
1329 |
1330 | local-pkg@0.5.1:
1331 | resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
1332 | engines: {node: '>=14'}
1333 |
1334 | locate-path@5.0.0:
1335 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
1336 | engines: {node: '>=8'}
1337 |
1338 | locate-path@6.0.0:
1339 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1340 | engines: {node: '>=10'}
1341 |
1342 | lodash.merge@4.6.2:
1343 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1344 |
1345 | lodash@4.17.21:
1346 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
1347 |
1348 | longest-streak@3.1.0:
1349 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1350 |
1351 | loupe@2.3.6:
1352 | resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
1353 | deprecated: Please upgrade to 2.3.7 which fixes GHSA-4q6p-r6v2-jvc5
1354 |
1355 | lowercase-keys@2.0.0:
1356 | resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
1357 | engines: {node: '>=8'}
1358 |
1359 | magic-string@0.30.17:
1360 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
1361 |
1362 | markdown-table@3.0.4:
1363 | resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
1364 |
1365 | matcher@3.0.0:
1366 | resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
1367 | engines: {node: '>=10'}
1368 |
1369 | mdast-util-find-and-replace@3.0.1:
1370 | resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
1371 |
1372 | mdast-util-from-markdown@2.0.2:
1373 | resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
1374 |
1375 | mdast-util-gfm-autolink-literal@2.0.1:
1376 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
1377 |
1378 | mdast-util-gfm-footnote@2.0.0:
1379 | resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
1380 |
1381 | mdast-util-gfm-strikethrough@2.0.0:
1382 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
1383 |
1384 | mdast-util-gfm-table@2.0.0:
1385 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
1386 |
1387 | mdast-util-gfm-task-list-item@2.0.0:
1388 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
1389 |
1390 | mdast-util-gfm@3.0.0:
1391 | resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
1392 |
1393 | mdast-util-phrasing@4.1.0:
1394 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1395 |
1396 | mdast-util-to-markdown@2.1.2:
1397 | resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
1398 |
1399 | mdast-util-to-string@4.0.0:
1400 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1401 |
1402 | merge-stream@2.0.0:
1403 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
1404 |
1405 | merge2@1.4.1:
1406 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1407 | engines: {node: '>= 8'}
1408 |
1409 | micromark-core-commonmark@2.0.2:
1410 | resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
1411 |
1412 | micromark-extension-gfm-autolink-literal@2.1.0:
1413 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
1414 |
1415 | micromark-extension-gfm-footnote@2.1.0:
1416 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
1417 |
1418 | micromark-extension-gfm-strikethrough@2.1.0:
1419 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
1420 |
1421 | micromark-extension-gfm-table@2.1.0:
1422 | resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
1423 |
1424 | micromark-extension-gfm-tagfilter@2.0.0:
1425 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
1426 |
1427 | micromark-extension-gfm-task-list-item@2.1.0:
1428 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
1429 |
1430 | micromark-extension-gfm@3.0.0:
1431 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
1432 |
1433 | micromark-factory-destination@2.0.1:
1434 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
1435 |
1436 | micromark-factory-label@2.0.1:
1437 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
1438 |
1439 | micromark-factory-space@2.0.1:
1440 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
1441 |
1442 | micromark-factory-title@2.0.1:
1443 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
1444 |
1445 | micromark-factory-whitespace@2.0.1:
1446 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
1447 |
1448 | micromark-util-character@2.1.1:
1449 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1450 |
1451 | micromark-util-chunked@2.0.1:
1452 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
1453 |
1454 | micromark-util-classify-character@2.0.1:
1455 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
1456 |
1457 | micromark-util-combine-extensions@2.0.1:
1458 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
1459 |
1460 | micromark-util-decode-numeric-character-reference@2.0.2:
1461 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
1462 |
1463 | micromark-util-decode-string@2.0.1:
1464 | resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
1465 |
1466 | micromark-util-encode@2.0.1:
1467 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1468 |
1469 | micromark-util-html-tag-name@2.0.1:
1470 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
1471 |
1472 | micromark-util-normalize-identifier@2.0.1:
1473 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
1474 |
1475 | micromark-util-resolve-all@2.0.1:
1476 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
1477 |
1478 | micromark-util-sanitize-uri@2.0.1:
1479 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1480 |
1481 | micromark-util-subtokenize@2.0.3:
1482 | resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
1483 |
1484 | micromark-util-symbol@2.0.1:
1485 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1486 |
1487 | micromark-util-types@2.0.1:
1488 | resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
1489 |
1490 | micromark@4.0.1:
1491 | resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
1492 |
1493 | micromatch@4.0.8:
1494 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1495 | engines: {node: '>=8.6'}
1496 |
1497 | mimic-fn@4.0.0:
1498 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
1499 | engines: {node: '>=12'}
1500 |
1501 | mimic-response@1.0.1:
1502 | resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
1503 | engines: {node: '>=4'}
1504 |
1505 | mimic-response@3.1.0:
1506 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
1507 | engines: {node: '>=10'}
1508 |
1509 | min-indent@1.0.1:
1510 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
1511 | engines: {node: '>=4'}
1512 |
1513 | minimatch@3.1.2:
1514 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1515 |
1516 | minimatch@9.0.5:
1517 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1518 | engines: {node: '>=16 || 14 >=14.17'}
1519 |
1520 | minimist@1.2.5:
1521 | resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==}
1522 |
1523 | minipass@3.3.6:
1524 | resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
1525 | engines: {node: '>=8'}
1526 |
1527 | minipass@5.0.0:
1528 | resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
1529 | engines: {node: '>=8'}
1530 |
1531 | minizlib@2.1.2:
1532 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
1533 | engines: {node: '>= 8'}
1534 |
1535 | mkdirp@0.5.5:
1536 | resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
1537 | hasBin: true
1538 |
1539 | mkdirp@1.0.4:
1540 | resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
1541 | engines: {node: '>=10'}
1542 | hasBin: true
1543 |
1544 | mlly@1.7.3:
1545 | resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
1546 |
1547 | ms@2.1.3:
1548 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1549 |
1550 | nanoid@3.3.8:
1551 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
1552 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1553 | hasBin: true
1554 |
1555 | natural-compare@1.4.0:
1556 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1557 |
1558 | natural-orderby@5.0.0:
1559 | resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
1560 | engines: {node: '>=18'}
1561 |
1562 | node-fetch-native@1.6.4:
1563 | resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
1564 |
1565 | node-releases@2.0.19:
1566 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
1567 |
1568 | normalize-package-data@2.5.0:
1569 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
1570 |
1571 | normalize-url@6.1.0:
1572 | resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
1573 | engines: {node: '>=10'}
1574 |
1575 | npm-run-path@5.3.0:
1576 | resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
1577 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1578 |
1579 | nth-check@2.1.1:
1580 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
1581 |
1582 | nypm@0.3.12:
1583 | resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
1584 | engines: {node: ^14.16.0 || >=16.10.0}
1585 | hasBin: true
1586 |
1587 | object-keys@1.1.1:
1588 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1589 | engines: {node: '>= 0.4'}
1590 |
1591 | ohash@1.1.4:
1592 | resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
1593 |
1594 | once@1.4.0:
1595 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1596 |
1597 | onetime@6.0.0:
1598 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
1599 | engines: {node: '>=12'}
1600 |
1601 | optionator@0.9.3:
1602 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
1603 | engines: {node: '>= 0.8.0'}
1604 |
1605 | p-cancelable@2.1.1:
1606 | resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
1607 | engines: {node: '>=8'}
1608 |
1609 | p-limit@2.3.0:
1610 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
1611 | engines: {node: '>=6'}
1612 |
1613 | p-limit@3.1.0:
1614 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1615 | engines: {node: '>=10'}
1616 |
1617 | p-limit@4.0.0:
1618 | resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
1619 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1620 |
1621 | p-locate@4.1.0:
1622 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
1623 | engines: {node: '>=8'}
1624 |
1625 | p-locate@5.0.0:
1626 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1627 | engines: {node: '>=10'}
1628 |
1629 | p-try@2.2.0:
1630 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
1631 | engines: {node: '>=6'}
1632 |
1633 | package-manager-detector@0.2.8:
1634 | resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
1635 |
1636 | parent-module@1.0.1:
1637 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1638 | engines: {node: '>=6'}
1639 |
1640 | parse-gitignore@2.0.0:
1641 | resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
1642 | engines: {node: '>=14'}
1643 |
1644 | parse-imports@2.2.1:
1645 | resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
1646 | engines: {node: '>= 18'}
1647 |
1648 | parse-json@5.2.0:
1649 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
1650 | engines: {node: '>=8'}
1651 |
1652 | path-exists@4.0.0:
1653 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1654 | engines: {node: '>=8'}
1655 |
1656 | path-key@3.1.1:
1657 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1658 | engines: {node: '>=8'}
1659 |
1660 | path-key@4.0.0:
1661 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
1662 | engines: {node: '>=12'}
1663 |
1664 | path-parse@1.0.7:
1665 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1666 |
1667 | pathe@1.1.2:
1668 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
1669 |
1670 | pathval@1.1.1:
1671 | resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
1672 |
1673 | pend@1.2.0:
1674 | resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
1675 |
1676 | perfect-debounce@1.0.0:
1677 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
1678 |
1679 | picocolors@1.1.1:
1680 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1681 |
1682 | picomatch@2.3.1:
1683 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1684 | engines: {node: '>=8.6'}
1685 |
1686 | picomatch@4.0.2:
1687 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
1688 | engines: {node: '>=12'}
1689 |
1690 | pkg-types@1.3.0:
1691 | resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==}
1692 |
1693 | pluralize@8.0.0:
1694 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
1695 | engines: {node: '>=4'}
1696 |
1697 | postcss-selector-parser@6.1.2:
1698 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1699 | engines: {node: '>=4'}
1700 |
1701 | postcss@8.4.49:
1702 | resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
1703 | engines: {node: ^10 || ^12 || >=14}
1704 |
1705 | prelude-ls@1.2.1:
1706 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1707 | engines: {node: '>= 0.8.0'}
1708 |
1709 | pretty-format@29.7.0:
1710 | resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
1711 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1712 |
1713 | progress@2.0.3:
1714 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
1715 | engines: {node: '>=0.4.0'}
1716 |
1717 | prompts@2.4.2:
1718 | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
1719 | engines: {node: '>= 6'}
1720 |
1721 | pump@3.0.0:
1722 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
1723 |
1724 | punycode@2.1.1:
1725 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
1726 | engines: {node: '>=6'}
1727 |
1728 | queue-microtask@1.2.3:
1729 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1730 |
1731 | quick-lru@5.1.1:
1732 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
1733 | engines: {node: '>=10'}
1734 |
1735 | rc9@2.1.2:
1736 | resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
1737 |
1738 | react-is@18.2.0:
1739 | resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
1740 |
1741 | read-pkg-up@7.0.1:
1742 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
1743 | engines: {node: '>=8'}
1744 |
1745 | read-pkg@5.2.0:
1746 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
1747 | engines: {node: '>=8'}
1748 |
1749 | readdirp@4.0.2:
1750 | resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
1751 | engines: {node: '>= 14.16.0'}
1752 |
1753 | refa@0.12.1:
1754 | resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
1755 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
1756 |
1757 | regexp-ast-analysis@0.7.1:
1758 | resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
1759 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
1760 |
1761 | regexp-tree@0.1.27:
1762 | resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
1763 | hasBin: true
1764 |
1765 | regjsparser@0.10.0:
1766 | resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
1767 | hasBin: true
1768 |
1769 | require-directory@2.1.1:
1770 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
1771 | engines: {node: '>=0.10.0'}
1772 |
1773 | resolve-alpn@1.2.1:
1774 | resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
1775 |
1776 | resolve-from@4.0.0:
1777 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1778 | engines: {node: '>=4'}
1779 |
1780 | resolve-pkg-maps@1.0.0:
1781 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1782 |
1783 | resolve@1.22.6:
1784 | resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==}
1785 | hasBin: true
1786 |
1787 | responselike@2.0.1:
1788 | resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
1789 |
1790 | reusify@1.0.4:
1791 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1792 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1793 |
1794 | roarr@2.15.4:
1795 | resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==}
1796 | engines: {node: '>=8.0'}
1797 |
1798 | rollup@3.29.4:
1799 | resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
1800 | engines: {node: '>=14.18.0', npm: '>=8.0.0'}
1801 | hasBin: true
1802 |
1803 | run-parallel@1.2.0:
1804 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1805 |
1806 | scslre@0.3.0:
1807 | resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
1808 | engines: {node: ^14.0.0 || >=16.0.0}
1809 |
1810 | semver-compare@1.0.0:
1811 | resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
1812 |
1813 | semver@5.7.1:
1814 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
1815 | hasBin: true
1816 |
1817 | semver@6.3.0:
1818 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
1819 | hasBin: true
1820 |
1821 | semver@7.6.3:
1822 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
1823 | engines: {node: '>=10'}
1824 | hasBin: true
1825 |
1826 | serialize-error@7.0.1:
1827 | resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==}
1828 | engines: {node: '>=10'}
1829 |
1830 | shebang-command@2.0.0:
1831 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1832 | engines: {node: '>=8'}
1833 |
1834 | shebang-regex@3.0.0:
1835 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1836 | engines: {node: '>=8'}
1837 |
1838 | siginfo@2.0.0:
1839 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
1840 |
1841 | signal-exit@4.1.0:
1842 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1843 | engines: {node: '>=14'}
1844 |
1845 | sisteransi@1.0.5:
1846 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
1847 |
1848 | slashes@3.0.12:
1849 | resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
1850 |
1851 | source-map-js@1.2.1:
1852 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1853 | engines: {node: '>=0.10.0'}
1854 |
1855 | spdx-correct@3.1.1:
1856 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
1857 |
1858 | spdx-exceptions@2.3.0:
1859 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
1860 |
1861 | spdx-expression-parse@3.0.1:
1862 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
1863 |
1864 | spdx-expression-parse@4.0.0:
1865 | resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
1866 |
1867 | spdx-license-ids@3.0.7:
1868 | resolution: {integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==}
1869 |
1870 | sprintf-js@1.1.2:
1871 | resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==}
1872 |
1873 | stable-hash@0.0.4:
1874 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
1875 |
1876 | stackback@0.0.2:
1877 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
1878 |
1879 | std-env@3.4.3:
1880 | resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
1881 |
1882 | string-width@4.2.3:
1883 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1884 | engines: {node: '>=8'}
1885 |
1886 | strip-ansi@6.0.1:
1887 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1888 | engines: {node: '>=8'}
1889 |
1890 | strip-final-newline@3.0.0:
1891 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
1892 | engines: {node: '>=12'}
1893 |
1894 | strip-indent@3.0.0:
1895 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
1896 | engines: {node: '>=8'}
1897 |
1898 | strip-json-comments@3.1.1:
1899 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1900 | engines: {node: '>=8'}
1901 |
1902 | strip-literal@1.3.0:
1903 | resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
1904 |
1905 | sumchecker@3.0.1:
1906 | resolution: {integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==}
1907 | engines: {node: '>= 8.0'}
1908 |
1909 | supports-color@5.5.0:
1910 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
1911 | engines: {node: '>=4'}
1912 |
1913 | supports-color@7.2.0:
1914 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1915 | engines: {node: '>=8'}
1916 |
1917 | supports-preserve-symlinks-flag@1.0.0:
1918 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1919 | engines: {node: '>= 0.4'}
1920 |
1921 | synckit@0.6.2:
1922 | resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
1923 | engines: {node: '>=12.20'}
1924 |
1925 | synckit@0.9.2:
1926 | resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
1927 | engines: {node: ^14.18.0 || >=16.0.0}
1928 |
1929 | tapable@2.2.1:
1930 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
1931 | engines: {node: '>=6'}
1932 |
1933 | tar@6.2.0:
1934 | resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
1935 | engines: {node: '>=10'}
1936 |
1937 | tinybench@2.5.1:
1938 | resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==}
1939 |
1940 | tinyexec@0.3.2:
1941 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1942 |
1943 | tinyglobby@0.2.10:
1944 | resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
1945 | engines: {node: '>=12.0.0'}
1946 |
1947 | tinypool@0.7.0:
1948 | resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
1949 | engines: {node: '>=14.0.0'}
1950 |
1951 | tinyspy@2.2.0:
1952 | resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==}
1953 | engines: {node: '>=14.0.0'}
1954 |
1955 | to-regex-range@5.0.1:
1956 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1957 | engines: {node: '>=8.0'}
1958 |
1959 | toml-eslint-parser@0.10.0:
1960 | resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==}
1961 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1962 |
1963 | ts-api-utils@2.0.0:
1964 | resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==}
1965 | engines: {node: '>=18.12'}
1966 | peerDependencies:
1967 | typescript: '>=4.8.4'
1968 |
1969 | tslib@2.8.1:
1970 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1971 |
1972 | type-check@0.4.0:
1973 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1974 | engines: {node: '>= 0.8.0'}
1975 |
1976 | type-detect@4.0.8:
1977 | resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
1978 | engines: {node: '>=4'}
1979 |
1980 | type-fest@0.13.1:
1981 | resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
1982 | engines: {node: '>=10'}
1983 |
1984 | type-fest@0.20.2:
1985 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1986 | engines: {node: '>=10'}
1987 |
1988 | type-fest@0.6.0:
1989 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
1990 | engines: {node: '>=8'}
1991 |
1992 | type-fest@0.8.1:
1993 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
1994 | engines: {node: '>=8'}
1995 |
1996 | typescript@5.7.2:
1997 | resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
1998 | engines: {node: '>=14.17'}
1999 | hasBin: true
2000 |
2001 | ufo@1.5.4:
2002 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
2003 |
2004 | undici-types@6.19.8:
2005 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
2006 |
2007 | unist-util-is@6.0.0:
2008 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
2009 |
2010 | unist-util-stringify-position@4.0.0:
2011 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
2012 |
2013 | unist-util-visit-parents@6.0.1:
2014 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
2015 |
2016 | unist-util-visit@5.0.0:
2017 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
2018 |
2019 | universalify@0.1.2:
2020 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
2021 | engines: {node: '>= 4.0.0'}
2022 |
2023 | update-browserslist-db@1.1.1:
2024 | resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
2025 | hasBin: true
2026 | peerDependencies:
2027 | browserslist: '>= 4.21.0'
2028 |
2029 | uri-js@4.4.1:
2030 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2031 |
2032 | util-deprecate@1.0.2:
2033 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2034 |
2035 | validate-npm-package-license@3.0.4:
2036 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
2037 |
2038 | vite-node@0.34.6:
2039 | resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
2040 | engines: {node: '>=v14.18.0'}
2041 | hasBin: true
2042 |
2043 | vite@4.4.11:
2044 | resolution: {integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==}
2045 | engines: {node: ^14.18.0 || >=16.0.0}
2046 | hasBin: true
2047 | peerDependencies:
2048 | '@types/node': '>= 14'
2049 | less: '*'
2050 | lightningcss: ^1.21.0
2051 | sass: '*'
2052 | stylus: '*'
2053 | sugarss: '*'
2054 | terser: ^5.4.0
2055 | peerDependenciesMeta:
2056 | '@types/node':
2057 | optional: true
2058 | less:
2059 | optional: true
2060 | lightningcss:
2061 | optional: true
2062 | sass:
2063 | optional: true
2064 | stylus:
2065 | optional: true
2066 | sugarss:
2067 | optional: true
2068 | terser:
2069 | optional: true
2070 |
2071 | vitest@0.34.6:
2072 | resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
2073 | engines: {node: '>=v14.18.0'}
2074 | hasBin: true
2075 | peerDependencies:
2076 | '@edge-runtime/vm': '*'
2077 | '@vitest/browser': '*'
2078 | '@vitest/ui': '*'
2079 | happy-dom: '*'
2080 | jsdom: '*'
2081 | playwright: '*'
2082 | safaridriver: '*'
2083 | webdriverio: '*'
2084 | peerDependenciesMeta:
2085 | '@edge-runtime/vm':
2086 | optional: true
2087 | '@vitest/browser':
2088 | optional: true
2089 | '@vitest/ui':
2090 | optional: true
2091 | happy-dom:
2092 | optional: true
2093 | jsdom:
2094 | optional: true
2095 | playwright:
2096 | optional: true
2097 | safaridriver:
2098 | optional: true
2099 | webdriverio:
2100 | optional: true
2101 |
2102 | vue-eslint-parser@9.4.3:
2103 | resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
2104 | engines: {node: ^14.17.0 || >=16.0.0}
2105 | peerDependencies:
2106 | eslint: '>=6.0.0'
2107 |
2108 | which@2.0.2:
2109 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2110 | engines: {node: '>= 8'}
2111 | hasBin: true
2112 |
2113 | why-is-node-running@2.2.2:
2114 | resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
2115 | engines: {node: '>=8'}
2116 | hasBin: true
2117 |
2118 | wrap-ansi@7.0.0:
2119 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2120 | engines: {node: '>=10'}
2121 |
2122 | wrappy@1.0.2:
2123 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2124 |
2125 | xml-name-validator@4.0.0:
2126 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
2127 | engines: {node: '>=12'}
2128 |
2129 | y18n@5.0.8:
2130 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
2131 | engines: {node: '>=10'}
2132 |
2133 | yallist@4.0.0:
2134 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2135 |
2136 | yaml-eslint-parser@1.2.3:
2137 | resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
2138 | engines: {node: ^14.17.0 || >=16.0.0}
2139 |
2140 | yaml@2.1.1:
2141 | resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==}
2142 | engines: {node: '>= 14'}
2143 |
2144 | yargs-parser@21.1.1:
2145 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
2146 | engines: {node: '>=12'}
2147 |
2148 | yargs@17.7.2:
2149 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
2150 | engines: {node: '>=12'}
2151 |
2152 | yauzl@2.10.0:
2153 | resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
2154 |
2155 | yocto-queue@0.1.0:
2156 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2157 | engines: {node: '>=10'}
2158 |
2159 | yocto-queue@1.0.0:
2160 | resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
2161 | engines: {node: '>=12.20'}
2162 |
2163 | zwitch@2.0.4:
2164 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2165 |
2166 | snapshots:
2167 |
2168 | '@aashutoshrathi/word-wrap@1.2.6': {}
2169 |
2170 | '@antfu/eslint-config@3.12.2(@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)(vitest@0.34.6)':
2171 | dependencies:
2172 | '@antfu/install-pkg': 0.5.0
2173 | '@clack/prompts': 0.9.0
2174 | '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.17.0(jiti@2.4.2))
2175 | '@eslint/markdown': 6.2.1
2176 | '@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2177 | '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2178 | '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2179 | '@vitest/eslint-plugin': 1.1.24(@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)(vitest@0.34.6)
2180 | eslint: 9.17.0(jiti@2.4.2)
2181 | eslint-config-flat-gitignore: 0.3.0(eslint@9.17.0(jiti@2.4.2))
2182 | eslint-flat-config-utils: 0.4.0
2183 | eslint-merge-processors: 0.1.0(eslint@9.17.0(jiti@2.4.2))
2184 | eslint-plugin-antfu: 2.7.0(eslint@9.17.0(jiti@2.4.2))
2185 | eslint-plugin-command: 0.2.7(eslint@9.17.0(jiti@2.4.2))
2186 | eslint-plugin-import-x: 4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2187 | eslint-plugin-jsdoc: 50.6.1(eslint@9.17.0(jiti@2.4.2))
2188 | eslint-plugin-jsonc: 2.18.2(eslint@9.17.0(jiti@2.4.2))
2189 | eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2))
2190 | eslint-plugin-no-only-tests: 3.3.0
2191 | eslint-plugin-perfectionist: 4.6.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2192 | eslint-plugin-regexp: 2.7.0(eslint@9.17.0(jiti@2.4.2))
2193 | eslint-plugin-toml: 0.12.0(eslint@9.17.0(jiti@2.4.2))
2194 | eslint-plugin-unicorn: 56.0.1(eslint@9.17.0(jiti@2.4.2))
2195 | eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))
2196 | eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.4.2))
2197 | eslint-plugin-yml: 1.16.0(eslint@9.17.0(jiti@2.4.2))
2198 | eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))
2199 | globals: 15.14.0
2200 | jsonc-eslint-parser: 2.4.0
2201 | local-pkg: 0.5.1
2202 | parse-gitignore: 2.0.0
2203 | picocolors: 1.1.1
2204 | toml-eslint-parser: 0.10.0
2205 | vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
2206 | yaml-eslint-parser: 1.2.3
2207 | yargs: 17.7.2
2208 | transitivePeerDependencies:
2209 | - '@eslint/json'
2210 | - '@typescript-eslint/utils'
2211 | - '@vue/compiler-sfc'
2212 | - supports-color
2213 | - typescript
2214 | - vitest
2215 |
2216 | '@antfu/install-pkg@0.5.0':
2217 | dependencies:
2218 | package-manager-detector: 0.2.8
2219 | tinyexec: 0.3.2
2220 |
2221 | '@antfu/utils@0.7.10': {}
2222 |
2223 | '@babel/code-frame@7.12.13':
2224 | dependencies:
2225 | '@babel/highlight': 7.14.0
2226 |
2227 | '@babel/helper-string-parser@7.25.9': {}
2228 |
2229 | '@babel/helper-validator-identifier@7.25.9': {}
2230 |
2231 | '@babel/highlight@7.14.0':
2232 | dependencies:
2233 | '@babel/helper-validator-identifier': 7.25.9
2234 | chalk: 2.4.2
2235 | js-tokens: 4.0.0
2236 |
2237 | '@babel/parser@7.26.3':
2238 | dependencies:
2239 | '@babel/types': 7.26.3
2240 |
2241 | '@babel/types@7.26.3':
2242 | dependencies:
2243 | '@babel/helper-string-parser': 7.25.9
2244 | '@babel/helper-validator-identifier': 7.25.9
2245 |
2246 | '@clack/core@0.4.0':
2247 | dependencies:
2248 | picocolors: 1.1.1
2249 | sisteransi: 1.0.5
2250 |
2251 | '@clack/prompts@0.9.0':
2252 | dependencies:
2253 | '@clack/core': 0.4.0
2254 | picocolors: 1.1.1
2255 | sisteransi: 1.0.5
2256 |
2257 | '@electron/get@2.0.3':
2258 | dependencies:
2259 | debug: 4.4.0
2260 | env-paths: 2.2.1
2261 | fs-extra: 8.1.0
2262 | got: 11.8.6
2263 | progress: 2.0.3
2264 | semver: 6.3.0
2265 | sumchecker: 3.0.1
2266 | optionalDependencies:
2267 | global-agent: 3.0.0
2268 | transitivePeerDependencies:
2269 | - supports-color
2270 |
2271 | '@es-joy/jsdoccomment@0.49.0':
2272 | dependencies:
2273 | comment-parser: 1.4.1
2274 | esquery: 1.6.0
2275 | jsdoc-type-pratt-parser: 4.1.0
2276 |
2277 | '@esbuild/android-arm64@0.18.20':
2278 | optional: true
2279 |
2280 | '@esbuild/android-arm@0.18.20':
2281 | optional: true
2282 |
2283 | '@esbuild/android-x64@0.18.20':
2284 | optional: true
2285 |
2286 | '@esbuild/darwin-arm64@0.18.20':
2287 | optional: true
2288 |
2289 | '@esbuild/darwin-x64@0.18.20':
2290 | optional: true
2291 |
2292 | '@esbuild/freebsd-arm64@0.18.20':
2293 | optional: true
2294 |
2295 | '@esbuild/freebsd-x64@0.18.20':
2296 | optional: true
2297 |
2298 | '@esbuild/linux-arm64@0.18.20':
2299 | optional: true
2300 |
2301 | '@esbuild/linux-arm@0.18.20':
2302 | optional: true
2303 |
2304 | '@esbuild/linux-ia32@0.18.20':
2305 | optional: true
2306 |
2307 | '@esbuild/linux-loong64@0.18.20':
2308 | optional: true
2309 |
2310 | '@esbuild/linux-mips64el@0.18.20':
2311 | optional: true
2312 |
2313 | '@esbuild/linux-ppc64@0.18.20':
2314 | optional: true
2315 |
2316 | '@esbuild/linux-riscv64@0.18.20':
2317 | optional: true
2318 |
2319 | '@esbuild/linux-s390x@0.18.20':
2320 | optional: true
2321 |
2322 | '@esbuild/linux-x64@0.18.20':
2323 | optional: true
2324 |
2325 | '@esbuild/netbsd-x64@0.18.20':
2326 | optional: true
2327 |
2328 | '@esbuild/openbsd-x64@0.18.20':
2329 | optional: true
2330 |
2331 | '@esbuild/sunos-x64@0.18.20':
2332 | optional: true
2333 |
2334 | '@esbuild/win32-arm64@0.18.20':
2335 | optional: true
2336 |
2337 | '@esbuild/win32-ia32@0.18.20':
2338 | optional: true
2339 |
2340 | '@esbuild/win32-x64@0.18.20':
2341 | optional: true
2342 |
2343 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.17.0(jiti@2.4.2))':
2344 | dependencies:
2345 | escape-string-regexp: 4.0.0
2346 | eslint: 9.17.0(jiti@2.4.2)
2347 | ignore: 5.3.2
2348 |
2349 | '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
2350 | dependencies:
2351 | eslint: 9.17.0(jiti@2.4.2)
2352 | eslint-visitor-keys: 3.4.3
2353 |
2354 | '@eslint-community/regexpp@4.12.1': {}
2355 |
2356 | '@eslint/compat@1.2.4(eslint@9.17.0(jiti@2.4.2))':
2357 | optionalDependencies:
2358 | eslint: 9.17.0(jiti@2.4.2)
2359 |
2360 | '@eslint/config-array@0.19.1':
2361 | dependencies:
2362 | '@eslint/object-schema': 2.1.5
2363 | debug: 4.4.0
2364 | minimatch: 3.1.2
2365 | transitivePeerDependencies:
2366 | - supports-color
2367 |
2368 | '@eslint/core@0.9.1':
2369 | dependencies:
2370 | '@types/json-schema': 7.0.15
2371 |
2372 | '@eslint/eslintrc@3.2.0':
2373 | dependencies:
2374 | ajv: 6.12.6
2375 | debug: 4.4.0
2376 | espree: 10.3.0
2377 | globals: 14.0.0
2378 | ignore: 5.3.2
2379 | import-fresh: 3.3.0
2380 | js-yaml: 4.1.0
2381 | minimatch: 3.1.2
2382 | strip-json-comments: 3.1.1
2383 | transitivePeerDependencies:
2384 | - supports-color
2385 |
2386 | '@eslint/js@9.17.0': {}
2387 |
2388 | '@eslint/markdown@6.2.1':
2389 | dependencies:
2390 | '@eslint/plugin-kit': 0.2.4
2391 | mdast-util-from-markdown: 2.0.2
2392 | mdast-util-gfm: 3.0.0
2393 | micromark-extension-gfm: 3.0.0
2394 | transitivePeerDependencies:
2395 | - supports-color
2396 |
2397 | '@eslint/object-schema@2.1.5': {}
2398 |
2399 | '@eslint/plugin-kit@0.2.4':
2400 | dependencies:
2401 | levn: 0.4.1
2402 |
2403 | '@humanfs/core@0.19.1': {}
2404 |
2405 | '@humanfs/node@0.16.6':
2406 | dependencies:
2407 | '@humanfs/core': 0.19.1
2408 | '@humanwhocodes/retry': 0.3.1
2409 |
2410 | '@humanwhocodes/module-importer@1.0.1': {}
2411 |
2412 | '@humanwhocodes/retry@0.3.1': {}
2413 |
2414 | '@humanwhocodes/retry@0.4.1': {}
2415 |
2416 | '@jest/schemas@29.6.3':
2417 | dependencies:
2418 | '@sinclair/typebox': 0.27.8
2419 | optional: true
2420 |
2421 | '@jridgewell/sourcemap-codec@1.5.0': {}
2422 |
2423 | '@nodelib/fs.scandir@2.1.5':
2424 | dependencies:
2425 | '@nodelib/fs.stat': 2.0.5
2426 | run-parallel: 1.2.0
2427 |
2428 | '@nodelib/fs.stat@2.0.5': {}
2429 |
2430 | '@nodelib/fs.walk@1.2.8':
2431 | dependencies:
2432 | '@nodelib/fs.scandir': 2.1.5
2433 | fastq: 1.11.0
2434 |
2435 | '@pkgr/core@0.1.1': {}
2436 |
2437 | '@sinclair/typebox@0.27.8':
2438 | optional: true
2439 |
2440 | '@sindresorhus/is@4.6.0': {}
2441 |
2442 | '@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
2443 | dependencies:
2444 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2445 | eslint: 9.17.0(jiti@2.4.2)
2446 | eslint-visitor-keys: 4.2.0
2447 | espree: 10.3.0
2448 | estraverse: 5.3.0
2449 | picomatch: 4.0.2
2450 | transitivePeerDependencies:
2451 | - supports-color
2452 | - typescript
2453 |
2454 | '@szmarczak/http-timer@4.0.6':
2455 | dependencies:
2456 | defer-to-connect: 2.0.1
2457 |
2458 | '@types/cacheable-request@6.0.3':
2459 | dependencies:
2460 | '@types/http-cache-semantics': 4.0.2
2461 | '@types/keyv': 3.1.4
2462 | '@types/node': 20.17.12
2463 | '@types/responselike': 1.0.0
2464 |
2465 | '@types/chai-subset@1.3.3':
2466 | dependencies:
2467 | '@types/chai': 4.3.6
2468 | optional: true
2469 |
2470 | '@types/chai@4.3.6':
2471 | optional: true
2472 |
2473 | '@types/debug@4.1.12':
2474 | dependencies:
2475 | '@types/ms': 0.7.34
2476 |
2477 | '@types/doctrine@0.0.9': {}
2478 |
2479 | '@types/estree@1.0.6': {}
2480 |
2481 | '@types/http-cache-semantics@4.0.2': {}
2482 |
2483 | '@types/json-schema@7.0.15': {}
2484 |
2485 | '@types/keyv@3.1.4':
2486 | dependencies:
2487 | '@types/node': 20.17.12
2488 |
2489 | '@types/mdast@4.0.4':
2490 | dependencies:
2491 | '@types/unist': 3.0.3
2492 |
2493 | '@types/ms@0.7.34': {}
2494 |
2495 | '@types/node@20.17.12':
2496 | dependencies:
2497 | undici-types: 6.19.8
2498 |
2499 | '@types/normalize-package-data@2.4.0': {}
2500 |
2501 | '@types/responselike@1.0.0':
2502 | dependencies:
2503 | '@types/node': 20.17.12
2504 |
2505 | '@types/unist@3.0.3': {}
2506 |
2507 | '@types/yargs-parser@20.2.0': {}
2508 |
2509 | '@types/yargs@17.0.33':
2510 | dependencies:
2511 | '@types/yargs-parser': 20.2.0
2512 |
2513 | '@types/yauzl@2.10.1':
2514 | dependencies:
2515 | '@types/node': 20.17.12
2516 | optional: true
2517 |
2518 | '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
2519 | dependencies:
2520 | '@eslint-community/regexpp': 4.12.1
2521 | '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2522 | '@typescript-eslint/scope-manager': 8.19.1
2523 | '@typescript-eslint/type-utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2524 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2525 | '@typescript-eslint/visitor-keys': 8.19.1
2526 | eslint: 9.17.0(jiti@2.4.2)
2527 | graphemer: 1.4.0
2528 | ignore: 5.3.2
2529 | natural-compare: 1.4.0
2530 | ts-api-utils: 2.0.0(typescript@5.7.2)
2531 | typescript: 5.7.2
2532 | transitivePeerDependencies:
2533 | - supports-color
2534 |
2535 | '@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
2536 | dependencies:
2537 | '@typescript-eslint/scope-manager': 8.19.1
2538 | '@typescript-eslint/types': 8.19.1
2539 | '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2)
2540 | '@typescript-eslint/visitor-keys': 8.19.1
2541 | debug: 4.4.0
2542 | eslint: 9.17.0(jiti@2.4.2)
2543 | typescript: 5.7.2
2544 | transitivePeerDependencies:
2545 | - supports-color
2546 |
2547 | '@typescript-eslint/scope-manager@8.19.1':
2548 | dependencies:
2549 | '@typescript-eslint/types': 8.19.1
2550 | '@typescript-eslint/visitor-keys': 8.19.1
2551 |
2552 | '@typescript-eslint/type-utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
2553 | dependencies:
2554 | '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2)
2555 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2556 | debug: 4.4.0
2557 | eslint: 9.17.0(jiti@2.4.2)
2558 | ts-api-utils: 2.0.0(typescript@5.7.2)
2559 | typescript: 5.7.2
2560 | transitivePeerDependencies:
2561 | - supports-color
2562 |
2563 | '@typescript-eslint/types@8.19.1': {}
2564 |
2565 | '@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.2)':
2566 | dependencies:
2567 | '@typescript-eslint/types': 8.19.1
2568 | '@typescript-eslint/visitor-keys': 8.19.1
2569 | debug: 4.4.0
2570 | fast-glob: 3.3.3
2571 | is-glob: 4.0.3
2572 | minimatch: 9.0.5
2573 | semver: 7.6.3
2574 | ts-api-utils: 2.0.0(typescript@5.7.2)
2575 | typescript: 5.7.2
2576 | transitivePeerDependencies:
2577 | - supports-color
2578 |
2579 | '@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
2580 | dependencies:
2581 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
2582 | '@typescript-eslint/scope-manager': 8.19.1
2583 | '@typescript-eslint/types': 8.19.1
2584 | '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2)
2585 | eslint: 9.17.0(jiti@2.4.2)
2586 | typescript: 5.7.2
2587 | transitivePeerDependencies:
2588 | - supports-color
2589 |
2590 | '@typescript-eslint/visitor-keys@8.19.1':
2591 | dependencies:
2592 | '@typescript-eslint/types': 8.19.1
2593 | eslint-visitor-keys: 4.2.0
2594 |
2595 | '@vitest/eslint-plugin@1.1.24(@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)(vitest@0.34.6)':
2596 | dependencies:
2597 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
2598 | eslint: 9.17.0(jiti@2.4.2)
2599 | optionalDependencies:
2600 | typescript: 5.7.2
2601 | vitest: 0.34.6
2602 |
2603 | '@vitest/expect@0.34.6':
2604 | dependencies:
2605 | '@vitest/spy': 0.34.6
2606 | '@vitest/utils': 0.34.6
2607 | chai: 4.3.10
2608 | optional: true
2609 |
2610 | '@vitest/runner@0.34.6':
2611 | dependencies:
2612 | '@vitest/utils': 0.34.6
2613 | p-limit: 4.0.0
2614 | pathe: 1.1.2
2615 | optional: true
2616 |
2617 | '@vitest/snapshot@0.34.6':
2618 | dependencies:
2619 | magic-string: 0.30.17
2620 | pathe: 1.1.2
2621 | pretty-format: 29.7.0
2622 | optional: true
2623 |
2624 | '@vitest/spy@0.34.6':
2625 | dependencies:
2626 | tinyspy: 2.2.0
2627 | optional: true
2628 |
2629 | '@vitest/utils@0.34.6':
2630 | dependencies:
2631 | diff-sequences: 29.6.3
2632 | loupe: 2.3.6
2633 | pretty-format: 29.7.0
2634 | optional: true
2635 |
2636 | '@vue/compiler-core@3.5.13':
2637 | dependencies:
2638 | '@babel/parser': 7.26.3
2639 | '@vue/shared': 3.5.13
2640 | entities: 4.5.0
2641 | estree-walker: 2.0.2
2642 | source-map-js: 1.2.1
2643 |
2644 | '@vue/compiler-dom@3.5.13':
2645 | dependencies:
2646 | '@vue/compiler-core': 3.5.13
2647 | '@vue/shared': 3.5.13
2648 |
2649 | '@vue/compiler-sfc@3.5.13':
2650 | dependencies:
2651 | '@babel/parser': 7.26.3
2652 | '@vue/compiler-core': 3.5.13
2653 | '@vue/compiler-dom': 3.5.13
2654 | '@vue/compiler-ssr': 3.5.13
2655 | '@vue/shared': 3.5.13
2656 | estree-walker: 2.0.2
2657 | magic-string: 0.30.17
2658 | postcss: 8.4.49
2659 | source-map-js: 1.2.1
2660 |
2661 | '@vue/compiler-ssr@3.5.13':
2662 | dependencies:
2663 | '@vue/compiler-dom': 3.5.13
2664 | '@vue/shared': 3.5.13
2665 |
2666 | '@vue/shared@3.5.13': {}
2667 |
2668 | acorn-jsx@5.3.2(acorn@8.14.0):
2669 | dependencies:
2670 | acorn: 8.14.0
2671 |
2672 | acorn-walk@8.2.0:
2673 | optional: true
2674 |
2675 | acorn@8.14.0: {}
2676 |
2677 | ajv@6.12.6:
2678 | dependencies:
2679 | fast-deep-equal: 3.1.3
2680 | fast-json-stable-stringify: 2.1.0
2681 | json-schema-traverse: 0.4.1
2682 | uri-js: 4.4.1
2683 |
2684 | ansi-regex@5.0.1: {}
2685 |
2686 | ansi-styles@3.2.1:
2687 | dependencies:
2688 | color-convert: 1.9.3
2689 |
2690 | ansi-styles@4.3.0:
2691 | dependencies:
2692 | color-convert: 2.0.1
2693 |
2694 | ansi-styles@5.2.0:
2695 | optional: true
2696 |
2697 | are-docs-informative@0.0.2: {}
2698 |
2699 | argparse@2.0.1: {}
2700 |
2701 | assertion-error@1.1.0:
2702 | optional: true
2703 |
2704 | balanced-match@1.0.2: {}
2705 |
2706 | boolbase@1.0.0: {}
2707 |
2708 | boolean@3.0.3:
2709 | optional: true
2710 |
2711 | brace-expansion@1.1.11:
2712 | dependencies:
2713 | balanced-match: 1.0.2
2714 | concat-map: 0.0.1
2715 |
2716 | brace-expansion@2.0.1:
2717 | dependencies:
2718 | balanced-match: 1.0.2
2719 |
2720 | braces@3.0.3:
2721 | dependencies:
2722 | fill-range: 7.1.1
2723 |
2724 | browserslist@4.24.3:
2725 | dependencies:
2726 | caniuse-lite: 1.0.30001690
2727 | electron-to-chromium: 1.5.76
2728 | node-releases: 2.0.19
2729 | update-browserslist-db: 1.1.1(browserslist@4.24.3)
2730 |
2731 | buffer-crc32@0.2.13: {}
2732 |
2733 | builtin-modules@3.3.0: {}
2734 |
2735 | bumpp@9.9.3:
2736 | dependencies:
2737 | c12: 2.0.1
2738 | cac: 6.7.14
2739 | escalade: 3.2.0
2740 | js-yaml: 4.1.0
2741 | jsonc-parser: 3.3.1
2742 | prompts: 2.4.2
2743 | semver: 7.6.3
2744 | tinyexec: 0.3.2
2745 | tinyglobby: 0.2.10
2746 | transitivePeerDependencies:
2747 | - magicast
2748 |
2749 | c12@2.0.1:
2750 | dependencies:
2751 | chokidar: 4.0.3
2752 | confbox: 0.1.8
2753 | defu: 6.1.4
2754 | dotenv: 16.4.7
2755 | giget: 1.2.3
2756 | jiti: 2.4.2
2757 | mlly: 1.7.3
2758 | ohash: 1.1.4
2759 | pathe: 1.1.2
2760 | perfect-debounce: 1.0.0
2761 | pkg-types: 1.3.0
2762 | rc9: 2.1.2
2763 |
2764 | cac@6.7.14: {}
2765 |
2766 | cacheable-lookup@5.0.4: {}
2767 |
2768 | cacheable-request@7.0.4:
2769 | dependencies:
2770 | clone-response: 1.0.2
2771 | get-stream: 5.2.0
2772 | http-cache-semantics: 4.1.0
2773 | keyv: 4.5.4
2774 | lowercase-keys: 2.0.0
2775 | normalize-url: 6.1.0
2776 | responselike: 2.0.1
2777 |
2778 | callsites@3.1.0: {}
2779 |
2780 | caniuse-lite@1.0.30001690: {}
2781 |
2782 | ccount@2.0.1: {}
2783 |
2784 | chai@4.3.10:
2785 | dependencies:
2786 | assertion-error: 1.1.0
2787 | check-error: 1.0.3
2788 | deep-eql: 4.1.3
2789 | get-func-name: 2.0.2
2790 | loupe: 2.3.6
2791 | pathval: 1.1.1
2792 | type-detect: 4.0.8
2793 | optional: true
2794 |
2795 | chalk@2.4.2:
2796 | dependencies:
2797 | ansi-styles: 3.2.1
2798 | escape-string-regexp: 1.0.5
2799 | supports-color: 5.5.0
2800 |
2801 | chalk@4.1.1:
2802 | dependencies:
2803 | ansi-styles: 4.3.0
2804 | supports-color: 7.2.0
2805 |
2806 | character-entities@2.0.2: {}
2807 |
2808 | check-error@1.0.3:
2809 | dependencies:
2810 | get-func-name: 2.0.2
2811 | optional: true
2812 |
2813 | chokidar@4.0.3:
2814 | dependencies:
2815 | readdirp: 4.0.2
2816 |
2817 | chownr@2.0.0: {}
2818 |
2819 | ci-info@4.1.0: {}
2820 |
2821 | citty@0.1.6:
2822 | dependencies:
2823 | consola: 3.3.3
2824 |
2825 | clean-regexp@1.0.0:
2826 | dependencies:
2827 | escape-string-regexp: 1.0.5
2828 |
2829 | cliui@8.0.1:
2830 | dependencies:
2831 | string-width: 4.2.3
2832 | strip-ansi: 6.0.1
2833 | wrap-ansi: 7.0.0
2834 |
2835 | clone-response@1.0.2:
2836 | dependencies:
2837 | mimic-response: 1.0.1
2838 |
2839 | color-convert@1.9.3:
2840 | dependencies:
2841 | color-name: 1.1.3
2842 |
2843 | color-convert@2.0.1:
2844 | dependencies:
2845 | color-name: 1.1.4
2846 |
2847 | color-name@1.1.3: {}
2848 |
2849 | color-name@1.1.4: {}
2850 |
2851 | comment-parser@1.4.1: {}
2852 |
2853 | concat-map@0.0.1: {}
2854 |
2855 | confbox@0.1.8: {}
2856 |
2857 | consola@3.3.3: {}
2858 |
2859 | core-js-compat@3.39.0:
2860 | dependencies:
2861 | browserslist: 4.24.3
2862 |
2863 | cross-spawn@7.0.6:
2864 | dependencies:
2865 | path-key: 3.1.1
2866 | shebang-command: 2.0.0
2867 | which: 2.0.2
2868 |
2869 | cssesc@3.0.0: {}
2870 |
2871 | debug@3.2.7:
2872 | dependencies:
2873 | ms: 2.1.3
2874 |
2875 | debug@4.4.0:
2876 | dependencies:
2877 | ms: 2.1.3
2878 |
2879 | decode-named-character-reference@1.0.2:
2880 | dependencies:
2881 | character-entities: 2.0.2
2882 |
2883 | decompress-response@6.0.0:
2884 | dependencies:
2885 | mimic-response: 3.1.0
2886 |
2887 | deep-eql@4.1.3:
2888 | dependencies:
2889 | type-detect: 4.0.8
2890 | optional: true
2891 |
2892 | deep-is@0.1.3: {}
2893 |
2894 | defer-to-connect@2.0.1: {}
2895 |
2896 | define-data-property@1.1.0:
2897 | dependencies:
2898 | get-intrinsic: 1.2.1
2899 | gopd: 1.0.1
2900 | has-property-descriptors: 1.0.0
2901 | optional: true
2902 |
2903 | define-properties@1.2.1:
2904 | dependencies:
2905 | define-data-property: 1.1.0
2906 | has-property-descriptors: 1.0.0
2907 | object-keys: 1.1.1
2908 | optional: true
2909 |
2910 | defu@6.1.4: {}
2911 |
2912 | dequal@2.0.3: {}
2913 |
2914 | destr@2.0.3: {}
2915 |
2916 | detect-node@2.0.5:
2917 | optional: true
2918 |
2919 | devlop@1.1.0:
2920 | dependencies:
2921 | dequal: 2.0.3
2922 |
2923 | diff-sequences@29.6.3:
2924 | optional: true
2925 |
2926 | doctrine@3.0.0:
2927 | dependencies:
2928 | esutils: 2.0.3
2929 |
2930 | dotenv@16.4.7: {}
2931 |
2932 | electron-to-chromium@1.5.76: {}
2933 |
2934 | electron-window-state@5.0.3:
2935 | dependencies:
2936 | jsonfile: 4.0.0
2937 | mkdirp: 0.5.5
2938 |
2939 | electron@33.3.1:
2940 | dependencies:
2941 | '@electron/get': 2.0.3
2942 | '@types/node': 20.17.12
2943 | extract-zip: 2.0.1
2944 | transitivePeerDependencies:
2945 | - supports-color
2946 |
2947 | emoji-regex@8.0.0: {}
2948 |
2949 | end-of-stream@1.4.4:
2950 | dependencies:
2951 | once: 1.4.0
2952 |
2953 | enhanced-resolve@5.17.1:
2954 | dependencies:
2955 | graceful-fs: 4.2.6
2956 | tapable: 2.2.1
2957 |
2958 | entities@4.5.0: {}
2959 |
2960 | env-paths@2.2.1: {}
2961 |
2962 | error-ex@1.3.2:
2963 | dependencies:
2964 | is-arrayish: 0.2.1
2965 |
2966 | es-module-lexer@1.5.4: {}
2967 |
2968 | es6-error@4.1.1:
2969 | optional: true
2970 |
2971 | esbuild@0.18.20:
2972 | optionalDependencies:
2973 | '@esbuild/android-arm': 0.18.20
2974 | '@esbuild/android-arm64': 0.18.20
2975 | '@esbuild/android-x64': 0.18.20
2976 | '@esbuild/darwin-arm64': 0.18.20
2977 | '@esbuild/darwin-x64': 0.18.20
2978 | '@esbuild/freebsd-arm64': 0.18.20
2979 | '@esbuild/freebsd-x64': 0.18.20
2980 | '@esbuild/linux-arm': 0.18.20
2981 | '@esbuild/linux-arm64': 0.18.20
2982 | '@esbuild/linux-ia32': 0.18.20
2983 | '@esbuild/linux-loong64': 0.18.20
2984 | '@esbuild/linux-mips64el': 0.18.20
2985 | '@esbuild/linux-ppc64': 0.18.20
2986 | '@esbuild/linux-riscv64': 0.18.20
2987 | '@esbuild/linux-s390x': 0.18.20
2988 | '@esbuild/linux-x64': 0.18.20
2989 | '@esbuild/netbsd-x64': 0.18.20
2990 | '@esbuild/openbsd-x64': 0.18.20
2991 | '@esbuild/sunos-x64': 0.18.20
2992 | '@esbuild/win32-arm64': 0.18.20
2993 | '@esbuild/win32-ia32': 0.18.20
2994 | '@esbuild/win32-x64': 0.18.20
2995 | optional: true
2996 |
2997 | escalade@3.2.0: {}
2998 |
2999 | escape-string-regexp@1.0.5: {}
3000 |
3001 | escape-string-regexp@4.0.0: {}
3002 |
3003 | escape-string-regexp@5.0.0: {}
3004 |
3005 | eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)):
3006 | dependencies:
3007 | eslint: 9.17.0(jiti@2.4.2)
3008 | semver: 7.6.3
3009 |
3010 | eslint-compat-utils@0.6.4(eslint@9.17.0(jiti@2.4.2)):
3011 | dependencies:
3012 | eslint: 9.17.0(jiti@2.4.2)
3013 | semver: 7.6.3
3014 |
3015 | eslint-config-flat-gitignore@0.3.0(eslint@9.17.0(jiti@2.4.2)):
3016 | dependencies:
3017 | '@eslint/compat': 1.2.4(eslint@9.17.0(jiti@2.4.2))
3018 | eslint: 9.17.0(jiti@2.4.2)
3019 | find-up-simple: 1.0.0
3020 |
3021 | eslint-flat-config-utils@0.4.0:
3022 | dependencies:
3023 | pathe: 1.1.2
3024 |
3025 | eslint-import-resolver-node@0.3.9:
3026 | dependencies:
3027 | debug: 3.2.7
3028 | is-core-module: 2.13.0
3029 | resolve: 1.22.6
3030 | transitivePeerDependencies:
3031 | - supports-color
3032 |
3033 | eslint-json-compat-utils@0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
3034 | dependencies:
3035 | eslint: 9.17.0(jiti@2.4.2)
3036 | esquery: 1.6.0
3037 | jsonc-eslint-parser: 2.4.0
3038 |
3039 | eslint-merge-processors@0.1.0(eslint@9.17.0(jiti@2.4.2)):
3040 | dependencies:
3041 | eslint: 9.17.0(jiti@2.4.2)
3042 |
3043 | eslint-plugin-antfu@2.7.0(eslint@9.17.0(jiti@2.4.2)):
3044 | dependencies:
3045 | '@antfu/utils': 0.7.10
3046 | eslint: 9.17.0(jiti@2.4.2)
3047 |
3048 | eslint-plugin-command@0.2.7(eslint@9.17.0(jiti@2.4.2)):
3049 | dependencies:
3050 | '@es-joy/jsdoccomment': 0.49.0
3051 | eslint: 9.17.0(jiti@2.4.2)
3052 |
3053 | eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)):
3054 | dependencies:
3055 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3056 | '@eslint-community/regexpp': 4.12.1
3057 | eslint: 9.17.0(jiti@2.4.2)
3058 | eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
3059 |
3060 | eslint-plugin-import-x@4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
3061 | dependencies:
3062 | '@types/doctrine': 0.0.9
3063 | '@typescript-eslint/scope-manager': 8.19.1
3064 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
3065 | debug: 4.4.0
3066 | doctrine: 3.0.0
3067 | enhanced-resolve: 5.17.1
3068 | eslint: 9.17.0(jiti@2.4.2)
3069 | eslint-import-resolver-node: 0.3.9
3070 | get-tsconfig: 4.8.1
3071 | is-glob: 4.0.3
3072 | minimatch: 9.0.5
3073 | semver: 7.6.3
3074 | stable-hash: 0.0.4
3075 | tslib: 2.8.1
3076 | transitivePeerDependencies:
3077 | - supports-color
3078 | - typescript
3079 |
3080 | eslint-plugin-jsdoc@50.6.1(eslint@9.17.0(jiti@2.4.2)):
3081 | dependencies:
3082 | '@es-joy/jsdoccomment': 0.49.0
3083 | are-docs-informative: 0.0.2
3084 | comment-parser: 1.4.1
3085 | debug: 4.4.0
3086 | escape-string-regexp: 4.0.0
3087 | eslint: 9.17.0(jiti@2.4.2)
3088 | espree: 10.3.0
3089 | esquery: 1.6.0
3090 | parse-imports: 2.2.1
3091 | semver: 7.6.3
3092 | spdx-expression-parse: 4.0.0
3093 | synckit: 0.9.2
3094 | transitivePeerDependencies:
3095 | - supports-color
3096 |
3097 | eslint-plugin-jsonc@2.18.2(eslint@9.17.0(jiti@2.4.2)):
3098 | dependencies:
3099 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3100 | eslint: 9.17.0(jiti@2.4.2)
3101 | eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
3102 | eslint-json-compat-utils: 0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
3103 | espree: 9.6.1
3104 | graphemer: 1.4.0
3105 | jsonc-eslint-parser: 2.4.0
3106 | natural-compare: 1.4.0
3107 | synckit: 0.6.2
3108 | transitivePeerDependencies:
3109 | - '@eslint/json'
3110 |
3111 | eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)):
3112 | dependencies:
3113 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3114 | enhanced-resolve: 5.17.1
3115 | eslint: 9.17.0(jiti@2.4.2)
3116 | eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2))
3117 | get-tsconfig: 4.8.1
3118 | globals: 15.14.0
3119 | ignore: 5.3.2
3120 | minimatch: 9.0.5
3121 | semver: 7.6.3
3122 |
3123 | eslint-plugin-no-only-tests@3.3.0: {}
3124 |
3125 | eslint-plugin-perfectionist@4.6.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
3126 | dependencies:
3127 | '@typescript-eslint/types': 8.19.1
3128 | '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
3129 | eslint: 9.17.0(jiti@2.4.2)
3130 | natural-orderby: 5.0.0
3131 | transitivePeerDependencies:
3132 | - supports-color
3133 | - typescript
3134 |
3135 | eslint-plugin-regexp@2.7.0(eslint@9.17.0(jiti@2.4.2)):
3136 | dependencies:
3137 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3138 | '@eslint-community/regexpp': 4.12.1
3139 | comment-parser: 1.4.1
3140 | eslint: 9.17.0(jiti@2.4.2)
3141 | jsdoc-type-pratt-parser: 4.1.0
3142 | refa: 0.12.1
3143 | regexp-ast-analysis: 0.7.1
3144 | scslre: 0.3.0
3145 |
3146 | eslint-plugin-toml@0.12.0(eslint@9.17.0(jiti@2.4.2)):
3147 | dependencies:
3148 | debug: 4.4.0
3149 | eslint: 9.17.0(jiti@2.4.2)
3150 | eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
3151 | lodash: 4.17.21
3152 | toml-eslint-parser: 0.10.0
3153 | transitivePeerDependencies:
3154 | - supports-color
3155 |
3156 | eslint-plugin-unicorn@56.0.1(eslint@9.17.0(jiti@2.4.2)):
3157 | dependencies:
3158 | '@babel/helper-validator-identifier': 7.25.9
3159 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3160 | ci-info: 4.1.0
3161 | clean-regexp: 1.0.0
3162 | core-js-compat: 3.39.0
3163 | eslint: 9.17.0(jiti@2.4.2)
3164 | esquery: 1.6.0
3165 | globals: 15.14.0
3166 | indent-string: 4.0.0
3167 | is-builtin-module: 3.2.1
3168 | jsesc: 3.0.2
3169 | pluralize: 8.0.0
3170 | read-pkg-up: 7.0.1
3171 | regexp-tree: 0.1.27
3172 | regjsparser: 0.10.0
3173 | semver: 7.6.3
3174 | strip-indent: 3.0.0
3175 |
3176 | eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)):
3177 | dependencies:
3178 | eslint: 9.17.0(jiti@2.4.2)
3179 | optionalDependencies:
3180 | '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
3181 |
3182 | eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
3183 | dependencies:
3184 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3185 | eslint: 9.17.0(jiti@2.4.2)
3186 | globals: 13.24.0
3187 | natural-compare: 1.4.0
3188 | nth-check: 2.1.1
3189 | postcss-selector-parser: 6.1.2
3190 | semver: 7.6.3
3191 | vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
3192 | xml-name-validator: 4.0.0
3193 | transitivePeerDependencies:
3194 | - supports-color
3195 |
3196 | eslint-plugin-yml@1.16.0(eslint@9.17.0(jiti@2.4.2)):
3197 | dependencies:
3198 | debug: 4.4.0
3199 | eslint: 9.17.0(jiti@2.4.2)
3200 | eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
3201 | lodash: 4.17.21
3202 | natural-compare: 1.4.0
3203 | yaml-eslint-parser: 1.2.3
3204 | transitivePeerDependencies:
3205 | - supports-color
3206 |
3207 | eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2)):
3208 | dependencies:
3209 | '@vue/compiler-sfc': 3.5.13
3210 | eslint: 9.17.0(jiti@2.4.2)
3211 |
3212 | eslint-scope@7.2.2:
3213 | dependencies:
3214 | esrecurse: 4.3.0
3215 | estraverse: 5.3.0
3216 |
3217 | eslint-scope@8.2.0:
3218 | dependencies:
3219 | esrecurse: 4.3.0
3220 | estraverse: 5.3.0
3221 |
3222 | eslint-visitor-keys@3.4.3: {}
3223 |
3224 | eslint-visitor-keys@4.2.0: {}
3225 |
3226 | eslint@9.17.0(jiti@2.4.2):
3227 | dependencies:
3228 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
3229 | '@eslint-community/regexpp': 4.12.1
3230 | '@eslint/config-array': 0.19.1
3231 | '@eslint/core': 0.9.1
3232 | '@eslint/eslintrc': 3.2.0
3233 | '@eslint/js': 9.17.0
3234 | '@eslint/plugin-kit': 0.2.4
3235 | '@humanfs/node': 0.16.6
3236 | '@humanwhocodes/module-importer': 1.0.1
3237 | '@humanwhocodes/retry': 0.4.1
3238 | '@types/estree': 1.0.6
3239 | '@types/json-schema': 7.0.15
3240 | ajv: 6.12.6
3241 | chalk: 4.1.1
3242 | cross-spawn: 7.0.6
3243 | debug: 4.4.0
3244 | escape-string-regexp: 4.0.0
3245 | eslint-scope: 8.2.0
3246 | eslint-visitor-keys: 4.2.0
3247 | espree: 10.3.0
3248 | esquery: 1.6.0
3249 | esutils: 2.0.3
3250 | fast-deep-equal: 3.1.3
3251 | file-entry-cache: 8.0.0
3252 | find-up: 5.0.0
3253 | glob-parent: 6.0.2
3254 | ignore: 5.3.2
3255 | imurmurhash: 0.1.4
3256 | is-glob: 4.0.3
3257 | json-stable-stringify-without-jsonify: 1.0.1
3258 | lodash.merge: 4.6.2
3259 | minimatch: 3.1.2
3260 | natural-compare: 1.4.0
3261 | optionator: 0.9.3
3262 | optionalDependencies:
3263 | jiti: 2.4.2
3264 | transitivePeerDependencies:
3265 | - supports-color
3266 |
3267 | espree@10.3.0:
3268 | dependencies:
3269 | acorn: 8.14.0
3270 | acorn-jsx: 5.3.2(acorn@8.14.0)
3271 | eslint-visitor-keys: 4.2.0
3272 |
3273 | espree@9.6.1:
3274 | dependencies:
3275 | acorn: 8.14.0
3276 | acorn-jsx: 5.3.2(acorn@8.14.0)
3277 | eslint-visitor-keys: 3.4.3
3278 |
3279 | esquery@1.6.0:
3280 | dependencies:
3281 | estraverse: 5.3.0
3282 |
3283 | esrecurse@4.3.0:
3284 | dependencies:
3285 | estraverse: 5.3.0
3286 |
3287 | estraverse@5.3.0: {}
3288 |
3289 | estree-walker@2.0.2: {}
3290 |
3291 | esutils@2.0.3: {}
3292 |
3293 | execa@8.0.1:
3294 | dependencies:
3295 | cross-spawn: 7.0.6
3296 | get-stream: 8.0.1
3297 | human-signals: 5.0.0
3298 | is-stream: 3.0.0
3299 | merge-stream: 2.0.0
3300 | npm-run-path: 5.3.0
3301 | onetime: 6.0.0
3302 | signal-exit: 4.1.0
3303 | strip-final-newline: 3.0.0
3304 |
3305 | extract-zip@2.0.1:
3306 | dependencies:
3307 | debug: 4.4.0
3308 | get-stream: 5.2.0
3309 | yauzl: 2.10.0
3310 | optionalDependencies:
3311 | '@types/yauzl': 2.10.1
3312 | transitivePeerDependencies:
3313 | - supports-color
3314 |
3315 | fast-deep-equal@3.1.3: {}
3316 |
3317 | fast-glob@3.3.3:
3318 | dependencies:
3319 | '@nodelib/fs.stat': 2.0.5
3320 | '@nodelib/fs.walk': 1.2.8
3321 | glob-parent: 5.1.2
3322 | merge2: 1.4.1
3323 | micromatch: 4.0.8
3324 |
3325 | fast-json-stable-stringify@2.1.0: {}
3326 |
3327 | fast-levenshtein@2.0.6: {}
3328 |
3329 | fastq@1.11.0:
3330 | dependencies:
3331 | reusify: 1.0.4
3332 |
3333 | fd-slicer@1.1.0:
3334 | dependencies:
3335 | pend: 1.2.0
3336 |
3337 | fdir@6.4.2(picomatch@4.0.2):
3338 | optionalDependencies:
3339 | picomatch: 4.0.2
3340 |
3341 | file-entry-cache@8.0.0:
3342 | dependencies:
3343 | flat-cache: 4.0.1
3344 |
3345 | fill-range@7.1.1:
3346 | dependencies:
3347 | to-regex-range: 5.0.1
3348 |
3349 | find-up-simple@1.0.0: {}
3350 |
3351 | find-up@4.1.0:
3352 | dependencies:
3353 | locate-path: 5.0.0
3354 | path-exists: 4.0.0
3355 |
3356 | find-up@5.0.0:
3357 | dependencies:
3358 | locate-path: 6.0.0
3359 | path-exists: 4.0.0
3360 |
3361 | flat-cache@4.0.1:
3362 | dependencies:
3363 | flatted: 3.3.2
3364 | keyv: 4.5.4
3365 |
3366 | flatted@3.3.2: {}
3367 |
3368 | fs-extra@8.1.0:
3369 | dependencies:
3370 | graceful-fs: 4.2.6
3371 | jsonfile: 4.0.0
3372 | universalify: 0.1.2
3373 |
3374 | fs-minipass@2.1.0:
3375 | dependencies:
3376 | minipass: 3.3.6
3377 |
3378 | fsevents@2.3.3:
3379 | optional: true
3380 |
3381 | function-bind@1.1.1: {}
3382 |
3383 | get-caller-file@2.0.5: {}
3384 |
3385 | get-func-name@2.0.2:
3386 | optional: true
3387 |
3388 | get-intrinsic@1.2.1:
3389 | dependencies:
3390 | function-bind: 1.1.1
3391 | has: 1.0.3
3392 | has-proto: 1.0.1
3393 | has-symbols: 1.0.3
3394 | optional: true
3395 |
3396 | get-stream@5.2.0:
3397 | dependencies:
3398 | pump: 3.0.0
3399 |
3400 | get-stream@8.0.1: {}
3401 |
3402 | get-tsconfig@4.8.1:
3403 | dependencies:
3404 | resolve-pkg-maps: 1.0.0
3405 |
3406 | giget@1.2.3:
3407 | dependencies:
3408 | citty: 0.1.6
3409 | consola: 3.3.3
3410 | defu: 6.1.4
3411 | node-fetch-native: 1.6.4
3412 | nypm: 0.3.12
3413 | ohash: 1.1.4
3414 | pathe: 1.1.2
3415 | tar: 6.2.0
3416 |
3417 | glob-parent@5.1.2:
3418 | dependencies:
3419 | is-glob: 4.0.3
3420 |
3421 | glob-parent@6.0.2:
3422 | dependencies:
3423 | is-glob: 4.0.3
3424 |
3425 | global-agent@3.0.0:
3426 | dependencies:
3427 | boolean: 3.0.3
3428 | es6-error: 4.1.1
3429 | matcher: 3.0.0
3430 | roarr: 2.15.4
3431 | semver: 7.6.3
3432 | serialize-error: 7.0.1
3433 | optional: true
3434 |
3435 | globals@13.24.0:
3436 | dependencies:
3437 | type-fest: 0.20.2
3438 |
3439 | globals@14.0.0: {}
3440 |
3441 | globals@15.14.0: {}
3442 |
3443 | globalthis@1.0.3:
3444 | dependencies:
3445 | define-properties: 1.2.1
3446 | optional: true
3447 |
3448 | gopd@1.0.1:
3449 | dependencies:
3450 | get-intrinsic: 1.2.1
3451 | optional: true
3452 |
3453 | got@11.8.6:
3454 | dependencies:
3455 | '@sindresorhus/is': 4.6.0
3456 | '@szmarczak/http-timer': 4.0.6
3457 | '@types/cacheable-request': 6.0.3
3458 | '@types/responselike': 1.0.0
3459 | cacheable-lookup: 5.0.4
3460 | cacheable-request: 7.0.4
3461 | decompress-response: 6.0.0
3462 | http2-wrapper: 1.0.3
3463 | lowercase-keys: 2.0.0
3464 | p-cancelable: 2.1.1
3465 | responselike: 2.0.1
3466 |
3467 | graceful-fs@4.2.6: {}
3468 |
3469 | graphemer@1.4.0: {}
3470 |
3471 | has-flag@3.0.0: {}
3472 |
3473 | has-flag@4.0.0: {}
3474 |
3475 | has-property-descriptors@1.0.0:
3476 | dependencies:
3477 | get-intrinsic: 1.2.1
3478 | optional: true
3479 |
3480 | has-proto@1.0.1:
3481 | optional: true
3482 |
3483 | has-symbols@1.0.3:
3484 | optional: true
3485 |
3486 | has@1.0.3:
3487 | dependencies:
3488 | function-bind: 1.1.1
3489 |
3490 | hosted-git-info@2.8.9: {}
3491 |
3492 | http-cache-semantics@4.1.0: {}
3493 |
3494 | http2-wrapper@1.0.3:
3495 | dependencies:
3496 | quick-lru: 5.1.1
3497 | resolve-alpn: 1.2.1
3498 |
3499 | human-signals@5.0.0: {}
3500 |
3501 | ignore@5.3.2: {}
3502 |
3503 | import-fresh@3.3.0:
3504 | dependencies:
3505 | parent-module: 1.0.1
3506 | resolve-from: 4.0.0
3507 |
3508 | imurmurhash@0.1.4: {}
3509 |
3510 | indent-string@4.0.0: {}
3511 |
3512 | is-arrayish@0.2.1: {}
3513 |
3514 | is-builtin-module@3.2.1:
3515 | dependencies:
3516 | builtin-modules: 3.3.0
3517 |
3518 | is-core-module@2.13.0:
3519 | dependencies:
3520 | has: 1.0.3
3521 |
3522 | is-extglob@2.1.1: {}
3523 |
3524 | is-fullwidth-code-point@3.0.0: {}
3525 |
3526 | is-glob@4.0.3:
3527 | dependencies:
3528 | is-extglob: 2.1.1
3529 |
3530 | is-number@7.0.0: {}
3531 |
3532 | is-stream@3.0.0: {}
3533 |
3534 | isexe@2.0.0: {}
3535 |
3536 | jiti@2.4.2: {}
3537 |
3538 | js-tokens@4.0.0: {}
3539 |
3540 | js-yaml@4.1.0:
3541 | dependencies:
3542 | argparse: 2.0.1
3543 |
3544 | jsdoc-type-pratt-parser@4.1.0: {}
3545 |
3546 | jsesc@0.5.0: {}
3547 |
3548 | jsesc@3.0.2: {}
3549 |
3550 | json-buffer@3.0.1: {}
3551 |
3552 | json-parse-even-better-errors@2.3.1: {}
3553 |
3554 | json-schema-traverse@0.4.1: {}
3555 |
3556 | json-stable-stringify-without-jsonify@1.0.1: {}
3557 |
3558 | json-stringify-safe@5.0.1:
3559 | optional: true
3560 |
3561 | jsonc-eslint-parser@2.4.0:
3562 | dependencies:
3563 | acorn: 8.14.0
3564 | eslint-visitor-keys: 3.4.3
3565 | espree: 9.6.1
3566 | semver: 7.6.3
3567 |
3568 | jsonc-parser@3.3.1: {}
3569 |
3570 | jsonfile@4.0.0:
3571 | optionalDependencies:
3572 | graceful-fs: 4.2.6
3573 |
3574 | keyv@4.5.4:
3575 | dependencies:
3576 | json-buffer: 3.0.1
3577 |
3578 | kleur@3.0.3: {}
3579 |
3580 | levn@0.4.1:
3581 | dependencies:
3582 | prelude-ls: 1.2.1
3583 | type-check: 0.4.0
3584 |
3585 | lines-and-columns@1.1.6: {}
3586 |
3587 | local-pkg@0.4.3:
3588 | optional: true
3589 |
3590 | local-pkg@0.5.1:
3591 | dependencies:
3592 | mlly: 1.7.3
3593 | pkg-types: 1.3.0
3594 |
3595 | locate-path@5.0.0:
3596 | dependencies:
3597 | p-locate: 4.1.0
3598 |
3599 | locate-path@6.0.0:
3600 | dependencies:
3601 | p-locate: 5.0.0
3602 |
3603 | lodash.merge@4.6.2: {}
3604 |
3605 | lodash@4.17.21: {}
3606 |
3607 | longest-streak@3.1.0: {}
3608 |
3609 | loupe@2.3.6:
3610 | dependencies:
3611 | get-func-name: 2.0.2
3612 | optional: true
3613 |
3614 | lowercase-keys@2.0.0: {}
3615 |
3616 | magic-string@0.30.17:
3617 | dependencies:
3618 | '@jridgewell/sourcemap-codec': 1.5.0
3619 |
3620 | markdown-table@3.0.4: {}
3621 |
3622 | matcher@3.0.0:
3623 | dependencies:
3624 | escape-string-regexp: 4.0.0
3625 | optional: true
3626 |
3627 | mdast-util-find-and-replace@3.0.1:
3628 | dependencies:
3629 | '@types/mdast': 4.0.4
3630 | escape-string-regexp: 5.0.0
3631 | unist-util-is: 6.0.0
3632 | unist-util-visit-parents: 6.0.1
3633 |
3634 | mdast-util-from-markdown@2.0.2:
3635 | dependencies:
3636 | '@types/mdast': 4.0.4
3637 | '@types/unist': 3.0.3
3638 | decode-named-character-reference: 1.0.2
3639 | devlop: 1.1.0
3640 | mdast-util-to-string: 4.0.0
3641 | micromark: 4.0.1
3642 | micromark-util-decode-numeric-character-reference: 2.0.2
3643 | micromark-util-decode-string: 2.0.1
3644 | micromark-util-normalize-identifier: 2.0.1
3645 | micromark-util-symbol: 2.0.1
3646 | micromark-util-types: 2.0.1
3647 | unist-util-stringify-position: 4.0.0
3648 | transitivePeerDependencies:
3649 | - supports-color
3650 |
3651 | mdast-util-gfm-autolink-literal@2.0.1:
3652 | dependencies:
3653 | '@types/mdast': 4.0.4
3654 | ccount: 2.0.1
3655 | devlop: 1.1.0
3656 | mdast-util-find-and-replace: 3.0.1
3657 | micromark-util-character: 2.1.1
3658 |
3659 | mdast-util-gfm-footnote@2.0.0:
3660 | dependencies:
3661 | '@types/mdast': 4.0.4
3662 | devlop: 1.1.0
3663 | mdast-util-from-markdown: 2.0.2
3664 | mdast-util-to-markdown: 2.1.2
3665 | micromark-util-normalize-identifier: 2.0.1
3666 | transitivePeerDependencies:
3667 | - supports-color
3668 |
3669 | mdast-util-gfm-strikethrough@2.0.0:
3670 | dependencies:
3671 | '@types/mdast': 4.0.4
3672 | mdast-util-from-markdown: 2.0.2
3673 | mdast-util-to-markdown: 2.1.2
3674 | transitivePeerDependencies:
3675 | - supports-color
3676 |
3677 | mdast-util-gfm-table@2.0.0:
3678 | dependencies:
3679 | '@types/mdast': 4.0.4
3680 | devlop: 1.1.0
3681 | markdown-table: 3.0.4
3682 | mdast-util-from-markdown: 2.0.2
3683 | mdast-util-to-markdown: 2.1.2
3684 | transitivePeerDependencies:
3685 | - supports-color
3686 |
3687 | mdast-util-gfm-task-list-item@2.0.0:
3688 | dependencies:
3689 | '@types/mdast': 4.0.4
3690 | devlop: 1.1.0
3691 | mdast-util-from-markdown: 2.0.2
3692 | mdast-util-to-markdown: 2.1.2
3693 | transitivePeerDependencies:
3694 | - supports-color
3695 |
3696 | mdast-util-gfm@3.0.0:
3697 | dependencies:
3698 | mdast-util-from-markdown: 2.0.2
3699 | mdast-util-gfm-autolink-literal: 2.0.1
3700 | mdast-util-gfm-footnote: 2.0.0
3701 | mdast-util-gfm-strikethrough: 2.0.0
3702 | mdast-util-gfm-table: 2.0.0
3703 | mdast-util-gfm-task-list-item: 2.0.0
3704 | mdast-util-to-markdown: 2.1.2
3705 | transitivePeerDependencies:
3706 | - supports-color
3707 |
3708 | mdast-util-phrasing@4.1.0:
3709 | dependencies:
3710 | '@types/mdast': 4.0.4
3711 | unist-util-is: 6.0.0
3712 |
3713 | mdast-util-to-markdown@2.1.2:
3714 | dependencies:
3715 | '@types/mdast': 4.0.4
3716 | '@types/unist': 3.0.3
3717 | longest-streak: 3.1.0
3718 | mdast-util-phrasing: 4.1.0
3719 | mdast-util-to-string: 4.0.0
3720 | micromark-util-classify-character: 2.0.1
3721 | micromark-util-decode-string: 2.0.1
3722 | unist-util-visit: 5.0.0
3723 | zwitch: 2.0.4
3724 |
3725 | mdast-util-to-string@4.0.0:
3726 | dependencies:
3727 | '@types/mdast': 4.0.4
3728 |
3729 | merge-stream@2.0.0: {}
3730 |
3731 | merge2@1.4.1: {}
3732 |
3733 | micromark-core-commonmark@2.0.2:
3734 | dependencies:
3735 | decode-named-character-reference: 1.0.2
3736 | devlop: 1.1.0
3737 | micromark-factory-destination: 2.0.1
3738 | micromark-factory-label: 2.0.1
3739 | micromark-factory-space: 2.0.1
3740 | micromark-factory-title: 2.0.1
3741 | micromark-factory-whitespace: 2.0.1
3742 | micromark-util-character: 2.1.1
3743 | micromark-util-chunked: 2.0.1
3744 | micromark-util-classify-character: 2.0.1
3745 | micromark-util-html-tag-name: 2.0.1
3746 | micromark-util-normalize-identifier: 2.0.1
3747 | micromark-util-resolve-all: 2.0.1
3748 | micromark-util-subtokenize: 2.0.3
3749 | micromark-util-symbol: 2.0.1
3750 | micromark-util-types: 2.0.1
3751 |
3752 | micromark-extension-gfm-autolink-literal@2.1.0:
3753 | dependencies:
3754 | micromark-util-character: 2.1.1
3755 | micromark-util-sanitize-uri: 2.0.1
3756 | micromark-util-symbol: 2.0.1
3757 | micromark-util-types: 2.0.1
3758 |
3759 | micromark-extension-gfm-footnote@2.1.0:
3760 | dependencies:
3761 | devlop: 1.1.0
3762 | micromark-core-commonmark: 2.0.2
3763 | micromark-factory-space: 2.0.1
3764 | micromark-util-character: 2.1.1
3765 | micromark-util-normalize-identifier: 2.0.1
3766 | micromark-util-sanitize-uri: 2.0.1
3767 | micromark-util-symbol: 2.0.1
3768 | micromark-util-types: 2.0.1
3769 |
3770 | micromark-extension-gfm-strikethrough@2.1.0:
3771 | dependencies:
3772 | devlop: 1.1.0
3773 | micromark-util-chunked: 2.0.1
3774 | micromark-util-classify-character: 2.0.1
3775 | micromark-util-resolve-all: 2.0.1
3776 | micromark-util-symbol: 2.0.1
3777 | micromark-util-types: 2.0.1
3778 |
3779 | micromark-extension-gfm-table@2.1.0:
3780 | dependencies:
3781 | devlop: 1.1.0
3782 | micromark-factory-space: 2.0.1
3783 | micromark-util-character: 2.1.1
3784 | micromark-util-symbol: 2.0.1
3785 | micromark-util-types: 2.0.1
3786 |
3787 | micromark-extension-gfm-tagfilter@2.0.0:
3788 | dependencies:
3789 | micromark-util-types: 2.0.1
3790 |
3791 | micromark-extension-gfm-task-list-item@2.1.0:
3792 | dependencies:
3793 | devlop: 1.1.0
3794 | micromark-factory-space: 2.0.1
3795 | micromark-util-character: 2.1.1
3796 | micromark-util-symbol: 2.0.1
3797 | micromark-util-types: 2.0.1
3798 |
3799 | micromark-extension-gfm@3.0.0:
3800 | dependencies:
3801 | micromark-extension-gfm-autolink-literal: 2.1.0
3802 | micromark-extension-gfm-footnote: 2.1.0
3803 | micromark-extension-gfm-strikethrough: 2.1.0
3804 | micromark-extension-gfm-table: 2.1.0
3805 | micromark-extension-gfm-tagfilter: 2.0.0
3806 | micromark-extension-gfm-task-list-item: 2.1.0
3807 | micromark-util-combine-extensions: 2.0.1
3808 | micromark-util-types: 2.0.1
3809 |
3810 | micromark-factory-destination@2.0.1:
3811 | dependencies:
3812 | micromark-util-character: 2.1.1
3813 | micromark-util-symbol: 2.0.1
3814 | micromark-util-types: 2.0.1
3815 |
3816 | micromark-factory-label@2.0.1:
3817 | dependencies:
3818 | devlop: 1.1.0
3819 | micromark-util-character: 2.1.1
3820 | micromark-util-symbol: 2.0.1
3821 | micromark-util-types: 2.0.1
3822 |
3823 | micromark-factory-space@2.0.1:
3824 | dependencies:
3825 | micromark-util-character: 2.1.1
3826 | micromark-util-types: 2.0.1
3827 |
3828 | micromark-factory-title@2.0.1:
3829 | dependencies:
3830 | micromark-factory-space: 2.0.1
3831 | micromark-util-character: 2.1.1
3832 | micromark-util-symbol: 2.0.1
3833 | micromark-util-types: 2.0.1
3834 |
3835 | micromark-factory-whitespace@2.0.1:
3836 | dependencies:
3837 | micromark-factory-space: 2.0.1
3838 | micromark-util-character: 2.1.1
3839 | micromark-util-symbol: 2.0.1
3840 | micromark-util-types: 2.0.1
3841 |
3842 | micromark-util-character@2.1.1:
3843 | dependencies:
3844 | micromark-util-symbol: 2.0.1
3845 | micromark-util-types: 2.0.1
3846 |
3847 | micromark-util-chunked@2.0.1:
3848 | dependencies:
3849 | micromark-util-symbol: 2.0.1
3850 |
3851 | micromark-util-classify-character@2.0.1:
3852 | dependencies:
3853 | micromark-util-character: 2.1.1
3854 | micromark-util-symbol: 2.0.1
3855 | micromark-util-types: 2.0.1
3856 |
3857 | micromark-util-combine-extensions@2.0.1:
3858 | dependencies:
3859 | micromark-util-chunked: 2.0.1
3860 | micromark-util-types: 2.0.1
3861 |
3862 | micromark-util-decode-numeric-character-reference@2.0.2:
3863 | dependencies:
3864 | micromark-util-symbol: 2.0.1
3865 |
3866 | micromark-util-decode-string@2.0.1:
3867 | dependencies:
3868 | decode-named-character-reference: 1.0.2
3869 | micromark-util-character: 2.1.1
3870 | micromark-util-decode-numeric-character-reference: 2.0.2
3871 | micromark-util-symbol: 2.0.1
3872 |
3873 | micromark-util-encode@2.0.1: {}
3874 |
3875 | micromark-util-html-tag-name@2.0.1: {}
3876 |
3877 | micromark-util-normalize-identifier@2.0.1:
3878 | dependencies:
3879 | micromark-util-symbol: 2.0.1
3880 |
3881 | micromark-util-resolve-all@2.0.1:
3882 | dependencies:
3883 | micromark-util-types: 2.0.1
3884 |
3885 | micromark-util-sanitize-uri@2.0.1:
3886 | dependencies:
3887 | micromark-util-character: 2.1.1
3888 | micromark-util-encode: 2.0.1
3889 | micromark-util-symbol: 2.0.1
3890 |
3891 | micromark-util-subtokenize@2.0.3:
3892 | dependencies:
3893 | devlop: 1.1.0
3894 | micromark-util-chunked: 2.0.1
3895 | micromark-util-symbol: 2.0.1
3896 | micromark-util-types: 2.0.1
3897 |
3898 | micromark-util-symbol@2.0.1: {}
3899 |
3900 | micromark-util-types@2.0.1: {}
3901 |
3902 | micromark@4.0.1:
3903 | dependencies:
3904 | '@types/debug': 4.1.12
3905 | debug: 4.4.0
3906 | decode-named-character-reference: 1.0.2
3907 | devlop: 1.1.0
3908 | micromark-core-commonmark: 2.0.2
3909 | micromark-factory-space: 2.0.1
3910 | micromark-util-character: 2.1.1
3911 | micromark-util-chunked: 2.0.1
3912 | micromark-util-combine-extensions: 2.0.1
3913 | micromark-util-decode-numeric-character-reference: 2.0.2
3914 | micromark-util-encode: 2.0.1
3915 | micromark-util-normalize-identifier: 2.0.1
3916 | micromark-util-resolve-all: 2.0.1
3917 | micromark-util-sanitize-uri: 2.0.1
3918 | micromark-util-subtokenize: 2.0.3
3919 | micromark-util-symbol: 2.0.1
3920 | micromark-util-types: 2.0.1
3921 | transitivePeerDependencies:
3922 | - supports-color
3923 |
3924 | micromatch@4.0.8:
3925 | dependencies:
3926 | braces: 3.0.3
3927 | picomatch: 2.3.1
3928 |
3929 | mimic-fn@4.0.0: {}
3930 |
3931 | mimic-response@1.0.1: {}
3932 |
3933 | mimic-response@3.1.0: {}
3934 |
3935 | min-indent@1.0.1: {}
3936 |
3937 | minimatch@3.1.2:
3938 | dependencies:
3939 | brace-expansion: 1.1.11
3940 |
3941 | minimatch@9.0.5:
3942 | dependencies:
3943 | brace-expansion: 2.0.1
3944 |
3945 | minimist@1.2.5: {}
3946 |
3947 | minipass@3.3.6:
3948 | dependencies:
3949 | yallist: 4.0.0
3950 |
3951 | minipass@5.0.0: {}
3952 |
3953 | minizlib@2.1.2:
3954 | dependencies:
3955 | minipass: 3.3.6
3956 | yallist: 4.0.0
3957 |
3958 | mkdirp@0.5.5:
3959 | dependencies:
3960 | minimist: 1.2.5
3961 |
3962 | mkdirp@1.0.4: {}
3963 |
3964 | mlly@1.7.3:
3965 | dependencies:
3966 | acorn: 8.14.0
3967 | pathe: 1.1.2
3968 | pkg-types: 1.3.0
3969 | ufo: 1.5.4
3970 |
3971 | ms@2.1.3: {}
3972 |
3973 | nanoid@3.3.8: {}
3974 |
3975 | natural-compare@1.4.0: {}
3976 |
3977 | natural-orderby@5.0.0: {}
3978 |
3979 | node-fetch-native@1.6.4: {}
3980 |
3981 | node-releases@2.0.19: {}
3982 |
3983 | normalize-package-data@2.5.0:
3984 | dependencies:
3985 | hosted-git-info: 2.8.9
3986 | resolve: 1.22.6
3987 | semver: 5.7.1
3988 | validate-npm-package-license: 3.0.4
3989 |
3990 | normalize-url@6.1.0: {}
3991 |
3992 | npm-run-path@5.3.0:
3993 | dependencies:
3994 | path-key: 4.0.0
3995 |
3996 | nth-check@2.1.1:
3997 | dependencies:
3998 | boolbase: 1.0.0
3999 |
4000 | nypm@0.3.12:
4001 | dependencies:
4002 | citty: 0.1.6
4003 | consola: 3.3.3
4004 | execa: 8.0.1
4005 | pathe: 1.1.2
4006 | pkg-types: 1.3.0
4007 | ufo: 1.5.4
4008 |
4009 | object-keys@1.1.1:
4010 | optional: true
4011 |
4012 | ohash@1.1.4: {}
4013 |
4014 | once@1.4.0:
4015 | dependencies:
4016 | wrappy: 1.0.2
4017 |
4018 | onetime@6.0.0:
4019 | dependencies:
4020 | mimic-fn: 4.0.0
4021 |
4022 | optionator@0.9.3:
4023 | dependencies:
4024 | '@aashutoshrathi/word-wrap': 1.2.6
4025 | deep-is: 0.1.3
4026 | fast-levenshtein: 2.0.6
4027 | levn: 0.4.1
4028 | prelude-ls: 1.2.1
4029 | type-check: 0.4.0
4030 |
4031 | p-cancelable@2.1.1: {}
4032 |
4033 | p-limit@2.3.0:
4034 | dependencies:
4035 | p-try: 2.2.0
4036 |
4037 | p-limit@3.1.0:
4038 | dependencies:
4039 | yocto-queue: 0.1.0
4040 |
4041 | p-limit@4.0.0:
4042 | dependencies:
4043 | yocto-queue: 1.0.0
4044 | optional: true
4045 |
4046 | p-locate@4.1.0:
4047 | dependencies:
4048 | p-limit: 2.3.0
4049 |
4050 | p-locate@5.0.0:
4051 | dependencies:
4052 | p-limit: 3.1.0
4053 |
4054 | p-try@2.2.0: {}
4055 |
4056 | package-manager-detector@0.2.8: {}
4057 |
4058 | parent-module@1.0.1:
4059 | dependencies:
4060 | callsites: 3.1.0
4061 |
4062 | parse-gitignore@2.0.0: {}
4063 |
4064 | parse-imports@2.2.1:
4065 | dependencies:
4066 | es-module-lexer: 1.5.4
4067 | slashes: 3.0.12
4068 |
4069 | parse-json@5.2.0:
4070 | dependencies:
4071 | '@babel/code-frame': 7.12.13
4072 | error-ex: 1.3.2
4073 | json-parse-even-better-errors: 2.3.1
4074 | lines-and-columns: 1.1.6
4075 |
4076 | path-exists@4.0.0: {}
4077 |
4078 | path-key@3.1.1: {}
4079 |
4080 | path-key@4.0.0: {}
4081 |
4082 | path-parse@1.0.7: {}
4083 |
4084 | pathe@1.1.2: {}
4085 |
4086 | pathval@1.1.1:
4087 | optional: true
4088 |
4089 | pend@1.2.0: {}
4090 |
4091 | perfect-debounce@1.0.0: {}
4092 |
4093 | picocolors@1.1.1: {}
4094 |
4095 | picomatch@2.3.1: {}
4096 |
4097 | picomatch@4.0.2: {}
4098 |
4099 | pkg-types@1.3.0:
4100 | dependencies:
4101 | confbox: 0.1.8
4102 | mlly: 1.7.3
4103 | pathe: 1.1.2
4104 |
4105 | pluralize@8.0.0: {}
4106 |
4107 | postcss-selector-parser@6.1.2:
4108 | dependencies:
4109 | cssesc: 3.0.0
4110 | util-deprecate: 1.0.2
4111 |
4112 | postcss@8.4.49:
4113 | dependencies:
4114 | nanoid: 3.3.8
4115 | picocolors: 1.1.1
4116 | source-map-js: 1.2.1
4117 |
4118 | prelude-ls@1.2.1: {}
4119 |
4120 | pretty-format@29.7.0:
4121 | dependencies:
4122 | '@jest/schemas': 29.6.3
4123 | ansi-styles: 5.2.0
4124 | react-is: 18.2.0
4125 | optional: true
4126 |
4127 | progress@2.0.3: {}
4128 |
4129 | prompts@2.4.2:
4130 | dependencies:
4131 | kleur: 3.0.3
4132 | sisteransi: 1.0.5
4133 |
4134 | pump@3.0.0:
4135 | dependencies:
4136 | end-of-stream: 1.4.4
4137 | once: 1.4.0
4138 |
4139 | punycode@2.1.1: {}
4140 |
4141 | queue-microtask@1.2.3: {}
4142 |
4143 | quick-lru@5.1.1: {}
4144 |
4145 | rc9@2.1.2:
4146 | dependencies:
4147 | defu: 6.1.4
4148 | destr: 2.0.3
4149 |
4150 | react-is@18.2.0:
4151 | optional: true
4152 |
4153 | read-pkg-up@7.0.1:
4154 | dependencies:
4155 | find-up: 4.1.0
4156 | read-pkg: 5.2.0
4157 | type-fest: 0.8.1
4158 |
4159 | read-pkg@5.2.0:
4160 | dependencies:
4161 | '@types/normalize-package-data': 2.4.0
4162 | normalize-package-data: 2.5.0
4163 | parse-json: 5.2.0
4164 | type-fest: 0.6.0
4165 |
4166 | readdirp@4.0.2: {}
4167 |
4168 | refa@0.12.1:
4169 | dependencies:
4170 | '@eslint-community/regexpp': 4.12.1
4171 |
4172 | regexp-ast-analysis@0.7.1:
4173 | dependencies:
4174 | '@eslint-community/regexpp': 4.12.1
4175 | refa: 0.12.1
4176 |
4177 | regexp-tree@0.1.27: {}
4178 |
4179 | regjsparser@0.10.0:
4180 | dependencies:
4181 | jsesc: 0.5.0
4182 |
4183 | require-directory@2.1.1: {}
4184 |
4185 | resolve-alpn@1.2.1: {}
4186 |
4187 | resolve-from@4.0.0: {}
4188 |
4189 | resolve-pkg-maps@1.0.0: {}
4190 |
4191 | resolve@1.22.6:
4192 | dependencies:
4193 | is-core-module: 2.13.0
4194 | path-parse: 1.0.7
4195 | supports-preserve-symlinks-flag: 1.0.0
4196 |
4197 | responselike@2.0.1:
4198 | dependencies:
4199 | lowercase-keys: 2.0.0
4200 |
4201 | reusify@1.0.4: {}
4202 |
4203 | roarr@2.15.4:
4204 | dependencies:
4205 | boolean: 3.0.3
4206 | detect-node: 2.0.5
4207 | globalthis: 1.0.3
4208 | json-stringify-safe: 5.0.1
4209 | semver-compare: 1.0.0
4210 | sprintf-js: 1.1.2
4211 | optional: true
4212 |
4213 | rollup@3.29.4:
4214 | optionalDependencies:
4215 | fsevents: 2.3.3
4216 | optional: true
4217 |
4218 | run-parallel@1.2.0:
4219 | dependencies:
4220 | queue-microtask: 1.2.3
4221 |
4222 | scslre@0.3.0:
4223 | dependencies:
4224 | '@eslint-community/regexpp': 4.12.1
4225 | refa: 0.12.1
4226 | regexp-ast-analysis: 0.7.1
4227 |
4228 | semver-compare@1.0.0:
4229 | optional: true
4230 |
4231 | semver@5.7.1: {}
4232 |
4233 | semver@6.3.0: {}
4234 |
4235 | semver@7.6.3: {}
4236 |
4237 | serialize-error@7.0.1:
4238 | dependencies:
4239 | type-fest: 0.13.1
4240 | optional: true
4241 |
4242 | shebang-command@2.0.0:
4243 | dependencies:
4244 | shebang-regex: 3.0.0
4245 |
4246 | shebang-regex@3.0.0: {}
4247 |
4248 | siginfo@2.0.0:
4249 | optional: true
4250 |
4251 | signal-exit@4.1.0: {}
4252 |
4253 | sisteransi@1.0.5: {}
4254 |
4255 | slashes@3.0.12: {}
4256 |
4257 | source-map-js@1.2.1: {}
4258 |
4259 | spdx-correct@3.1.1:
4260 | dependencies:
4261 | spdx-expression-parse: 3.0.1
4262 | spdx-license-ids: 3.0.7
4263 |
4264 | spdx-exceptions@2.3.0: {}
4265 |
4266 | spdx-expression-parse@3.0.1:
4267 | dependencies:
4268 | spdx-exceptions: 2.3.0
4269 | spdx-license-ids: 3.0.7
4270 |
4271 | spdx-expression-parse@4.0.0:
4272 | dependencies:
4273 | spdx-exceptions: 2.3.0
4274 | spdx-license-ids: 3.0.7
4275 |
4276 | spdx-license-ids@3.0.7: {}
4277 |
4278 | sprintf-js@1.1.2:
4279 | optional: true
4280 |
4281 | stable-hash@0.0.4: {}
4282 |
4283 | stackback@0.0.2:
4284 | optional: true
4285 |
4286 | std-env@3.4.3:
4287 | optional: true
4288 |
4289 | string-width@4.2.3:
4290 | dependencies:
4291 | emoji-regex: 8.0.0
4292 | is-fullwidth-code-point: 3.0.0
4293 | strip-ansi: 6.0.1
4294 |
4295 | strip-ansi@6.0.1:
4296 | dependencies:
4297 | ansi-regex: 5.0.1
4298 |
4299 | strip-final-newline@3.0.0: {}
4300 |
4301 | strip-indent@3.0.0:
4302 | dependencies:
4303 | min-indent: 1.0.1
4304 |
4305 | strip-json-comments@3.1.1: {}
4306 |
4307 | strip-literal@1.3.0:
4308 | dependencies:
4309 | acorn: 8.14.0
4310 | optional: true
4311 |
4312 | sumchecker@3.0.1:
4313 | dependencies:
4314 | debug: 4.4.0
4315 | transitivePeerDependencies:
4316 | - supports-color
4317 |
4318 | supports-color@5.5.0:
4319 | dependencies:
4320 | has-flag: 3.0.0
4321 |
4322 | supports-color@7.2.0:
4323 | dependencies:
4324 | has-flag: 4.0.0
4325 |
4326 | supports-preserve-symlinks-flag@1.0.0: {}
4327 |
4328 | synckit@0.6.2:
4329 | dependencies:
4330 | tslib: 2.8.1
4331 |
4332 | synckit@0.9.2:
4333 | dependencies:
4334 | '@pkgr/core': 0.1.1
4335 | tslib: 2.8.1
4336 |
4337 | tapable@2.2.1: {}
4338 |
4339 | tar@6.2.0:
4340 | dependencies:
4341 | chownr: 2.0.0
4342 | fs-minipass: 2.1.0
4343 | minipass: 5.0.0
4344 | minizlib: 2.1.2
4345 | mkdirp: 1.0.4
4346 | yallist: 4.0.0
4347 |
4348 | tinybench@2.5.1:
4349 | optional: true
4350 |
4351 | tinyexec@0.3.2: {}
4352 |
4353 | tinyglobby@0.2.10:
4354 | dependencies:
4355 | fdir: 6.4.2(picomatch@4.0.2)
4356 | picomatch: 4.0.2
4357 |
4358 | tinypool@0.7.0:
4359 | optional: true
4360 |
4361 | tinyspy@2.2.0:
4362 | optional: true
4363 |
4364 | to-regex-range@5.0.1:
4365 | dependencies:
4366 | is-number: 7.0.0
4367 |
4368 | toml-eslint-parser@0.10.0:
4369 | dependencies:
4370 | eslint-visitor-keys: 3.4.3
4371 |
4372 | ts-api-utils@2.0.0(typescript@5.7.2):
4373 | dependencies:
4374 | typescript: 5.7.2
4375 |
4376 | tslib@2.8.1: {}
4377 |
4378 | type-check@0.4.0:
4379 | dependencies:
4380 | prelude-ls: 1.2.1
4381 |
4382 | type-detect@4.0.8:
4383 | optional: true
4384 |
4385 | type-fest@0.13.1:
4386 | optional: true
4387 |
4388 | type-fest@0.20.2: {}
4389 |
4390 | type-fest@0.6.0: {}
4391 |
4392 | type-fest@0.8.1: {}
4393 |
4394 | typescript@5.7.2: {}
4395 |
4396 | ufo@1.5.4: {}
4397 |
4398 | undici-types@6.19.8: {}
4399 |
4400 | unist-util-is@6.0.0:
4401 | dependencies:
4402 | '@types/unist': 3.0.3
4403 |
4404 | unist-util-stringify-position@4.0.0:
4405 | dependencies:
4406 | '@types/unist': 3.0.3
4407 |
4408 | unist-util-visit-parents@6.0.1:
4409 | dependencies:
4410 | '@types/unist': 3.0.3
4411 | unist-util-is: 6.0.0
4412 |
4413 | unist-util-visit@5.0.0:
4414 | dependencies:
4415 | '@types/unist': 3.0.3
4416 | unist-util-is: 6.0.0
4417 | unist-util-visit-parents: 6.0.1
4418 |
4419 | universalify@0.1.2: {}
4420 |
4421 | update-browserslist-db@1.1.1(browserslist@4.24.3):
4422 | dependencies:
4423 | browserslist: 4.24.3
4424 | escalade: 3.2.0
4425 | picocolors: 1.1.1
4426 |
4427 | uri-js@4.4.1:
4428 | dependencies:
4429 | punycode: 2.1.1
4430 |
4431 | util-deprecate@1.0.2: {}
4432 |
4433 | validate-npm-package-license@3.0.4:
4434 | dependencies:
4435 | spdx-correct: 3.1.1
4436 | spdx-expression-parse: 3.0.1
4437 |
4438 | vite-node@0.34.6(@types/node@20.17.12):
4439 | dependencies:
4440 | cac: 6.7.14
4441 | debug: 4.4.0
4442 | mlly: 1.7.3
4443 | pathe: 1.1.2
4444 | picocolors: 1.1.1
4445 | vite: 4.4.11(@types/node@20.17.12)
4446 | transitivePeerDependencies:
4447 | - '@types/node'
4448 | - less
4449 | - lightningcss
4450 | - sass
4451 | - stylus
4452 | - sugarss
4453 | - supports-color
4454 | - terser
4455 | optional: true
4456 |
4457 | vite@4.4.11(@types/node@20.17.12):
4458 | dependencies:
4459 | esbuild: 0.18.20
4460 | postcss: 8.4.49
4461 | rollup: 3.29.4
4462 | optionalDependencies:
4463 | '@types/node': 20.17.12
4464 | fsevents: 2.3.3
4465 | optional: true
4466 |
4467 | vitest@0.34.6:
4468 | dependencies:
4469 | '@types/chai': 4.3.6
4470 | '@types/chai-subset': 1.3.3
4471 | '@types/node': 20.17.12
4472 | '@vitest/expect': 0.34.6
4473 | '@vitest/runner': 0.34.6
4474 | '@vitest/snapshot': 0.34.6
4475 | '@vitest/spy': 0.34.6
4476 | '@vitest/utils': 0.34.6
4477 | acorn: 8.14.0
4478 | acorn-walk: 8.2.0
4479 | cac: 6.7.14
4480 | chai: 4.3.10
4481 | debug: 4.4.0
4482 | local-pkg: 0.4.3
4483 | magic-string: 0.30.17
4484 | pathe: 1.1.2
4485 | picocolors: 1.1.1
4486 | std-env: 3.4.3
4487 | strip-literal: 1.3.0
4488 | tinybench: 2.5.1
4489 | tinypool: 0.7.0
4490 | vite: 4.4.11(@types/node@20.17.12)
4491 | vite-node: 0.34.6(@types/node@20.17.12)
4492 | why-is-node-running: 2.2.2
4493 | transitivePeerDependencies:
4494 | - less
4495 | - lightningcss
4496 | - sass
4497 | - stylus
4498 | - sugarss
4499 | - supports-color
4500 | - terser
4501 | optional: true
4502 |
4503 | vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
4504 | dependencies:
4505 | debug: 4.4.0
4506 | eslint: 9.17.0(jiti@2.4.2)
4507 | eslint-scope: 7.2.2
4508 | eslint-visitor-keys: 3.4.3
4509 | espree: 9.6.1
4510 | esquery: 1.6.0
4511 | lodash: 4.17.21
4512 | semver: 7.6.3
4513 | transitivePeerDependencies:
4514 | - supports-color
4515 |
4516 | which@2.0.2:
4517 | dependencies:
4518 | isexe: 2.0.0
4519 |
4520 | why-is-node-running@2.2.2:
4521 | dependencies:
4522 | siginfo: 2.0.0
4523 | stackback: 0.0.2
4524 | optional: true
4525 |
4526 | wrap-ansi@7.0.0:
4527 | dependencies:
4528 | ansi-styles: 4.3.0
4529 | string-width: 4.2.3
4530 | strip-ansi: 6.0.1
4531 |
4532 | wrappy@1.0.2: {}
4533 |
4534 | xml-name-validator@4.0.0: {}
4535 |
4536 | y18n@5.0.8: {}
4537 |
4538 | yallist@4.0.0: {}
4539 |
4540 | yaml-eslint-parser@1.2.3:
4541 | dependencies:
4542 | eslint-visitor-keys: 3.4.3
4543 | lodash: 4.17.21
4544 | yaml: 2.1.1
4545 |
4546 | yaml@2.1.1: {}
4547 |
4548 | yargs-parser@21.1.1: {}
4549 |
4550 | yargs@17.7.2:
4551 | dependencies:
4552 | cliui: 8.0.1
4553 | escalade: 3.2.0
4554 | get-caller-file: 2.0.5
4555 | require-directory: 2.1.1
4556 | string-width: 4.2.3
4557 | y18n: 5.0.8
4558 | yargs-parser: 21.1.1
4559 |
4560 | yauzl@2.10.0:
4561 | dependencies:
4562 | buffer-crc32: 0.2.13
4563 | fd-slicer: 1.1.0
4564 |
4565 | yocto-queue@0.1.0: {}
4566 |
4567 | yocto-queue@1.0.0:
4568 | optional: true
4569 |
4570 | zwitch@2.0.4: {}
4571 |
--------------------------------------------------------------------------------