├── .env.example
├── .gitignore
├── README.md
├── docker-compose.yml
├── gpt.hurl
├── raycast-gpt4free-extension
├── CHANGELOG.md
├── README.md
├── assets
│ └── command-icon.png
├── package-lock.json
├── package.json
├── raycast-env.d.ts
├── src
│ └── index.tsx
└── tsconfig.json
└── renovate.json
/.env.example:
--------------------------------------------------------------------------------
1 | http_proxy=http://host:port
2 | EMAIL_TYPE=temp-email44
3 | DEBUG=0
4 | POOL_SIZE=3
5 | PHIND_POOL_SIZE=0
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .env
2 | run
3 | build
4 | dist
5 | node_modules
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Welcome to gpt4free-demo 👋
2 |
3 | Set up a free OpenAI GPT-4 API on your own
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | ## Demo
13 |
14 |
15 |
16 |
17 |
18 |
19 | ## Usage
20 |
21 | Follow these steps to get gpt4free-demo up and running:
22 |
23 | 1. **Clone the Repository**:
24 |
25 | ```bash
26 | git clone https://github.com/username/gpt4free-demo.git
27 | cd gpt4free-demo
28 | ```
29 |
30 | 2. **Set Up Environment Variables**: Copy the example environment file and set up your own variables:
31 |
32 | ```bash
33 | cp .env.example .env
34 | ```
35 |
36 | Open `.env` with your preferred text editor and fill in your own values for the given variables. Save and close the file when you're finished.
37 |
38 | 3. **Start the Services**: Start your services using Docker Compose:
39 |
40 | ```bash
41 | docker-compose up -d
42 | ```
43 |
44 | 
45 |
46 | If you change any environment variables in your `.env` file, restart your services with `docker-compose down` and `docker-compose up -d`.
47 |
48 | 4. **Access the API**: Once the services are running, the API will be accessible at:
49 |
50 | - Find supports model and site: `http://127.0.0.1:13000/supports` [GET]
51 | - Return when chat is complete: `http://127.0.0.1:13000/ask?prompt=***&model=***&site=***` [POST/GET]
52 | - Return with event stream: `http://127.0.0.1:13000/ask/stream?prompt=***&model=***&site=***` [POST/GET]
53 |
54 | More usage examples can be found at [xiangsx/gpt4free-ts](https://github.com/xiangsx/gpt4free-ts#-lets-use-gpt4).
55 |
56 | Certainly! If you want to include instructions on how to use `hurl` to test the API in the README, you can add a new section like this:
57 |
58 | ## Testing with Hurl
59 |
60 | [Hurl](https://hurl.dev/) is a command-line tool to run HTTP requests. You can use it to test the endpoints in this API. Here's how you can get started:
61 |
62 | 1. **Install Hurl**: Follow the instructions on the [official website](https://hurl.dev/docs/installation.html) to install Hurl on your system.
63 |
64 | 2. **Create a Hurl File**: You can create a file with a `.hurl` extension to define the HTTP requests you want to test. Here's an example `gpt.hurl` file for this project:
65 |
66 | ```hurl
67 | # List all supports model
68 | GET http://127.0.0.1:13000/supports
69 |
70 | # Call Vita model
71 | GET http://127.0.0.1:13000/ask
72 | [QueryStringParams]
73 | site: vita
74 | model: gpt-3.5-turbo
75 | prompt: Tell me a joke about Software Engineering
76 | ```
77 |
78 | 3. **Run the Hurl File**: Use the following command to execute the `gpt.hurl` file:
79 |
80 | ```bash
81 | hurl --verbose gpt.hurl
82 | ```
83 |
84 | This will run the defined HTTP requests and print the responses to the terminal.
85 |
86 | 4. **Read the Documentation**: For more advanced usage, you can refer to the [samples documentation](https://hurl.dev/docs/samples.html).
87 |
88 |
89 | ## Resources
90 |
91 | - [xiangsx/gpt4free-ts](https://github.com/xiangsx/gpt4free-ts)
92 | - [xtekky/gpt4free](https://github.com/xtekky/gpt4free)
93 | - [Create Your First Extension - Raycast API](https://developers.raycast.com/basics/create-your-first-extension)
94 |
95 | ## Reference Videos
96 |
97 | - [](https://www.youtube.com/watch?v=llThjxFb7KU)
98 | - [](https://www.youtube.com/watch?v=sY01NrxVQJM)
99 |
100 | ## Author
101 |
102 | - Website: [productsway.com](https://productsway.com/)
103 | - Twitter: [@jellydn](https://twitter.com/jellydn)
104 | - Github: [@jellydn](https://github.com/jellydn)
105 |
106 | ## Show your support
107 |
108 | [](https://ko-fi.com/dunghd)
109 | [](https://paypal.me/dunghd)
110 | [](https://www.buymeacoffee.com/dunghd)
111 |
112 |
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | version: "3.9"
2 |
3 | services:
4 | gpt4free-ts:
5 | image: xiangsx/gpt4free-ts:latest
6 | ports:
7 | - "13000:3000"
8 | restart: always
9 | volumes:
10 | - ./run:/usr/src/app/run
11 | cap_add:
12 | - "SYS_ADMIN"
13 | environment:
14 | - http_proxy=${http_proxy}
15 | - https_proxy=${https_proxy}
16 | - rapid_api_key=${rapid_api_key}
17 | - EMAIL_TYPE=${EMAIL_TYPE}
18 | - DEBUG=${DEBUG}
19 | - POOL_SIZE=${POOL_SIZE}
20 |
21 |
--------------------------------------------------------------------------------
/gpt.hurl:
--------------------------------------------------------------------------------
1 | # List all supports model
2 | GET http://127.0.0.1:13000/supports
3 |
4 | # Call Vita model
5 | GET http://127.0.0.1:13000/ask
6 | [QueryStringParams]
7 | site: vita
8 | model: gpt-3.5-turbo
9 | prompt: Tell me a joke about Software Engineering
10 |
11 | GET http://127.0.0.1:13000/ask
12 | [QueryStringParams]
13 | site: chatdemo
14 | model: gpt-3.5-turbo
15 | prompt: Tell me a joke about Software Engineering
16 |
17 | GET http://127.0.0.1:13000/ask
18 | [QueryStringParams]
19 | site: phind
20 | model: net-gpt3.5-turbo
21 | prompt: Tell me a joke about Software Engineering
22 |
23 |
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # GPT 4 Free Changelog
2 |
3 | ## [Initial Version] - 2023-05-15
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/README.md:
--------------------------------------------------------------------------------
1 | # GPT 4 Free
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/assets/command-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jellydn/gpt4free-demo/ca677940286e5a587c704ebcf397784dbc71c8cd/raycast-gpt4free-extension/assets/command-icon.png
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gpt-4-free",
3 | "lockfileVersion": 3,
4 | "requires": true,
5 | "packages": {
6 | "": {
7 | "name": "gpt-4-free",
8 | "license": "MIT",
9 | "dependencies": {
10 | "@raycast/api": "1.99.4",
11 | "node-fetch": "3.3.2"
12 | },
13 | "devDependencies": {
14 | "@raycast/eslint-config": "1.0.11",
15 | "@types/node": "22.15.29",
16 | "@types/react": "18.3.23",
17 | "eslint": "9.28.0",
18 | "prettier": "3.5.3",
19 | "typescript": "5.8.3"
20 | }
21 | },
22 | "node_modules/@esbuild/aix-ppc64": {
23 | "version": "0.25.5",
24 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz",
25 | "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==",
26 | "cpu": [
27 | "ppc64"
28 | ],
29 | "license": "MIT",
30 | "optional": true,
31 | "os": [
32 | "aix"
33 | ],
34 | "engines": {
35 | "node": ">=18"
36 | }
37 | },
38 | "node_modules/@esbuild/android-arm": {
39 | "version": "0.25.5",
40 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz",
41 | "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==",
42 | "cpu": [
43 | "arm"
44 | ],
45 | "license": "MIT",
46 | "optional": true,
47 | "os": [
48 | "android"
49 | ],
50 | "engines": {
51 | "node": ">=18"
52 | }
53 | },
54 | "node_modules/@esbuild/android-arm64": {
55 | "version": "0.25.5",
56 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz",
57 | "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==",
58 | "cpu": [
59 | "arm64"
60 | ],
61 | "license": "MIT",
62 | "optional": true,
63 | "os": [
64 | "android"
65 | ],
66 | "engines": {
67 | "node": ">=18"
68 | }
69 | },
70 | "node_modules/@esbuild/android-x64": {
71 | "version": "0.25.5",
72 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz",
73 | "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==",
74 | "cpu": [
75 | "x64"
76 | ],
77 | "license": "MIT",
78 | "optional": true,
79 | "os": [
80 | "android"
81 | ],
82 | "engines": {
83 | "node": ">=18"
84 | }
85 | },
86 | "node_modules/@esbuild/darwin-arm64": {
87 | "version": "0.25.5",
88 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz",
89 | "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==",
90 | "cpu": [
91 | "arm64"
92 | ],
93 | "license": "MIT",
94 | "optional": true,
95 | "os": [
96 | "darwin"
97 | ],
98 | "engines": {
99 | "node": ">=18"
100 | }
101 | },
102 | "node_modules/@esbuild/darwin-x64": {
103 | "version": "0.25.5",
104 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz",
105 | "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==",
106 | "cpu": [
107 | "x64"
108 | ],
109 | "license": "MIT",
110 | "optional": true,
111 | "os": [
112 | "darwin"
113 | ],
114 | "engines": {
115 | "node": ">=18"
116 | }
117 | },
118 | "node_modules/@esbuild/freebsd-arm64": {
119 | "version": "0.25.5",
120 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz",
121 | "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==",
122 | "cpu": [
123 | "arm64"
124 | ],
125 | "license": "MIT",
126 | "optional": true,
127 | "os": [
128 | "freebsd"
129 | ],
130 | "engines": {
131 | "node": ">=18"
132 | }
133 | },
134 | "node_modules/@esbuild/freebsd-x64": {
135 | "version": "0.25.5",
136 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz",
137 | "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==",
138 | "cpu": [
139 | "x64"
140 | ],
141 | "license": "MIT",
142 | "optional": true,
143 | "os": [
144 | "freebsd"
145 | ],
146 | "engines": {
147 | "node": ">=18"
148 | }
149 | },
150 | "node_modules/@esbuild/linux-arm": {
151 | "version": "0.25.5",
152 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz",
153 | "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==",
154 | "cpu": [
155 | "arm"
156 | ],
157 | "license": "MIT",
158 | "optional": true,
159 | "os": [
160 | "linux"
161 | ],
162 | "engines": {
163 | "node": ">=18"
164 | }
165 | },
166 | "node_modules/@esbuild/linux-arm64": {
167 | "version": "0.25.5",
168 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz",
169 | "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==",
170 | "cpu": [
171 | "arm64"
172 | ],
173 | "license": "MIT",
174 | "optional": true,
175 | "os": [
176 | "linux"
177 | ],
178 | "engines": {
179 | "node": ">=18"
180 | }
181 | },
182 | "node_modules/@esbuild/linux-ia32": {
183 | "version": "0.25.5",
184 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz",
185 | "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==",
186 | "cpu": [
187 | "ia32"
188 | ],
189 | "license": "MIT",
190 | "optional": true,
191 | "os": [
192 | "linux"
193 | ],
194 | "engines": {
195 | "node": ">=18"
196 | }
197 | },
198 | "node_modules/@esbuild/linux-loong64": {
199 | "version": "0.25.5",
200 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz",
201 | "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==",
202 | "cpu": [
203 | "loong64"
204 | ],
205 | "license": "MIT",
206 | "optional": true,
207 | "os": [
208 | "linux"
209 | ],
210 | "engines": {
211 | "node": ">=18"
212 | }
213 | },
214 | "node_modules/@esbuild/linux-mips64el": {
215 | "version": "0.25.5",
216 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz",
217 | "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==",
218 | "cpu": [
219 | "mips64el"
220 | ],
221 | "license": "MIT",
222 | "optional": true,
223 | "os": [
224 | "linux"
225 | ],
226 | "engines": {
227 | "node": ">=18"
228 | }
229 | },
230 | "node_modules/@esbuild/linux-ppc64": {
231 | "version": "0.25.5",
232 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz",
233 | "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==",
234 | "cpu": [
235 | "ppc64"
236 | ],
237 | "license": "MIT",
238 | "optional": true,
239 | "os": [
240 | "linux"
241 | ],
242 | "engines": {
243 | "node": ">=18"
244 | }
245 | },
246 | "node_modules/@esbuild/linux-riscv64": {
247 | "version": "0.25.5",
248 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz",
249 | "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==",
250 | "cpu": [
251 | "riscv64"
252 | ],
253 | "license": "MIT",
254 | "optional": true,
255 | "os": [
256 | "linux"
257 | ],
258 | "engines": {
259 | "node": ">=18"
260 | }
261 | },
262 | "node_modules/@esbuild/linux-s390x": {
263 | "version": "0.25.5",
264 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz",
265 | "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==",
266 | "cpu": [
267 | "s390x"
268 | ],
269 | "license": "MIT",
270 | "optional": true,
271 | "os": [
272 | "linux"
273 | ],
274 | "engines": {
275 | "node": ">=18"
276 | }
277 | },
278 | "node_modules/@esbuild/linux-x64": {
279 | "version": "0.25.5",
280 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz",
281 | "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==",
282 | "cpu": [
283 | "x64"
284 | ],
285 | "license": "MIT",
286 | "optional": true,
287 | "os": [
288 | "linux"
289 | ],
290 | "engines": {
291 | "node": ">=18"
292 | }
293 | },
294 | "node_modules/@esbuild/netbsd-arm64": {
295 | "version": "0.25.5",
296 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz",
297 | "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==",
298 | "cpu": [
299 | "arm64"
300 | ],
301 | "license": "MIT",
302 | "optional": true,
303 | "os": [
304 | "netbsd"
305 | ],
306 | "engines": {
307 | "node": ">=18"
308 | }
309 | },
310 | "node_modules/@esbuild/netbsd-x64": {
311 | "version": "0.25.5",
312 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz",
313 | "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==",
314 | "cpu": [
315 | "x64"
316 | ],
317 | "license": "MIT",
318 | "optional": true,
319 | "os": [
320 | "netbsd"
321 | ],
322 | "engines": {
323 | "node": ">=18"
324 | }
325 | },
326 | "node_modules/@esbuild/openbsd-arm64": {
327 | "version": "0.25.5",
328 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz",
329 | "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==",
330 | "cpu": [
331 | "arm64"
332 | ],
333 | "license": "MIT",
334 | "optional": true,
335 | "os": [
336 | "openbsd"
337 | ],
338 | "engines": {
339 | "node": ">=18"
340 | }
341 | },
342 | "node_modules/@esbuild/openbsd-x64": {
343 | "version": "0.25.5",
344 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz",
345 | "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==",
346 | "cpu": [
347 | "x64"
348 | ],
349 | "license": "MIT",
350 | "optional": true,
351 | "os": [
352 | "openbsd"
353 | ],
354 | "engines": {
355 | "node": ">=18"
356 | }
357 | },
358 | "node_modules/@esbuild/sunos-x64": {
359 | "version": "0.25.5",
360 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz",
361 | "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==",
362 | "cpu": [
363 | "x64"
364 | ],
365 | "license": "MIT",
366 | "optional": true,
367 | "os": [
368 | "sunos"
369 | ],
370 | "engines": {
371 | "node": ">=18"
372 | }
373 | },
374 | "node_modules/@esbuild/win32-arm64": {
375 | "version": "0.25.5",
376 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz",
377 | "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==",
378 | "cpu": [
379 | "arm64"
380 | ],
381 | "license": "MIT",
382 | "optional": true,
383 | "os": [
384 | "win32"
385 | ],
386 | "engines": {
387 | "node": ">=18"
388 | }
389 | },
390 | "node_modules/@esbuild/win32-ia32": {
391 | "version": "0.25.5",
392 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz",
393 | "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==",
394 | "cpu": [
395 | "ia32"
396 | ],
397 | "license": "MIT",
398 | "optional": true,
399 | "os": [
400 | "win32"
401 | ],
402 | "engines": {
403 | "node": ">=18"
404 | }
405 | },
406 | "node_modules/@esbuild/win32-x64": {
407 | "version": "0.25.5",
408 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz",
409 | "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==",
410 | "cpu": [
411 | "x64"
412 | ],
413 | "license": "MIT",
414 | "optional": true,
415 | "os": [
416 | "win32"
417 | ],
418 | "engines": {
419 | "node": ">=18"
420 | }
421 | },
422 | "node_modules/@eslint-community/eslint-utils": {
423 | "version": "4.7.0",
424 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz",
425 | "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==",
426 | "dev": true,
427 | "license": "MIT",
428 | "dependencies": {
429 | "eslint-visitor-keys": "^3.4.3"
430 | },
431 | "engines": {
432 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
433 | },
434 | "funding": {
435 | "url": "https://opencollective.com/eslint"
436 | },
437 | "peerDependencies": {
438 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
439 | }
440 | },
441 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
442 | "version": "3.4.3",
443 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
444 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
445 | "dev": true,
446 | "license": "Apache-2.0",
447 | "engines": {
448 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
449 | },
450 | "funding": {
451 | "url": "https://opencollective.com/eslint"
452 | }
453 | },
454 | "node_modules/@eslint-community/regexpp": {
455 | "version": "4.12.1",
456 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
457 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
458 | "dev": true,
459 | "license": "MIT",
460 | "engines": {
461 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
462 | }
463 | },
464 | "node_modules/@eslint/config-array": {
465 | "version": "0.20.0",
466 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz",
467 | "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==",
468 | "dev": true,
469 | "license": "Apache-2.0",
470 | "dependencies": {
471 | "@eslint/object-schema": "^2.1.6",
472 | "debug": "^4.3.1",
473 | "minimatch": "^3.1.2"
474 | },
475 | "engines": {
476 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
477 | }
478 | },
479 | "node_modules/@eslint/config-array/node_modules/brace-expansion": {
480 | "version": "1.1.11",
481 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
482 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
483 | "dev": true,
484 | "license": "MIT",
485 | "dependencies": {
486 | "balanced-match": "^1.0.0",
487 | "concat-map": "0.0.1"
488 | }
489 | },
490 | "node_modules/@eslint/config-array/node_modules/minimatch": {
491 | "version": "3.1.2",
492 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
493 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
494 | "dev": true,
495 | "license": "ISC",
496 | "dependencies": {
497 | "brace-expansion": "^1.1.7"
498 | },
499 | "engines": {
500 | "node": "*"
501 | }
502 | },
503 | "node_modules/@eslint/config-helpers": {
504 | "version": "0.2.2",
505 | "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.2.tgz",
506 | "integrity": "sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==",
507 | "dev": true,
508 | "license": "Apache-2.0",
509 | "engines": {
510 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
511 | }
512 | },
513 | "node_modules/@eslint/core": {
514 | "version": "0.14.0",
515 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.14.0.tgz",
516 | "integrity": "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==",
517 | "dev": true,
518 | "license": "Apache-2.0",
519 | "dependencies": {
520 | "@types/json-schema": "^7.0.15"
521 | },
522 | "engines": {
523 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
524 | }
525 | },
526 | "node_modules/@eslint/eslintrc": {
527 | "version": "3.3.1",
528 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
529 | "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
530 | "dev": true,
531 | "license": "MIT",
532 | "dependencies": {
533 | "ajv": "^6.12.4",
534 | "debug": "^4.3.2",
535 | "espree": "^10.0.1",
536 | "globals": "^14.0.0",
537 | "ignore": "^5.2.0",
538 | "import-fresh": "^3.2.1",
539 | "js-yaml": "^4.1.0",
540 | "minimatch": "^3.1.2",
541 | "strip-json-comments": "^3.1.1"
542 | },
543 | "engines": {
544 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
545 | },
546 | "funding": {
547 | "url": "https://opencollective.com/eslint"
548 | }
549 | },
550 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
551 | "version": "1.1.11",
552 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
553 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
554 | "dev": true,
555 | "license": "MIT",
556 | "dependencies": {
557 | "balanced-match": "^1.0.0",
558 | "concat-map": "0.0.1"
559 | }
560 | },
561 | "node_modules/@eslint/eslintrc/node_modules/minimatch": {
562 | "version": "3.1.2",
563 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
564 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
565 | "dev": true,
566 | "license": "ISC",
567 | "dependencies": {
568 | "brace-expansion": "^1.1.7"
569 | },
570 | "engines": {
571 | "node": "*"
572 | }
573 | },
574 | "node_modules/@eslint/js": {
575 | "version": "9.28.0",
576 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.28.0.tgz",
577 | "integrity": "sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==",
578 | "dev": true,
579 | "license": "MIT",
580 | "engines": {
581 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
582 | },
583 | "funding": {
584 | "url": "https://eslint.org/donate"
585 | }
586 | },
587 | "node_modules/@eslint/object-schema": {
588 | "version": "2.1.6",
589 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
590 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
591 | "dev": true,
592 | "license": "Apache-2.0",
593 | "engines": {
594 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
595 | }
596 | },
597 | "node_modules/@eslint/plugin-kit": {
598 | "version": "0.3.1",
599 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.1.tgz",
600 | "integrity": "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==",
601 | "dev": true,
602 | "license": "Apache-2.0",
603 | "dependencies": {
604 | "@eslint/core": "^0.14.0",
605 | "levn": "^0.4.1"
606 | },
607 | "engines": {
608 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
609 | }
610 | },
611 | "node_modules/@humanfs/core": {
612 | "version": "0.19.1",
613 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
614 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
615 | "dev": true,
616 | "license": "Apache-2.0",
617 | "engines": {
618 | "node": ">=18.18.0"
619 | }
620 | },
621 | "node_modules/@humanfs/node": {
622 | "version": "0.16.6",
623 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
624 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
625 | "dev": true,
626 | "license": "Apache-2.0",
627 | "dependencies": {
628 | "@humanfs/core": "^0.19.1",
629 | "@humanwhocodes/retry": "^0.3.0"
630 | },
631 | "engines": {
632 | "node": ">=18.18.0"
633 | }
634 | },
635 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
636 | "version": "0.3.1",
637 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
638 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
639 | "dev": true,
640 | "license": "Apache-2.0",
641 | "engines": {
642 | "node": ">=18.18"
643 | },
644 | "funding": {
645 | "type": "github",
646 | "url": "https://github.com/sponsors/nzakas"
647 | }
648 | },
649 | "node_modules/@humanwhocodes/module-importer": {
650 | "version": "1.0.1",
651 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
652 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
653 | "dev": true,
654 | "license": "Apache-2.0",
655 | "engines": {
656 | "node": ">=12.22"
657 | },
658 | "funding": {
659 | "type": "github",
660 | "url": "https://github.com/sponsors/nzakas"
661 | }
662 | },
663 | "node_modules/@humanwhocodes/retry": {
664 | "version": "0.4.3",
665 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
666 | "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
667 | "dev": true,
668 | "license": "Apache-2.0",
669 | "engines": {
670 | "node": ">=18.18"
671 | },
672 | "funding": {
673 | "type": "github",
674 | "url": "https://github.com/sponsors/nzakas"
675 | }
676 | },
677 | "node_modules/@inquirer/checkbox": {
678 | "version": "4.1.8",
679 | "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.1.8.tgz",
680 | "integrity": "sha512-d/QAsnwuHX2OPolxvYcgSj7A9DO9H6gVOy2DvBTx+P2LH2iRTo/RSGV3iwCzW024nP9hw98KIuDmdyhZQj1UQg==",
681 | "license": "MIT",
682 | "dependencies": {
683 | "@inquirer/core": "^10.1.13",
684 | "@inquirer/figures": "^1.0.12",
685 | "@inquirer/type": "^3.0.7",
686 | "ansi-escapes": "^4.3.2",
687 | "yoctocolors-cjs": "^2.1.2"
688 | },
689 | "engines": {
690 | "node": ">=18"
691 | },
692 | "peerDependencies": {
693 | "@types/node": ">=18"
694 | },
695 | "peerDependenciesMeta": {
696 | "@types/node": {
697 | "optional": true
698 | }
699 | }
700 | },
701 | "node_modules/@inquirer/confirm": {
702 | "version": "5.1.12",
703 | "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.12.tgz",
704 | "integrity": "sha512-dpq+ielV9/bqgXRUbNH//KsY6WEw9DrGPmipkpmgC1Y46cwuBTNx7PXFWTjc3MQ+urcc0QxoVHcMI0FW4Ok0hg==",
705 | "license": "MIT",
706 | "dependencies": {
707 | "@inquirer/core": "^10.1.13",
708 | "@inquirer/type": "^3.0.7"
709 | },
710 | "engines": {
711 | "node": ">=18"
712 | },
713 | "peerDependencies": {
714 | "@types/node": ">=18"
715 | },
716 | "peerDependenciesMeta": {
717 | "@types/node": {
718 | "optional": true
719 | }
720 | }
721 | },
722 | "node_modules/@inquirer/core": {
723 | "version": "10.1.13",
724 | "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.13.tgz",
725 | "integrity": "sha512-1viSxebkYN2nJULlzCxES6G9/stgHSepZ9LqqfdIGPHj5OHhiBUXVS0a6R0bEC2A+VL4D9w6QB66ebCr6HGllA==",
726 | "license": "MIT",
727 | "dependencies": {
728 | "@inquirer/figures": "^1.0.12",
729 | "@inquirer/type": "^3.0.7",
730 | "ansi-escapes": "^4.3.2",
731 | "cli-width": "^4.1.0",
732 | "mute-stream": "^2.0.0",
733 | "signal-exit": "^4.1.0",
734 | "wrap-ansi": "^6.2.0",
735 | "yoctocolors-cjs": "^2.1.2"
736 | },
737 | "engines": {
738 | "node": ">=18"
739 | },
740 | "peerDependencies": {
741 | "@types/node": ">=18"
742 | },
743 | "peerDependenciesMeta": {
744 | "@types/node": {
745 | "optional": true
746 | }
747 | }
748 | },
749 | "node_modules/@inquirer/core/node_modules/wrap-ansi": {
750 | "version": "6.2.0",
751 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
752 | "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
753 | "license": "MIT",
754 | "dependencies": {
755 | "ansi-styles": "^4.0.0",
756 | "string-width": "^4.1.0",
757 | "strip-ansi": "^6.0.0"
758 | },
759 | "engines": {
760 | "node": ">=8"
761 | }
762 | },
763 | "node_modules/@inquirer/editor": {
764 | "version": "4.2.13",
765 | "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.13.tgz",
766 | "integrity": "sha512-WbicD9SUQt/K8O5Vyk9iC2ojq5RHoCLK6itpp2fHsWe44VxxcA9z3GTWlvjSTGmMQpZr+lbVmrxdHcumJoLbMA==",
767 | "license": "MIT",
768 | "dependencies": {
769 | "@inquirer/core": "^10.1.13",
770 | "@inquirer/type": "^3.0.7",
771 | "external-editor": "^3.1.0"
772 | },
773 | "engines": {
774 | "node": ">=18"
775 | },
776 | "peerDependencies": {
777 | "@types/node": ">=18"
778 | },
779 | "peerDependenciesMeta": {
780 | "@types/node": {
781 | "optional": true
782 | }
783 | }
784 | },
785 | "node_modules/@inquirer/expand": {
786 | "version": "4.0.15",
787 | "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.15.tgz",
788 | "integrity": "sha512-4Y+pbr/U9Qcvf+N/goHzPEXiHH8680lM3Dr3Y9h9FFw4gHS+zVpbj8LfbKWIb/jayIB4aSO4pWiBTrBYWkvi5A==",
789 | "license": "MIT",
790 | "dependencies": {
791 | "@inquirer/core": "^10.1.13",
792 | "@inquirer/type": "^3.0.7",
793 | "yoctocolors-cjs": "^2.1.2"
794 | },
795 | "engines": {
796 | "node": ">=18"
797 | },
798 | "peerDependencies": {
799 | "@types/node": ">=18"
800 | },
801 | "peerDependenciesMeta": {
802 | "@types/node": {
803 | "optional": true
804 | }
805 | }
806 | },
807 | "node_modules/@inquirer/figures": {
808 | "version": "1.0.12",
809 | "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.12.tgz",
810 | "integrity": "sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==",
811 | "license": "MIT",
812 | "engines": {
813 | "node": ">=18"
814 | }
815 | },
816 | "node_modules/@inquirer/input": {
817 | "version": "4.1.12",
818 | "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.12.tgz",
819 | "integrity": "sha512-xJ6PFZpDjC+tC1P8ImGprgcsrzQRsUh9aH3IZixm1lAZFK49UGHxM3ltFfuInN2kPYNfyoPRh+tU4ftsjPLKqQ==",
820 | "license": "MIT",
821 | "dependencies": {
822 | "@inquirer/core": "^10.1.13",
823 | "@inquirer/type": "^3.0.7"
824 | },
825 | "engines": {
826 | "node": ">=18"
827 | },
828 | "peerDependencies": {
829 | "@types/node": ">=18"
830 | },
831 | "peerDependenciesMeta": {
832 | "@types/node": {
833 | "optional": true
834 | }
835 | }
836 | },
837 | "node_modules/@inquirer/number": {
838 | "version": "3.0.15",
839 | "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.15.tgz",
840 | "integrity": "sha512-xWg+iYfqdhRiM55MvqiTCleHzszpoigUpN5+t1OMcRkJrUrw7va3AzXaxvS+Ak7Gny0j2mFSTv2JJj8sMtbV2g==",
841 | "license": "MIT",
842 | "dependencies": {
843 | "@inquirer/core": "^10.1.13",
844 | "@inquirer/type": "^3.0.7"
845 | },
846 | "engines": {
847 | "node": ">=18"
848 | },
849 | "peerDependencies": {
850 | "@types/node": ">=18"
851 | },
852 | "peerDependenciesMeta": {
853 | "@types/node": {
854 | "optional": true
855 | }
856 | }
857 | },
858 | "node_modules/@inquirer/password": {
859 | "version": "4.0.15",
860 | "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.15.tgz",
861 | "integrity": "sha512-75CT2p43DGEnfGTaqFpbDC2p2EEMrq0S+IRrf9iJvYreMy5mAWj087+mdKyLHapUEPLjN10mNvABpGbk8Wdraw==",
862 | "license": "MIT",
863 | "dependencies": {
864 | "@inquirer/core": "^10.1.13",
865 | "@inquirer/type": "^3.0.7",
866 | "ansi-escapes": "^4.3.2"
867 | },
868 | "engines": {
869 | "node": ">=18"
870 | },
871 | "peerDependencies": {
872 | "@types/node": ">=18"
873 | },
874 | "peerDependenciesMeta": {
875 | "@types/node": {
876 | "optional": true
877 | }
878 | }
879 | },
880 | "node_modules/@inquirer/prompts": {
881 | "version": "7.5.3",
882 | "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.5.3.tgz",
883 | "integrity": "sha512-8YL0WiV7J86hVAxrh3fE5mDCzcTDe1670unmJRz6ArDgN+DBK1a0+rbnNWp4DUB5rPMwqD5ZP6YHl9KK1mbZRg==",
884 | "license": "MIT",
885 | "dependencies": {
886 | "@inquirer/checkbox": "^4.1.8",
887 | "@inquirer/confirm": "^5.1.12",
888 | "@inquirer/editor": "^4.2.13",
889 | "@inquirer/expand": "^4.0.15",
890 | "@inquirer/input": "^4.1.12",
891 | "@inquirer/number": "^3.0.15",
892 | "@inquirer/password": "^4.0.15",
893 | "@inquirer/rawlist": "^4.1.3",
894 | "@inquirer/search": "^3.0.15",
895 | "@inquirer/select": "^4.2.3"
896 | },
897 | "engines": {
898 | "node": ">=18"
899 | },
900 | "peerDependencies": {
901 | "@types/node": ">=18"
902 | },
903 | "peerDependenciesMeta": {
904 | "@types/node": {
905 | "optional": true
906 | }
907 | }
908 | },
909 | "node_modules/@inquirer/rawlist": {
910 | "version": "4.1.3",
911 | "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.3.tgz",
912 | "integrity": "sha512-7XrV//6kwYumNDSsvJIPeAqa8+p7GJh7H5kRuxirct2cgOcSWwwNGoXDRgpNFbY/MG2vQ4ccIWCi8+IXXyFMZA==",
913 | "license": "MIT",
914 | "dependencies": {
915 | "@inquirer/core": "^10.1.13",
916 | "@inquirer/type": "^3.0.7",
917 | "yoctocolors-cjs": "^2.1.2"
918 | },
919 | "engines": {
920 | "node": ">=18"
921 | },
922 | "peerDependencies": {
923 | "@types/node": ">=18"
924 | },
925 | "peerDependenciesMeta": {
926 | "@types/node": {
927 | "optional": true
928 | }
929 | }
930 | },
931 | "node_modules/@inquirer/search": {
932 | "version": "3.0.15",
933 | "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.0.15.tgz",
934 | "integrity": "sha512-YBMwPxYBrADqyvP4nNItpwkBnGGglAvCLVW8u4pRmmvOsHUtCAUIMbUrLX5B3tFL1/WsLGdQ2HNzkqswMs5Uaw==",
935 | "license": "MIT",
936 | "dependencies": {
937 | "@inquirer/core": "^10.1.13",
938 | "@inquirer/figures": "^1.0.12",
939 | "@inquirer/type": "^3.0.7",
940 | "yoctocolors-cjs": "^2.1.2"
941 | },
942 | "engines": {
943 | "node": ">=18"
944 | },
945 | "peerDependencies": {
946 | "@types/node": ">=18"
947 | },
948 | "peerDependenciesMeta": {
949 | "@types/node": {
950 | "optional": true
951 | }
952 | }
953 | },
954 | "node_modules/@inquirer/select": {
955 | "version": "4.2.3",
956 | "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.2.3.tgz",
957 | "integrity": "sha512-OAGhXU0Cvh0PhLz9xTF/kx6g6x+sP+PcyTiLvCrewI99P3BBeexD+VbuwkNDvqGkk3y2h5ZiWLeRP7BFlhkUDg==",
958 | "license": "MIT",
959 | "dependencies": {
960 | "@inquirer/core": "^10.1.13",
961 | "@inquirer/figures": "^1.0.12",
962 | "@inquirer/type": "^3.0.7",
963 | "ansi-escapes": "^4.3.2",
964 | "yoctocolors-cjs": "^2.1.2"
965 | },
966 | "engines": {
967 | "node": ">=18"
968 | },
969 | "peerDependencies": {
970 | "@types/node": ">=18"
971 | },
972 | "peerDependenciesMeta": {
973 | "@types/node": {
974 | "optional": true
975 | }
976 | }
977 | },
978 | "node_modules/@inquirer/type": {
979 | "version": "3.0.7",
980 | "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.7.tgz",
981 | "integrity": "sha512-PfunHQcjwnju84L+ycmcMKB/pTPIngjUJvfnRhKY6FKPuYXlM4aQCb/nIdTFR6BEhMjFvngzvng/vBAJMZpLSA==",
982 | "license": "MIT",
983 | "engines": {
984 | "node": ">=18"
985 | },
986 | "peerDependencies": {
987 | "@types/node": ">=18"
988 | },
989 | "peerDependenciesMeta": {
990 | "@types/node": {
991 | "optional": true
992 | }
993 | }
994 | },
995 | "node_modules/@nodelib/fs.scandir": {
996 | "version": "2.1.5",
997 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
998 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
999 | "license": "MIT",
1000 | "dependencies": {
1001 | "@nodelib/fs.stat": "2.0.5",
1002 | "run-parallel": "^1.1.9"
1003 | },
1004 | "engines": {
1005 | "node": ">= 8"
1006 | }
1007 | },
1008 | "node_modules/@nodelib/fs.stat": {
1009 | "version": "2.0.5",
1010 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1011 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1012 | "license": "MIT",
1013 | "engines": {
1014 | "node": ">= 8"
1015 | }
1016 | },
1017 | "node_modules/@nodelib/fs.walk": {
1018 | "version": "1.2.8",
1019 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1020 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1021 | "license": "MIT",
1022 | "dependencies": {
1023 | "@nodelib/fs.scandir": "2.1.5",
1024 | "fastq": "^1.6.0"
1025 | },
1026 | "engines": {
1027 | "node": ">= 8"
1028 | }
1029 | },
1030 | "node_modules/@oclif/core": {
1031 | "version": "4.3.0",
1032 | "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.3.0.tgz",
1033 | "integrity": "sha512-lIzHY+JMP6evrS5E/sGijNnwrCoNtGy8703jWXcMuPOYKiFhWoAqnIm1BGgoRgmxczkbSfRsHUL/lwsSgh74Lw==",
1034 | "license": "MIT",
1035 | "dependencies": {
1036 | "ansi-escapes": "^4.3.2",
1037 | "ansis": "^3.17.0",
1038 | "clean-stack": "^3.0.1",
1039 | "cli-spinners": "^2.9.2",
1040 | "debug": "^4.4.0",
1041 | "ejs": "^3.1.10",
1042 | "get-package-type": "^0.1.0",
1043 | "globby": "^11.1.0",
1044 | "indent-string": "^4.0.0",
1045 | "is-wsl": "^2.2.0",
1046 | "lilconfig": "^3.1.3",
1047 | "minimatch": "^9.0.5",
1048 | "semver": "^7.6.3",
1049 | "string-width": "^4.2.3",
1050 | "supports-color": "^8",
1051 | "widest-line": "^3.1.0",
1052 | "wordwrap": "^1.0.0",
1053 | "wrap-ansi": "^7.0.0"
1054 | },
1055 | "engines": {
1056 | "node": ">=18.0.0"
1057 | }
1058 | },
1059 | "node_modules/@oclif/plugin-autocomplete": {
1060 | "version": "3.2.29",
1061 | "resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.29.tgz",
1062 | "integrity": "sha512-uQqcT4yVDqj4e/AAF+E2wT3A/QAbbPh/ov9lBhLCFB5GFJR3ixOMUFdZg7yQua5VjfvvnNSWkE879wdM4k+rGw==",
1063 | "license": "MIT",
1064 | "dependencies": {
1065 | "@oclif/core": "^4",
1066 | "ansis": "^3.16.0",
1067 | "debug": "^4.4.1",
1068 | "ejs": "^3.1.10"
1069 | },
1070 | "engines": {
1071 | "node": ">=18.0.0"
1072 | }
1073 | },
1074 | "node_modules/@oclif/plugin-help": {
1075 | "version": "6.2.28",
1076 | "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.2.28.tgz",
1077 | "integrity": "sha512-eFLP2yjiK+xMRGcv9k9jOWV08HB+/Cgg1ND91zS4Uwgp1krMoL39Is+hIqnZOKkmiEMtiv8k5EDqCVv+DTRywg==",
1078 | "license": "MIT",
1079 | "dependencies": {
1080 | "@oclif/core": "^4"
1081 | },
1082 | "engines": {
1083 | "node": ">=18.0.0"
1084 | }
1085 | },
1086 | "node_modules/@oclif/plugin-not-found": {
1087 | "version": "3.2.55",
1088 | "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.2.55.tgz",
1089 | "integrity": "sha512-+zgaRKoDsq431UyR/rOlJFDa6zdFkaNenQnLecrUWt9y9bwvw6Bs+mkQymAUJZCd9+JS4sZwqUilONXxU9g6DQ==",
1090 | "license": "MIT",
1091 | "dependencies": {
1092 | "@inquirer/prompts": "^7.5.3",
1093 | "@oclif/core": "^4",
1094 | "ansis": "^3.17.0",
1095 | "fast-levenshtein": "^3.0.0"
1096 | },
1097 | "engines": {
1098 | "node": ">=18.0.0"
1099 | }
1100 | },
1101 | "node_modules/@raycast/api": {
1102 | "version": "1.99.4",
1103 | "resolved": "https://registry.npmjs.org/@raycast/api/-/api-1.99.4.tgz",
1104 | "integrity": "sha512-y4DRxCvXchkFaHYrDAv0rR5kOx+WRDPdcqnb1tA2DYyfZ0AD01JvQkn9HIXZKqEqrMA0tEJDql2x4ATXR1fA1g==",
1105 | "license": "MIT",
1106 | "dependencies": {
1107 | "@oclif/core": "^4.0.33",
1108 | "@oclif/plugin-autocomplete": "^3.2.10",
1109 | "@oclif/plugin-help": "^6.2.18",
1110 | "@oclif/plugin-not-found": "^3.2.28",
1111 | "@types/node": "22.13.10",
1112 | "@types/react": "19.0.10",
1113 | "esbuild": "^0.25.1",
1114 | "react": "19.0.0"
1115 | },
1116 | "bin": {
1117 | "ray": "bin/run.js"
1118 | },
1119 | "engines": {
1120 | "node": ">=22.14.0"
1121 | },
1122 | "peerDependencies": {
1123 | "@types/node": "22.13.10",
1124 | "@types/react": "19.0.10",
1125 | "react-devtools": "6.1.1"
1126 | },
1127 | "peerDependenciesMeta": {
1128 | "@types/node": {
1129 | "optional": true
1130 | },
1131 | "@types/react": {
1132 | "optional": true
1133 | },
1134 | "react-devtools": {
1135 | "optional": true
1136 | }
1137 | }
1138 | },
1139 | "node_modules/@raycast/api/node_modules/@types/node": {
1140 | "version": "22.13.10",
1141 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz",
1142 | "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==",
1143 | "license": "MIT",
1144 | "dependencies": {
1145 | "undici-types": "~6.20.0"
1146 | }
1147 | },
1148 | "node_modules/@raycast/api/node_modules/@types/react": {
1149 | "version": "19.0.10",
1150 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.10.tgz",
1151 | "integrity": "sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==",
1152 | "license": "MIT",
1153 | "dependencies": {
1154 | "csstype": "^3.0.2"
1155 | }
1156 | },
1157 | "node_modules/@raycast/api/node_modules/undici-types": {
1158 | "version": "6.20.0",
1159 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
1160 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
1161 | "license": "MIT"
1162 | },
1163 | "node_modules/@raycast/eslint-config": {
1164 | "version": "1.0.11",
1165 | "resolved": "https://registry.npmjs.org/@raycast/eslint-config/-/eslint-config-1.0.11.tgz",
1166 | "integrity": "sha512-I0Lt8bwahVGkANUBxripIxKptMBz1Ou+UXGwfqgFvKwo1gVLrnlEngxaspQJA8L5pvzQkQMwizVCSgNC3bddWg==",
1167 | "dev": true,
1168 | "license": "MIT",
1169 | "dependencies": {
1170 | "@raycast/eslint-plugin": "^1.0.11",
1171 | "@rushstack/eslint-patch": "^1.10.4",
1172 | "@typescript-eslint/eslint-plugin": "^6.8.0",
1173 | "@typescript-eslint/parser": "^6.8.0",
1174 | "eslint-config-prettier": "^9.1.0"
1175 | },
1176 | "peerDependencies": {
1177 | "eslint": ">=7",
1178 | "prettier": ">=2",
1179 | "typescript": ">=4"
1180 | }
1181 | },
1182 | "node_modules/@raycast/eslint-config/node_modules/@typescript-eslint/eslint-plugin": {
1183 | "version": "6.21.0",
1184 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz",
1185 | "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==",
1186 | "dev": true,
1187 | "license": "MIT",
1188 | "dependencies": {
1189 | "@eslint-community/regexpp": "^4.5.1",
1190 | "@typescript-eslint/scope-manager": "6.21.0",
1191 | "@typescript-eslint/type-utils": "6.21.0",
1192 | "@typescript-eslint/utils": "6.21.0",
1193 | "@typescript-eslint/visitor-keys": "6.21.0",
1194 | "debug": "^4.3.4",
1195 | "graphemer": "^1.4.0",
1196 | "ignore": "^5.2.4",
1197 | "natural-compare": "^1.4.0",
1198 | "semver": "^7.5.4",
1199 | "ts-api-utils": "^1.0.1"
1200 | },
1201 | "engines": {
1202 | "node": "^16.0.0 || >=18.0.0"
1203 | },
1204 | "funding": {
1205 | "type": "opencollective",
1206 | "url": "https://opencollective.com/typescript-eslint"
1207 | },
1208 | "peerDependencies": {
1209 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha",
1210 | "eslint": "^7.0.0 || ^8.0.0"
1211 | },
1212 | "peerDependenciesMeta": {
1213 | "typescript": {
1214 | "optional": true
1215 | }
1216 | }
1217 | },
1218 | "node_modules/@raycast/eslint-config/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": {
1219 | "version": "6.21.0",
1220 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz",
1221 | "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==",
1222 | "dev": true,
1223 | "license": "MIT",
1224 | "dependencies": {
1225 | "@typescript-eslint/typescript-estree": "6.21.0",
1226 | "@typescript-eslint/utils": "6.21.0",
1227 | "debug": "^4.3.4",
1228 | "ts-api-utils": "^1.0.1"
1229 | },
1230 | "engines": {
1231 | "node": "^16.0.0 || >=18.0.0"
1232 | },
1233 | "funding": {
1234 | "type": "opencollective",
1235 | "url": "https://opencollective.com/typescript-eslint"
1236 | },
1237 | "peerDependencies": {
1238 | "eslint": "^7.0.0 || ^8.0.0"
1239 | },
1240 | "peerDependenciesMeta": {
1241 | "typescript": {
1242 | "optional": true
1243 | }
1244 | }
1245 | },
1246 | "node_modules/@raycast/eslint-config/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": {
1247 | "version": "6.21.0",
1248 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz",
1249 | "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==",
1250 | "dev": true,
1251 | "license": "MIT",
1252 | "dependencies": {
1253 | "@eslint-community/eslint-utils": "^4.4.0",
1254 | "@types/json-schema": "^7.0.12",
1255 | "@types/semver": "^7.5.0",
1256 | "@typescript-eslint/scope-manager": "6.21.0",
1257 | "@typescript-eslint/types": "6.21.0",
1258 | "@typescript-eslint/typescript-estree": "6.21.0",
1259 | "semver": "^7.5.4"
1260 | },
1261 | "engines": {
1262 | "node": "^16.0.0 || >=18.0.0"
1263 | },
1264 | "funding": {
1265 | "type": "opencollective",
1266 | "url": "https://opencollective.com/typescript-eslint"
1267 | },
1268 | "peerDependencies": {
1269 | "eslint": "^7.0.0 || ^8.0.0"
1270 | }
1271 | },
1272 | "node_modules/@raycast/eslint-config/node_modules/@typescript-eslint/parser": {
1273 | "version": "6.21.0",
1274 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz",
1275 | "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==",
1276 | "dev": true,
1277 | "license": "BSD-2-Clause",
1278 | "dependencies": {
1279 | "@typescript-eslint/scope-manager": "6.21.0",
1280 | "@typescript-eslint/types": "6.21.0",
1281 | "@typescript-eslint/typescript-estree": "6.21.0",
1282 | "@typescript-eslint/visitor-keys": "6.21.0",
1283 | "debug": "^4.3.4"
1284 | },
1285 | "engines": {
1286 | "node": "^16.0.0 || >=18.0.0"
1287 | },
1288 | "funding": {
1289 | "type": "opencollective",
1290 | "url": "https://opencollective.com/typescript-eslint"
1291 | },
1292 | "peerDependencies": {
1293 | "eslint": "^7.0.0 || ^8.0.0"
1294 | },
1295 | "peerDependenciesMeta": {
1296 | "typescript": {
1297 | "optional": true
1298 | }
1299 | }
1300 | },
1301 | "node_modules/@raycast/eslint-plugin": {
1302 | "version": "1.0.16",
1303 | "resolved": "https://registry.npmjs.org/@raycast/eslint-plugin/-/eslint-plugin-1.0.16.tgz",
1304 | "integrity": "sha512-OyFL/W75/4hlgdUUI80Eoes0HjpVrJ8I1kB/PBH2RLjbcK22TC6IwZPXvhBZ5jF962O1TqtOuHrTjySwDaa/cQ==",
1305 | "dev": true,
1306 | "license": "MIT",
1307 | "dependencies": {
1308 | "@typescript-eslint/utils": "^5.62.0"
1309 | },
1310 | "peerDependencies": {
1311 | "eslint": ">=7"
1312 | }
1313 | },
1314 | "node_modules/@raycast/eslint-plugin/node_modules/@typescript-eslint/scope-manager": {
1315 | "version": "5.62.0",
1316 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
1317 | "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
1318 | "dev": true,
1319 | "license": "MIT",
1320 | "dependencies": {
1321 | "@typescript-eslint/types": "5.62.0",
1322 | "@typescript-eslint/visitor-keys": "5.62.0"
1323 | },
1324 | "engines": {
1325 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1326 | },
1327 | "funding": {
1328 | "type": "opencollective",
1329 | "url": "https://opencollective.com/typescript-eslint"
1330 | }
1331 | },
1332 | "node_modules/@raycast/eslint-plugin/node_modules/@typescript-eslint/types": {
1333 | "version": "5.62.0",
1334 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
1335 | "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
1336 | "dev": true,
1337 | "license": "MIT",
1338 | "engines": {
1339 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1340 | },
1341 | "funding": {
1342 | "type": "opencollective",
1343 | "url": "https://opencollective.com/typescript-eslint"
1344 | }
1345 | },
1346 | "node_modules/@raycast/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": {
1347 | "version": "5.62.0",
1348 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
1349 | "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
1350 | "dev": true,
1351 | "license": "BSD-2-Clause",
1352 | "dependencies": {
1353 | "@typescript-eslint/types": "5.62.0",
1354 | "@typescript-eslint/visitor-keys": "5.62.0",
1355 | "debug": "^4.3.4",
1356 | "globby": "^11.1.0",
1357 | "is-glob": "^4.0.3",
1358 | "semver": "^7.3.7",
1359 | "tsutils": "^3.21.0"
1360 | },
1361 | "engines": {
1362 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1363 | },
1364 | "funding": {
1365 | "type": "opencollective",
1366 | "url": "https://opencollective.com/typescript-eslint"
1367 | },
1368 | "peerDependenciesMeta": {
1369 | "typescript": {
1370 | "optional": true
1371 | }
1372 | }
1373 | },
1374 | "node_modules/@raycast/eslint-plugin/node_modules/@typescript-eslint/utils": {
1375 | "version": "5.62.0",
1376 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz",
1377 | "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==",
1378 | "dev": true,
1379 | "license": "MIT",
1380 | "dependencies": {
1381 | "@eslint-community/eslint-utils": "^4.2.0",
1382 | "@types/json-schema": "^7.0.9",
1383 | "@types/semver": "^7.3.12",
1384 | "@typescript-eslint/scope-manager": "5.62.0",
1385 | "@typescript-eslint/types": "5.62.0",
1386 | "@typescript-eslint/typescript-estree": "5.62.0",
1387 | "eslint-scope": "^5.1.1",
1388 | "semver": "^7.3.7"
1389 | },
1390 | "engines": {
1391 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1392 | },
1393 | "funding": {
1394 | "type": "opencollective",
1395 | "url": "https://opencollective.com/typescript-eslint"
1396 | },
1397 | "peerDependencies": {
1398 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
1399 | }
1400 | },
1401 | "node_modules/@raycast/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": {
1402 | "version": "5.62.0",
1403 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
1404 | "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
1405 | "dev": true,
1406 | "license": "MIT",
1407 | "dependencies": {
1408 | "@typescript-eslint/types": "5.62.0",
1409 | "eslint-visitor-keys": "^3.3.0"
1410 | },
1411 | "engines": {
1412 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1413 | },
1414 | "funding": {
1415 | "type": "opencollective",
1416 | "url": "https://opencollective.com/typescript-eslint"
1417 | }
1418 | },
1419 | "node_modules/@raycast/eslint-plugin/node_modules/eslint-scope": {
1420 | "version": "5.1.1",
1421 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
1422 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
1423 | "dev": true,
1424 | "license": "BSD-2-Clause",
1425 | "dependencies": {
1426 | "esrecurse": "^4.3.0",
1427 | "estraverse": "^4.1.1"
1428 | },
1429 | "engines": {
1430 | "node": ">=8.0.0"
1431 | }
1432 | },
1433 | "node_modules/@raycast/eslint-plugin/node_modules/eslint-visitor-keys": {
1434 | "version": "3.4.3",
1435 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1436 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1437 | "dev": true,
1438 | "license": "Apache-2.0",
1439 | "engines": {
1440 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1441 | },
1442 | "funding": {
1443 | "url": "https://opencollective.com/eslint"
1444 | }
1445 | },
1446 | "node_modules/@raycast/eslint-plugin/node_modules/estraverse": {
1447 | "version": "4.3.0",
1448 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
1449 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
1450 | "dev": true,
1451 | "license": "BSD-2-Clause",
1452 | "engines": {
1453 | "node": ">=4.0"
1454 | }
1455 | },
1456 | "node_modules/@rushstack/eslint-patch": {
1457 | "version": "1.11.0",
1458 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.11.0.tgz",
1459 | "integrity": "sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==",
1460 | "dev": true,
1461 | "license": "MIT"
1462 | },
1463 | "node_modules/@types/estree": {
1464 | "version": "1.0.7",
1465 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
1466 | "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
1467 | "dev": true,
1468 | "license": "MIT"
1469 | },
1470 | "node_modules/@types/json-schema": {
1471 | "version": "7.0.15",
1472 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1473 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1474 | "dev": true,
1475 | "license": "MIT"
1476 | },
1477 | "node_modules/@types/node": {
1478 | "version": "22.15.29",
1479 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.29.tgz",
1480 | "integrity": "sha512-LNdjOkUDlU1RZb8e1kOIUpN1qQUlzGkEtbVNo53vbrwDg5om6oduhm4SiUaPW5ASTXhAiP0jInWG8Qx9fVlOeQ==",
1481 | "devOptional": true,
1482 | "license": "MIT",
1483 | "dependencies": {
1484 | "undici-types": "~6.21.0"
1485 | }
1486 | },
1487 | "node_modules/@types/prop-types": {
1488 | "version": "15.7.14",
1489 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
1490 | "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
1491 | "dev": true,
1492 | "license": "MIT"
1493 | },
1494 | "node_modules/@types/react": {
1495 | "version": "18.3.23",
1496 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz",
1497 | "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==",
1498 | "dev": true,
1499 | "license": "MIT",
1500 | "dependencies": {
1501 | "@types/prop-types": "*",
1502 | "csstype": "^3.0.2"
1503 | }
1504 | },
1505 | "node_modules/@types/semver": {
1506 | "version": "7.7.0",
1507 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz",
1508 | "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==",
1509 | "dev": true,
1510 | "license": "MIT"
1511 | },
1512 | "node_modules/@typescript-eslint/scope-manager": {
1513 | "version": "6.21.0",
1514 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz",
1515 | "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==",
1516 | "dev": true,
1517 | "license": "MIT",
1518 | "dependencies": {
1519 | "@typescript-eslint/types": "6.21.0",
1520 | "@typescript-eslint/visitor-keys": "6.21.0"
1521 | },
1522 | "engines": {
1523 | "node": "^16.0.0 || >=18.0.0"
1524 | },
1525 | "funding": {
1526 | "type": "opencollective",
1527 | "url": "https://opencollective.com/typescript-eslint"
1528 | }
1529 | },
1530 | "node_modules/@typescript-eslint/types": {
1531 | "version": "6.21.0",
1532 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz",
1533 | "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==",
1534 | "dev": true,
1535 | "license": "MIT",
1536 | "engines": {
1537 | "node": "^16.0.0 || >=18.0.0"
1538 | },
1539 | "funding": {
1540 | "type": "opencollective",
1541 | "url": "https://opencollective.com/typescript-eslint"
1542 | }
1543 | },
1544 | "node_modules/@typescript-eslint/typescript-estree": {
1545 | "version": "6.21.0",
1546 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz",
1547 | "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==",
1548 | "dev": true,
1549 | "license": "BSD-2-Clause",
1550 | "dependencies": {
1551 | "@typescript-eslint/types": "6.21.0",
1552 | "@typescript-eslint/visitor-keys": "6.21.0",
1553 | "debug": "^4.3.4",
1554 | "globby": "^11.1.0",
1555 | "is-glob": "^4.0.3",
1556 | "minimatch": "9.0.3",
1557 | "semver": "^7.5.4",
1558 | "ts-api-utils": "^1.0.1"
1559 | },
1560 | "engines": {
1561 | "node": "^16.0.0 || >=18.0.0"
1562 | },
1563 | "funding": {
1564 | "type": "opencollective",
1565 | "url": "https://opencollective.com/typescript-eslint"
1566 | },
1567 | "peerDependenciesMeta": {
1568 | "typescript": {
1569 | "optional": true
1570 | }
1571 | }
1572 | },
1573 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
1574 | "version": "9.0.3",
1575 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
1576 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
1577 | "dev": true,
1578 | "license": "ISC",
1579 | "dependencies": {
1580 | "brace-expansion": "^2.0.1"
1581 | },
1582 | "engines": {
1583 | "node": ">=16 || 14 >=14.17"
1584 | },
1585 | "funding": {
1586 | "url": "https://github.com/sponsors/isaacs"
1587 | }
1588 | },
1589 | "node_modules/@typescript-eslint/visitor-keys": {
1590 | "version": "6.21.0",
1591 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz",
1592 | "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==",
1593 | "dev": true,
1594 | "license": "MIT",
1595 | "dependencies": {
1596 | "@typescript-eslint/types": "6.21.0",
1597 | "eslint-visitor-keys": "^3.4.1"
1598 | },
1599 | "engines": {
1600 | "node": "^16.0.0 || >=18.0.0"
1601 | },
1602 | "funding": {
1603 | "type": "opencollective",
1604 | "url": "https://opencollective.com/typescript-eslint"
1605 | }
1606 | },
1607 | "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
1608 | "version": "3.4.3",
1609 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1610 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1611 | "dev": true,
1612 | "license": "Apache-2.0",
1613 | "engines": {
1614 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1615 | },
1616 | "funding": {
1617 | "url": "https://opencollective.com/eslint"
1618 | }
1619 | },
1620 | "node_modules/acorn": {
1621 | "version": "8.14.1",
1622 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
1623 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
1624 | "dev": true,
1625 | "license": "MIT",
1626 | "bin": {
1627 | "acorn": "bin/acorn"
1628 | },
1629 | "engines": {
1630 | "node": ">=0.4.0"
1631 | }
1632 | },
1633 | "node_modules/acorn-jsx": {
1634 | "version": "5.3.2",
1635 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1636 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1637 | "dev": true,
1638 | "license": "MIT",
1639 | "peerDependencies": {
1640 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1641 | }
1642 | },
1643 | "node_modules/ajv": {
1644 | "version": "6.12.6",
1645 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1646 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1647 | "dev": true,
1648 | "license": "MIT",
1649 | "dependencies": {
1650 | "fast-deep-equal": "^3.1.1",
1651 | "fast-json-stable-stringify": "^2.0.0",
1652 | "json-schema-traverse": "^0.4.1",
1653 | "uri-js": "^4.2.2"
1654 | },
1655 | "funding": {
1656 | "type": "github",
1657 | "url": "https://github.com/sponsors/epoberezkin"
1658 | }
1659 | },
1660 | "node_modules/ansi-escapes": {
1661 | "version": "4.3.2",
1662 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
1663 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
1664 | "license": "MIT",
1665 | "dependencies": {
1666 | "type-fest": "^0.21.3"
1667 | },
1668 | "engines": {
1669 | "node": ">=8"
1670 | },
1671 | "funding": {
1672 | "url": "https://github.com/sponsors/sindresorhus"
1673 | }
1674 | },
1675 | "node_modules/ansi-regex": {
1676 | "version": "5.0.1",
1677 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1678 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1679 | "license": "MIT",
1680 | "engines": {
1681 | "node": ">=8"
1682 | }
1683 | },
1684 | "node_modules/ansi-styles": {
1685 | "version": "4.3.0",
1686 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1687 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1688 | "license": "MIT",
1689 | "dependencies": {
1690 | "color-convert": "^2.0.1"
1691 | },
1692 | "engines": {
1693 | "node": ">=8"
1694 | },
1695 | "funding": {
1696 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1697 | }
1698 | },
1699 | "node_modules/ansis": {
1700 | "version": "3.17.0",
1701 | "resolved": "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz",
1702 | "integrity": "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==",
1703 | "license": "ISC",
1704 | "engines": {
1705 | "node": ">=14"
1706 | }
1707 | },
1708 | "node_modules/argparse": {
1709 | "version": "2.0.1",
1710 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1711 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1712 | "dev": true,
1713 | "license": "Python-2.0"
1714 | },
1715 | "node_modules/array-union": {
1716 | "version": "2.1.0",
1717 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
1718 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
1719 | "license": "MIT",
1720 | "engines": {
1721 | "node": ">=8"
1722 | }
1723 | },
1724 | "node_modules/async": {
1725 | "version": "3.2.6",
1726 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
1727 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
1728 | "license": "MIT"
1729 | },
1730 | "node_modules/balanced-match": {
1731 | "version": "1.0.2",
1732 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1733 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1734 | "license": "MIT"
1735 | },
1736 | "node_modules/brace-expansion": {
1737 | "version": "2.0.1",
1738 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
1739 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
1740 | "license": "MIT",
1741 | "dependencies": {
1742 | "balanced-match": "^1.0.0"
1743 | }
1744 | },
1745 | "node_modules/braces": {
1746 | "version": "3.0.3",
1747 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1748 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1749 | "license": "MIT",
1750 | "dependencies": {
1751 | "fill-range": "^7.1.1"
1752 | },
1753 | "engines": {
1754 | "node": ">=8"
1755 | }
1756 | },
1757 | "node_modules/callsites": {
1758 | "version": "3.1.0",
1759 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1760 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1761 | "dev": true,
1762 | "license": "MIT",
1763 | "engines": {
1764 | "node": ">=6"
1765 | }
1766 | },
1767 | "node_modules/chalk": {
1768 | "version": "4.1.2",
1769 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1770 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1771 | "license": "MIT",
1772 | "dependencies": {
1773 | "ansi-styles": "^4.1.0",
1774 | "supports-color": "^7.1.0"
1775 | },
1776 | "engines": {
1777 | "node": ">=10"
1778 | },
1779 | "funding": {
1780 | "url": "https://github.com/chalk/chalk?sponsor=1"
1781 | }
1782 | },
1783 | "node_modules/chalk/node_modules/supports-color": {
1784 | "version": "7.2.0",
1785 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1786 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1787 | "license": "MIT",
1788 | "dependencies": {
1789 | "has-flag": "^4.0.0"
1790 | },
1791 | "engines": {
1792 | "node": ">=8"
1793 | }
1794 | },
1795 | "node_modules/chardet": {
1796 | "version": "0.7.0",
1797 | "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
1798 | "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
1799 | "license": "MIT"
1800 | },
1801 | "node_modules/clean-stack": {
1802 | "version": "3.0.1",
1803 | "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz",
1804 | "integrity": "sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==",
1805 | "license": "MIT",
1806 | "dependencies": {
1807 | "escape-string-regexp": "4.0.0"
1808 | },
1809 | "engines": {
1810 | "node": ">=10"
1811 | },
1812 | "funding": {
1813 | "url": "https://github.com/sponsors/sindresorhus"
1814 | }
1815 | },
1816 | "node_modules/cli-spinners": {
1817 | "version": "2.9.2",
1818 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
1819 | "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
1820 | "license": "MIT",
1821 | "engines": {
1822 | "node": ">=6"
1823 | },
1824 | "funding": {
1825 | "url": "https://github.com/sponsors/sindresorhus"
1826 | }
1827 | },
1828 | "node_modules/cli-width": {
1829 | "version": "4.1.0",
1830 | "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
1831 | "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
1832 | "license": "ISC",
1833 | "engines": {
1834 | "node": ">= 12"
1835 | }
1836 | },
1837 | "node_modules/color-convert": {
1838 | "version": "2.0.1",
1839 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1840 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1841 | "license": "MIT",
1842 | "dependencies": {
1843 | "color-name": "~1.1.4"
1844 | },
1845 | "engines": {
1846 | "node": ">=7.0.0"
1847 | }
1848 | },
1849 | "node_modules/color-name": {
1850 | "version": "1.1.4",
1851 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1852 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1853 | "license": "MIT"
1854 | },
1855 | "node_modules/concat-map": {
1856 | "version": "0.0.1",
1857 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1858 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1859 | "license": "MIT"
1860 | },
1861 | "node_modules/cross-spawn": {
1862 | "version": "7.0.6",
1863 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1864 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1865 | "dev": true,
1866 | "license": "MIT",
1867 | "dependencies": {
1868 | "path-key": "^3.1.0",
1869 | "shebang-command": "^2.0.0",
1870 | "which": "^2.0.1"
1871 | },
1872 | "engines": {
1873 | "node": ">= 8"
1874 | }
1875 | },
1876 | "node_modules/csstype": {
1877 | "version": "3.1.3",
1878 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1879 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1880 | "license": "MIT"
1881 | },
1882 | "node_modules/data-uri-to-buffer": {
1883 | "version": "4.0.1",
1884 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
1885 | "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
1886 | "license": "MIT",
1887 | "engines": {
1888 | "node": ">= 12"
1889 | }
1890 | },
1891 | "node_modules/debug": {
1892 | "version": "4.4.1",
1893 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
1894 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
1895 | "license": "MIT",
1896 | "dependencies": {
1897 | "ms": "^2.1.3"
1898 | },
1899 | "engines": {
1900 | "node": ">=6.0"
1901 | },
1902 | "peerDependenciesMeta": {
1903 | "supports-color": {
1904 | "optional": true
1905 | }
1906 | }
1907 | },
1908 | "node_modules/deep-is": {
1909 | "version": "0.1.4",
1910 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1911 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1912 | "dev": true,
1913 | "license": "MIT"
1914 | },
1915 | "node_modules/dir-glob": {
1916 | "version": "3.0.1",
1917 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1918 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1919 | "license": "MIT",
1920 | "dependencies": {
1921 | "path-type": "^4.0.0"
1922 | },
1923 | "engines": {
1924 | "node": ">=8"
1925 | }
1926 | },
1927 | "node_modules/ejs": {
1928 | "version": "3.1.10",
1929 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
1930 | "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
1931 | "license": "Apache-2.0",
1932 | "dependencies": {
1933 | "jake": "^10.8.5"
1934 | },
1935 | "bin": {
1936 | "ejs": "bin/cli.js"
1937 | },
1938 | "engines": {
1939 | "node": ">=0.10.0"
1940 | }
1941 | },
1942 | "node_modules/emoji-regex": {
1943 | "version": "8.0.0",
1944 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1945 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1946 | "license": "MIT"
1947 | },
1948 | "node_modules/esbuild": {
1949 | "version": "0.25.5",
1950 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz",
1951 | "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
1952 | "hasInstallScript": true,
1953 | "license": "MIT",
1954 | "bin": {
1955 | "esbuild": "bin/esbuild"
1956 | },
1957 | "engines": {
1958 | "node": ">=18"
1959 | },
1960 | "optionalDependencies": {
1961 | "@esbuild/aix-ppc64": "0.25.5",
1962 | "@esbuild/android-arm": "0.25.5",
1963 | "@esbuild/android-arm64": "0.25.5",
1964 | "@esbuild/android-x64": "0.25.5",
1965 | "@esbuild/darwin-arm64": "0.25.5",
1966 | "@esbuild/darwin-x64": "0.25.5",
1967 | "@esbuild/freebsd-arm64": "0.25.5",
1968 | "@esbuild/freebsd-x64": "0.25.5",
1969 | "@esbuild/linux-arm": "0.25.5",
1970 | "@esbuild/linux-arm64": "0.25.5",
1971 | "@esbuild/linux-ia32": "0.25.5",
1972 | "@esbuild/linux-loong64": "0.25.5",
1973 | "@esbuild/linux-mips64el": "0.25.5",
1974 | "@esbuild/linux-ppc64": "0.25.5",
1975 | "@esbuild/linux-riscv64": "0.25.5",
1976 | "@esbuild/linux-s390x": "0.25.5",
1977 | "@esbuild/linux-x64": "0.25.5",
1978 | "@esbuild/netbsd-arm64": "0.25.5",
1979 | "@esbuild/netbsd-x64": "0.25.5",
1980 | "@esbuild/openbsd-arm64": "0.25.5",
1981 | "@esbuild/openbsd-x64": "0.25.5",
1982 | "@esbuild/sunos-x64": "0.25.5",
1983 | "@esbuild/win32-arm64": "0.25.5",
1984 | "@esbuild/win32-ia32": "0.25.5",
1985 | "@esbuild/win32-x64": "0.25.5"
1986 | }
1987 | },
1988 | "node_modules/escape-string-regexp": {
1989 | "version": "4.0.0",
1990 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1991 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1992 | "license": "MIT",
1993 | "engines": {
1994 | "node": ">=10"
1995 | },
1996 | "funding": {
1997 | "url": "https://github.com/sponsors/sindresorhus"
1998 | }
1999 | },
2000 | "node_modules/eslint": {
2001 | "version": "9.28.0",
2002 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.28.0.tgz",
2003 | "integrity": "sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==",
2004 | "dev": true,
2005 | "license": "MIT",
2006 | "dependencies": {
2007 | "@eslint-community/eslint-utils": "^4.2.0",
2008 | "@eslint-community/regexpp": "^4.12.1",
2009 | "@eslint/config-array": "^0.20.0",
2010 | "@eslint/config-helpers": "^0.2.1",
2011 | "@eslint/core": "^0.14.0",
2012 | "@eslint/eslintrc": "^3.3.1",
2013 | "@eslint/js": "9.28.0",
2014 | "@eslint/plugin-kit": "^0.3.1",
2015 | "@humanfs/node": "^0.16.6",
2016 | "@humanwhocodes/module-importer": "^1.0.1",
2017 | "@humanwhocodes/retry": "^0.4.2",
2018 | "@types/estree": "^1.0.6",
2019 | "@types/json-schema": "^7.0.15",
2020 | "ajv": "^6.12.4",
2021 | "chalk": "^4.0.0",
2022 | "cross-spawn": "^7.0.6",
2023 | "debug": "^4.3.2",
2024 | "escape-string-regexp": "^4.0.0",
2025 | "eslint-scope": "^8.3.0",
2026 | "eslint-visitor-keys": "^4.2.0",
2027 | "espree": "^10.3.0",
2028 | "esquery": "^1.5.0",
2029 | "esutils": "^2.0.2",
2030 | "fast-deep-equal": "^3.1.3",
2031 | "file-entry-cache": "^8.0.0",
2032 | "find-up": "^5.0.0",
2033 | "glob-parent": "^6.0.2",
2034 | "ignore": "^5.2.0",
2035 | "imurmurhash": "^0.1.4",
2036 | "is-glob": "^4.0.0",
2037 | "json-stable-stringify-without-jsonify": "^1.0.1",
2038 | "lodash.merge": "^4.6.2",
2039 | "minimatch": "^3.1.2",
2040 | "natural-compare": "^1.4.0",
2041 | "optionator": "^0.9.3"
2042 | },
2043 | "bin": {
2044 | "eslint": "bin/eslint.js"
2045 | },
2046 | "engines": {
2047 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2048 | },
2049 | "funding": {
2050 | "url": "https://eslint.org/donate"
2051 | },
2052 | "peerDependencies": {
2053 | "jiti": "*"
2054 | },
2055 | "peerDependenciesMeta": {
2056 | "jiti": {
2057 | "optional": true
2058 | }
2059 | }
2060 | },
2061 | "node_modules/eslint-config-prettier": {
2062 | "version": "9.1.0",
2063 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz",
2064 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==",
2065 | "dev": true,
2066 | "license": "MIT",
2067 | "bin": {
2068 | "eslint-config-prettier": "bin/cli.js"
2069 | },
2070 | "peerDependencies": {
2071 | "eslint": ">=7.0.0"
2072 | }
2073 | },
2074 | "node_modules/eslint-scope": {
2075 | "version": "8.3.0",
2076 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz",
2077 | "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==",
2078 | "dev": true,
2079 | "license": "BSD-2-Clause",
2080 | "dependencies": {
2081 | "esrecurse": "^4.3.0",
2082 | "estraverse": "^5.2.0"
2083 | },
2084 | "engines": {
2085 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2086 | },
2087 | "funding": {
2088 | "url": "https://opencollective.com/eslint"
2089 | }
2090 | },
2091 | "node_modules/eslint-visitor-keys": {
2092 | "version": "4.2.0",
2093 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
2094 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
2095 | "dev": true,
2096 | "license": "Apache-2.0",
2097 | "engines": {
2098 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2099 | },
2100 | "funding": {
2101 | "url": "https://opencollective.com/eslint"
2102 | }
2103 | },
2104 | "node_modules/eslint/node_modules/brace-expansion": {
2105 | "version": "1.1.11",
2106 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2107 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2108 | "dev": true,
2109 | "license": "MIT",
2110 | "dependencies": {
2111 | "balanced-match": "^1.0.0",
2112 | "concat-map": "0.0.1"
2113 | }
2114 | },
2115 | "node_modules/eslint/node_modules/minimatch": {
2116 | "version": "3.1.2",
2117 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2118 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2119 | "dev": true,
2120 | "license": "ISC",
2121 | "dependencies": {
2122 | "brace-expansion": "^1.1.7"
2123 | },
2124 | "engines": {
2125 | "node": "*"
2126 | }
2127 | },
2128 | "node_modules/espree": {
2129 | "version": "10.3.0",
2130 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
2131 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
2132 | "dev": true,
2133 | "license": "BSD-2-Clause",
2134 | "dependencies": {
2135 | "acorn": "^8.14.0",
2136 | "acorn-jsx": "^5.3.2",
2137 | "eslint-visitor-keys": "^4.2.0"
2138 | },
2139 | "engines": {
2140 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2141 | },
2142 | "funding": {
2143 | "url": "https://opencollective.com/eslint"
2144 | }
2145 | },
2146 | "node_modules/esquery": {
2147 | "version": "1.6.0",
2148 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
2149 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
2150 | "dev": true,
2151 | "license": "BSD-3-Clause",
2152 | "dependencies": {
2153 | "estraverse": "^5.1.0"
2154 | },
2155 | "engines": {
2156 | "node": ">=0.10"
2157 | }
2158 | },
2159 | "node_modules/esrecurse": {
2160 | "version": "4.3.0",
2161 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2162 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2163 | "dev": true,
2164 | "license": "BSD-2-Clause",
2165 | "dependencies": {
2166 | "estraverse": "^5.2.0"
2167 | },
2168 | "engines": {
2169 | "node": ">=4.0"
2170 | }
2171 | },
2172 | "node_modules/estraverse": {
2173 | "version": "5.3.0",
2174 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2175 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2176 | "dev": true,
2177 | "license": "BSD-2-Clause",
2178 | "engines": {
2179 | "node": ">=4.0"
2180 | }
2181 | },
2182 | "node_modules/esutils": {
2183 | "version": "2.0.3",
2184 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2185 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2186 | "dev": true,
2187 | "license": "BSD-2-Clause",
2188 | "engines": {
2189 | "node": ">=0.10.0"
2190 | }
2191 | },
2192 | "node_modules/external-editor": {
2193 | "version": "3.1.0",
2194 | "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
2195 | "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
2196 | "license": "MIT",
2197 | "dependencies": {
2198 | "chardet": "^0.7.0",
2199 | "iconv-lite": "^0.4.24",
2200 | "tmp": "^0.0.33"
2201 | },
2202 | "engines": {
2203 | "node": ">=4"
2204 | }
2205 | },
2206 | "node_modules/fast-deep-equal": {
2207 | "version": "3.1.3",
2208 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2209 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2210 | "dev": true,
2211 | "license": "MIT"
2212 | },
2213 | "node_modules/fast-glob": {
2214 | "version": "3.3.3",
2215 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
2216 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
2217 | "license": "MIT",
2218 | "dependencies": {
2219 | "@nodelib/fs.stat": "^2.0.2",
2220 | "@nodelib/fs.walk": "^1.2.3",
2221 | "glob-parent": "^5.1.2",
2222 | "merge2": "^1.3.0",
2223 | "micromatch": "^4.0.8"
2224 | },
2225 | "engines": {
2226 | "node": ">=8.6.0"
2227 | }
2228 | },
2229 | "node_modules/fast-glob/node_modules/glob-parent": {
2230 | "version": "5.1.2",
2231 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2232 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2233 | "license": "ISC",
2234 | "dependencies": {
2235 | "is-glob": "^4.0.1"
2236 | },
2237 | "engines": {
2238 | "node": ">= 6"
2239 | }
2240 | },
2241 | "node_modules/fast-json-stable-stringify": {
2242 | "version": "2.1.0",
2243 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2244 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2245 | "dev": true,
2246 | "license": "MIT"
2247 | },
2248 | "node_modules/fast-levenshtein": {
2249 | "version": "3.0.0",
2250 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz",
2251 | "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==",
2252 | "license": "MIT",
2253 | "dependencies": {
2254 | "fastest-levenshtein": "^1.0.7"
2255 | }
2256 | },
2257 | "node_modules/fastest-levenshtein": {
2258 | "version": "1.0.16",
2259 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
2260 | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
2261 | "license": "MIT",
2262 | "engines": {
2263 | "node": ">= 4.9.1"
2264 | }
2265 | },
2266 | "node_modules/fastq": {
2267 | "version": "1.19.1",
2268 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
2269 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
2270 | "license": "ISC",
2271 | "dependencies": {
2272 | "reusify": "^1.0.4"
2273 | }
2274 | },
2275 | "node_modules/fetch-blob": {
2276 | "version": "3.2.0",
2277 | "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
2278 | "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
2279 | "funding": [
2280 | {
2281 | "type": "github",
2282 | "url": "https://github.com/sponsors/jimmywarting"
2283 | },
2284 | {
2285 | "type": "paypal",
2286 | "url": "https://paypal.me/jimmywarting"
2287 | }
2288 | ],
2289 | "license": "MIT",
2290 | "dependencies": {
2291 | "node-domexception": "^1.0.0",
2292 | "web-streams-polyfill": "^3.0.3"
2293 | },
2294 | "engines": {
2295 | "node": "^12.20 || >= 14.13"
2296 | }
2297 | },
2298 | "node_modules/file-entry-cache": {
2299 | "version": "8.0.0",
2300 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
2301 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
2302 | "dev": true,
2303 | "license": "MIT",
2304 | "dependencies": {
2305 | "flat-cache": "^4.0.0"
2306 | },
2307 | "engines": {
2308 | "node": ">=16.0.0"
2309 | }
2310 | },
2311 | "node_modules/filelist": {
2312 | "version": "1.0.4",
2313 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
2314 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
2315 | "license": "Apache-2.0",
2316 | "dependencies": {
2317 | "minimatch": "^5.0.1"
2318 | }
2319 | },
2320 | "node_modules/filelist/node_modules/minimatch": {
2321 | "version": "5.1.6",
2322 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
2323 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
2324 | "license": "ISC",
2325 | "dependencies": {
2326 | "brace-expansion": "^2.0.1"
2327 | },
2328 | "engines": {
2329 | "node": ">=10"
2330 | }
2331 | },
2332 | "node_modules/fill-range": {
2333 | "version": "7.1.1",
2334 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2335 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2336 | "license": "MIT",
2337 | "dependencies": {
2338 | "to-regex-range": "^5.0.1"
2339 | },
2340 | "engines": {
2341 | "node": ">=8"
2342 | }
2343 | },
2344 | "node_modules/find-up": {
2345 | "version": "5.0.0",
2346 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2347 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2348 | "dev": true,
2349 | "license": "MIT",
2350 | "dependencies": {
2351 | "locate-path": "^6.0.0",
2352 | "path-exists": "^4.0.0"
2353 | },
2354 | "engines": {
2355 | "node": ">=10"
2356 | },
2357 | "funding": {
2358 | "url": "https://github.com/sponsors/sindresorhus"
2359 | }
2360 | },
2361 | "node_modules/flat-cache": {
2362 | "version": "4.0.1",
2363 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
2364 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
2365 | "dev": true,
2366 | "license": "MIT",
2367 | "dependencies": {
2368 | "flatted": "^3.2.9",
2369 | "keyv": "^4.5.4"
2370 | },
2371 | "engines": {
2372 | "node": ">=16"
2373 | }
2374 | },
2375 | "node_modules/flatted": {
2376 | "version": "3.3.3",
2377 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
2378 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
2379 | "dev": true,
2380 | "license": "ISC"
2381 | },
2382 | "node_modules/formdata-polyfill": {
2383 | "version": "4.0.10",
2384 | "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
2385 | "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
2386 | "license": "MIT",
2387 | "dependencies": {
2388 | "fetch-blob": "^3.1.2"
2389 | },
2390 | "engines": {
2391 | "node": ">=12.20.0"
2392 | }
2393 | },
2394 | "node_modules/get-package-type": {
2395 | "version": "0.1.0",
2396 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
2397 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
2398 | "license": "MIT",
2399 | "engines": {
2400 | "node": ">=8.0.0"
2401 | }
2402 | },
2403 | "node_modules/glob-parent": {
2404 | "version": "6.0.2",
2405 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2406 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2407 | "dev": true,
2408 | "license": "ISC",
2409 | "dependencies": {
2410 | "is-glob": "^4.0.3"
2411 | },
2412 | "engines": {
2413 | "node": ">=10.13.0"
2414 | }
2415 | },
2416 | "node_modules/globals": {
2417 | "version": "14.0.0",
2418 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
2419 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
2420 | "dev": true,
2421 | "license": "MIT",
2422 | "engines": {
2423 | "node": ">=18"
2424 | },
2425 | "funding": {
2426 | "url": "https://github.com/sponsors/sindresorhus"
2427 | }
2428 | },
2429 | "node_modules/globby": {
2430 | "version": "11.1.0",
2431 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2432 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2433 | "license": "MIT",
2434 | "dependencies": {
2435 | "array-union": "^2.1.0",
2436 | "dir-glob": "^3.0.1",
2437 | "fast-glob": "^3.2.9",
2438 | "ignore": "^5.2.0",
2439 | "merge2": "^1.4.1",
2440 | "slash": "^3.0.0"
2441 | },
2442 | "engines": {
2443 | "node": ">=10"
2444 | },
2445 | "funding": {
2446 | "url": "https://github.com/sponsors/sindresorhus"
2447 | }
2448 | },
2449 | "node_modules/graphemer": {
2450 | "version": "1.4.0",
2451 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
2452 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
2453 | "dev": true,
2454 | "license": "MIT"
2455 | },
2456 | "node_modules/has-flag": {
2457 | "version": "4.0.0",
2458 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2459 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2460 | "license": "MIT",
2461 | "engines": {
2462 | "node": ">=8"
2463 | }
2464 | },
2465 | "node_modules/iconv-lite": {
2466 | "version": "0.4.24",
2467 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
2468 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
2469 | "license": "MIT",
2470 | "dependencies": {
2471 | "safer-buffer": ">= 2.1.2 < 3"
2472 | },
2473 | "engines": {
2474 | "node": ">=0.10.0"
2475 | }
2476 | },
2477 | "node_modules/ignore": {
2478 | "version": "5.3.2",
2479 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2480 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2481 | "license": "MIT",
2482 | "engines": {
2483 | "node": ">= 4"
2484 | }
2485 | },
2486 | "node_modules/import-fresh": {
2487 | "version": "3.3.1",
2488 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
2489 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2490 | "dev": true,
2491 | "license": "MIT",
2492 | "dependencies": {
2493 | "parent-module": "^1.0.0",
2494 | "resolve-from": "^4.0.0"
2495 | },
2496 | "engines": {
2497 | "node": ">=6"
2498 | },
2499 | "funding": {
2500 | "url": "https://github.com/sponsors/sindresorhus"
2501 | }
2502 | },
2503 | "node_modules/imurmurhash": {
2504 | "version": "0.1.4",
2505 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2506 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2507 | "dev": true,
2508 | "license": "MIT",
2509 | "engines": {
2510 | "node": ">=0.8.19"
2511 | }
2512 | },
2513 | "node_modules/indent-string": {
2514 | "version": "4.0.0",
2515 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
2516 | "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
2517 | "license": "MIT",
2518 | "engines": {
2519 | "node": ">=8"
2520 | }
2521 | },
2522 | "node_modules/is-docker": {
2523 | "version": "2.2.1",
2524 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
2525 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
2526 | "license": "MIT",
2527 | "bin": {
2528 | "is-docker": "cli.js"
2529 | },
2530 | "engines": {
2531 | "node": ">=8"
2532 | },
2533 | "funding": {
2534 | "url": "https://github.com/sponsors/sindresorhus"
2535 | }
2536 | },
2537 | "node_modules/is-extglob": {
2538 | "version": "2.1.1",
2539 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2540 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2541 | "license": "MIT",
2542 | "engines": {
2543 | "node": ">=0.10.0"
2544 | }
2545 | },
2546 | "node_modules/is-fullwidth-code-point": {
2547 | "version": "3.0.0",
2548 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2549 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2550 | "license": "MIT",
2551 | "engines": {
2552 | "node": ">=8"
2553 | }
2554 | },
2555 | "node_modules/is-glob": {
2556 | "version": "4.0.3",
2557 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2558 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2559 | "license": "MIT",
2560 | "dependencies": {
2561 | "is-extglob": "^2.1.1"
2562 | },
2563 | "engines": {
2564 | "node": ">=0.10.0"
2565 | }
2566 | },
2567 | "node_modules/is-number": {
2568 | "version": "7.0.0",
2569 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2570 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2571 | "license": "MIT",
2572 | "engines": {
2573 | "node": ">=0.12.0"
2574 | }
2575 | },
2576 | "node_modules/is-wsl": {
2577 | "version": "2.2.0",
2578 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
2579 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
2580 | "license": "MIT",
2581 | "dependencies": {
2582 | "is-docker": "^2.0.0"
2583 | },
2584 | "engines": {
2585 | "node": ">=8"
2586 | }
2587 | },
2588 | "node_modules/isexe": {
2589 | "version": "2.0.0",
2590 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2591 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2592 | "dev": true,
2593 | "license": "ISC"
2594 | },
2595 | "node_modules/jake": {
2596 | "version": "10.9.2",
2597 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
2598 | "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
2599 | "license": "Apache-2.0",
2600 | "dependencies": {
2601 | "async": "^3.2.3",
2602 | "chalk": "^4.0.2",
2603 | "filelist": "^1.0.4",
2604 | "minimatch": "^3.1.2"
2605 | },
2606 | "bin": {
2607 | "jake": "bin/cli.js"
2608 | },
2609 | "engines": {
2610 | "node": ">=10"
2611 | }
2612 | },
2613 | "node_modules/jake/node_modules/brace-expansion": {
2614 | "version": "1.1.11",
2615 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2616 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2617 | "license": "MIT",
2618 | "dependencies": {
2619 | "balanced-match": "^1.0.0",
2620 | "concat-map": "0.0.1"
2621 | }
2622 | },
2623 | "node_modules/jake/node_modules/minimatch": {
2624 | "version": "3.1.2",
2625 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2626 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2627 | "license": "ISC",
2628 | "dependencies": {
2629 | "brace-expansion": "^1.1.7"
2630 | },
2631 | "engines": {
2632 | "node": "*"
2633 | }
2634 | },
2635 | "node_modules/js-yaml": {
2636 | "version": "4.1.0",
2637 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2638 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2639 | "dev": true,
2640 | "license": "MIT",
2641 | "dependencies": {
2642 | "argparse": "^2.0.1"
2643 | },
2644 | "bin": {
2645 | "js-yaml": "bin/js-yaml.js"
2646 | }
2647 | },
2648 | "node_modules/json-buffer": {
2649 | "version": "3.0.1",
2650 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2651 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2652 | "dev": true,
2653 | "license": "MIT"
2654 | },
2655 | "node_modules/json-schema-traverse": {
2656 | "version": "0.4.1",
2657 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2658 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2659 | "dev": true,
2660 | "license": "MIT"
2661 | },
2662 | "node_modules/json-stable-stringify-without-jsonify": {
2663 | "version": "1.0.1",
2664 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2665 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2666 | "dev": true,
2667 | "license": "MIT"
2668 | },
2669 | "node_modules/keyv": {
2670 | "version": "4.5.4",
2671 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2672 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2673 | "dev": true,
2674 | "license": "MIT",
2675 | "dependencies": {
2676 | "json-buffer": "3.0.1"
2677 | }
2678 | },
2679 | "node_modules/levn": {
2680 | "version": "0.4.1",
2681 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2682 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2683 | "dev": true,
2684 | "license": "MIT",
2685 | "dependencies": {
2686 | "prelude-ls": "^1.2.1",
2687 | "type-check": "~0.4.0"
2688 | },
2689 | "engines": {
2690 | "node": ">= 0.8.0"
2691 | }
2692 | },
2693 | "node_modules/lilconfig": {
2694 | "version": "3.1.3",
2695 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
2696 | "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
2697 | "license": "MIT",
2698 | "engines": {
2699 | "node": ">=14"
2700 | },
2701 | "funding": {
2702 | "url": "https://github.com/sponsors/antonk52"
2703 | }
2704 | },
2705 | "node_modules/locate-path": {
2706 | "version": "6.0.0",
2707 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2708 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2709 | "dev": true,
2710 | "license": "MIT",
2711 | "dependencies": {
2712 | "p-locate": "^5.0.0"
2713 | },
2714 | "engines": {
2715 | "node": ">=10"
2716 | },
2717 | "funding": {
2718 | "url": "https://github.com/sponsors/sindresorhus"
2719 | }
2720 | },
2721 | "node_modules/lodash.merge": {
2722 | "version": "4.6.2",
2723 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2724 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
2725 | "dev": true,
2726 | "license": "MIT"
2727 | },
2728 | "node_modules/merge2": {
2729 | "version": "1.4.1",
2730 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2731 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2732 | "license": "MIT",
2733 | "engines": {
2734 | "node": ">= 8"
2735 | }
2736 | },
2737 | "node_modules/micromatch": {
2738 | "version": "4.0.8",
2739 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
2740 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
2741 | "license": "MIT",
2742 | "dependencies": {
2743 | "braces": "^3.0.3",
2744 | "picomatch": "^2.3.1"
2745 | },
2746 | "engines": {
2747 | "node": ">=8.6"
2748 | }
2749 | },
2750 | "node_modules/minimatch": {
2751 | "version": "9.0.5",
2752 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
2753 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
2754 | "license": "ISC",
2755 | "dependencies": {
2756 | "brace-expansion": "^2.0.1"
2757 | },
2758 | "engines": {
2759 | "node": ">=16 || 14 >=14.17"
2760 | },
2761 | "funding": {
2762 | "url": "https://github.com/sponsors/isaacs"
2763 | }
2764 | },
2765 | "node_modules/ms": {
2766 | "version": "2.1.3",
2767 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2768 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2769 | "license": "MIT"
2770 | },
2771 | "node_modules/mute-stream": {
2772 | "version": "2.0.0",
2773 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
2774 | "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
2775 | "license": "ISC",
2776 | "engines": {
2777 | "node": "^18.17.0 || >=20.5.0"
2778 | }
2779 | },
2780 | "node_modules/natural-compare": {
2781 | "version": "1.4.0",
2782 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2783 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2784 | "dev": true,
2785 | "license": "MIT"
2786 | },
2787 | "node_modules/node-domexception": {
2788 | "version": "1.0.0",
2789 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
2790 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
2791 | "deprecated": "Use your platform's native DOMException instead",
2792 | "funding": [
2793 | {
2794 | "type": "github",
2795 | "url": "https://github.com/sponsors/jimmywarting"
2796 | },
2797 | {
2798 | "type": "github",
2799 | "url": "https://paypal.me/jimmywarting"
2800 | }
2801 | ],
2802 | "license": "MIT",
2803 | "engines": {
2804 | "node": ">=10.5.0"
2805 | }
2806 | },
2807 | "node_modules/node-fetch": {
2808 | "version": "3.3.2",
2809 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
2810 | "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
2811 | "license": "MIT",
2812 | "dependencies": {
2813 | "data-uri-to-buffer": "^4.0.0",
2814 | "fetch-blob": "^3.1.4",
2815 | "formdata-polyfill": "^4.0.10"
2816 | },
2817 | "engines": {
2818 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2819 | },
2820 | "funding": {
2821 | "type": "opencollective",
2822 | "url": "https://opencollective.com/node-fetch"
2823 | }
2824 | },
2825 | "node_modules/optionator": {
2826 | "version": "0.9.4",
2827 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2828 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2829 | "dev": true,
2830 | "license": "MIT",
2831 | "dependencies": {
2832 | "deep-is": "^0.1.3",
2833 | "fast-levenshtein": "^2.0.6",
2834 | "levn": "^0.4.1",
2835 | "prelude-ls": "^1.2.1",
2836 | "type-check": "^0.4.0",
2837 | "word-wrap": "^1.2.5"
2838 | },
2839 | "engines": {
2840 | "node": ">= 0.8.0"
2841 | }
2842 | },
2843 | "node_modules/optionator/node_modules/fast-levenshtein": {
2844 | "version": "2.0.6",
2845 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2846 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2847 | "dev": true,
2848 | "license": "MIT"
2849 | },
2850 | "node_modules/os-tmpdir": {
2851 | "version": "1.0.2",
2852 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
2853 | "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==",
2854 | "license": "MIT",
2855 | "engines": {
2856 | "node": ">=0.10.0"
2857 | }
2858 | },
2859 | "node_modules/p-limit": {
2860 | "version": "3.1.0",
2861 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2862 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2863 | "dev": true,
2864 | "license": "MIT",
2865 | "dependencies": {
2866 | "yocto-queue": "^0.1.0"
2867 | },
2868 | "engines": {
2869 | "node": ">=10"
2870 | },
2871 | "funding": {
2872 | "url": "https://github.com/sponsors/sindresorhus"
2873 | }
2874 | },
2875 | "node_modules/p-locate": {
2876 | "version": "5.0.0",
2877 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2878 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2879 | "dev": true,
2880 | "license": "MIT",
2881 | "dependencies": {
2882 | "p-limit": "^3.0.2"
2883 | },
2884 | "engines": {
2885 | "node": ">=10"
2886 | },
2887 | "funding": {
2888 | "url": "https://github.com/sponsors/sindresorhus"
2889 | }
2890 | },
2891 | "node_modules/parent-module": {
2892 | "version": "1.0.1",
2893 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2894 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2895 | "dev": true,
2896 | "license": "MIT",
2897 | "dependencies": {
2898 | "callsites": "^3.0.0"
2899 | },
2900 | "engines": {
2901 | "node": ">=6"
2902 | }
2903 | },
2904 | "node_modules/path-exists": {
2905 | "version": "4.0.0",
2906 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2907 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2908 | "dev": true,
2909 | "license": "MIT",
2910 | "engines": {
2911 | "node": ">=8"
2912 | }
2913 | },
2914 | "node_modules/path-key": {
2915 | "version": "3.1.1",
2916 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2917 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2918 | "dev": true,
2919 | "license": "MIT",
2920 | "engines": {
2921 | "node": ">=8"
2922 | }
2923 | },
2924 | "node_modules/path-type": {
2925 | "version": "4.0.0",
2926 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
2927 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
2928 | "license": "MIT",
2929 | "engines": {
2930 | "node": ">=8"
2931 | }
2932 | },
2933 | "node_modules/picomatch": {
2934 | "version": "2.3.1",
2935 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2936 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2937 | "license": "MIT",
2938 | "engines": {
2939 | "node": ">=8.6"
2940 | },
2941 | "funding": {
2942 | "url": "https://github.com/sponsors/jonschlinkert"
2943 | }
2944 | },
2945 | "node_modules/prelude-ls": {
2946 | "version": "1.2.1",
2947 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2948 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2949 | "dev": true,
2950 | "license": "MIT",
2951 | "engines": {
2952 | "node": ">= 0.8.0"
2953 | }
2954 | },
2955 | "node_modules/prettier": {
2956 | "version": "3.5.3",
2957 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
2958 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
2959 | "dev": true,
2960 | "license": "MIT",
2961 | "bin": {
2962 | "prettier": "bin/prettier.cjs"
2963 | },
2964 | "engines": {
2965 | "node": ">=14"
2966 | },
2967 | "funding": {
2968 | "url": "https://github.com/prettier/prettier?sponsor=1"
2969 | }
2970 | },
2971 | "node_modules/punycode": {
2972 | "version": "2.3.1",
2973 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2974 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2975 | "dev": true,
2976 | "license": "MIT",
2977 | "engines": {
2978 | "node": ">=6"
2979 | }
2980 | },
2981 | "node_modules/queue-microtask": {
2982 | "version": "1.2.3",
2983 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2984 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2985 | "funding": [
2986 | {
2987 | "type": "github",
2988 | "url": "https://github.com/sponsors/feross"
2989 | },
2990 | {
2991 | "type": "patreon",
2992 | "url": "https://www.patreon.com/feross"
2993 | },
2994 | {
2995 | "type": "consulting",
2996 | "url": "https://feross.org/support"
2997 | }
2998 | ],
2999 | "license": "MIT"
3000 | },
3001 | "node_modules/react": {
3002 | "version": "19.0.0",
3003 | "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz",
3004 | "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==",
3005 | "license": "MIT",
3006 | "engines": {
3007 | "node": ">=0.10.0"
3008 | }
3009 | },
3010 | "node_modules/resolve-from": {
3011 | "version": "4.0.0",
3012 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3013 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3014 | "dev": true,
3015 | "license": "MIT",
3016 | "engines": {
3017 | "node": ">=4"
3018 | }
3019 | },
3020 | "node_modules/reusify": {
3021 | "version": "1.1.0",
3022 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
3023 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
3024 | "license": "MIT",
3025 | "engines": {
3026 | "iojs": ">=1.0.0",
3027 | "node": ">=0.10.0"
3028 | }
3029 | },
3030 | "node_modules/run-parallel": {
3031 | "version": "1.2.0",
3032 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
3033 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
3034 | "funding": [
3035 | {
3036 | "type": "github",
3037 | "url": "https://github.com/sponsors/feross"
3038 | },
3039 | {
3040 | "type": "patreon",
3041 | "url": "https://www.patreon.com/feross"
3042 | },
3043 | {
3044 | "type": "consulting",
3045 | "url": "https://feross.org/support"
3046 | }
3047 | ],
3048 | "license": "MIT",
3049 | "dependencies": {
3050 | "queue-microtask": "^1.2.2"
3051 | }
3052 | },
3053 | "node_modules/safer-buffer": {
3054 | "version": "2.1.2",
3055 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
3056 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
3057 | "license": "MIT"
3058 | },
3059 | "node_modules/semver": {
3060 | "version": "7.7.2",
3061 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
3062 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
3063 | "license": "ISC",
3064 | "bin": {
3065 | "semver": "bin/semver.js"
3066 | },
3067 | "engines": {
3068 | "node": ">=10"
3069 | }
3070 | },
3071 | "node_modules/shebang-command": {
3072 | "version": "2.0.0",
3073 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3074 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3075 | "dev": true,
3076 | "license": "MIT",
3077 | "dependencies": {
3078 | "shebang-regex": "^3.0.0"
3079 | },
3080 | "engines": {
3081 | "node": ">=8"
3082 | }
3083 | },
3084 | "node_modules/shebang-regex": {
3085 | "version": "3.0.0",
3086 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3087 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3088 | "dev": true,
3089 | "license": "MIT",
3090 | "engines": {
3091 | "node": ">=8"
3092 | }
3093 | },
3094 | "node_modules/signal-exit": {
3095 | "version": "4.1.0",
3096 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
3097 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
3098 | "license": "ISC",
3099 | "engines": {
3100 | "node": ">=14"
3101 | },
3102 | "funding": {
3103 | "url": "https://github.com/sponsors/isaacs"
3104 | }
3105 | },
3106 | "node_modules/slash": {
3107 | "version": "3.0.0",
3108 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3109 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3110 | "license": "MIT",
3111 | "engines": {
3112 | "node": ">=8"
3113 | }
3114 | },
3115 | "node_modules/string-width": {
3116 | "version": "4.2.3",
3117 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3118 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3119 | "license": "MIT",
3120 | "dependencies": {
3121 | "emoji-regex": "^8.0.0",
3122 | "is-fullwidth-code-point": "^3.0.0",
3123 | "strip-ansi": "^6.0.1"
3124 | },
3125 | "engines": {
3126 | "node": ">=8"
3127 | }
3128 | },
3129 | "node_modules/strip-ansi": {
3130 | "version": "6.0.1",
3131 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3132 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3133 | "license": "MIT",
3134 | "dependencies": {
3135 | "ansi-regex": "^5.0.1"
3136 | },
3137 | "engines": {
3138 | "node": ">=8"
3139 | }
3140 | },
3141 | "node_modules/strip-json-comments": {
3142 | "version": "3.1.1",
3143 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3144 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3145 | "dev": true,
3146 | "license": "MIT",
3147 | "engines": {
3148 | "node": ">=8"
3149 | },
3150 | "funding": {
3151 | "url": "https://github.com/sponsors/sindresorhus"
3152 | }
3153 | },
3154 | "node_modules/supports-color": {
3155 | "version": "8.1.1",
3156 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3157 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3158 | "license": "MIT",
3159 | "dependencies": {
3160 | "has-flag": "^4.0.0"
3161 | },
3162 | "engines": {
3163 | "node": ">=10"
3164 | },
3165 | "funding": {
3166 | "url": "https://github.com/chalk/supports-color?sponsor=1"
3167 | }
3168 | },
3169 | "node_modules/tmp": {
3170 | "version": "0.0.33",
3171 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
3172 | "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
3173 | "license": "MIT",
3174 | "dependencies": {
3175 | "os-tmpdir": "~1.0.2"
3176 | },
3177 | "engines": {
3178 | "node": ">=0.6.0"
3179 | }
3180 | },
3181 | "node_modules/to-regex-range": {
3182 | "version": "5.0.1",
3183 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3184 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3185 | "license": "MIT",
3186 | "dependencies": {
3187 | "is-number": "^7.0.0"
3188 | },
3189 | "engines": {
3190 | "node": ">=8.0"
3191 | }
3192 | },
3193 | "node_modules/ts-api-utils": {
3194 | "version": "1.4.3",
3195 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz",
3196 | "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==",
3197 | "dev": true,
3198 | "license": "MIT",
3199 | "engines": {
3200 | "node": ">=16"
3201 | },
3202 | "peerDependencies": {
3203 | "typescript": ">=4.2.0"
3204 | }
3205 | },
3206 | "node_modules/tslib": {
3207 | "version": "1.14.1",
3208 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
3209 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
3210 | "dev": true,
3211 | "license": "0BSD"
3212 | },
3213 | "node_modules/tsutils": {
3214 | "version": "3.21.0",
3215 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
3216 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
3217 | "dev": true,
3218 | "license": "MIT",
3219 | "dependencies": {
3220 | "tslib": "^1.8.1"
3221 | },
3222 | "engines": {
3223 | "node": ">= 6"
3224 | },
3225 | "peerDependencies": {
3226 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
3227 | }
3228 | },
3229 | "node_modules/type-check": {
3230 | "version": "0.4.0",
3231 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
3232 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
3233 | "dev": true,
3234 | "license": "MIT",
3235 | "dependencies": {
3236 | "prelude-ls": "^1.2.1"
3237 | },
3238 | "engines": {
3239 | "node": ">= 0.8.0"
3240 | }
3241 | },
3242 | "node_modules/type-fest": {
3243 | "version": "0.21.3",
3244 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
3245 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
3246 | "license": "(MIT OR CC0-1.0)",
3247 | "engines": {
3248 | "node": ">=10"
3249 | },
3250 | "funding": {
3251 | "url": "https://github.com/sponsors/sindresorhus"
3252 | }
3253 | },
3254 | "node_modules/typescript": {
3255 | "version": "5.8.3",
3256 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
3257 | "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
3258 | "dev": true,
3259 | "license": "Apache-2.0",
3260 | "bin": {
3261 | "tsc": "bin/tsc",
3262 | "tsserver": "bin/tsserver"
3263 | },
3264 | "engines": {
3265 | "node": ">=14.17"
3266 | }
3267 | },
3268 | "node_modules/undici-types": {
3269 | "version": "6.21.0",
3270 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
3271 | "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
3272 | "devOptional": true,
3273 | "license": "MIT"
3274 | },
3275 | "node_modules/uri-js": {
3276 | "version": "4.4.1",
3277 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
3278 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
3279 | "dev": true,
3280 | "license": "BSD-2-Clause",
3281 | "dependencies": {
3282 | "punycode": "^2.1.0"
3283 | }
3284 | },
3285 | "node_modules/web-streams-polyfill": {
3286 | "version": "3.3.3",
3287 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
3288 | "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
3289 | "license": "MIT",
3290 | "engines": {
3291 | "node": ">= 8"
3292 | }
3293 | },
3294 | "node_modules/which": {
3295 | "version": "2.0.2",
3296 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3297 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3298 | "dev": true,
3299 | "license": "ISC",
3300 | "dependencies": {
3301 | "isexe": "^2.0.0"
3302 | },
3303 | "bin": {
3304 | "node-which": "bin/node-which"
3305 | },
3306 | "engines": {
3307 | "node": ">= 8"
3308 | }
3309 | },
3310 | "node_modules/widest-line": {
3311 | "version": "3.1.0",
3312 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
3313 | "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
3314 | "license": "MIT",
3315 | "dependencies": {
3316 | "string-width": "^4.0.0"
3317 | },
3318 | "engines": {
3319 | "node": ">=8"
3320 | }
3321 | },
3322 | "node_modules/word-wrap": {
3323 | "version": "1.2.5",
3324 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
3325 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
3326 | "dev": true,
3327 | "license": "MIT",
3328 | "engines": {
3329 | "node": ">=0.10.0"
3330 | }
3331 | },
3332 | "node_modules/wordwrap": {
3333 | "version": "1.0.0",
3334 | "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
3335 | "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
3336 | "license": "MIT"
3337 | },
3338 | "node_modules/wrap-ansi": {
3339 | "version": "7.0.0",
3340 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3341 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3342 | "license": "MIT",
3343 | "dependencies": {
3344 | "ansi-styles": "^4.0.0",
3345 | "string-width": "^4.1.0",
3346 | "strip-ansi": "^6.0.0"
3347 | },
3348 | "engines": {
3349 | "node": ">=10"
3350 | },
3351 | "funding": {
3352 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3353 | }
3354 | },
3355 | "node_modules/yocto-queue": {
3356 | "version": "0.1.0",
3357 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3358 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3359 | "dev": true,
3360 | "license": "MIT",
3361 | "engines": {
3362 | "node": ">=10"
3363 | },
3364 | "funding": {
3365 | "url": "https://github.com/sponsors/sindresorhus"
3366 | }
3367 | },
3368 | "node_modules/yoctocolors-cjs": {
3369 | "version": "2.1.2",
3370 | "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz",
3371 | "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==",
3372 | "license": "MIT",
3373 | "engines": {
3374 | "node": ">=18"
3375 | },
3376 | "funding": {
3377 | "url": "https://github.com/sponsors/sindresorhus"
3378 | }
3379 | }
3380 | }
3381 | }
3382 |
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://www.raycast.com/schemas/extension.json",
3 | "name": "gpt-4-free",
4 | "title": "GPT 4 Free",
5 | "description": "",
6 | "icon": "command-icon.png",
7 | "author": "jellydn",
8 | "owner": "productsway",
9 | "categories": [
10 | "Productivity"
11 | ],
12 | "license": "MIT",
13 | "commands": [
14 | {
15 | "name": "index",
16 | "title": "Ask AI",
17 | "description": "Write a question and get an answer from GPT-4",
18 | "mode": "view"
19 | }
20 | ],
21 | "dependencies": {
22 | "@raycast/api": "1.99.4",
23 | "node-fetch": "3.3.2"
24 | },
25 | "devDependencies": {
26 | "@raycast/eslint-config": "1.0.11",
27 | "@types/node": "22.15.29",
28 | "@types/react": "18.3.23",
29 | "eslint": "9.28.0",
30 | "prettier": "3.5.3",
31 | "typescript": "5.8.3"
32 | },
33 | "scripts": {
34 | "build": "ray build -e dist",
35 | "dev": "ray develop",
36 | "fix-lint": "ray lint --fix",
37 | "lint": "ray lint",
38 | "publish": "npx @raycast/api@latest publish"
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/raycast-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | /* 🚧 🚧 🚧
4 | * This file is auto-generated from the extension's manifest.
5 | * Do not modify manually. Instead, update the `package.json` file.
6 | * 🚧 🚧 🚧 */
7 |
8 | /* eslint-disable @typescript-eslint/ban-types */
9 |
10 | type ExtensionPreferences = {}
11 |
12 | /** Preferences accessible in all the extension's commands */
13 | declare type Preferences = ExtensionPreferences
14 |
15 | declare namespace Preferences {
16 | /** Preferences accessible in the `index` command */
17 | export type Index = ExtensionPreferences & {}
18 | }
19 |
20 | declare namespace Arguments {
21 | /** Arguments passed to the `index` command */
22 | export type Index = {}
23 | }
24 |
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/src/index.tsx:
--------------------------------------------------------------------------------
1 | import { Form, ActionPanel, Action, showToast } from "@raycast/api";
2 | import fetch from "node-fetch";
3 | import { useState } from "react";
4 |
5 | type Values = {
6 | question: string;
7 | };
8 |
9 | const askQuestion = async (input: string, model = "you") => {
10 | const params = new URLSearchParams({
11 | prompt: input,
12 | model,
13 | });
14 |
15 | const request = await fetch(`http://127.0.0.1:13000/ask?${params}`, {
16 | method: "GET",
17 | });
18 |
19 | const response = await request.text();
20 | return response;
21 | };
22 |
23 | export default function Command() {
24 | const [histories, setHistory] = useState<{ question: string; answer: string; createdAt: string }[]>([]);
25 |
26 | async function handleSubmit(values: Values) {
27 | showToast({ title: "Submitting", message: "Please wait..." });
28 | const response = await askQuestion(values.question);
29 | showToast({ title: "Success", message: response });
30 | setHistory([...histories, { question: values.question, answer: response, createdAt: new Date().toISOString() }]);
31 | }
32 |
33 | return (
34 |
47 |
48 | {histories.map(({ question, answer }, index) => (
49 | <>
50 |
51 |
52 |
53 |
54 | >
55 | ))}
56 |
57 |
58 |
59 | );
60 | }
61 |
--------------------------------------------------------------------------------
/raycast-gpt4free-extension/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/tsconfig",
3 | "display": "Node 16",
4 | "include": ["src/**/*", "raycast-env.d.ts"],
5 | "compilerOptions": {
6 | "lib": ["es2021"],
7 | "module": "commonjs",
8 | "target": "es2021",
9 | "strict": true,
10 | "isolatedModules": true,
11 | "esModuleInterop": true,
12 | "skipLibCheck": true,
13 | "forceConsistentCasingInFileNames": true,
14 | "jsx": "react-jsx",
15 | "resolveJsonModule": true
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3 | "extends": [
4 | "config:base",
5 | "group:allNonMajor",
6 | ":pinAllExceptPeerDependencies"
7 | ],
8 | "lockFileMaintenance": {
9 | "enabled": true
10 | },
11 | "automerge": true,
12 | "major": {
13 | "automerge": false
14 | }
15 | }
16 |
--------------------------------------------------------------------------------