Spaces:
Running
Running
coyotte508
commited on
Commit
•
c27d5c6
1
Parent(s):
704bc64
init
Browse files- .gitignore +23 -0
- .npmrc +1 -0
- .prettierignore +4 -0
- .prettierrc +15 -0
- README.md +38 -1
- eslint.config.js +34 -0
- package.json +40 -0
- pnpm-lock.yaml +2807 -0
- postcss.config.js +6 -0
- src/app.css +3 -0
- src/app.d.ts +13 -0
- src/app.html +12 -0
- src/lib/index.ts +1 -0
- src/routes/+layout.svelte +6 -0
- src/routes/+page.svelte +2 -0
- static/favicon.png +0 -0
- svelte.config.js +18 -0
- tailwind.config.ts +14 -0
- tsconfig.json +19 -0
- vite.config.ts +6 -0
.gitignore
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
node_modules
|
2 |
+
|
3 |
+
# Output
|
4 |
+
.output
|
5 |
+
.vercel
|
6 |
+
.netlify
|
7 |
+
.wrangler
|
8 |
+
/.svelte-kit
|
9 |
+
/build
|
10 |
+
|
11 |
+
# OS
|
12 |
+
.DS_Store
|
13 |
+
Thumbs.db
|
14 |
+
|
15 |
+
# Env
|
16 |
+
.env
|
17 |
+
.env.*
|
18 |
+
!.env.example
|
19 |
+
!.env.test
|
20 |
+
|
21 |
+
# Vite
|
22 |
+
vite.config.js.timestamp-*
|
23 |
+
vite.config.ts.timestamp-*
|
.npmrc
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
engine-strict=true
|
.prettierignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Package Managers
|
2 |
+
package-lock.json
|
3 |
+
pnpm-lock.yaml
|
4 |
+
yarn.lock
|
.prettierrc
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"useTabs": true,
|
3 |
+
"singleQuote": true,
|
4 |
+
"trailingComma": "none",
|
5 |
+
"printWidth": 100,
|
6 |
+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
|
7 |
+
"overrides": [
|
8 |
+
{
|
9 |
+
"files": "*.svelte",
|
10 |
+
"options": {
|
11 |
+
"parser": "svelte"
|
12 |
+
}
|
13 |
+
}
|
14 |
+
]
|
15 |
+
}
|
README.md
CHANGED
@@ -7,4 +7,41 @@ sdk: docker
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
+
# sv
|
11 |
+
|
12 |
+
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
|
13 |
+
|
14 |
+
## Creating a project
|
15 |
+
|
16 |
+
If you're seeing this, you've probably already done this step. Congrats!
|
17 |
+
|
18 |
+
```bash
|
19 |
+
# create a new project in the current directory
|
20 |
+
npx sv create
|
21 |
+
|
22 |
+
# create a new project in my-app
|
23 |
+
npx sv create my-app
|
24 |
+
```
|
25 |
+
|
26 |
+
## Developing
|
27 |
+
|
28 |
+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
29 |
+
|
30 |
+
```bash
|
31 |
+
npm run dev
|
32 |
+
|
33 |
+
# or start the server and open the app in a new browser tab
|
34 |
+
npm run dev -- --open
|
35 |
+
```
|
36 |
+
|
37 |
+
## Building
|
38 |
+
|
39 |
+
To create a production version of your app:
|
40 |
+
|
41 |
+
```bash
|
42 |
+
npm run build
|
43 |
+
```
|
44 |
+
|
45 |
+
You can preview the production build with `npm run preview`.
|
46 |
+
|
47 |
+
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
|
eslint.config.js
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import prettier from 'eslint-config-prettier';
|
2 |
+
import js from '@eslint/js';
|
3 |
+
import { includeIgnoreFile } from '@eslint/compat';
|
4 |
+
import svelte from 'eslint-plugin-svelte';
|
5 |
+
import globals from 'globals';
|
6 |
+
import { fileURLToPath } from 'node:url';
|
7 |
+
import ts from 'typescript-eslint';
|
8 |
+
const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url));
|
9 |
+
|
10 |
+
export default ts.config(
|
11 |
+
includeIgnoreFile(gitignorePath),
|
12 |
+
js.configs.recommended,
|
13 |
+
...ts.configs.recommended,
|
14 |
+
...svelte.configs['flat/recommended'],
|
15 |
+
prettier,
|
16 |
+
...svelte.configs['flat/prettier'],
|
17 |
+
{
|
18 |
+
languageOptions: {
|
19 |
+
globals: {
|
20 |
+
...globals.browser,
|
21 |
+
...globals.node
|
22 |
+
}
|
23 |
+
}
|
24 |
+
},
|
25 |
+
{
|
26 |
+
files: ['**/*.svelte'],
|
27 |
+
|
28 |
+
languageOptions: {
|
29 |
+
parserOptions: {
|
30 |
+
parser: ts.parser
|
31 |
+
}
|
32 |
+
}
|
33 |
+
}
|
34 |
+
);
|
package.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "dduf-check",
|
3 |
+
"version": "0.0.1",
|
4 |
+
"type": "module",
|
5 |
+
"scripts": {
|
6 |
+
"dev": "vite dev",
|
7 |
+
"build": "vite build",
|
8 |
+
"preview": "vite preview",
|
9 |
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
10 |
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
11 |
+
"format": "prettier --write .",
|
12 |
+
"lint": "prettier --check . && eslint ."
|
13 |
+
},
|
14 |
+
"devDependencies": {
|
15 |
+
"@eslint/compat": "^1.2.3",
|
16 |
+
"@sveltejs/adapter-auto": "^3.0.0",
|
17 |
+
"@sveltejs/kit": "^2.9.0",
|
18 |
+
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
19 |
+
"autoprefixer": "^10.4.20",
|
20 |
+
"eslint": "^9.7.0",
|
21 |
+
"eslint-config-prettier": "^9.1.0",
|
22 |
+
"eslint-plugin-svelte": "^2.36.0",
|
23 |
+
"globals": "^15.0.0",
|
24 |
+
"prettier": "^3.3.2",
|
25 |
+
"prettier-plugin-svelte": "^3.2.6",
|
26 |
+
"prettier-plugin-tailwindcss": "^0.6.5",
|
27 |
+
"svelte": "^5.0.0",
|
28 |
+
"svelte-check": "^4.0.0",
|
29 |
+
"tailwindcss": "^3.4.9",
|
30 |
+
"typescript": "^5.0.0",
|
31 |
+
"typescript-eslint": "^8.0.0",
|
32 |
+
"vite": "^6.0.0"
|
33 |
+
},
|
34 |
+
"dependencies": {
|
35 |
+
"@tailwindcss/container-queries": "^0.1.1",
|
36 |
+
"@tailwindcss/forms": "^0.5.9",
|
37 |
+
"@tailwindcss/typography": "^0.5.15"
|
38 |
+
},
|
39 |
+
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a"
|
40 |
+
}
|
pnpm-lock.yaml
ADDED
@@ -0,0 +1,2807 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
lockfileVersion: '9.0'
|
2 |
+
|
3 |
+
settings:
|
4 |
+
autoInstallPeers: true
|
5 |
+
excludeLinksFromLockfile: false
|
6 |
+
|
7 |
+
importers:
|
8 |
+
|
9 |
+
.:
|
10 |
+
dependencies:
|
11 |
+
'@tailwindcss/container-queries':
|
12 |
+
specifier: ^0.1.1
|
13 |
+
version: 0.1.1([email protected])
|
14 |
+
'@tailwindcss/forms':
|
15 |
+
specifier: ^0.5.9
|
16 |
+
version: 0.5.9([email protected])
|
17 |
+
'@tailwindcss/typography':
|
18 |
+
specifier: ^0.5.15
|
19 |
+
version: 0.5.15([email protected])
|
20 |
+
devDependencies:
|
21 |
+
'@eslint/compat':
|
22 |
+
specifier: ^1.2.3
|
23 |
+
version: 1.2.3([email protected]([email protected]))
|
24 |
+
'@sveltejs/adapter-auto':
|
25 |
+
specifier: ^3.0.0
|
26 |
+
version: 3.3.1(@sveltejs/[email protected](@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected])))
|
27 |
+
'@sveltejs/kit':
|
28 |
+
specifier: ^2.9.0
|
29 |
+
version: 2.9.0(@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected]))
|
30 |
+
'@sveltejs/vite-plugin-svelte':
|
31 |
+
specifier: ^5.0.0
|
32 |
+
version: 5.0.1([email protected])([email protected]([email protected])([email protected]))
|
33 |
+
autoprefixer:
|
34 |
+
specifier: ^10.4.20
|
35 |
+
version: 10.4.20([email protected])
|
36 |
+
eslint:
|
37 |
+
specifier: ^9.7.0
|
38 |
+
version: 9.16.0([email protected])
|
39 |
+
eslint-config-prettier:
|
40 |
+
specifier: ^9.1.0
|
41 |
+
version: 9.1.0([email protected]([email protected]))
|
42 |
+
eslint-plugin-svelte:
|
43 |
+
specifier: ^2.36.0
|
44 |
+
version: 2.46.1([email protected]([email protected]))([email protected])
|
45 |
+
globals:
|
46 |
+
specifier: ^15.0.0
|
47 |
+
version: 15.13.0
|
48 |
+
prettier:
|
49 |
+
specifier: ^3.3.2
|
50 |
+
version: 3.4.1
|
51 |
+
prettier-plugin-svelte:
|
52 |
+
specifier: ^3.2.6
|
53 |
+
version: 3.3.2([email protected])([email protected])
|
54 |
+
prettier-plugin-tailwindcss:
|
55 |
+
specifier: ^0.6.5
|
56 |
+
version: 0.6.9([email protected]([email protected])([email protected]))([email protected])
|
57 |
+
svelte:
|
58 |
+
specifier: ^5.0.0
|
59 |
+
version: 5.4.0
|
60 |
+
svelte-check:
|
61 |
+
specifier: ^4.0.0
|
62 |
+
version: 4.1.0([email protected])([email protected])
|
63 |
+
tailwindcss:
|
64 |
+
specifier: ^3.4.9
|
65 |
+
version: 3.4.15
|
66 |
+
typescript:
|
67 |
+
specifier: ^5.0.0
|
68 |
+
version: 5.7.2
|
69 |
+
typescript-eslint:
|
70 |
+
specifier: ^8.0.0
|
71 |
+
version: 8.17.0([email protected]([email protected]))([email protected])
|
72 |
+
vite:
|
73 |
+
specifier: ^6.0.0
|
74 |
+
version: 6.0.2([email protected])([email protected])
|
75 |
+
|
76 |
+
packages:
|
77 |
+
|
78 |
+
'@alloc/[email protected]':
|
79 |
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
80 |
+
engines: {node: '>=10'}
|
81 |
+
|
82 |
+
'@ampproject/[email protected]':
|
83 |
+
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
84 |
+
engines: {node: '>=6.0.0'}
|
85 |
+
|
86 |
+
'@esbuild/[email protected]':
|
87 |
+
resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
|
88 |
+
engines: {node: '>=18'}
|
89 |
+
cpu: [ppc64]
|
90 |
+
os: [aix]
|
91 |
+
|
92 |
+
'@esbuild/[email protected]':
|
93 |
+
resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
|
94 |
+
engines: {node: '>=18'}
|
95 |
+
cpu: [arm64]
|
96 |
+
os: [android]
|
97 |
+
|
98 |
+
'@esbuild/[email protected]':
|
99 |
+
resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
|
100 |
+
engines: {node: '>=18'}
|
101 |
+
cpu: [arm]
|
102 |
+
os: [android]
|
103 |
+
|
104 |
+
'@esbuild/[email protected]':
|
105 |
+
resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
|
106 |
+
engines: {node: '>=18'}
|
107 |
+
cpu: [x64]
|
108 |
+
os: [android]
|
109 |
+
|
110 |
+
'@esbuild/[email protected]':
|
111 |
+
resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
|
112 |
+
engines: {node: '>=18'}
|
113 |
+
cpu: [arm64]
|
114 |
+
os: [darwin]
|
115 |
+
|
116 |
+
'@esbuild/[email protected]':
|
117 |
+
resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
|
118 |
+
engines: {node: '>=18'}
|
119 |
+
cpu: [x64]
|
120 |
+
os: [darwin]
|
121 |
+
|
122 |
+
'@esbuild/[email protected]':
|
123 |
+
resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
|
124 |
+
engines: {node: '>=18'}
|
125 |
+
cpu: [arm64]
|
126 |
+
os: [freebsd]
|
127 |
+
|
128 |
+
'@esbuild/[email protected]':
|
129 |
+
resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
|
130 |
+
engines: {node: '>=18'}
|
131 |
+
cpu: [x64]
|
132 |
+
os: [freebsd]
|
133 |
+
|
134 |
+
'@esbuild/[email protected]':
|
135 |
+
resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
|
136 |
+
engines: {node: '>=18'}
|
137 |
+
cpu: [arm64]
|
138 |
+
os: [linux]
|
139 |
+
|
140 |
+
'@esbuild/[email protected]':
|
141 |
+
resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
|
142 |
+
engines: {node: '>=18'}
|
143 |
+
cpu: [arm]
|
144 |
+
os: [linux]
|
145 |
+
|
146 |
+
'@esbuild/[email protected]':
|
147 |
+
resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
|
148 |
+
engines: {node: '>=18'}
|
149 |
+
cpu: [ia32]
|
150 |
+
os: [linux]
|
151 |
+
|
152 |
+
'@esbuild/[email protected]':
|
153 |
+
resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
|
154 |
+
engines: {node: '>=18'}
|
155 |
+
cpu: [loong64]
|
156 |
+
os: [linux]
|
157 |
+
|
158 |
+
'@esbuild/[email protected]':
|
159 |
+
resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
|
160 |
+
engines: {node: '>=18'}
|
161 |
+
cpu: [mips64el]
|
162 |
+
os: [linux]
|
163 |
+
|
164 |
+
'@esbuild/[email protected]':
|
165 |
+
resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
|
166 |
+
engines: {node: '>=18'}
|
167 |
+
cpu: [ppc64]
|
168 |
+
os: [linux]
|
169 |
+
|
170 |
+
'@esbuild/[email protected]':
|
171 |
+
resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
|
172 |
+
engines: {node: '>=18'}
|
173 |
+
cpu: [riscv64]
|
174 |
+
os: [linux]
|
175 |
+
|
176 |
+
'@esbuild/[email protected]':
|
177 |
+
resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
|
178 |
+
engines: {node: '>=18'}
|
179 |
+
cpu: [s390x]
|
180 |
+
os: [linux]
|
181 |
+
|
182 |
+
'@esbuild/[email protected]':
|
183 |
+
resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
|
184 |
+
engines: {node: '>=18'}
|
185 |
+
cpu: [x64]
|
186 |
+
os: [linux]
|
187 |
+
|
188 |
+
'@esbuild/[email protected]':
|
189 |
+
resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
|
190 |
+
engines: {node: '>=18'}
|
191 |
+
cpu: [x64]
|
192 |
+
os: [netbsd]
|
193 |
+
|
194 |
+
'@esbuild/[email protected]':
|
195 |
+
resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
|
196 |
+
engines: {node: '>=18'}
|
197 |
+
cpu: [arm64]
|
198 |
+
os: [openbsd]
|
199 |
+
|
200 |
+
'@esbuild/[email protected]':
|
201 |
+
resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
|
202 |
+
engines: {node: '>=18'}
|
203 |
+
cpu: [x64]
|
204 |
+
os: [openbsd]
|
205 |
+
|
206 |
+
'@esbuild/[email protected]':
|
207 |
+
resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
|
208 |
+
engines: {node: '>=18'}
|
209 |
+
cpu: [x64]
|
210 |
+
os: [sunos]
|
211 |
+
|
212 |
+
'@esbuild/[email protected]':
|
213 |
+
resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
|
214 |
+
engines: {node: '>=18'}
|
215 |
+
cpu: [arm64]
|
216 |
+
os: [win32]
|
217 |
+
|
218 |
+
'@esbuild/[email protected]':
|
219 |
+
resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
|
220 |
+
engines: {node: '>=18'}
|
221 |
+
cpu: [ia32]
|
222 |
+
os: [win32]
|
223 |
+
|
224 |
+
'@esbuild/[email protected]':
|
225 |
+
resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
|
226 |
+
engines: {node: '>=18'}
|
227 |
+
cpu: [x64]
|
228 |
+
os: [win32]
|
229 |
+
|
230 |
+
'@eslint-community/[email protected]':
|
231 |
+
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
|
232 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
233 |
+
peerDependencies:
|
234 |
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
235 |
+
|
236 |
+
'@eslint-community/[email protected]':
|
237 |
+
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
238 |
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
239 |
+
|
240 |
+
'@eslint/[email protected]':
|
241 |
+
resolution: {integrity: sha512-wlZhwlDFxkxIZ571aH0FoK4h4Vwx7P3HJx62Gp8hTc10bfpwT2x0nULuAHmQSJBOWPgPeVf+9YtnD4j50zVHmA==}
|
242 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
243 |
+
peerDependencies:
|
244 |
+
eslint: ^9.10.0
|
245 |
+
peerDependenciesMeta:
|
246 |
+
eslint:
|
247 |
+
optional: true
|
248 |
+
|
249 |
+
'@eslint/[email protected]':
|
250 |
+
resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==}
|
251 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
252 |
+
|
253 |
+
'@eslint/[email protected]':
|
254 |
+
resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==}
|
255 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
256 |
+
|
257 |
+
'@eslint/[email protected]':
|
258 |
+
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
|
259 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
260 |
+
|
261 |
+
'@eslint/[email protected]':
|
262 |
+
resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==}
|
263 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
264 |
+
|
265 |
+
'@eslint/[email protected]':
|
266 |
+
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
|
267 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
268 |
+
|
269 |
+
'@eslint/[email protected]':
|
270 |
+
resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==}
|
271 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
272 |
+
|
273 |
+
'@humanfs/[email protected]':
|
274 |
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
275 |
+
engines: {node: '>=18.18.0'}
|
276 |
+
|
277 |
+
'@humanfs/[email protected]':
|
278 |
+
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
|
279 |
+
engines: {node: '>=18.18.0'}
|
280 |
+
|
281 |
+
'@humanwhocodes/[email protected]':
|
282 |
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
283 |
+
engines: {node: '>=12.22'}
|
284 |
+
|
285 |
+
'@humanwhocodes/[email protected]':
|
286 |
+
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
|
287 |
+
engines: {node: '>=18.18'}
|
288 |
+
|
289 |
+
'@humanwhocodes/[email protected]':
|
290 |
+
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
|
291 |
+
engines: {node: '>=18.18'}
|
292 |
+
|
293 |
+
'@isaacs/[email protected]':
|
294 |
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
295 |
+
engines: {node: '>=12'}
|
296 |
+
|
297 |
+
'@jridgewell/[email protected]':
|
298 |
+
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
299 |
+
engines: {node: '>=6.0.0'}
|
300 |
+
|
301 |
+
'@jridgewell/[email protected]':
|
302 |
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
303 |
+
engines: {node: '>=6.0.0'}
|
304 |
+
|
305 |
+
'@jridgewell/[email protected]':
|
306 |
+
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
307 |
+
engines: {node: '>=6.0.0'}
|
308 |
+
|
309 |
+
'@jridgewell/[email protected]':
|
310 |
+
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
311 |
+
|
312 |
+
'@jridgewell/[email protected]':
|
313 |
+
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
314 |
+
|
315 |
+
'@nodelib/[email protected]':
|
316 |
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
317 |
+
engines: {node: '>= 8'}
|
318 |
+
|
319 |
+
'@nodelib/[email protected]':
|
320 |
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
321 |
+
engines: {node: '>= 8'}
|
322 |
+
|
323 |
+
'@nodelib/[email protected]':
|
324 |
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
325 |
+
engines: {node: '>= 8'}
|
326 |
+
|
327 |
+
'@pkgjs/[email protected]':
|
328 |
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
329 |
+
engines: {node: '>=14'}
|
330 |
+
|
331 |
+
'@polka/[email protected]':
|
332 |
+
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
|
333 |
+
|
334 |
+
'@rollup/[email protected]':
|
335 |
+
resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==}
|
336 |
+
cpu: [arm]
|
337 |
+
os: [android]
|
338 |
+
|
339 |
+
'@rollup/[email protected]':
|
340 |
+
resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==}
|
341 |
+
cpu: [arm64]
|
342 |
+
os: [android]
|
343 |
+
|
344 |
+
'@rollup/[email protected]':
|
345 |
+
resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==}
|
346 |
+
cpu: [arm64]
|
347 |
+
os: [darwin]
|
348 |
+
|
349 |
+
'@rollup/[email protected]':
|
350 |
+
resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==}
|
351 |
+
cpu: [x64]
|
352 |
+
os: [darwin]
|
353 |
+
|
354 |
+
'@rollup/[email protected]':
|
355 |
+
resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==}
|
356 |
+
cpu: [arm64]
|
357 |
+
os: [freebsd]
|
358 |
+
|
359 |
+
'@rollup/[email protected]':
|
360 |
+
resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==}
|
361 |
+
cpu: [x64]
|
362 |
+
os: [freebsd]
|
363 |
+
|
364 |
+
'@rollup/[email protected]':
|
365 |
+
resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==}
|
366 |
+
cpu: [arm]
|
367 |
+
os: [linux]
|
368 |
+
|
369 |
+
'@rollup/[email protected]':
|
370 |
+
resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==}
|
371 |
+
cpu: [arm]
|
372 |
+
os: [linux]
|
373 |
+
|
374 |
+
'@rollup/[email protected]':
|
375 |
+
resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==}
|
376 |
+
cpu: [arm64]
|
377 |
+
os: [linux]
|
378 |
+
|
379 |
+
'@rollup/[email protected]':
|
380 |
+
resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==}
|
381 |
+
cpu: [arm64]
|
382 |
+
os: [linux]
|
383 |
+
|
384 |
+
'@rollup/[email protected]':
|
385 |
+
resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==}
|
386 |
+
cpu: [ppc64]
|
387 |
+
os: [linux]
|
388 |
+
|
389 |
+
'@rollup/[email protected]':
|
390 |
+
resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==}
|
391 |
+
cpu: [riscv64]
|
392 |
+
os: [linux]
|
393 |
+
|
394 |
+
'@rollup/[email protected]':
|
395 |
+
resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==}
|
396 |
+
cpu: [s390x]
|
397 |
+
os: [linux]
|
398 |
+
|
399 |
+
'@rollup/[email protected]':
|
400 |
+
resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==}
|
401 |
+
cpu: [x64]
|
402 |
+
os: [linux]
|
403 |
+
|
404 |
+
'@rollup/[email protected]':
|
405 |
+
resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==}
|
406 |
+
cpu: [x64]
|
407 |
+
os: [linux]
|
408 |
+
|
409 |
+
'@rollup/[email protected]':
|
410 |
+
resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==}
|
411 |
+
cpu: [arm64]
|
412 |
+
os: [win32]
|
413 |
+
|
414 |
+
'@rollup/[email protected]':
|
415 |
+
resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==}
|
416 |
+
cpu: [ia32]
|
417 |
+
os: [win32]
|
418 |
+
|
419 |
+
'@rollup/[email protected]':
|
420 |
+
resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==}
|
421 |
+
cpu: [x64]
|
422 |
+
os: [win32]
|
423 |
+
|
424 |
+
'@sveltejs/[email protected]':
|
425 |
+
resolution: {integrity: sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==}
|
426 |
+
peerDependencies:
|
427 |
+
'@sveltejs/kit': ^2.0.0
|
428 |
+
|
429 |
+
'@sveltejs/[email protected]':
|
430 |
+
resolution: {integrity: sha512-W3E7ed3ChB6kPqRs2H7tcHp+Z7oiTFC6m+lLyAQQuyXeqw6LdNuuwEUla+5VM0OGgqQD+cYD6+7Xq80vVm17Vg==}
|
431 |
+
engines: {node: '>=18.13'}
|
432 |
+
hasBin: true
|
433 |
+
peerDependencies:
|
434 |
+
'@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0
|
435 |
+
svelte: ^4.0.0 || ^5.0.0-next.0
|
436 |
+
vite: ^5.0.3 || ^6.0.0
|
437 |
+
|
438 |
+
'@sveltejs/[email protected]':
|
439 |
+
resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==}
|
440 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
|
441 |
+
peerDependencies:
|
442 |
+
'@sveltejs/vite-plugin-svelte': ^5.0.0
|
443 |
+
svelte: ^5.0.0
|
444 |
+
vite: ^6.0.0
|
445 |
+
|
446 |
+
'@sveltejs/[email protected]':
|
447 |
+
resolution: {integrity: sha512-D5l5+STmywGoLST07T9mrqqFFU+xgv5fqyTWM+VbxTvQ6jujNn4h3lQNCvlwVYs4Erov8i0K5Rwr3LQtmBYmBw==}
|
448 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22}
|
449 |
+
peerDependencies:
|
450 |
+
svelte: ^5.0.0
|
451 |
+
vite: ^6.0.0
|
452 |
+
|
453 |
+
'@tailwindcss/[email protected]':
|
454 |
+
resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==}
|
455 |
+
peerDependencies:
|
456 |
+
tailwindcss: '>=3.2.0'
|
457 |
+
|
458 |
+
'@tailwindcss/[email protected]':
|
459 |
+
resolution: {integrity: sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==}
|
460 |
+
peerDependencies:
|
461 |
+
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20'
|
462 |
+
|
463 |
+
'@tailwindcss/[email protected]':
|
464 |
+
resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
|
465 |
+
peerDependencies:
|
466 |
+
tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
|
467 |
+
|
468 |
+
'@types/[email protected]':
|
469 |
+
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
|
470 |
+
|
471 |
+
'@types/[email protected]':
|
472 |
+
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
473 |
+
|
474 |
+
'@types/[email protected]':
|
475 |
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
476 |
+
|
477 |
+
'@typescript-eslint/[email protected]':
|
478 |
+
resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==}
|
479 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
480 |
+
peerDependencies:
|
481 |
+
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
|
482 |
+
eslint: ^8.57.0 || ^9.0.0
|
483 |
+
typescript: '*'
|
484 |
+
peerDependenciesMeta:
|
485 |
+
typescript:
|
486 |
+
optional: true
|
487 |
+
|
488 |
+
'@typescript-eslint/[email protected]':
|
489 |
+
resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==}
|
490 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
491 |
+
peerDependencies:
|
492 |
+
eslint: ^8.57.0 || ^9.0.0
|
493 |
+
typescript: '*'
|
494 |
+
peerDependenciesMeta:
|
495 |
+
typescript:
|
496 |
+
optional: true
|
497 |
+
|
498 |
+
'@typescript-eslint/[email protected]':
|
499 |
+
resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==}
|
500 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
501 |
+
|
502 |
+
'@typescript-eslint/[email protected]':
|
503 |
+
resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==}
|
504 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
505 |
+
peerDependencies:
|
506 |
+
eslint: ^8.57.0 || ^9.0.0
|
507 |
+
typescript: '*'
|
508 |
+
peerDependenciesMeta:
|
509 |
+
typescript:
|
510 |
+
optional: true
|
511 |
+
|
512 |
+
'@typescript-eslint/[email protected]':
|
513 |
+
resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==}
|
514 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
515 |
+
|
516 |
+
'@typescript-eslint/[email protected]':
|
517 |
+
resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==}
|
518 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
519 |
+
peerDependencies:
|
520 |
+
typescript: '*'
|
521 |
+
peerDependenciesMeta:
|
522 |
+
typescript:
|
523 |
+
optional: true
|
524 |
+
|
525 |
+
'@typescript-eslint/[email protected]':
|
526 |
+
resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==}
|
527 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
528 |
+
peerDependencies:
|
529 |
+
eslint: ^8.57.0 || ^9.0.0
|
530 |
+
typescript: '*'
|
531 |
+
peerDependenciesMeta:
|
532 |
+
typescript:
|
533 |
+
optional: true
|
534 |
+
|
535 |
+
'@typescript-eslint/[email protected]':
|
536 |
+
resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==}
|
537 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
538 |
+
|
539 | |
540 |
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
541 |
+
peerDependencies:
|
542 |
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
543 |
+
|
544 | |
545 |
+
resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
|
546 |
+
peerDependencies:
|
547 |
+
acorn: '>=8.9.0'
|
548 |
+
|
549 | |
550 |
+
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
|
551 |
+
engines: {node: '>=0.4.0'}
|
552 |
+
hasBin: true
|
553 |
+
|
554 | |
555 |
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
556 |
+
|
557 | |
558 |
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
559 |
+
engines: {node: '>=8'}
|
560 |
+
|
561 | |
562 |
+
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
|
563 |
+
engines: {node: '>=12'}
|
564 |
+
|
565 | |
566 |
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
567 |
+
engines: {node: '>=8'}
|
568 |
+
|
569 | |
570 |
+
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
|
571 |
+
engines: {node: '>=12'}
|
572 |
+
|
573 | |
574 |
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
575 |
+
|
576 | |
577 |
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
578 |
+
engines: {node: '>= 8'}
|
579 |
+
|
580 | |
581 |
+
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
582 |
+
|
583 | |
584 |
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
585 |
+
|
586 | |
587 |
+
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
|
588 |
+
engines: {node: '>= 0.4'}
|
589 |
+
|
590 | |
591 |
+
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
|
592 |
+
engines: {node: ^10 || ^12 || >=14}
|
593 |
+
hasBin: true
|
594 |
+
peerDependencies:
|
595 |
+
postcss: ^8.1.0
|
596 |
+
|
597 | |
598 |
+
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
|
599 |
+
engines: {node: '>= 0.4'}
|
600 |
+
|
601 | |
602 |
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
603 |
+
|
604 | |
605 |
+
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
606 |
+
engines: {node: '>=8'}
|
607 |
+
|
608 | |
609 |
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
610 |
+
|
611 | |
612 |
+
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
613 |
+
|
614 | |
615 |
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
616 |
+
engines: {node: '>=8'}
|
617 |
+
|
618 | |
619 |
+
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
|
620 |
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
621 |
+
hasBin: true
|
622 |
+
|
623 | |
624 |
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
625 |
+
engines: {node: '>=6'}
|
626 |
+
|
627 | |
628 |
+
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
629 |
+
engines: {node: '>= 6'}
|
630 |
+
|
631 | |
632 |
+
resolution: {integrity: sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==}
|
633 |
+
|
634 | |
635 |
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
636 |
+
engines: {node: '>=10'}
|
637 |
+
|
638 | |
639 |
+
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
640 |
+
engines: {node: '>= 8.10.0'}
|
641 |
+
|
642 | |
643 |
+
resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
|
644 |
+
engines: {node: '>= 14.16.0'}
|
645 |
+
|
646 | |
647 |
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
648 |
+
engines: {node: '>=7.0.0'}
|
649 |
+
|
650 | |
651 |
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
652 |
+
|
653 | |
654 |
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
655 |
+
engines: {node: '>= 6'}
|
656 |
+
|
657 | |
658 |
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
659 |
+
|
660 | |
661 |
+
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
|
662 |
+
engines: {node: '>= 0.6'}
|
663 |
+
|
664 | |
665 |
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
666 |
+
engines: {node: '>= 8'}
|
667 |
+
|
668 | |
669 |
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
670 |
+
engines: {node: '>=4'}
|
671 |
+
hasBin: true
|
672 |
+
|
673 | |
674 |
+
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
|
675 |
+
engines: {node: '>=6.0'}
|
676 |
+
peerDependencies:
|
677 |
+
supports-color: '*'
|
678 |
+
peerDependenciesMeta:
|
679 |
+
supports-color:
|
680 |
+
optional: true
|
681 |
+
|
682 | |
683 |
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
684 |
+
|
685 | |
686 |
+
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
687 |
+
engines: {node: '>=0.10.0'}
|
688 |
+
|
689 | |
690 |
+
resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
|
691 |
+
|
692 | |
693 |
+
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
694 |
+
|
695 | |
696 |
+
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
697 |
+
|
698 | |
699 |
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
700 |
+
|
701 | |
702 |
+
resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==}
|
703 |
+
|
704 | |
705 |
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
706 |
+
|
707 | |
708 |
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
709 |
+
|
710 | |
711 |
+
resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
|
712 |
+
engines: {node: '>=18'}
|
713 |
+
hasBin: true
|
714 |
+
|
715 | |
716 |
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
717 |
+
engines: {node: '>=6'}
|
718 |
+
|
719 | |
720 |
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
721 |
+
engines: {node: '>=10'}
|
722 |
+
|
723 | |
724 |
+
resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
|
725 |
+
engines: {node: '>=12'}
|
726 |
+
peerDependencies:
|
727 |
+
eslint: '>=6.0.0'
|
728 |
+
|
729 | |
730 |
+
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
|
731 |
+
hasBin: true
|
732 |
+
peerDependencies:
|
733 |
+
eslint: '>=7.0.0'
|
734 |
+
|
735 | |
736 |
+
resolution: {integrity: sha512-7xYr2o4NID/f9OEYMqxsEQsCsj4KaMy4q5sANaKkAb6/QeCjYFxRmDm2S3YC3A3pl1kyPZ/syOx/i7LcWYSbIw==}
|
737 |
+
engines: {node: ^14.17.0 || >=16.0.0}
|
738 |
+
peerDependencies:
|
739 |
+
eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0
|
740 |
+
svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
|
741 |
+
peerDependenciesMeta:
|
742 |
+
svelte:
|
743 |
+
optional: true
|
744 |
+
|
745 | |
746 |
+
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
|
747 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
748 |
+
|
749 | |
750 |
+
resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
|
751 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
752 |
+
|
753 | |
754 |
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
755 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
756 |
+
|
757 | |
758 |
+
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
759 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
760 |
+
|
761 | |
762 |
+
resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==}
|
763 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
764 |
+
hasBin: true
|
765 |
+
peerDependencies:
|
766 |
+
jiti: '*'
|
767 |
+
peerDependenciesMeta:
|
768 |
+
jiti:
|
769 |
+
optional: true
|
770 |
+
|
771 | |
772 |
+
resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==}
|
773 |
+
|
774 | |
775 |
+
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
776 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
777 |
+
|
778 | |
779 |
+
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
|
780 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
781 |
+
|
782 | |
783 |
+
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
784 |
+
engines: {node: '>=0.10'}
|
785 |
+
|
786 | |
787 |
+
resolution: {integrity: sha512-ZlQmCCK+n7SGoqo7DnfKaP1sJZa49P01/dXzmjCASSo04p72w8EksT2NMK8CEX8DhKsfJXANioIw8VyHNsBfvQ==}
|
788 |
+
|
789 | |
790 |
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
791 |
+
engines: {node: '>=4.0'}
|
792 |
+
|
793 | |
794 |
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
795 |
+
engines: {node: '>=4.0'}
|
796 |
+
|
797 | |
798 |
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
799 |
+
engines: {node: '>=0.10.0'}
|
800 |
+
|
801 | |
802 |
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
803 |
+
|
804 | |
805 |
+
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
|
806 |
+
engines: {node: '>=8.6.0'}
|
807 |
+
|
808 | |
809 |
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
810 |
+
|
811 | |
812 |
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
813 |
+
|
814 | |
815 |
+
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
|
816 |
+
|
817 | |
818 |
+
resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
|
819 |
+
peerDependencies:
|
820 |
+
picomatch: ^3 || ^4
|
821 |
+
peerDependenciesMeta:
|
822 |
+
picomatch:
|
823 |
+
optional: true
|
824 |
+
|
825 | |
826 |
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
827 |
+
engines: {node: '>=16.0.0'}
|
828 |
+
|
829 | |
830 |
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
831 |
+
engines: {node: '>=8'}
|
832 |
+
|
833 | |
834 |
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
835 |
+
engines: {node: '>=10'}
|
836 |
+
|
837 | |
838 |
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
839 |
+
engines: {node: '>=16'}
|
840 |
+
|
841 | |
842 |
+
resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
|
843 |
+
|
844 | |
845 |
+
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
|
846 |
+
engines: {node: '>=14'}
|
847 |
+
|
848 | |
849 |
+
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
|
850 |
+
|
851 | |
852 |
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
853 |
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
854 |
+
os: [darwin]
|
855 |
+
|
856 | |
857 |
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
858 |
+
|
859 | |
860 |
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
861 |
+
engines: {node: '>= 6'}
|
862 |
+
|
863 | |
864 |
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
865 |
+
engines: {node: '>=10.13.0'}
|
866 |
+
|
867 | |
868 |
+
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
|
869 |
+
hasBin: true
|
870 |
+
|
871 | |
872 |
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
873 |
+
engines: {node: '>=18'}
|
874 |
+
|
875 | |
876 |
+
resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==}
|
877 |
+
engines: {node: '>=18'}
|
878 |
+
|
879 | |
880 |
+
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
|
881 |
+
|
882 | |
883 |
+
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
|
884 |
+
|
885 | |
886 |
+
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
887 |
+
|
888 | |
889 |
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
890 |
+
engines: {node: '>=8'}
|
891 |
+
|
892 | |
893 |
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
894 |
+
engines: {node: '>= 0.4'}
|
895 |
+
|
896 | |
897 |
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
898 |
+
engines: {node: '>= 4'}
|
899 |
+
|
900 | |
901 |
+
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
|
902 |
+
engines: {node: '>=6'}
|
903 |
+
|
904 | |
905 |
+
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
|
906 |
+
|
907 | |
908 |
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
909 |
+
engines: {node: '>=0.8.19'}
|
910 |
+
|
911 | |
912 |
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
913 |
+
engines: {node: '>=8'}
|
914 |
+
|
915 | |
916 |
+
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
|
917 |
+
engines: {node: '>= 0.4'}
|
918 |
+
|
919 | |
920 |
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
921 |
+
engines: {node: '>=0.10.0'}
|
922 |
+
|
923 | |
924 |
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
925 |
+
engines: {node: '>=8'}
|
926 |
+
|
927 | |
928 |
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
929 |
+
engines: {node: '>=0.10.0'}
|
930 |
+
|
931 | |
932 |
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
933 |
+
engines: {node: '>=0.12.0'}
|
934 |
+
|
935 | |
936 |
+
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
|
937 |
+
|
938 | |
939 |
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
940 |
+
|
941 | |
942 |
+
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
943 |
+
|
944 | |
945 |
+
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
|
946 |
+
hasBin: true
|
947 |
+
|
948 | |
949 |
+
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
|
950 |
+
hasBin: true
|
951 |
+
|
952 | |
953 |
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
954 |
+
|
955 | |
956 |
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
957 |
+
|
958 | |
959 |
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
960 |
+
|
961 | |
962 |
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
963 |
+
|
964 | |
965 |
+
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
966 |
+
engines: {node: '>=6'}
|
967 |
+
|
968 | |
969 |
+
resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==}
|
970 |
+
|
971 | |
972 |
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
973 |
+
engines: {node: '>= 0.8.0'}
|
974 |
+
|
975 | |
976 |
+
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
977 |
+
engines: {node: '>=10'}
|
978 |
+
|
979 | |
980 |
+
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
|
981 |
+
engines: {node: '>=14'}
|
982 |
+
|
983 | |
984 |
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
985 |
+
|
986 | |
987 |
+
resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
|
988 |
+
|
989 | |
990 |
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
991 |
+
engines: {node: '>=10'}
|
992 |
+
|
993 | |
994 |
+
resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
|
995 |
+
|
996 | |
997 |
+
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
|
998 |
+
|
999 | |
1000 |
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
1001 |
+
|
1002 | |
1003 |
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
1004 |
+
|
1005 | |
1006 |
+
resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
|
1007 |
+
|
1008 | |
1009 |
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
1010 |
+
engines: {node: '>= 8'}
|
1011 |
+
|
1012 | |
1013 |
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
1014 |
+
engines: {node: '>=8.6'}
|
1015 |
+
|
1016 | |
1017 |
+
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
|
1018 |
+
hasBin: true
|
1019 |
+
|
1020 | |
1021 |
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
1022 |
+
|
1023 | |
1024 |
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
1025 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
1026 |
+
|
1027 | |
1028 |
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
1029 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
1030 |
+
|
1031 | |
1032 |
+
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
|
1033 |
+
engines: {node: '>=4'}
|
1034 |
+
|
1035 | |
1036 |
+
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
|
1037 |
+
engines: {node: '>=10'}
|
1038 |
+
|
1039 | |
1040 |
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
1041 |
+
|
1042 | |
1043 |
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
1044 |
+
|
1045 | |
1046 |
+
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
|
1047 |
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
1048 |
+
hasBin: true
|
1049 |
+
|
1050 | |
1051 |
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
1052 |
+
|
1053 | |
1054 |
+
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
|
1055 |
+
|
1056 | |
1057 |
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
1058 |
+
engines: {node: '>=0.10.0'}
|
1059 |
+
|
1060 | |
1061 |
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
1062 |
+
engines: {node: '>=0.10.0'}
|
1063 |
+
|
1064 | |
1065 |
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
1066 |
+
engines: {node: '>=0.10.0'}
|
1067 |
+
|
1068 | |
1069 |
+
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
1070 |
+
engines: {node: '>= 6'}
|
1071 |
+
|
1072 | |
1073 |
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
1074 |
+
engines: {node: '>= 0.8.0'}
|
1075 |
+
|
1076 | |
1077 |
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
1078 |
+
engines: {node: '>=10'}
|
1079 |
+
|
1080 | |
1081 |
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
1082 |
+
engines: {node: '>=10'}
|
1083 |
+
|
1084 | |
1085 |
+
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
|
1086 |
+
|
1087 | |
1088 |
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
1089 |
+
engines: {node: '>=6'}
|
1090 |
+
|
1091 | |
1092 |
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
1093 |
+
engines: {node: '>=8'}
|
1094 |
+
|
1095 | |
1096 |
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
1097 |
+
engines: {node: '>=8'}
|
1098 |
+
|
1099 | |
1100 |
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
1101 |
+
|
1102 | |
1103 |
+
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
1104 |
+
engines: {node: '>=16 || 14 >=14.18'}
|
1105 |
+
|
1106 | |
1107 |
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
1108 |
+
|
1109 | |
1110 |
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
1111 |
+
engines: {node: '>=8.6'}
|
1112 |
+
|
1113 | |
1114 |
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
1115 |
+
engines: {node: '>=0.10.0'}
|
1116 |
+
|
1117 | |
1118 |
+
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
|
1119 |
+
engines: {node: '>= 6'}
|
1120 |
+
|
1121 | |
1122 |
+
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
1123 |
+
engines: {node: '>=14.0.0'}
|
1124 |
+
peerDependencies:
|
1125 |
+
postcss: ^8.0.0
|
1126 |
+
|
1127 | |
1128 |
+
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
1129 |
+
engines: {node: ^12 || ^14 || >= 16}
|
1130 |
+
peerDependencies:
|
1131 |
+
postcss: ^8.4.21
|
1132 |
+
|
1133 | |
1134 |
+
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
|
1135 |
+
engines: {node: '>= 10'}
|
1136 |
+
peerDependencies:
|
1137 |
+
postcss: '>=8.0.9'
|
1138 |
+
ts-node: '>=9.0.0'
|
1139 |
+
peerDependenciesMeta:
|
1140 |
+
postcss:
|
1141 |
+
optional: true
|
1142 |
+
ts-node:
|
1143 |
+
optional: true
|
1144 |
+
|
1145 | |
1146 |
+
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
|
1147 |
+
engines: {node: '>= 14'}
|
1148 |
+
peerDependencies:
|
1149 |
+
postcss: '>=8.0.9'
|
1150 |
+
ts-node: '>=9.0.0'
|
1151 |
+
peerDependenciesMeta:
|
1152 |
+
postcss:
|
1153 |
+
optional: true
|
1154 |
+
ts-node:
|
1155 |
+
optional: true
|
1156 |
+
|
1157 | |
1158 |
+
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
|
1159 |
+
engines: {node: '>=12.0'}
|
1160 |
+
peerDependencies:
|
1161 |
+
postcss: ^8.2.14
|
1162 |
+
|
1163 | |
1164 |
+
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
|
1165 |
+
engines: {node: '>=12.0'}
|
1166 |
+
peerDependencies:
|
1167 |
+
postcss: ^8.3.3
|
1168 |
+
|
1169 | |
1170 |
+
resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
|
1171 |
+
engines: {node: '>=12.0'}
|
1172 |
+
peerDependencies:
|
1173 |
+
postcss: ^8.4.29
|
1174 |
+
|
1175 | |
1176 |
+
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
|
1177 |
+
engines: {node: '>=4'}
|
1178 |
+
|
1179 | |
1180 |
+
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
|
1181 |
+
engines: {node: '>=4'}
|
1182 |
+
|
1183 | |
1184 |
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
1185 |
+
|
1186 | |
1187 |
+
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
|
1188 |
+
engines: {node: ^10 || ^12 || >=14}
|
1189 |
+
|
1190 | |
1191 |
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
1192 |
+
engines: {node: '>= 0.8.0'}
|
1193 |
+
|
1194 | |
1195 |
+
resolution: {integrity: sha512-kRPjH8wSj2iu+dO+XaUv4vD8qr5mdDmlak3IT/7AOgGIMRG86z/EHOLauFcClKEnOUf4A4nOA7sre5KrJD4Raw==}
|
1196 |
+
peerDependencies:
|
1197 |
+
prettier: ^3.0.0
|
1198 |
+
svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
|
1199 |
+
|
1200 | |
1201 |
+
resolution: {integrity: sha512-r0i3uhaZAXYP0At5xGfJH876W3HHGHDp+LCRUJrs57PBeQ6mYHMwr25KH8NPX44F2yGTvdnH7OqCshlQx183Eg==}
|
1202 |
+
engines: {node: '>=14.21.3'}
|
1203 |
+
peerDependencies:
|
1204 |
+
'@ianvs/prettier-plugin-sort-imports': '*'
|
1205 |
+
'@prettier/plugin-pug': '*'
|
1206 |
+
'@shopify/prettier-plugin-liquid': '*'
|
1207 |
+
'@trivago/prettier-plugin-sort-imports': '*'
|
1208 |
+
'@zackad/prettier-plugin-twig-melody': '*'
|
1209 |
+
prettier: ^3.0
|
1210 |
+
prettier-plugin-astro: '*'
|
1211 |
+
prettier-plugin-css-order: '*'
|
1212 |
+
prettier-plugin-import-sort: '*'
|
1213 |
+
prettier-plugin-jsdoc: '*'
|
1214 |
+
prettier-plugin-marko: '*'
|
1215 |
+
prettier-plugin-multiline-arrays: '*'
|
1216 |
+
prettier-plugin-organize-attributes: '*'
|
1217 |
+
prettier-plugin-organize-imports: '*'
|
1218 |
+
prettier-plugin-sort-imports: '*'
|
1219 |
+
prettier-plugin-style-order: '*'
|
1220 |
+
prettier-plugin-svelte: '*'
|
1221 |
+
peerDependenciesMeta:
|
1222 |
+
'@ianvs/prettier-plugin-sort-imports':
|
1223 |
+
optional: true
|
1224 |
+
'@prettier/plugin-pug':
|
1225 |
+
optional: true
|
1226 |
+
'@shopify/prettier-plugin-liquid':
|
1227 |
+
optional: true
|
1228 |
+
'@trivago/prettier-plugin-sort-imports':
|
1229 |
+
optional: true
|
1230 |
+
'@zackad/prettier-plugin-twig-melody':
|
1231 |
+
optional: true
|
1232 |
+
prettier-plugin-astro:
|
1233 |
+
optional: true
|
1234 |
+
prettier-plugin-css-order:
|
1235 |
+
optional: true
|
1236 |
+
prettier-plugin-import-sort:
|
1237 |
+
optional: true
|
1238 |
+
prettier-plugin-jsdoc:
|
1239 |
+
optional: true
|
1240 |
+
prettier-plugin-marko:
|
1241 |
+
optional: true
|
1242 |
+
prettier-plugin-multiline-arrays:
|
1243 |
+
optional: true
|
1244 |
+
prettier-plugin-organize-attributes:
|
1245 |
+
optional: true
|
1246 |
+
prettier-plugin-organize-imports:
|
1247 |
+
optional: true
|
1248 |
+
prettier-plugin-sort-imports:
|
1249 |
+
optional: true
|
1250 |
+
prettier-plugin-style-order:
|
1251 |
+
optional: true
|
1252 |
+
prettier-plugin-svelte:
|
1253 |
+
optional: true
|
1254 |
+
|
1255 | |
1256 |
+
resolution: {integrity: sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==}
|
1257 |
+
engines: {node: '>=14'}
|
1258 |
+
hasBin: true
|
1259 |
+
|
1260 | |
1261 |
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
1262 |
+
engines: {node: '>=6'}
|
1263 |
+
|
1264 | |
1265 |
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
1266 |
+
|
1267 | |
1268 |
+
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
1269 |
+
|
1270 | |
1271 |
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
1272 |
+
engines: {node: '>=8.10.0'}
|
1273 |
+
|
1274 | |
1275 |
+
resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
|
1276 |
+
engines: {node: '>= 14.16.0'}
|
1277 |
+
|
1278 | |
1279 |
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
1280 |
+
engines: {node: '>=4'}
|
1281 |
+
|
1282 | |
1283 |
+
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
|
1284 |
+
hasBin: true
|
1285 |
+
|
1286 | |
1287 |
+
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
1288 |
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
1289 |
+
|
1290 | |
1291 |
+
resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==}
|
1292 |
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
1293 |
+
hasBin: true
|
1294 |
+
|
1295 | |
1296 |
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
1297 |
+
|
1298 | |
1299 |
+
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
|
1300 |
+
engines: {node: '>=6'}
|
1301 |
+
|
1302 | |
1303 |
+
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
|
1304 |
+
engines: {node: '>=10'}
|
1305 |
+
hasBin: true
|
1306 |
+
|
1307 | |
1308 |
+
resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
|
1309 |
+
|
1310 | |
1311 |
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
1312 |
+
engines: {node: '>=8'}
|
1313 |
+
|
1314 | |
1315 |
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
1316 |
+
engines: {node: '>=8'}
|
1317 |
+
|
1318 | |
1319 |
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
1320 |
+
engines: {node: '>=14'}
|
1321 |
+
|
1322 | |
1323 |
+
resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
|
1324 |
+
engines: {node: '>=18'}
|
1325 |
+
|
1326 | |
1327 |
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
1328 |
+
engines: {node: '>=0.10.0'}
|
1329 |
+
|
1330 | |
1331 |
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
1332 |
+
engines: {node: '>=8'}
|
1333 |
+
|
1334 | |
1335 |
+
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
1336 |
+
engines: {node: '>=12'}
|
1337 |
+
|
1338 | |
1339 |
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
1340 |
+
engines: {node: '>=8'}
|
1341 |
+
|
1342 | |
1343 |
+
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
|
1344 |
+
engines: {node: '>=12'}
|
1345 |
+
|
1346 | |
1347 |
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
1348 |
+
engines: {node: '>=8'}
|
1349 |
+
|
1350 | |
1351 |
+
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
|
1352 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
1353 |
+
hasBin: true
|
1354 |
+
|
1355 | |
1356 |
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
1357 |
+
engines: {node: '>=8'}
|
1358 |
+
|
1359 | |
1360 |
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
1361 |
+
engines: {node: '>= 0.4'}
|
1362 |
+
|
1363 | |
1364 |
+
resolution: {integrity: sha512-AflEZYqI578KuDZcpcorPSf597LStxlkN7XqXi38u09zlHODVKd7c+7OuubGzbhgGRUqNTdQCZ+Ga96iRXEf2g==}
|
1365 |
+
engines: {node: '>= 18.0.0'}
|
1366 |
+
hasBin: true
|
1367 |
+
peerDependencies:
|
1368 |
+
svelte: ^4.0.0 || ^5.0.0-next.0
|
1369 |
+
typescript: '>=5.0.0'
|
1370 |
+
|
1371 | |
1372 |
+
resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==}
|
1373 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
1374 |
+
peerDependencies:
|
1375 |
+
svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
|
1376 |
+
peerDependenciesMeta:
|
1377 |
+
svelte:
|
1378 |
+
optional: true
|
1379 |
+
|
1380 | |
1381 |
+
resolution: {integrity: sha512-2I/mjD8cXDpKfdfUK+T6yo/OzugMXIm8lhyJUFM5F/gICMYnkl3C/+4cOSpia8TqpDsi6Qfm5+fdmBNMNmaf2g==}
|
1382 |
+
engines: {node: '>=18'}
|
1383 |
+
|
1384 | |
1385 |
+
resolution: {integrity: sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==}
|
1386 |
+
engines: {node: '>=14.0.0'}
|
1387 |
+
hasBin: true
|
1388 |
+
|
1389 | |
1390 |
+
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
|
1391 |
+
engines: {node: '>=0.8'}
|
1392 |
+
|
1393 | |
1394 |
+
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
1395 |
+
|
1396 | |
1397 |
+
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
|
1398 |
+
|
1399 | |
1400 |
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
1401 |
+
engines: {node: '>=8.0'}
|
1402 |
+
|
1403 | |
1404 |
+
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
|
1405 |
+
engines: {node: '>=6'}
|
1406 |
+
|
1407 | |
1408 |
+
resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
|
1409 |
+
engines: {node: '>=16'}
|
1410 |
+
peerDependencies:
|
1411 |
+
typescript: '>=4.2.0'
|
1412 |
+
|
1413 | |
1414 |
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
1415 |
+
|
1416 | |
1417 |
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
1418 |
+
engines: {node: '>= 0.8.0'}
|
1419 |
+
|
1420 | |
1421 |
+
resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==}
|
1422 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
1423 |
+
peerDependencies:
|
1424 |
+
eslint: ^8.57.0 || ^9.0.0
|
1425 |
+
typescript: '*'
|
1426 |
+
peerDependenciesMeta:
|
1427 |
+
typescript:
|
1428 |
+
optional: true
|
1429 |
+
|
1430 | |
1431 |
+
resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
|
1432 |
+
engines: {node: '>=14.17'}
|
1433 |
+
hasBin: true
|
1434 |
+
|
1435 | |
1436 |
+
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
|
1437 |
+
hasBin: true
|
1438 |
+
peerDependencies:
|
1439 |
+
browserslist: '>= 4.21.0'
|
1440 |
+
|
1441 | |
1442 |
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
1443 |
+
|
1444 | |
1445 |
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
1446 |
+
|
1447 | |
1448 |
+
resolution: {integrity: sha512-XdQ+VsY2tJpBsKGs0wf3U/+azx8BBpYRHFAyKm5VeEZNOJZRB63q7Sc8Iup3k0TrN3KO6QgyzFf+opSbfY1y0g==}
|
1449 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
1450 |
+
hasBin: true
|
1451 |
+
peerDependencies:
|
1452 |
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
1453 |
+
jiti: '>=1.21.0'
|
1454 |
+
less: '*'
|
1455 |
+
lightningcss: ^1.21.0
|
1456 |
+
sass: '*'
|
1457 |
+
sass-embedded: '*'
|
1458 |
+
stylus: '*'
|
1459 |
+
sugarss: '*'
|
1460 |
+
terser: ^5.16.0
|
1461 |
+
tsx: ^4.8.1
|
1462 |
+
yaml: ^2.4.2
|
1463 |
+
peerDependenciesMeta:
|
1464 |
+
'@types/node':
|
1465 |
+
optional: true
|
1466 |
+
jiti:
|
1467 |
+
optional: true
|
1468 |
+
less:
|
1469 |
+
optional: true
|
1470 |
+
lightningcss:
|
1471 |
+
optional: true
|
1472 |
+
sass:
|
1473 |
+
optional: true
|
1474 |
+
sass-embedded:
|
1475 |
+
optional: true
|
1476 |
+
stylus:
|
1477 |
+
optional: true
|
1478 |
+
sugarss:
|
1479 |
+
optional: true
|
1480 |
+
terser:
|
1481 |
+
optional: true
|
1482 |
+
tsx:
|
1483 |
+
optional: true
|
1484 |
+
yaml:
|
1485 |
+
optional: true
|
1486 |
+
|
1487 | |
1488 |
+
resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==}
|
1489 |
+
peerDependencies:
|
1490 |
+
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
|
1491 |
+
peerDependenciesMeta:
|
1492 |
+
vite:
|
1493 |
+
optional: true
|
1494 |
+
|
1495 | |
1496 |
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
1497 |
+
engines: {node: '>= 8'}
|
1498 |
+
hasBin: true
|
1499 |
+
|
1500 | |
1501 |
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
1502 |
+
engines: {node: '>=0.10.0'}
|
1503 |
+
|
1504 | |
1505 |
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
1506 |
+
engines: {node: '>=10'}
|
1507 |
+
|
1508 | |
1509 |
+
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
1510 |
+
engines: {node: '>=12'}
|
1511 |
+
|
1512 | |
1513 |
+
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
|
1514 |
+
engines: {node: '>= 6'}
|
1515 |
+
|
1516 | |
1517 |
+
resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
|
1518 |
+
engines: {node: '>= 14'}
|
1519 |
+
hasBin: true
|
1520 |
+
|
1521 | |
1522 |
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
1523 |
+
engines: {node: '>=10'}
|
1524 |
+
|
1525 | |
1526 |
+
resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
|
1527 |
+
|
1528 |
+
snapshots:
|
1529 |
+
|
1530 |
+
'@alloc/[email protected]': {}
|
1531 |
+
|
1532 |
+
'@ampproject/[email protected]':
|
1533 |
+
dependencies:
|
1534 |
+
'@jridgewell/gen-mapping': 0.3.5
|
1535 |
+
'@jridgewell/trace-mapping': 0.3.25
|
1536 |
+
|
1537 |
+
'@esbuild/[email protected]':
|
1538 |
+
optional: true
|
1539 |
+
|
1540 |
+
'@esbuild/[email protected]':
|
1541 |
+
optional: true
|
1542 |
+
|
1543 |
+
'@esbuild/[email protected]':
|
1544 |
+
optional: true
|
1545 |
+
|
1546 |
+
'@esbuild/[email protected]':
|
1547 |
+
optional: true
|
1548 |
+
|
1549 |
+
'@esbuild/[email protected]':
|
1550 |
+
optional: true
|
1551 |
+
|
1552 |
+
'@esbuild/[email protected]':
|
1553 |
+
optional: true
|
1554 |
+
|
1555 |
+
'@esbuild/[email protected]':
|
1556 |
+
optional: true
|
1557 |
+
|
1558 |
+
'@esbuild/[email protected]':
|
1559 |
+
optional: true
|
1560 |
+
|
1561 |
+
'@esbuild/[email protected]':
|
1562 |
+
optional: true
|
1563 |
+
|
1564 |
+
'@esbuild/[email protected]':
|
1565 |
+
optional: true
|
1566 |
+
|
1567 |
+
'@esbuild/[email protected]':
|
1568 |
+
optional: true
|
1569 |
+
|
1570 |
+
'@esbuild/[email protected]':
|
1571 |
+
optional: true
|
1572 |
+
|
1573 |
+
'@esbuild/[email protected]':
|
1574 |
+
optional: true
|
1575 |
+
|
1576 |
+
'@esbuild/[email protected]':
|
1577 |
+
optional: true
|
1578 |
+
|
1579 |
+
'@esbuild/[email protected]':
|
1580 |
+
optional: true
|
1581 |
+
|
1582 |
+
'@esbuild/[email protected]':
|
1583 |
+
optional: true
|
1584 |
+
|
1585 |
+
'@esbuild/[email protected]':
|
1586 |
+
optional: true
|
1587 |
+
|
1588 |
+
'@esbuild/[email protected]':
|
1589 |
+
optional: true
|
1590 |
+
|
1591 |
+
'@esbuild/[email protected]':
|
1592 |
+
optional: true
|
1593 |
+
|
1594 |
+
'@esbuild/[email protected]':
|
1595 |
+
optional: true
|
1596 |
+
|
1597 |
+
'@esbuild/[email protected]':
|
1598 |
+
optional: true
|
1599 |
+
|
1600 |
+
'@esbuild/[email protected]':
|
1601 |
+
optional: true
|
1602 |
+
|
1603 |
+
'@esbuild/[email protected]':
|
1604 |
+
optional: true
|
1605 |
+
|
1606 |
+
'@esbuild/[email protected]':
|
1607 |
+
optional: true
|
1608 |
+
|
1609 |
+
'@eslint-community/[email protected]([email protected]([email protected]))':
|
1610 |
+
dependencies:
|
1611 |
+
eslint: 9.16.0([email protected])
|
1612 |
+
eslint-visitor-keys: 3.4.3
|
1613 |
+
|
1614 |
+
'@eslint-community/[email protected]': {}
|
1615 |
+
|
1616 |
+
'@eslint/[email protected]([email protected]([email protected]))':
|
1617 |
+
optionalDependencies:
|
1618 |
+
eslint: 9.16.0([email protected])
|
1619 |
+
|
1620 |
+
'@eslint/[email protected]':
|
1621 |
+
dependencies:
|
1622 |
+
'@eslint/object-schema': 2.1.4
|
1623 |
+
debug: 4.3.7
|
1624 |
+
minimatch: 3.1.2
|
1625 |
+
transitivePeerDependencies:
|
1626 |
+
- supports-color
|
1627 |
+
|
1628 |
+
'@eslint/[email protected]': {}
|
1629 |
+
|
1630 |
+
'@eslint/[email protected]':
|
1631 |
+
dependencies:
|
1632 |
+
ajv: 6.12.6
|
1633 |
+
debug: 4.3.7
|
1634 |
+
espree: 10.3.0
|
1635 |
+
globals: 14.0.0
|
1636 |
+
ignore: 5.3.2
|
1637 |
+
import-fresh: 3.3.0
|
1638 |
+
js-yaml: 4.1.0
|
1639 |
+
minimatch: 3.1.2
|
1640 |
+
strip-json-comments: 3.1.1
|
1641 |
+
transitivePeerDependencies:
|
1642 |
+
- supports-color
|
1643 |
+
|
1644 |
+
'@eslint/[email protected]': {}
|
1645 |
+
|
1646 |
+
'@eslint/[email protected]': {}
|
1647 |
+
|
1648 |
+
'@eslint/[email protected]':
|
1649 |
+
dependencies:
|
1650 |
+
levn: 0.4.1
|
1651 |
+
|
1652 |
+
'@humanfs/[email protected]': {}
|
1653 |
+
|
1654 |
+
'@humanfs/[email protected]':
|
1655 |
+
dependencies:
|
1656 |
+
'@humanfs/core': 0.19.1
|
1657 |
+
'@humanwhocodes/retry': 0.3.1
|
1658 |
+
|
1659 |
+
'@humanwhocodes/[email protected]': {}
|
1660 |
+
|
1661 |
+
'@humanwhocodes/[email protected]': {}
|
1662 |
+
|
1663 |
+
'@humanwhocodes/[email protected]': {}
|
1664 |
+
|
1665 |
+
'@isaacs/[email protected]':
|
1666 |
+
dependencies:
|
1667 |
+
string-width: 5.1.2
|
1668 |
+
string-width-cjs: [email protected]
|
1669 |
+
strip-ansi: 7.1.0
|
1670 |
+
strip-ansi-cjs: [email protected]
|
1671 |
+
wrap-ansi: 8.1.0
|
1672 |
+
wrap-ansi-cjs: [email protected]
|
1673 |
+
|
1674 |
+
'@jridgewell/[email protected]':
|
1675 |
+
dependencies:
|
1676 |
+
'@jridgewell/set-array': 1.2.1
|
1677 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
1678 |
+
'@jridgewell/trace-mapping': 0.3.25
|
1679 |
+
|
1680 |
+
'@jridgewell/[email protected]': {}
|
1681 |
+
|
1682 |
+
'@jridgewell/[email protected]': {}
|
1683 |
+
|
1684 |
+
'@jridgewell/[email protected]': {}
|
1685 |
+
|
1686 |
+
'@jridgewell/[email protected]':
|
1687 |
+
dependencies:
|
1688 |
+
'@jridgewell/resolve-uri': 3.1.2
|
1689 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
1690 |
+
|
1691 |
+
'@nodelib/[email protected]':
|
1692 |
+
dependencies:
|
1693 |
+
'@nodelib/fs.stat': 2.0.5
|
1694 |
+
run-parallel: 1.2.0
|
1695 |
+
|
1696 |
+
'@nodelib/[email protected]': {}
|
1697 |
+
|
1698 |
+
'@nodelib/[email protected]':
|
1699 |
+
dependencies:
|
1700 |
+
'@nodelib/fs.scandir': 2.1.5
|
1701 |
+
fastq: 1.17.1
|
1702 |
+
|
1703 |
+
'@pkgjs/[email protected]':
|
1704 |
+
optional: true
|
1705 |
+
|
1706 |
+
'@polka/[email protected]': {}
|
1707 |
+
|
1708 |
+
'@rollup/[email protected]':
|
1709 |
+
optional: true
|
1710 |
+
|
1711 |
+
'@rollup/[email protected]':
|
1712 |
+
optional: true
|
1713 |
+
|
1714 |
+
'@rollup/[email protected]':
|
1715 |
+
optional: true
|
1716 |
+
|
1717 |
+
'@rollup/[email protected]':
|
1718 |
+
optional: true
|
1719 |
+
|
1720 |
+
'@rollup/[email protected]':
|
1721 |
+
optional: true
|
1722 |
+
|
1723 |
+
'@rollup/[email protected]':
|
1724 |
+
optional: true
|
1725 |
+
|
1726 |
+
'@rollup/[email protected]':
|
1727 |
+
optional: true
|
1728 |
+
|
1729 |
+
'@rollup/[email protected]':
|
1730 |
+
optional: true
|
1731 |
+
|
1732 |
+
'@rollup/[email protected]':
|
1733 |
+
optional: true
|
1734 |
+
|
1735 |
+
'@rollup/[email protected]':
|
1736 |
+
optional: true
|
1737 |
+
|
1738 |
+
'@rollup/[email protected]':
|
1739 |
+
optional: true
|
1740 |
+
|
1741 |
+
'@rollup/[email protected]':
|
1742 |
+
optional: true
|
1743 |
+
|
1744 |
+
'@rollup/[email protected]':
|
1745 |
+
optional: true
|
1746 |
+
|
1747 |
+
'@rollup/[email protected]':
|
1748 |
+
optional: true
|
1749 |
+
|
1750 |
+
'@rollup/[email protected]':
|
1751 |
+
optional: true
|
1752 |
+
|
1753 |
+
'@rollup/[email protected]':
|
1754 |
+
optional: true
|
1755 |
+
|
1756 |
+
'@rollup/[email protected]':
|
1757 |
+
optional: true
|
1758 |
+
|
1759 |
+
'@rollup/[email protected]':
|
1760 |
+
optional: true
|
1761 |
+
|
1762 |
+
'@sveltejs/[email protected](@sveltejs/[email protected](@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected])))':
|
1763 |
+
dependencies:
|
1764 |
+
'@sveltejs/kit': 2.9.0(@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected]))
|
1765 |
+
import-meta-resolve: 4.1.0
|
1766 |
+
|
1767 |
+
'@sveltejs/[email protected](@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected]))':
|
1768 |
+
dependencies:
|
1769 |
+
'@sveltejs/vite-plugin-svelte': 5.0.1([email protected])([email protected]([email protected])([email protected]))
|
1770 |
+
'@types/cookie': 0.6.0
|
1771 |
+
cookie: 0.6.0
|
1772 |
+
devalue: 5.1.1
|
1773 |
+
esm-env: 1.2.1
|
1774 |
+
import-meta-resolve: 4.1.0
|
1775 |
+
kleur: 4.1.5
|
1776 |
+
magic-string: 0.30.14
|
1777 |
+
mrmime: 2.0.0
|
1778 |
+
sade: 1.8.1
|
1779 |
+
set-cookie-parser: 2.7.1
|
1780 |
+
sirv: 3.0.0
|
1781 |
+
svelte: 5.4.0
|
1782 |
+
tiny-glob: 0.2.9
|
1783 |
+
vite: 6.0.2([email protected])([email protected])
|
1784 |
+
|
1785 |
+
'@sveltejs/[email protected](@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected]))':
|
1786 |
+
dependencies:
|
1787 |
+
'@sveltejs/vite-plugin-svelte': 5.0.1([email protected])([email protected]([email protected])([email protected]))
|
1788 |
+
debug: 4.3.7
|
1789 |
+
svelte: 5.4.0
|
1790 |
+
vite: 6.0.2([email protected])([email protected])
|
1791 |
+
transitivePeerDependencies:
|
1792 |
+
- supports-color
|
1793 |
+
|
1794 |
+
'@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected]))':
|
1795 |
+
dependencies:
|
1796 |
+
'@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/[email protected]([email protected])([email protected]([email protected])([email protected])))([email protected])([email protected]([email protected])([email protected]))
|
1797 |
+
debug: 4.3.7
|
1798 |
+
deepmerge: 4.3.1
|
1799 |
+
kleur: 4.1.5
|
1800 |
+
magic-string: 0.30.14
|
1801 |
+
svelte: 5.4.0
|
1802 |
+
vite: 6.0.2([email protected])([email protected])
|
1803 |
+
vitefu: 1.0.4([email protected]([email protected])([email protected]))
|
1804 |
+
transitivePeerDependencies:
|
1805 |
+
- supports-color
|
1806 |
+
|
1807 |
+
'@tailwindcss/[email protected]([email protected])':
|
1808 |
+
dependencies:
|
1809 |
+
tailwindcss: 3.4.15
|
1810 |
+
|
1811 |
+
'@tailwindcss/[email protected]([email protected])':
|
1812 |
+
dependencies:
|
1813 |
+
mini-svg-data-uri: 1.4.4
|
1814 |
+
tailwindcss: 3.4.15
|
1815 |
+
|
1816 |
+
'@tailwindcss/[email protected]([email protected])':
|
1817 |
+
dependencies:
|
1818 |
+
lodash.castarray: 4.4.0
|
1819 |
+
lodash.isplainobject: 4.0.6
|
1820 |
+
lodash.merge: 4.6.2
|
1821 |
+
postcss-selector-parser: 6.0.10
|
1822 |
+
tailwindcss: 3.4.15
|
1823 |
+
|
1824 |
+
'@types/[email protected]': {}
|
1825 |
+
|
1826 |
+
'@types/[email protected]': {}
|
1827 |
+
|
1828 |
+
'@types/[email protected]': {}
|
1829 |
+
|
1830 |
+
'@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected]([email protected]))([email protected]))([email protected]([email protected]))([email protected])':
|
1831 |
+
dependencies:
|
1832 |
+
'@eslint-community/regexpp': 4.12.1
|
1833 |
+
'@typescript-eslint/parser': 8.17.0([email protected]([email protected]))([email protected])
|
1834 |
+
'@typescript-eslint/scope-manager': 8.17.0
|
1835 |
+
'@typescript-eslint/type-utils': 8.17.0([email protected]([email protected]))([email protected])
|
1836 |
+
'@typescript-eslint/utils': 8.17.0([email protected]([email protected]))([email protected])
|
1837 |
+
'@typescript-eslint/visitor-keys': 8.17.0
|
1838 |
+
eslint: 9.16.0([email protected])
|
1839 |
+
graphemer: 1.4.0
|
1840 |
+
ignore: 5.3.2
|
1841 |
+
natural-compare: 1.4.0
|
1842 |
+
ts-api-utils: 1.4.3([email protected])
|
1843 |
+
optionalDependencies:
|
1844 |
+
typescript: 5.7.2
|
1845 |
+
transitivePeerDependencies:
|
1846 |
+
- supports-color
|
1847 |
+
|
1848 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
1849 |
+
dependencies:
|
1850 |
+
'@typescript-eslint/scope-manager': 8.17.0
|
1851 |
+
'@typescript-eslint/types': 8.17.0
|
1852 |
+
'@typescript-eslint/typescript-estree': 8.17.0([email protected])
|
1853 |
+
'@typescript-eslint/visitor-keys': 8.17.0
|
1854 |
+
debug: 4.3.7
|
1855 |
+
eslint: 9.16.0([email protected])
|
1856 |
+
optionalDependencies:
|
1857 |
+
typescript: 5.7.2
|
1858 |
+
transitivePeerDependencies:
|
1859 |
+
- supports-color
|
1860 |
+
|
1861 |
+
'@typescript-eslint/[email protected]':
|
1862 |
+
dependencies:
|
1863 |
+
'@typescript-eslint/types': 8.17.0
|
1864 |
+
'@typescript-eslint/visitor-keys': 8.17.0
|
1865 |
+
|
1866 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
1867 |
+
dependencies:
|
1868 |
+
'@typescript-eslint/typescript-estree': 8.17.0([email protected])
|
1869 |
+
'@typescript-eslint/utils': 8.17.0([email protected]([email protected]))([email protected])
|
1870 |
+
debug: 4.3.7
|
1871 |
+
eslint: 9.16.0([email protected])
|
1872 |
+
ts-api-utils: 1.4.3([email protected])
|
1873 |
+
optionalDependencies:
|
1874 |
+
typescript: 5.7.2
|
1875 |
+
transitivePeerDependencies:
|
1876 |
+
- supports-color
|
1877 |
+
|
1878 |
+
'@typescript-eslint/[email protected]': {}
|
1879 |
+
|
1880 |
+
'@typescript-eslint/[email protected]([email protected])':
|
1881 |
+
dependencies:
|
1882 |
+
'@typescript-eslint/types': 8.17.0
|
1883 |
+
'@typescript-eslint/visitor-keys': 8.17.0
|
1884 |
+
debug: 4.3.7
|
1885 |
+
fast-glob: 3.3.2
|
1886 |
+
is-glob: 4.0.3
|
1887 |
+
minimatch: 9.0.5
|
1888 |
+
semver: 7.6.3
|
1889 |
+
ts-api-utils: 1.4.3([email protected])
|
1890 |
+
optionalDependencies:
|
1891 |
+
typescript: 5.7.2
|
1892 |
+
transitivePeerDependencies:
|
1893 |
+
- supports-color
|
1894 |
+
|
1895 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
1896 |
+
dependencies:
|
1897 |
+
'@eslint-community/eslint-utils': 4.4.1([email protected]([email protected]))
|
1898 |
+
'@typescript-eslint/scope-manager': 8.17.0
|
1899 |
+
'@typescript-eslint/types': 8.17.0
|
1900 |
+
'@typescript-eslint/typescript-estree': 8.17.0([email protected])
|
1901 |
+
eslint: 9.16.0([email protected])
|
1902 |
+
optionalDependencies:
|
1903 |
+
typescript: 5.7.2
|
1904 |
+
transitivePeerDependencies:
|
1905 |
+
- supports-color
|
1906 |
+
|
1907 |
+
'@typescript-eslint/[email protected]':
|
1908 |
+
dependencies:
|
1909 |
+
'@typescript-eslint/types': 8.17.0
|
1910 |
+
eslint-visitor-keys: 4.2.0
|
1911 |
+
|
1912 | |
1913 |
+
dependencies:
|
1914 |
+
acorn: 8.14.0
|
1915 |
+
|
1916 | |
1917 |
+
dependencies:
|
1918 |
+
acorn: 8.14.0
|
1919 |
+
|
1920 |
+
[email protected]: {}
|
1921 |
+
|
1922 | |
1923 |
+
dependencies:
|
1924 |
+
fast-deep-equal: 3.1.3
|
1925 |
+
fast-json-stable-stringify: 2.1.0
|
1926 |
+
json-schema-traverse: 0.4.1
|
1927 |
+
uri-js: 4.4.1
|
1928 |
+
|
1929 |
+
[email protected]: {}
|
1930 |
+
|
1931 |
+
[email protected]: {}
|
1932 |
+
|
1933 | |
1934 |
+
dependencies:
|
1935 |
+
color-convert: 2.0.1
|
1936 |
+
|
1937 |
+
[email protected]: {}
|
1938 |
+
|
1939 |
+
[email protected]: {}
|
1940 |
+
|
1941 | |
1942 |
+
dependencies:
|
1943 |
+
normalize-path: 3.0.0
|
1944 |
+
picomatch: 2.3.1
|
1945 |
+
|
1946 |
+
[email protected]: {}
|
1947 |
+
|
1948 |
+
[email protected]: {}
|
1949 |
+
|
1950 |
+
[email protected]: {}
|
1951 |
+
|
1952 | |
1953 |
+
dependencies:
|
1954 |
+
browserslist: 4.24.2
|
1955 |
+
caniuse-lite: 1.0.30001685
|
1956 |
+
fraction.js: 4.3.7
|
1957 |
+
normalize-range: 0.1.2
|
1958 |
+
picocolors: 1.1.1
|
1959 |
+
postcss: 8.4.49
|
1960 |
+
postcss-value-parser: 4.2.0
|
1961 |
+
|
1962 |
+
[email protected]: {}
|
1963 |
+
|
1964 |
+
[email protected]: {}
|
1965 |
+
|
1966 |
+
[email protected]: {}
|
1967 |
+
|
1968 | |
1969 |
+
dependencies:
|
1970 |
+
balanced-match: 1.0.2
|
1971 |
+
concat-map: 0.0.1
|
1972 |
+
|
1973 | |
1974 |
+
dependencies:
|
1975 |
+
balanced-match: 1.0.2
|
1976 |
+
|
1977 | |
1978 |
+
dependencies:
|
1979 |
+
fill-range: 7.1.1
|
1980 |
+
|
1981 | |
1982 |
+
dependencies:
|
1983 |
+
caniuse-lite: 1.0.30001685
|
1984 |
+
electron-to-chromium: 1.5.68
|
1985 |
+
node-releases: 2.0.18
|
1986 |
+
update-browserslist-db: 1.1.1([email protected])
|
1987 |
+
|
1988 |
+
[email protected]: {}
|
1989 |
+
|
1990 |
+
[email protected]: {}
|
1991 |
+
|
1992 |
+
[email protected]: {}
|
1993 |
+
|
1994 | |
1995 |
+
dependencies:
|
1996 |
+
ansi-styles: 4.3.0
|
1997 |
+
supports-color: 7.2.0
|
1998 |
+
|
1999 | |
2000 |
+
dependencies:
|
2001 |
+
anymatch: 3.1.3
|
2002 |
+
braces: 3.0.3
|
2003 |
+
glob-parent: 5.1.2
|
2004 |
+
is-binary-path: 2.1.0
|
2005 |
+
is-glob: 4.0.3
|
2006 |
+
normalize-path: 3.0.0
|
2007 |
+
readdirp: 3.6.0
|
2008 |
+
optionalDependencies:
|
2009 |
+
fsevents: 2.3.3
|
2010 |
+
|
2011 | |
2012 |
+
dependencies:
|
2013 |
+
readdirp: 4.0.2
|
2014 |
+
|
2015 | |
2016 |
+
dependencies:
|
2017 |
+
color-name: 1.1.4
|
2018 |
+
|
2019 |
+
[email protected]: {}
|
2020 |
+
|
2021 |
+
[email protected]: {}
|
2022 |
+
|
2023 |
+
[email protected]: {}
|
2024 |
+
|
2025 |
+
[email protected]: {}
|
2026 |
+
|
2027 | |
2028 |
+
dependencies:
|
2029 |
+
path-key: 3.1.1
|
2030 |
+
shebang-command: 2.0.0
|
2031 |
+
which: 2.0.2
|
2032 |
+
|
2033 |
+
[email protected]: {}
|
2034 |
+
|
2035 | |
2036 |
+
dependencies:
|
2037 |
+
ms: 2.1.3
|
2038 |
+
|
2039 |
+
[email protected]: {}
|
2040 |
+
|
2041 |
+
[email protected]: {}
|
2042 |
+
|
2043 |
+
[email protected]: {}
|
2044 |
+
|
2045 |
+
[email protected]: {}
|
2046 |
+
|
2047 |
+
[email protected]: {}
|
2048 |
+
|
2049 |
+
[email protected]: {}
|
2050 |
+
|
2051 |
+
[email protected]: {}
|
2052 |
+
|
2053 |
+
[email protected]: {}
|
2054 |
+
|
2055 |
+
[email protected]: {}
|
2056 |
+
|
2057 | |
2058 |
+
optionalDependencies:
|
2059 |
+
'@esbuild/aix-ppc64': 0.24.0
|
2060 |
+
'@esbuild/android-arm': 0.24.0
|
2061 |
+
'@esbuild/android-arm64': 0.24.0
|
2062 |
+
'@esbuild/android-x64': 0.24.0
|
2063 |
+
'@esbuild/darwin-arm64': 0.24.0
|
2064 |
+
'@esbuild/darwin-x64': 0.24.0
|
2065 |
+
'@esbuild/freebsd-arm64': 0.24.0
|
2066 |
+
'@esbuild/freebsd-x64': 0.24.0
|
2067 |
+
'@esbuild/linux-arm': 0.24.0
|
2068 |
+
'@esbuild/linux-arm64': 0.24.0
|
2069 |
+
'@esbuild/linux-ia32': 0.24.0
|
2070 |
+
'@esbuild/linux-loong64': 0.24.0
|
2071 |
+
'@esbuild/linux-mips64el': 0.24.0
|
2072 |
+
'@esbuild/linux-ppc64': 0.24.0
|
2073 |
+
'@esbuild/linux-riscv64': 0.24.0
|
2074 |
+
'@esbuild/linux-s390x': 0.24.0
|
2075 |
+
'@esbuild/linux-x64': 0.24.0
|
2076 |
+
'@esbuild/netbsd-x64': 0.24.0
|
2077 |
+
'@esbuild/openbsd-arm64': 0.24.0
|
2078 |
+
'@esbuild/openbsd-x64': 0.24.0
|
2079 |
+
'@esbuild/sunos-x64': 0.24.0
|
2080 |
+
'@esbuild/win32-arm64': 0.24.0
|
2081 |
+
'@esbuild/win32-ia32': 0.24.0
|
2082 |
+
'@esbuild/win32-x64': 0.24.0
|
2083 |
+
|
2084 |
+
[email protected]: {}
|
2085 |
+
|
2086 |
+
[email protected]: {}
|
2087 |
+
|
2088 | |
2089 |
+
dependencies:
|
2090 |
+
eslint: 9.16.0([email protected])
|
2091 |
+
semver: 7.6.3
|
2092 |
+
|
2093 | |
2094 |
+
dependencies:
|
2095 |
+
eslint: 9.16.0([email protected])
|
2096 |
+
|
2097 | |
2098 |
+
dependencies:
|
2099 |
+
'@eslint-community/eslint-utils': 4.4.1([email protected]([email protected]))
|
2100 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2101 |
+
eslint: 9.16.0([email protected])
|
2102 |
+
eslint-compat-utils: 0.5.1([email protected]([email protected]))
|
2103 |
+
esutils: 2.0.3
|
2104 |
+
known-css-properties: 0.35.0
|
2105 |
+
postcss: 8.4.49
|
2106 |
+
postcss-load-config: 3.1.4([email protected])
|
2107 |
+
postcss-safe-parser: 6.0.0([email protected])
|
2108 |
+
postcss-selector-parser: 6.1.2
|
2109 |
+
semver: 7.6.3
|
2110 |
+
svelte-eslint-parser: 0.43.0([email protected])
|
2111 |
+
optionalDependencies:
|
2112 |
+
svelte: 5.4.0
|
2113 |
+
transitivePeerDependencies:
|
2114 |
+
- ts-node
|
2115 |
+
|
2116 | |
2117 |
+
dependencies:
|
2118 |
+
esrecurse: 4.3.0
|
2119 |
+
estraverse: 5.3.0
|
2120 |
+
|
2121 | |
2122 |
+
dependencies:
|
2123 |
+
esrecurse: 4.3.0
|
2124 |
+
estraverse: 5.3.0
|
2125 |
+
|
2126 |
+
[email protected]: {}
|
2127 |
+
|
2128 |
+
[email protected]: {}
|
2129 |
+
|
2130 | |
2131 |
+
dependencies:
|
2132 |
+
'@eslint-community/eslint-utils': 4.4.1([email protected]([email protected]))
|
2133 |
+
'@eslint-community/regexpp': 4.12.1
|
2134 |
+
'@eslint/config-array': 0.19.0
|
2135 |
+
'@eslint/core': 0.9.0
|
2136 |
+
'@eslint/eslintrc': 3.2.0
|
2137 |
+
'@eslint/js': 9.16.0
|
2138 |
+
'@eslint/plugin-kit': 0.2.3
|
2139 |
+
'@humanfs/node': 0.16.6
|
2140 |
+
'@humanwhocodes/module-importer': 1.0.1
|
2141 |
+
'@humanwhocodes/retry': 0.4.1
|
2142 |
+
'@types/estree': 1.0.6
|
2143 |
+
'@types/json-schema': 7.0.15
|
2144 |
+
ajv: 6.12.6
|
2145 |
+
chalk: 4.1.2
|
2146 |
+
cross-spawn: 7.0.6
|
2147 |
+
debug: 4.3.7
|
2148 |
+
escape-string-regexp: 4.0.0
|
2149 |
+
eslint-scope: 8.2.0
|
2150 |
+
eslint-visitor-keys: 4.2.0
|
2151 |
+
espree: 10.3.0
|
2152 |
+
esquery: 1.6.0
|
2153 |
+
esutils: 2.0.3
|
2154 |
+
fast-deep-equal: 3.1.3
|
2155 |
+
file-entry-cache: 8.0.0
|
2156 |
+
find-up: 5.0.0
|
2157 |
+
glob-parent: 6.0.2
|
2158 |
+
ignore: 5.3.2
|
2159 |
+
imurmurhash: 0.1.4
|
2160 |
+
is-glob: 4.0.3
|
2161 |
+
json-stable-stringify-without-jsonify: 1.0.1
|
2162 |
+
lodash.merge: 4.6.2
|
2163 |
+
minimatch: 3.1.2
|
2164 |
+
natural-compare: 1.4.0
|
2165 |
+
optionator: 0.9.4
|
2166 |
+
optionalDependencies:
|
2167 |
+
jiti: 1.21.6
|
2168 |
+
transitivePeerDependencies:
|
2169 |
+
- supports-color
|
2170 |
+
|
2171 |
+
[email protected]: {}
|
2172 |
+
|
2173 | |
2174 |
+
dependencies:
|
2175 |
+
acorn: 8.14.0
|
2176 |
+
acorn-jsx: 5.3.2([email protected])
|
2177 |
+
eslint-visitor-keys: 4.2.0
|
2178 |
+
|
2179 | |
2180 |
+
dependencies:
|
2181 |
+
acorn: 8.14.0
|
2182 |
+
acorn-jsx: 5.3.2([email protected])
|
2183 |
+
eslint-visitor-keys: 3.4.3
|
2184 |
+
|
2185 | |
2186 |
+
dependencies:
|
2187 |
+
estraverse: 5.3.0
|
2188 |
+
|
2189 | |
2190 |
+
dependencies:
|
2191 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2192 |
+
'@types/estree': 1.0.6
|
2193 |
+
|
2194 | |
2195 |
+
dependencies:
|
2196 |
+
estraverse: 5.3.0
|
2197 |
+
|
2198 |
+
[email protected]: {}
|
2199 |
+
|
2200 |
+
[email protected]: {}
|
2201 |
+
|
2202 |
+
[email protected]: {}
|
2203 |
+
|
2204 | |
2205 |
+
dependencies:
|
2206 |
+
'@nodelib/fs.stat': 2.0.5
|
2207 |
+
'@nodelib/fs.walk': 1.2.8
|
2208 |
+
glob-parent: 5.1.2
|
2209 |
+
merge2: 1.4.1
|
2210 |
+
micromatch: 4.0.8
|
2211 |
+
|
2212 |
+
[email protected]: {}
|
2213 |
+
|
2214 |
+
[email protected]: {}
|
2215 |
+
|
2216 | |
2217 |
+
dependencies:
|
2218 |
+
reusify: 1.0.4
|
2219 |
+
|
2220 |
+
[email protected]: {}
|
2221 |
+
|
2222 | |
2223 |
+
dependencies:
|
2224 |
+
flat-cache: 4.0.1
|
2225 |
+
|
2226 | |
2227 |
+
dependencies:
|
2228 |
+
to-regex-range: 5.0.1
|
2229 |
+
|
2230 | |
2231 |
+
dependencies:
|
2232 |
+
locate-path: 6.0.0
|
2233 |
+
path-exists: 4.0.0
|
2234 |
+
|
2235 | |
2236 |
+
dependencies:
|
2237 |
+
flatted: 3.3.2
|
2238 |
+
keyv: 4.5.4
|
2239 |
+
|
2240 |
+
[email protected]: {}
|
2241 |
+
|
2242 | |
2243 |
+
dependencies:
|
2244 |
+
cross-spawn: 7.0.6
|
2245 |
+
signal-exit: 4.1.0
|
2246 |
+
|
2247 |
+
[email protected]: {}
|
2248 |
+
|
2249 | |
2250 |
+
optional: true
|
2251 |
+
|
2252 |
+
[email protected]: {}
|
2253 |
+
|
2254 | |
2255 |
+
dependencies:
|
2256 |
+
is-glob: 4.0.3
|
2257 |
+
|
2258 | |
2259 |
+
dependencies:
|
2260 |
+
is-glob: 4.0.3
|
2261 |
+
|
2262 | |
2263 |
+
dependencies:
|
2264 |
+
foreground-child: 3.3.0
|
2265 |
+
jackspeak: 3.4.3
|
2266 |
+
minimatch: 9.0.5
|
2267 |
+
minipass: 7.1.2
|
2268 |
+
package-json-from-dist: 1.0.1
|
2269 |
+
path-scurry: 1.11.1
|
2270 |
+
|
2271 |
+
[email protected]: {}
|
2272 |
+
|
2273 |
+
[email protected]: {}
|
2274 |
+
|
2275 |
+
[email protected]: {}
|
2276 |
+
|
2277 |
+
[email protected]: {}
|
2278 |
+
|
2279 |
+
[email protected]: {}
|
2280 |
+
|
2281 |
+
[email protected]: {}
|
2282 |
+
|
2283 | |
2284 |
+
dependencies:
|
2285 |
+
function-bind: 1.1.2
|
2286 |
+
|
2287 |
+
[email protected]: {}
|
2288 |
+
|
2289 | |
2290 |
+
dependencies:
|
2291 |
+
parent-module: 1.0.1
|
2292 |
+
resolve-from: 4.0.0
|
2293 |
+
|
2294 |
+
[email protected]: {}
|
2295 |
+
|
2296 |
+
[email protected]: {}
|
2297 |
+
|
2298 | |
2299 |
+
dependencies:
|
2300 |
+
binary-extensions: 2.3.0
|
2301 |
+
|
2302 | |
2303 |
+
dependencies:
|
2304 |
+
hasown: 2.0.2
|
2305 |
+
|
2306 |
+
[email protected]: {}
|
2307 |
+
|
2308 |
+
[email protected]: {}
|
2309 |
+
|
2310 | |
2311 |
+
dependencies:
|
2312 |
+
is-extglob: 2.1.1
|
2313 |
+
|
2314 |
+
[email protected]: {}
|
2315 |
+
|
2316 | |
2317 |
+
dependencies:
|
2318 |
+
'@types/estree': 1.0.6
|
2319 |
+
|
2320 |
+
[email protected]: {}
|
2321 |
+
|
2322 | |
2323 |
+
dependencies:
|
2324 |
+
'@isaacs/cliui': 8.0.2
|
2325 |
+
optionalDependencies:
|
2326 |
+
'@pkgjs/parseargs': 0.11.0
|
2327 |
+
|
2328 |
+
[email protected]: {}
|
2329 |
+
|
2330 | |
2331 |
+
dependencies:
|
2332 |
+
argparse: 2.0.1
|
2333 |
+
|
2334 |
+
[email protected]: {}
|
2335 |
+
|
2336 |
+
[email protected]: {}
|
2337 |
+
|
2338 |
+
[email protected]: {}
|
2339 |
+
|
2340 | |
2341 |
+
dependencies:
|
2342 |
+
json-buffer: 3.0.1
|
2343 |
+
|
2344 |
+
[email protected]: {}
|
2345 |
+
|
2346 |
+
[email protected]: {}
|
2347 |
+
|
2348 | |
2349 |
+
dependencies:
|
2350 |
+
prelude-ls: 1.2.1
|
2351 |
+
type-check: 0.4.0
|
2352 |
+
|
2353 |
+
[email protected]: {}
|
2354 |
+
|
2355 |
+
[email protected]: {}
|
2356 |
+
|
2357 |
+
[email protected]: {}
|
2358 |
+
|
2359 |
+
[email protected]: {}
|
2360 |
+
|
2361 | |
2362 |
+
dependencies:
|
2363 |
+
p-locate: 5.0.0
|
2364 |
+
|
2365 |
+
[email protected]: {}
|
2366 |
+
|
2367 |
+
[email protected]: {}
|
2368 |
+
|
2369 |
+
[email protected]: {}
|
2370 |
+
|
2371 |
+
[email protected]: {}
|
2372 |
+
|
2373 | |
2374 |
+
dependencies:
|
2375 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2376 |
+
|
2377 |
+
[email protected]: {}
|
2378 |
+
|
2379 | |
2380 |
+
dependencies:
|
2381 |
+
braces: 3.0.3
|
2382 |
+
picomatch: 2.3.1
|
2383 |
+
|
2384 |
+
[email protected]: {}
|
2385 |
+
|
2386 | |
2387 |
+
dependencies:
|
2388 |
+
brace-expansion: 1.1.11
|
2389 |
+
|
2390 | |
2391 |
+
dependencies:
|
2392 |
+
brace-expansion: 2.0.1
|
2393 |
+
|
2394 |
+
[email protected]: {}
|
2395 |
+
|
2396 |
+
[email protected]: {}
|
2397 |
+
|
2398 |
+
[email protected]: {}
|
2399 |
+
|
2400 |
+
[email protected]: {}
|
2401 |
+
|
2402 | |
2403 |
+
dependencies:
|
2404 |
+
any-promise: 1.3.0
|
2405 |
+
object-assign: 4.1.1
|
2406 |
+
thenify-all: 1.6.0
|
2407 |
+
|
2408 |
+
[email protected]: {}
|
2409 |
+
|
2410 |
+
[email protected]: {}
|
2411 |
+
|
2412 |
+
[email protected]: {}
|
2413 |
+
|
2414 |
+
[email protected]: {}
|
2415 |
+
|
2416 |
+
[email protected]: {}
|
2417 |
+
|
2418 |
+
[email protected]: {}
|
2419 |
+
|
2420 |
+
[email protected]: {}
|
2421 |
+
|
2422 | |
2423 |
+
dependencies:
|
2424 |
+
deep-is: 0.1.4
|
2425 |
+
fast-levenshtein: 2.0.6
|
2426 |
+
levn: 0.4.1
|
2427 |
+
prelude-ls: 1.2.1
|
2428 |
+
type-check: 0.4.0
|
2429 |
+
word-wrap: 1.2.5
|
2430 |
+
|
2431 | |
2432 |
+
dependencies:
|
2433 |
+
yocto-queue: 0.1.0
|
2434 |
+
|
2435 | |
2436 |
+
dependencies:
|
2437 |
+
p-limit: 3.1.0
|
2438 |
+
|
2439 |
+
[email protected]: {}
|
2440 |
+
|
2441 | |
2442 |
+
dependencies:
|
2443 |
+
callsites: 3.1.0
|
2444 |
+
|
2445 |
+
[email protected]: {}
|
2446 |
+
|
2447 |
+
[email protected]: {}
|
2448 |
+
|
2449 |
+
[email protected]: {}
|
2450 |
+
|
2451 | |
2452 |
+
dependencies:
|
2453 |
+
lru-cache: 10.4.3
|
2454 |
+
minipass: 7.1.2
|
2455 |
+
|
2456 |
+
[email protected]: {}
|
2457 |
+
|
2458 |
+
[email protected]: {}
|
2459 |
+
|
2460 |
+
[email protected]: {}
|
2461 |
+
|
2462 |
+
[email protected]: {}
|
2463 |
+
|
2464 | |
2465 |
+
dependencies:
|
2466 |
+
postcss: 8.4.49
|
2467 |
+
postcss-value-parser: 4.2.0
|
2468 |
+
read-cache: 1.0.0
|
2469 |
+
resolve: 1.22.8
|
2470 |
+
|
2471 | |
2472 |
+
dependencies:
|
2473 |
+
camelcase-css: 2.0.1
|
2474 |
+
postcss: 8.4.49
|
2475 |
+
|
2476 | |
2477 |
+
dependencies:
|
2478 |
+
lilconfig: 2.1.0
|
2479 |
+
yaml: 1.10.2
|
2480 |
+
optionalDependencies:
|
2481 |
+
postcss: 8.4.49
|
2482 |
+
|
2483 | |
2484 |
+
dependencies:
|
2485 |
+
lilconfig: 3.1.2
|
2486 |
+
yaml: 2.6.1
|
2487 |
+
optionalDependencies:
|
2488 |
+
postcss: 8.4.49
|
2489 |
+
|
2490 | |
2491 |
+
dependencies:
|
2492 |
+
postcss: 8.4.49
|
2493 |
+
postcss-selector-parser: 6.1.2
|
2494 |
+
|
2495 | |
2496 |
+
dependencies:
|
2497 |
+
postcss: 8.4.49
|
2498 |
+
|
2499 | |
2500 |
+
dependencies:
|
2501 |
+
postcss: 8.4.49
|
2502 |
+
|
2503 | |
2504 |
+
dependencies:
|
2505 |
+
cssesc: 3.0.0
|
2506 |
+
util-deprecate: 1.0.2
|
2507 |
+
|
2508 | |
2509 |
+
dependencies:
|
2510 |
+
cssesc: 3.0.0
|
2511 |
+
util-deprecate: 1.0.2
|
2512 |
+
|
2513 |
+
[email protected]: {}
|
2514 |
+
|
2515 | |
2516 |
+
dependencies:
|
2517 |
+
nanoid: 3.3.8
|
2518 |
+
picocolors: 1.1.1
|
2519 |
+
source-map-js: 1.2.1
|
2520 |
+
|
2521 |
+
[email protected]: {}
|
2522 |
+
|
2523 | |
2524 |
+
dependencies:
|
2525 |
+
prettier: 3.4.1
|
2526 |
+
svelte: 5.4.0
|
2527 |
+
|
2528 | |
2529 |
+
dependencies:
|
2530 |
+
prettier: 3.4.1
|
2531 |
+
optionalDependencies:
|
2532 |
+
prettier-plugin-svelte: 3.3.2([email protected])([email protected])
|
2533 |
+
|
2534 |
+
[email protected]: {}
|
2535 |
+
|
2536 |
+
[email protected]: {}
|
2537 |
+
|
2538 |
+
[email protected]: {}
|
2539 |
+
|
2540 | |
2541 |
+
dependencies:
|
2542 |
+
pify: 2.3.0
|
2543 |
+
|
2544 | |
2545 |
+
dependencies:
|
2546 |
+
picomatch: 2.3.1
|
2547 |
+
|
2548 |
+
[email protected]: {}
|
2549 |
+
|
2550 |
+
[email protected]: {}
|
2551 |
+
|
2552 | |
2553 |
+
dependencies:
|
2554 |
+
is-core-module: 2.15.1
|
2555 |
+
path-parse: 1.0.7
|
2556 |
+
supports-preserve-symlinks-flag: 1.0.0
|
2557 |
+
|
2558 |
+
[email protected]: {}
|
2559 |
+
|
2560 | |
2561 |
+
dependencies:
|
2562 |
+
'@types/estree': 1.0.6
|
2563 |
+
optionalDependencies:
|
2564 |
+
'@rollup/rollup-android-arm-eabi': 4.28.0
|
2565 |
+
'@rollup/rollup-android-arm64': 4.28.0
|
2566 |
+
'@rollup/rollup-darwin-arm64': 4.28.0
|
2567 |
+
'@rollup/rollup-darwin-x64': 4.28.0
|
2568 |
+
'@rollup/rollup-freebsd-arm64': 4.28.0
|
2569 |
+
'@rollup/rollup-freebsd-x64': 4.28.0
|
2570 |
+
'@rollup/rollup-linux-arm-gnueabihf': 4.28.0
|
2571 |
+
'@rollup/rollup-linux-arm-musleabihf': 4.28.0
|
2572 |
+
'@rollup/rollup-linux-arm64-gnu': 4.28.0
|
2573 |
+
'@rollup/rollup-linux-arm64-musl': 4.28.0
|
2574 |
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.28.0
|
2575 |
+
'@rollup/rollup-linux-riscv64-gnu': 4.28.0
|
2576 |
+
'@rollup/rollup-linux-s390x-gnu': 4.28.0
|
2577 |
+
'@rollup/rollup-linux-x64-gnu': 4.28.0
|
2578 |
+
'@rollup/rollup-linux-x64-musl': 4.28.0
|
2579 |
+
'@rollup/rollup-win32-arm64-msvc': 4.28.0
|
2580 |
+
'@rollup/rollup-win32-ia32-msvc': 4.28.0
|
2581 |
+
'@rollup/rollup-win32-x64-msvc': 4.28.0
|
2582 |
+
fsevents: 2.3.3
|
2583 |
+
|
2584 | |
2585 |
+
dependencies:
|
2586 |
+
queue-microtask: 1.2.3
|
2587 |
+
|
2588 | |
2589 |
+
dependencies:
|
2590 |
+
mri: 1.2.0
|
2591 |
+
|
2592 |
+
[email protected]: {}
|
2593 |
+
|
2594 |
+
[email protected]: {}
|
2595 |
+
|
2596 | |
2597 |
+
dependencies:
|
2598 |
+
shebang-regex: 3.0.0
|
2599 |
+
|
2600 |
+
[email protected]: {}
|
2601 |
+
|
2602 |
+
[email protected]: {}
|
2603 |
+
|
2604 | |
2605 |
+
dependencies:
|
2606 |
+
'@polka/url': 1.0.0-next.28
|
2607 |
+
mrmime: 2.0.0
|
2608 |
+
totalist: 3.0.1
|
2609 |
+
|
2610 |
+
[email protected]: {}
|
2611 |
+
|
2612 | |
2613 |
+
dependencies:
|
2614 |
+
emoji-regex: 8.0.0
|
2615 |
+
is-fullwidth-code-point: 3.0.0
|
2616 |
+
strip-ansi: 6.0.1
|
2617 |
+
|
2618 | |
2619 |
+
dependencies:
|
2620 |
+
eastasianwidth: 0.2.0
|
2621 |
+
emoji-regex: 9.2.2
|
2622 |
+
strip-ansi: 7.1.0
|
2623 |
+
|
2624 | |
2625 |
+
dependencies:
|
2626 |
+
ansi-regex: 5.0.1
|
2627 |
+
|
2628 | |
2629 |
+
dependencies:
|
2630 |
+
ansi-regex: 6.1.0
|
2631 |
+
|
2632 |
+
[email protected]: {}
|
2633 |
+
|
2634 | |
2635 |
+
dependencies:
|
2636 |
+
'@jridgewell/gen-mapping': 0.3.5
|
2637 |
+
commander: 4.1.1
|
2638 |
+
glob: 10.4.5
|
2639 |
+
lines-and-columns: 1.2.4
|
2640 |
+
mz: 2.7.0
|
2641 |
+
pirates: 4.0.6
|
2642 |
+
ts-interface-checker: 0.1.13
|
2643 |
+
|
2644 | |
2645 |
+
dependencies:
|
2646 |
+
has-flag: 4.0.0
|
2647 |
+
|
2648 |
+
[email protected]: {}
|
2649 |
+
|
2650 | |
2651 |
+
dependencies:
|
2652 |
+
'@jridgewell/trace-mapping': 0.3.25
|
2653 |
+
chokidar: 4.0.1
|
2654 |
+
fdir: 6.4.2
|
2655 |
+
picocolors: 1.1.1
|
2656 |
+
sade: 1.8.1
|
2657 |
+
svelte: 5.4.0
|
2658 |
+
typescript: 5.7.2
|
2659 |
+
transitivePeerDependencies:
|
2660 |
+
- picomatch
|
2661 |
+
|
2662 | |
2663 |
+
dependencies:
|
2664 |
+
eslint-scope: 7.2.2
|
2665 |
+
eslint-visitor-keys: 3.4.3
|
2666 |
+
espree: 9.6.1
|
2667 |
+
postcss: 8.4.49
|
2668 |
+
postcss-scss: 4.0.9([email protected])
|
2669 |
+
optionalDependencies:
|
2670 |
+
svelte: 5.4.0
|
2671 |
+
|
2672 | |
2673 |
+
dependencies:
|
2674 |
+
'@ampproject/remapping': 2.3.0
|
2675 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2676 |
+
'@types/estree': 1.0.6
|
2677 |
+
acorn: 8.14.0
|
2678 |
+
acorn-typescript: 1.4.13([email protected])
|
2679 |
+
aria-query: 5.3.2
|
2680 |
+
axobject-query: 4.1.0
|
2681 |
+
esm-env: 1.2.1
|
2682 |
+
esrap: 1.2.3
|
2683 |
+
is-reference: 3.0.3
|
2684 |
+
locate-character: 3.0.0
|
2685 |
+
magic-string: 0.30.14
|
2686 |
+
zimmerframe: 1.1.2
|
2687 |
+
|
2688 | |
2689 |
+
dependencies:
|
2690 |
+
'@alloc/quick-lru': 5.2.0
|
2691 |
+
arg: 5.0.2
|
2692 |
+
chokidar: 3.6.0
|
2693 |
+
didyoumean: 1.2.2
|
2694 |
+
dlv: 1.1.3
|
2695 |
+
fast-glob: 3.3.2
|
2696 |
+
glob-parent: 6.0.2
|
2697 |
+
is-glob: 4.0.3
|
2698 |
+
jiti: 1.21.6
|
2699 |
+
lilconfig: 2.1.0
|
2700 |
+
micromatch: 4.0.8
|
2701 |
+
normalize-path: 3.0.0
|
2702 |
+
object-hash: 3.0.0
|
2703 |
+
picocolors: 1.1.1
|
2704 |
+
postcss: 8.4.49
|
2705 |
+
postcss-import: 15.1.0([email protected])
|
2706 |
+
postcss-js: 4.0.1([email protected])
|
2707 |
+
postcss-load-config: 4.0.2([email protected])
|
2708 |
+
postcss-nested: 6.2.0([email protected])
|
2709 |
+
postcss-selector-parser: 6.1.2
|
2710 |
+
resolve: 1.22.8
|
2711 |
+
sucrase: 3.35.0
|
2712 |
+
transitivePeerDependencies:
|
2713 |
+
- ts-node
|
2714 |
+
|
2715 | |
2716 |
+
dependencies:
|
2717 |
+
thenify: 3.3.1
|
2718 |
+
|
2719 | |
2720 |
+
dependencies:
|
2721 |
+
any-promise: 1.3.0
|
2722 |
+
|
2723 | |
2724 |
+
dependencies:
|
2725 |
+
globalyzer: 0.1.0
|
2726 |
+
globrex: 0.1.2
|
2727 |
+
|
2728 | |
2729 |
+
dependencies:
|
2730 |
+
is-number: 7.0.0
|
2731 |
+
|
2732 |
+
[email protected]: {}
|
2733 |
+
|
2734 | |
2735 |
+
dependencies:
|
2736 |
+
typescript: 5.7.2
|
2737 |
+
|
2738 |
+
[email protected]: {}
|
2739 |
+
|
2740 | |
2741 |
+
dependencies:
|
2742 |
+
prelude-ls: 1.2.1
|
2743 |
+
|
2744 | |
2745 |
+
dependencies:
|
2746 |
+
'@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/[email protected]([email protected]([email protected]))([email protected]))([email protected]([email protected]))([email protected])
|
2747 |
+
'@typescript-eslint/parser': 8.17.0([email protected]([email protected]))([email protected])
|
2748 |
+
'@typescript-eslint/utils': 8.17.0([email protected]([email protected]))([email protected])
|
2749 |
+
eslint: 9.16.0([email protected])
|
2750 |
+
optionalDependencies:
|
2751 |
+
typescript: 5.7.2
|
2752 |
+
transitivePeerDependencies:
|
2753 |
+
- supports-color
|
2754 |
+
|
2755 |
+
[email protected]: {}
|
2756 |
+
|
2757 | |
2758 |
+
dependencies:
|
2759 |
+
browserslist: 4.24.2
|
2760 |
+
escalade: 3.2.0
|
2761 |
+
picocolors: 1.1.1
|
2762 |
+
|
2763 | |
2764 |
+
dependencies:
|
2765 |
+
punycode: 2.3.1
|
2766 |
+
|
2767 |
+
[email protected]: {}
|
2768 |
+
|
2769 | |
2770 |
+
dependencies:
|
2771 |
+
esbuild: 0.24.0
|
2772 |
+
postcss: 8.4.49
|
2773 |
+
rollup: 4.28.0
|
2774 |
+
optionalDependencies:
|
2775 |
+
fsevents: 2.3.3
|
2776 |
+
jiti: 1.21.6
|
2777 |
+
yaml: 2.6.1
|
2778 |
+
|
2779 | |
2780 |
+
optionalDependencies:
|
2781 |
+
vite: 6.0.2([email protected])([email protected])
|
2782 |
+
|
2783 | |
2784 |
+
dependencies:
|
2785 |
+
isexe: 2.0.0
|
2786 |
+
|
2787 |
+
[email protected]: {}
|
2788 |
+
|
2789 | |
2790 |
+
dependencies:
|
2791 |
+
ansi-styles: 4.3.0
|
2792 |
+
string-width: 4.2.3
|
2793 |
+
strip-ansi: 6.0.1
|
2794 |
+
|
2795 | |
2796 |
+
dependencies:
|
2797 |
+
ansi-styles: 6.2.1
|
2798 |
+
string-width: 5.1.2
|
2799 |
+
strip-ansi: 7.1.0
|
2800 |
+
|
2801 |
+
[email protected]: {}
|
2802 |
+
|
2803 |
+
[email protected]: {}
|
2804 |
+
|
2805 |
+
[email protected]: {}
|
2806 |
+
|
2807 |
+
[email protected]: {}
|
postcss.config.js
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default {
|
2 |
+
plugins: {
|
3 |
+
tailwindcss: {},
|
4 |
+
autoprefixer: {}
|
5 |
+
}
|
6 |
+
};
|
src/app.css
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
@import 'tailwindcss/base';
|
2 |
+
@import 'tailwindcss/components';
|
3 |
+
@import 'tailwindcss/utilities';
|
src/app.d.ts
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// See https://svelte.dev/docs/kit/types#app.d.ts
|
2 |
+
// for information about these interfaces
|
3 |
+
declare global {
|
4 |
+
namespace App {
|
5 |
+
// interface Error {}
|
6 |
+
// interface Locals {}
|
7 |
+
// interface PageData {}
|
8 |
+
// interface PageState {}
|
9 |
+
// interface Platform {}
|
10 |
+
}
|
11 |
+
}
|
12 |
+
|
13 |
+
export {};
|
src/app.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!doctype html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8" />
|
5 |
+
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
7 |
+
%sveltekit.head%
|
8 |
+
</head>
|
9 |
+
<body data-sveltekit-preload-data="hover">
|
10 |
+
<div style="display: contents">%sveltekit.body%</div>
|
11 |
+
</body>
|
12 |
+
</html>
|
src/lib/index.ts
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
// place files you want to import through the `$lib` alias in this folder.
|
src/routes/+layout.svelte
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script lang="ts">
|
2 |
+
import '../app.css';
|
3 |
+
let { children } = $props();
|
4 |
+
</script>
|
5 |
+
|
6 |
+
{@render children()}
|
src/routes/+page.svelte
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
<h1>Welcome to SvelteKit</h1>
|
2 |
+
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
static/favicon.png
ADDED
svelte.config.js
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import adapter from '@sveltejs/adapter-auto';
|
2 |
+
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
3 |
+
|
4 |
+
/** @type {import('@sveltejs/kit').Config} */
|
5 |
+
const config = {
|
6 |
+
// Consult https://svelte.dev/docs/kit/integrations
|
7 |
+
// for more information about preprocessors
|
8 |
+
preprocess: vitePreprocess(),
|
9 |
+
|
10 |
+
kit: {
|
11 |
+
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
|
12 |
+
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
13 |
+
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
14 |
+
adapter: adapter()
|
15 |
+
}
|
16 |
+
};
|
17 |
+
|
18 |
+
export default config;
|
tailwind.config.ts
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import containerQueries from '@tailwindcss/container-queries';
|
2 |
+
import forms from '@tailwindcss/forms';
|
3 |
+
import typography from '@tailwindcss/typography';
|
4 |
+
import type { Config } from 'tailwindcss';
|
5 |
+
|
6 |
+
export default {
|
7 |
+
content: ['./src/**/*.{html,js,svelte,ts}'],
|
8 |
+
|
9 |
+
theme: {
|
10 |
+
extend: {}
|
11 |
+
},
|
12 |
+
|
13 |
+
plugins: [typography, forms, containerQueries]
|
14 |
+
} satisfies Config;
|
tsconfig.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"extends": "./.svelte-kit/tsconfig.json",
|
3 |
+
"compilerOptions": {
|
4 |
+
"allowJs": true,
|
5 |
+
"checkJs": true,
|
6 |
+
"esModuleInterop": true,
|
7 |
+
"forceConsistentCasingInFileNames": true,
|
8 |
+
"resolveJsonModule": true,
|
9 |
+
"skipLibCheck": true,
|
10 |
+
"sourceMap": true,
|
11 |
+
"strict": true,
|
12 |
+
"moduleResolution": "bundler"
|
13 |
+
}
|
14 |
+
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
15 |
+
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
16 |
+
//
|
17 |
+
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
18 |
+
// from the referenced tsconfig.json - TypeScript does not merge them in
|
19 |
+
}
|
vite.config.ts
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { sveltekit } from '@sveltejs/kit/vite';
|
2 |
+
import { defineConfig } from 'vite';
|
3 |
+
|
4 |
+
export default defineConfig({
|
5 |
+
plugins: [sveltekit()]
|
6 |
+
});
|