@duonghieu0712z/create-tauri-vue-template 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +74 -0
- package/assets/vscode-settings.json +16 -0
- package/dist/bin/index.js +83 -0
- package/dist/cli/color.js +25 -0
- package/dist/cli/files.js +18 -0
- package/dist/cli/project.js +48 -0
- package/dist/cli/prompts.js +44 -0
- package/dist/cli/release-workflow.js +13 -0
- package/dist/cli/scaffold.js +30 -0
- package/dist/cli/text.js +24 -0
- package/dist/cli/types.js +1 -0
- package/dist/scripts/prepare-template.js +67 -0
- package/package.json +39 -0
- package/template/.editorconfig +8 -0
- package/template/.gitattributes +5 -0
- package/template/.github/dependabot.yml +38 -0
- package/template/.github/workflows/code-quality.yml +70 -0
- package/template/.github/workflows/release.yml +112 -0
- package/template/.husky/pre-commit +7 -0
- package/template/.oxfmtrc.json +36 -0
- package/template/.oxlintrc.json +24 -0
- package/template/.vscode/extensions.json +11 -0
- package/template/CHANGELOG.md +12 -0
- package/template/LICENSE +21 -0
- package/template/README.md +126 -0
- package/template/components.json +24 -0
- package/template/eslint.config.ts +32 -0
- package/template/index.html +14 -0
- package/template/package.json +74 -0
- package/template/pnpm-lock.yaml +3953 -0
- package/template/pnpm-workspace.yaml +3 -0
- package/template/public/favicon.ico +0 -0
- package/template/rust-toolchain.toml +2 -0
- package/template/scripts/bump-version.js +42 -0
- package/template/scripts/rename-app.js +137 -0
- package/template/scripts/utils.js +59 -0
- package/template/src/App.vue +71 -0
- package/template/src/assets/fonts/Geist/Geist-Italic[wght].woff2 +0 -0
- package/template/src/assets/fonts/Geist/Geist[wght].woff2 +0 -0
- package/template/src/assets/images/tauri.svg +6 -0
- package/template/src/assets/images/vite.svg +1 -0
- package/template/src/assets/images/vue.svg +1 -0
- package/template/src/generated/auto-import.d.ts +139 -0
- package/template/src/generated/bindings.ts +9 -0
- package/template/src/lib/utils.ts +8 -0
- package/template/src/main.ts +9 -0
- package/template/src/styles/fonts.css +15 -0
- package/template/src/styles/globals.css +130 -0
- package/template/src/vite-env.d.ts +7 -0
- package/template/src-tauri/Cargo.lock +6328 -0
- package/template/src-tauri/Cargo.toml +41 -0
- package/template/src-tauri/build.rs +3 -0
- package/template/src-tauri/capabilities/default.json +7 -0
- package/template/src-tauri/icons/128x128.png +0 -0
- package/template/src-tauri/icons/128x128@2x.png +0 -0
- package/template/src-tauri/icons/32x32.png +0 -0
- package/template/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template/src-tauri/icons/StoreLogo.png +0 -0
- package/template/src-tauri/icons/icon.icns +0 -0
- package/template/src-tauri/icons/icon.ico +0 -0
- package/template/src-tauri/icons/icon.png +0 -0
- package/template/src-tauri/src/command/mod.rs +13 -0
- package/template/src-tauri/src/lib.rs +54 -0
- package/template/src-tauri/src/main.rs +6 -0
- package/template/src-tauri/tauri.conf.json +37 -0
- package/template/tsconfig.app.json +11 -0
- package/template/tsconfig.json +11 -0
- package/template/tsconfig.node.json +11 -0
- package/template/vite.config.ts +42 -0
|
@@ -0,0 +1,3953 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@lucide/vue':
|
|
12
|
+
specifier: ^1.16.0
|
|
13
|
+
version: 1.16.0(vue@3.5.34(typescript@6.0.3))
|
|
14
|
+
'@tauri-apps/api':
|
|
15
|
+
specifier: ^2.11.0
|
|
16
|
+
version: 2.11.0
|
|
17
|
+
class-variance-authority:
|
|
18
|
+
specifier: ^0.7.1
|
|
19
|
+
version: 0.7.1
|
|
20
|
+
clsx:
|
|
21
|
+
specifier: ^2.1.1
|
|
22
|
+
version: 2.1.1
|
|
23
|
+
tailwind-merge:
|
|
24
|
+
specifier: ^3.6.0
|
|
25
|
+
version: 3.6.0
|
|
26
|
+
vue:
|
|
27
|
+
specifier: ^3.5.34
|
|
28
|
+
version: 3.5.34(typescript@6.0.3)
|
|
29
|
+
devDependencies:
|
|
30
|
+
'@tailwindcss/vite':
|
|
31
|
+
specifier: ^4.3.0
|
|
32
|
+
version: 4.3.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))
|
|
33
|
+
'@tauri-apps/cli':
|
|
34
|
+
specifier: ^2.11.2
|
|
35
|
+
version: 2.11.2
|
|
36
|
+
'@tsconfig/node24':
|
|
37
|
+
specifier: ^24.0.4
|
|
38
|
+
version: 24.0.4
|
|
39
|
+
'@types/node':
|
|
40
|
+
specifier: ^25.9.1
|
|
41
|
+
version: 25.9.1
|
|
42
|
+
'@vitejs/plugin-vue':
|
|
43
|
+
specifier: ^6.0.7
|
|
44
|
+
version: 6.0.7(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
|
|
45
|
+
'@vue/eslint-config-prettier':
|
|
46
|
+
specifier: ^10.2.0
|
|
47
|
+
version: 10.2.0(eslint@10.4.0(jiti@2.7.0))(prettier@3.8.3)
|
|
48
|
+
'@vue/eslint-config-typescript':
|
|
49
|
+
specifier: ^14.7.0
|
|
50
|
+
version: 14.7.0(eslint-plugin-vue@10.9.1(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0))))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
51
|
+
'@vue/tsconfig':
|
|
52
|
+
specifier: ^0.9.1
|
|
53
|
+
version: 0.9.1(typescript@6.0.3)(vue@3.5.34(typescript@6.0.3))
|
|
54
|
+
eslint:
|
|
55
|
+
specifier: ^10.4.0
|
|
56
|
+
version: 10.4.0(jiti@2.7.0)
|
|
57
|
+
eslint-plugin-oxlint:
|
|
58
|
+
specifier: ^1.66.0
|
|
59
|
+
version: 1.66.0(oxlint@1.66.0)
|
|
60
|
+
eslint-plugin-vue:
|
|
61
|
+
specifier: ^10.9.1
|
|
62
|
+
version: 10.9.1(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0)))
|
|
63
|
+
husky:
|
|
64
|
+
specifier: ^9.1.7
|
|
65
|
+
version: 9.1.7
|
|
66
|
+
jiti:
|
|
67
|
+
specifier: ^2.7.0
|
|
68
|
+
version: 2.7.0
|
|
69
|
+
lint-staged:
|
|
70
|
+
specifier: ^17.0.5
|
|
71
|
+
version: 17.0.5
|
|
72
|
+
npm-run-all2:
|
|
73
|
+
specifier: ^9.0.0
|
|
74
|
+
version: 9.0.0
|
|
75
|
+
oxfmt:
|
|
76
|
+
specifier: ^0.51.0
|
|
77
|
+
version: 0.51.0
|
|
78
|
+
oxlint:
|
|
79
|
+
specifier: ^1.66.0
|
|
80
|
+
version: 1.66.0
|
|
81
|
+
tailwindcss:
|
|
82
|
+
specifier: ^4.3.0
|
|
83
|
+
version: 4.3.0
|
|
84
|
+
tw-animate-css:
|
|
85
|
+
specifier: ^1.4.0
|
|
86
|
+
version: 1.4.0
|
|
87
|
+
typescript:
|
|
88
|
+
specifier: ~6.0.3
|
|
89
|
+
version: 6.0.3
|
|
90
|
+
unplugin-auto-import:
|
|
91
|
+
specifier: ^21.0.0
|
|
92
|
+
version: 21.0.0
|
|
93
|
+
unplugin-vue-components:
|
|
94
|
+
specifier: ^32.1.0
|
|
95
|
+
version: 32.1.0(vue@3.5.34(typescript@6.0.3))
|
|
96
|
+
vite:
|
|
97
|
+
specifier: ^8.0.14
|
|
98
|
+
version: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
99
|
+
vite-plugin-vue-devtools:
|
|
100
|
+
specifier: ^8.1.2
|
|
101
|
+
version: 8.1.2(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
|
|
102
|
+
vue-tsc:
|
|
103
|
+
specifier: ^3.3.1
|
|
104
|
+
version: 3.3.1(typescript@6.0.3)
|
|
105
|
+
|
|
106
|
+
packages:
|
|
107
|
+
|
|
108
|
+
'@babel/code-frame@7.29.0':
|
|
109
|
+
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
|
|
110
|
+
engines: {node: '>=6.9.0'}
|
|
111
|
+
|
|
112
|
+
'@babel/compat-data@7.29.3':
|
|
113
|
+
resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==}
|
|
114
|
+
engines: {node: '>=6.9.0'}
|
|
115
|
+
|
|
116
|
+
'@babel/core@7.29.0':
|
|
117
|
+
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
|
|
118
|
+
engines: {node: '>=6.9.0'}
|
|
119
|
+
|
|
120
|
+
'@babel/generator@7.29.1':
|
|
121
|
+
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
|
|
122
|
+
engines: {node: '>=6.9.0'}
|
|
123
|
+
|
|
124
|
+
'@babel/helper-annotate-as-pure@7.27.3':
|
|
125
|
+
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
|
|
126
|
+
engines: {node: '>=6.9.0'}
|
|
127
|
+
|
|
128
|
+
'@babel/helper-compilation-targets@7.28.6':
|
|
129
|
+
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
|
|
130
|
+
engines: {node: '>=6.9.0'}
|
|
131
|
+
|
|
132
|
+
'@babel/helper-create-class-features-plugin@7.29.3':
|
|
133
|
+
resolution: {integrity: sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==}
|
|
134
|
+
engines: {node: '>=6.9.0'}
|
|
135
|
+
peerDependencies:
|
|
136
|
+
'@babel/core': ^7.0.0
|
|
137
|
+
|
|
138
|
+
'@babel/helper-globals@7.28.0':
|
|
139
|
+
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
|
|
140
|
+
engines: {node: '>=6.9.0'}
|
|
141
|
+
|
|
142
|
+
'@babel/helper-member-expression-to-functions@7.28.5':
|
|
143
|
+
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
|
|
144
|
+
engines: {node: '>=6.9.0'}
|
|
145
|
+
|
|
146
|
+
'@babel/helper-module-imports@7.28.6':
|
|
147
|
+
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
|
|
148
|
+
engines: {node: '>=6.9.0'}
|
|
149
|
+
|
|
150
|
+
'@babel/helper-module-transforms@7.28.6':
|
|
151
|
+
resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
|
|
152
|
+
engines: {node: '>=6.9.0'}
|
|
153
|
+
peerDependencies:
|
|
154
|
+
'@babel/core': ^7.0.0
|
|
155
|
+
|
|
156
|
+
'@babel/helper-optimise-call-expression@7.27.1':
|
|
157
|
+
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
|
|
158
|
+
engines: {node: '>=6.9.0'}
|
|
159
|
+
|
|
160
|
+
'@babel/helper-plugin-utils@7.28.6':
|
|
161
|
+
resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
|
|
162
|
+
engines: {node: '>=6.9.0'}
|
|
163
|
+
|
|
164
|
+
'@babel/helper-replace-supers@7.28.6':
|
|
165
|
+
resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
|
|
166
|
+
engines: {node: '>=6.9.0'}
|
|
167
|
+
peerDependencies:
|
|
168
|
+
'@babel/core': ^7.0.0
|
|
169
|
+
|
|
170
|
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
|
|
171
|
+
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
|
|
172
|
+
engines: {node: '>=6.9.0'}
|
|
173
|
+
|
|
174
|
+
'@babel/helper-string-parser@7.27.1':
|
|
175
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
176
|
+
engines: {node: '>=6.9.0'}
|
|
177
|
+
|
|
178
|
+
'@babel/helper-validator-identifier@7.28.5':
|
|
179
|
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
|
|
180
|
+
engines: {node: '>=6.9.0'}
|
|
181
|
+
|
|
182
|
+
'@babel/helper-validator-option@7.27.1':
|
|
183
|
+
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
|
|
184
|
+
engines: {node: '>=6.9.0'}
|
|
185
|
+
|
|
186
|
+
'@babel/helpers@7.29.2':
|
|
187
|
+
resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
|
|
188
|
+
engines: {node: '>=6.9.0'}
|
|
189
|
+
|
|
190
|
+
'@babel/parser@7.29.3':
|
|
191
|
+
resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
|
|
192
|
+
engines: {node: '>=6.0.0'}
|
|
193
|
+
hasBin: true
|
|
194
|
+
|
|
195
|
+
'@babel/plugin-proposal-decorators@7.29.0':
|
|
196
|
+
resolution: {integrity: sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==}
|
|
197
|
+
engines: {node: '>=6.9.0'}
|
|
198
|
+
peerDependencies:
|
|
199
|
+
'@babel/core': ^7.0.0-0
|
|
200
|
+
|
|
201
|
+
'@babel/plugin-syntax-decorators@7.28.6':
|
|
202
|
+
resolution: {integrity: sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==}
|
|
203
|
+
engines: {node: '>=6.9.0'}
|
|
204
|
+
peerDependencies:
|
|
205
|
+
'@babel/core': ^7.0.0-0
|
|
206
|
+
|
|
207
|
+
'@babel/plugin-syntax-import-attributes@7.28.6':
|
|
208
|
+
resolution: {integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==}
|
|
209
|
+
engines: {node: '>=6.9.0'}
|
|
210
|
+
peerDependencies:
|
|
211
|
+
'@babel/core': ^7.0.0-0
|
|
212
|
+
|
|
213
|
+
'@babel/plugin-syntax-import-meta@7.10.4':
|
|
214
|
+
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
|
|
215
|
+
peerDependencies:
|
|
216
|
+
'@babel/core': ^7.0.0-0
|
|
217
|
+
|
|
218
|
+
'@babel/plugin-syntax-jsx@7.28.6':
|
|
219
|
+
resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
|
|
220
|
+
engines: {node: '>=6.9.0'}
|
|
221
|
+
peerDependencies:
|
|
222
|
+
'@babel/core': ^7.0.0-0
|
|
223
|
+
|
|
224
|
+
'@babel/plugin-syntax-typescript@7.28.6':
|
|
225
|
+
resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==}
|
|
226
|
+
engines: {node: '>=6.9.0'}
|
|
227
|
+
peerDependencies:
|
|
228
|
+
'@babel/core': ^7.0.0-0
|
|
229
|
+
|
|
230
|
+
'@babel/plugin-transform-typescript@7.28.6':
|
|
231
|
+
resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==}
|
|
232
|
+
engines: {node: '>=6.9.0'}
|
|
233
|
+
peerDependencies:
|
|
234
|
+
'@babel/core': ^7.0.0-0
|
|
235
|
+
|
|
236
|
+
'@babel/template@7.28.6':
|
|
237
|
+
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
|
|
238
|
+
engines: {node: '>=6.9.0'}
|
|
239
|
+
|
|
240
|
+
'@babel/traverse@7.29.0':
|
|
241
|
+
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
|
|
242
|
+
engines: {node: '>=6.9.0'}
|
|
243
|
+
|
|
244
|
+
'@babel/types@7.29.0':
|
|
245
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
246
|
+
engines: {node: '>=6.9.0'}
|
|
247
|
+
|
|
248
|
+
'@emnapi/core@1.10.0':
|
|
249
|
+
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
|
|
250
|
+
|
|
251
|
+
'@emnapi/runtime@1.10.0':
|
|
252
|
+
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
|
|
253
|
+
|
|
254
|
+
'@emnapi/wasi-threads@1.2.1':
|
|
255
|
+
resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
|
|
256
|
+
|
|
257
|
+
'@eslint-community/eslint-utils@4.9.1':
|
|
258
|
+
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
|
259
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
260
|
+
peerDependencies:
|
|
261
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
262
|
+
|
|
263
|
+
'@eslint-community/regexpp@4.12.2':
|
|
264
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
265
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
266
|
+
|
|
267
|
+
'@eslint/config-array@0.23.5':
|
|
268
|
+
resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
|
|
269
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
270
|
+
|
|
271
|
+
'@eslint/config-helpers@0.6.0':
|
|
272
|
+
resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==}
|
|
273
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
274
|
+
|
|
275
|
+
'@eslint/core@1.2.1':
|
|
276
|
+
resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
|
|
277
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
278
|
+
|
|
279
|
+
'@eslint/object-schema@3.0.5':
|
|
280
|
+
resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
|
|
281
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
282
|
+
|
|
283
|
+
'@eslint/plugin-kit@0.7.1':
|
|
284
|
+
resolution: {integrity: sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==}
|
|
285
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
286
|
+
|
|
287
|
+
'@humanfs/core@0.19.2':
|
|
288
|
+
resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
|
|
289
|
+
engines: {node: '>=18.18.0'}
|
|
290
|
+
|
|
291
|
+
'@humanfs/node@0.16.8':
|
|
292
|
+
resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
|
|
293
|
+
engines: {node: '>=18.18.0'}
|
|
294
|
+
|
|
295
|
+
'@humanfs/types@0.15.0':
|
|
296
|
+
resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
|
|
297
|
+
engines: {node: '>=18.18.0'}
|
|
298
|
+
|
|
299
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
300
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
301
|
+
engines: {node: '>=12.22'}
|
|
302
|
+
|
|
303
|
+
'@humanwhocodes/retry@0.4.3':
|
|
304
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
305
|
+
engines: {node: '>=18.18'}
|
|
306
|
+
|
|
307
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
308
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
309
|
+
|
|
310
|
+
'@jridgewell/remapping@2.3.5':
|
|
311
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
312
|
+
|
|
313
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
314
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
315
|
+
engines: {node: '>=6.0.0'}
|
|
316
|
+
|
|
317
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
318
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
319
|
+
|
|
320
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
321
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
322
|
+
|
|
323
|
+
'@lucide/vue@1.16.0':
|
|
324
|
+
resolution: {integrity: sha512-kiHx0fe49DMjQuvNaEOu9Jou6u9FwdqQ8xbZIKlD47sXrOI8g59kIeeQL42NBLI4AvO+UJsbaPX0hEK/4rHSBQ==}
|
|
325
|
+
peerDependencies:
|
|
326
|
+
vue: '>=3.0.1'
|
|
327
|
+
|
|
328
|
+
'@napi-rs/wasm-runtime@1.1.4':
|
|
329
|
+
resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
|
|
330
|
+
peerDependencies:
|
|
331
|
+
'@emnapi/core': ^1.7.1
|
|
332
|
+
'@emnapi/runtime': ^1.7.1
|
|
333
|
+
|
|
334
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
335
|
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
336
|
+
engines: {node: '>= 8'}
|
|
337
|
+
|
|
338
|
+
'@nodelib/fs.stat@2.0.5':
|
|
339
|
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
|
340
|
+
engines: {node: '>= 8'}
|
|
341
|
+
|
|
342
|
+
'@nodelib/fs.walk@1.2.8':
|
|
343
|
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
344
|
+
engines: {node: '>= 8'}
|
|
345
|
+
|
|
346
|
+
'@oxc-project/types@0.132.0':
|
|
347
|
+
resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==}
|
|
348
|
+
|
|
349
|
+
'@oxfmt/binding-android-arm-eabi@0.51.0':
|
|
350
|
+
resolution: {integrity: sha512-Ni0sCqg5CIHaLIYFGj+ncbcumylvNC6FE4rfD0KfdmnWHbPJ+zev0qZCXKxy2hFVa0fYRK0yPzf5nzPbkZou7g==}
|
|
351
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
352
|
+
cpu: [arm]
|
|
353
|
+
os: [android]
|
|
354
|
+
|
|
355
|
+
'@oxfmt/binding-android-arm64@0.51.0':
|
|
356
|
+
resolution: {integrity: sha512-eu5lAZjuo0KAkp+M24EhDqfOwA8owQ8d7wyBlOUUGRbDLHpU3IRlDHp8Dif+YqGlxs6jra7yS6WQu/NkPhAxeg==}
|
|
357
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
358
|
+
cpu: [arm64]
|
|
359
|
+
os: [android]
|
|
360
|
+
|
|
361
|
+
'@oxfmt/binding-darwin-arm64@0.51.0':
|
|
362
|
+
resolution: {integrity: sha512-6LsUNIdURhhcIfIn8+xsOb61mSTa9msAHTeSGx9Jf4rsP/gN8PGCF+SKWPAQZbND2w/WBkqQ6303jqEEIXzMdQ==}
|
|
363
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
364
|
+
cpu: [arm64]
|
|
365
|
+
os: [darwin]
|
|
366
|
+
|
|
367
|
+
'@oxfmt/binding-darwin-x64@0.51.0':
|
|
368
|
+
resolution: {integrity: sha512-9aUMGmVxdHjYMsEAW1tNRoieTJXlVNDFkRvIR1J7LttJXWjVYCu2ekclLij2KJtxBxSQOYSHd12ME/adVGVbZg==}
|
|
369
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
370
|
+
cpu: [x64]
|
|
371
|
+
os: [darwin]
|
|
372
|
+
|
|
373
|
+
'@oxfmt/binding-freebsd-x64@0.51.0':
|
|
374
|
+
resolution: {integrity: sha512-mkY1nhZTqYb+NHaAWxOCKISN6FwdrwMNsu17vTUA3wzUV2VJ+Paq15ZokRcsMU/2PUdHO73prxyeJpjXQ3MPpQ==}
|
|
375
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
376
|
+
cpu: [x64]
|
|
377
|
+
os: [freebsd]
|
|
378
|
+
|
|
379
|
+
'@oxfmt/binding-linux-arm-gnueabihf@0.51.0':
|
|
380
|
+
resolution: {integrity: sha512-wtFwNwE4+YCNuPaWoGDZeGsKvD6D1YSUNBJNn/rJBh7CrDBThFE+TBI5kY7vRW9rIOQRsbW2IpyyL3Du4Zqwiw==}
|
|
381
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
382
|
+
cpu: [arm]
|
|
383
|
+
os: [linux]
|
|
384
|
+
|
|
385
|
+
'@oxfmt/binding-linux-arm-musleabihf@0.51.0':
|
|
386
|
+
resolution: {integrity: sha512-rnOaNx86G7iRKM6lsCIQMux0SMGNC/TEbFR+r7lpruJ12bnrIWgxd5w1PLqOvgR9r8ZJbpK/zfRKctJnh8/Jfg==}
|
|
387
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
388
|
+
cpu: [arm]
|
|
389
|
+
os: [linux]
|
|
390
|
+
|
|
391
|
+
'@oxfmt/binding-linux-arm64-gnu@0.51.0':
|
|
392
|
+
resolution: {integrity: sha512-jOgDzSqWcICGRjsp4mc08FxKMN8vzP2Kgs4E0d2HUP99F+nJDQKklRV4Zuj+0gcBgjrzx2CbpqaIdUVPepCojA==}
|
|
393
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
394
|
+
cpu: [arm64]
|
|
395
|
+
os: [linux]
|
|
396
|
+
libc: [glibc]
|
|
397
|
+
|
|
398
|
+
'@oxfmt/binding-linux-arm64-musl@0.51.0':
|
|
399
|
+
resolution: {integrity: sha512-KBUCdrH5bwVrAvI9gU/1S55oH6fzXjr++J/oVocdu7bYTks1l7DNNT+rLd/1TDdAEjObGwmfWamn7LC1m8A0DQ==}
|
|
400
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
401
|
+
cpu: [arm64]
|
|
402
|
+
os: [linux]
|
|
403
|
+
libc: [musl]
|
|
404
|
+
|
|
405
|
+
'@oxfmt/binding-linux-ppc64-gnu@0.51.0':
|
|
406
|
+
resolution: {integrity: sha512-NapfjYsABFqTJ1Dn9Efq6sN5esaHconVKwVLbDGNQLrwpOx/g17mkwErHzU72PutL67nf3wNAkbq122H+zLxag==}
|
|
407
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
408
|
+
cpu: [ppc64]
|
|
409
|
+
os: [linux]
|
|
410
|
+
libc: [glibc]
|
|
411
|
+
|
|
412
|
+
'@oxfmt/binding-linux-riscv64-gnu@0.51.0':
|
|
413
|
+
resolution: {integrity: sha512-5dlDt1dUZCVi6elIhiK1PWg9wpTzTcIuj0IZnSurvIoMrhOWqqTcc1dSTxcSkNaBZhfsNqRZdINI1zAgbKkJNQ==}
|
|
414
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
415
|
+
cpu: [riscv64]
|
|
416
|
+
os: [linux]
|
|
417
|
+
libc: [glibc]
|
|
418
|
+
|
|
419
|
+
'@oxfmt/binding-linux-riscv64-musl@0.51.0':
|
|
420
|
+
resolution: {integrity: sha512-pgdWUJn0S5nulyiVdlFV8DzCUnGXkU99W5PSkkmbaZW+LrZBPxpezun4G0DDHbQaVYuJeCuKsXsGKGo77CkUTQ==}
|
|
421
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
422
|
+
cpu: [riscv64]
|
|
423
|
+
os: [linux]
|
|
424
|
+
libc: [musl]
|
|
425
|
+
|
|
426
|
+
'@oxfmt/binding-linux-s390x-gnu@0.51.0':
|
|
427
|
+
resolution: {integrity: sha512-2XTFUe97CbDGAI8vjwDfZ1HdakO0XIADyJ24idEg64SC4/K4in/OisXVnrW4NMK7I6TgC7EqRhC0Ln/nKhAemA==}
|
|
428
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
429
|
+
cpu: [s390x]
|
|
430
|
+
os: [linux]
|
|
431
|
+
libc: [glibc]
|
|
432
|
+
|
|
433
|
+
'@oxfmt/binding-linux-x64-gnu@0.51.0':
|
|
434
|
+
resolution: {integrity: sha512-kQ1OuCqqt/yyf0ZN9VFxW1/JnlgJgii3Dr7pWf9vNBvrX1hv6g39/+mc5oGRHRGJFZtl3zsGDWR9c5N2B/gwBw==}
|
|
435
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
436
|
+
cpu: [x64]
|
|
437
|
+
os: [linux]
|
|
438
|
+
libc: [glibc]
|
|
439
|
+
|
|
440
|
+
'@oxfmt/binding-linux-x64-musl@0.51.0':
|
|
441
|
+
resolution: {integrity: sha512-ARTYqxHF475o96Gbn41hvSWSSRygPlRDXZZgZ9I2scU1y0qiWpCQyZCoefaQa0mwv+wwtZ+luS4YOzsRzM/izg==}
|
|
442
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
443
|
+
cpu: [x64]
|
|
444
|
+
os: [linux]
|
|
445
|
+
libc: [musl]
|
|
446
|
+
|
|
447
|
+
'@oxfmt/binding-openharmony-arm64@0.51.0':
|
|
448
|
+
resolution: {integrity: sha512-QiC1XrCl6a6BmqMzduO8hdIRMf1m44hCkt2Q68KWkTvUB/E7fd2iomyNh6KnnRca5w6eBrRAAtLFqTh+xjsjJA==}
|
|
449
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
450
|
+
cpu: [arm64]
|
|
451
|
+
os: [openharmony]
|
|
452
|
+
|
|
453
|
+
'@oxfmt/binding-win32-arm64-msvc@0.51.0':
|
|
454
|
+
resolution: {integrity: sha512-NC/hJb9dtU23Zf8L7IVK95xnFjiQ7AfcLO2l5pb69TDEr958qxrtnB2CveeeNSCBFNIkgaTCfd/vHNSoG78l9g==}
|
|
455
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
456
|
+
cpu: [arm64]
|
|
457
|
+
os: [win32]
|
|
458
|
+
|
|
459
|
+
'@oxfmt/binding-win32-ia32-msvc@0.51.0':
|
|
460
|
+
resolution: {integrity: sha512-2C45za4Rj36n8YIbhRL1PQbxmXJYf81WEcAgvj5I4ptRROG+A+81hREEN5bmCHADE1UfYaN312U6tkILoZZy6w==}
|
|
461
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
462
|
+
cpu: [ia32]
|
|
463
|
+
os: [win32]
|
|
464
|
+
|
|
465
|
+
'@oxfmt/binding-win32-x64-msvc@0.51.0':
|
|
466
|
+
resolution: {integrity: sha512-73RqdAuVKQTkjZIDw08JaDHUM4lav5Qu+CaPwg4QbbA7k8o7LEW0p3UsfZ/F8dsO/pwVYh3RzFcanwLRTTahbQ==}
|
|
467
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
468
|
+
cpu: [x64]
|
|
469
|
+
os: [win32]
|
|
470
|
+
|
|
471
|
+
'@oxlint/binding-android-arm-eabi@1.66.0':
|
|
472
|
+
resolution: {integrity: sha512-f7kq8N51T4phpzqfBpA2qaVTI/KrkCmNwaj3t/97I/WLTDI+UhlP5GL9eER+zVxBhtlx5rKXWByJU1/zDAvyaw==}
|
|
473
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
474
|
+
cpu: [arm]
|
|
475
|
+
os: [android]
|
|
476
|
+
|
|
477
|
+
'@oxlint/binding-android-arm64@1.66.0':
|
|
478
|
+
resolution: {integrity: sha512-xu6QO71tdDS9mjmLZ3AqhtaVHBvdmsOKkYnReNNDgh+XiwnsipeQOIxbiYOOO0iAXycJ+GK0wdMSZP/2j/AmSg==}
|
|
479
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
480
|
+
cpu: [arm64]
|
|
481
|
+
os: [android]
|
|
482
|
+
|
|
483
|
+
'@oxlint/binding-darwin-arm64@1.66.0':
|
|
484
|
+
resolution: {integrity: sha512-HZ24VimSOC7mxuEA99e0H2FS0C1yO3+iW13jPRAk+e2njsUs3QeAXsafCDyaIrV/MirdOVez+etQNQsJE43zNQ==}
|
|
485
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
486
|
+
cpu: [arm64]
|
|
487
|
+
os: [darwin]
|
|
488
|
+
|
|
489
|
+
'@oxlint/binding-darwin-x64@1.66.0':
|
|
490
|
+
resolution: {integrity: sha512-awhj8ZvJrrRSnXj7V++rpZvTmnl99L6mi0B7gg7Cp7BN6cKpzuI481bHNLvXGA9GB1/oEgA3ponuyoAc6Md12A==}
|
|
491
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
492
|
+
cpu: [x64]
|
|
493
|
+
os: [darwin]
|
|
494
|
+
|
|
495
|
+
'@oxlint/binding-freebsd-x64@1.66.0':
|
|
496
|
+
resolution: {integrity: sha512-KQF0oVV21/FjIqkRuL8Q1vh8ECsE5+ocdH5tcqTQ4ZnYuDVoYibQUNfqBjQaUsP6UIIda5Y75Wpm5p4RgQWiWw==}
|
|
497
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
498
|
+
cpu: [x64]
|
|
499
|
+
os: [freebsd]
|
|
500
|
+
|
|
501
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.66.0':
|
|
502
|
+
resolution: {integrity: sha512-9u1rgwZSEXWb30vbFZzQ78HVXBo0WCKNwJ3a2InRUTNMRng+PUDIoSFmA+m4HdUfBaIqftShq8J8qHc+eE/Vig==}
|
|
503
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
504
|
+
cpu: [arm]
|
|
505
|
+
os: [linux]
|
|
506
|
+
|
|
507
|
+
'@oxlint/binding-linux-arm-musleabihf@1.66.0':
|
|
508
|
+
resolution: {integrity: sha512-Ynot2HR1bHxUaNWoC280MVTDfZuaWuP3XfSMRDhyuZrVjhzoaBCVFlw8h8qeZjWKVUBhPWFIxB7AQTlK8Z2WWg==}
|
|
509
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
510
|
+
cpu: [arm]
|
|
511
|
+
os: [linux]
|
|
512
|
+
|
|
513
|
+
'@oxlint/binding-linux-arm64-gnu@1.66.0':
|
|
514
|
+
resolution: {integrity: sha512-xCbgzciGgo+A4aQZEknsNrNiIwY7sU5SfRuMmRjPIvZAgdF34cIHiKvwOsS5XRLjlTVSFwitmq6YclTtHTfU+g==}
|
|
515
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
516
|
+
cpu: [arm64]
|
|
517
|
+
os: [linux]
|
|
518
|
+
libc: [glibc]
|
|
519
|
+
|
|
520
|
+
'@oxlint/binding-linux-arm64-musl@1.66.0':
|
|
521
|
+
resolution: {integrity: sha512-hmo+ZB/lHkR1HdDmnziNpzSLmulnUSu10VEqX2Yex7OwvoBAbjJQLvy4gIBRV3AAwWnCvAxKp5Nv1GE6LU1QMg==}
|
|
522
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
523
|
+
cpu: [arm64]
|
|
524
|
+
os: [linux]
|
|
525
|
+
libc: [musl]
|
|
526
|
+
|
|
527
|
+
'@oxlint/binding-linux-ppc64-gnu@1.66.0':
|
|
528
|
+
resolution: {integrity: sha512-2Invd4Uyy81mVooQC5FBtfxSNrvcX1OxbMlVQ6M2erRrNI2awFYF26YNW2yFxdVFZ4ffNOWKghtMjhnUPsXsVA==}
|
|
529
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
530
|
+
cpu: [ppc64]
|
|
531
|
+
os: [linux]
|
|
532
|
+
libc: [glibc]
|
|
533
|
+
|
|
534
|
+
'@oxlint/binding-linux-riscv64-gnu@1.66.0':
|
|
535
|
+
resolution: {integrity: sha512-s0iXPDQVdgayE3RGa/N2DZF7tjgg0TwEtD1sGoDxqPDGrIXgo45H0yHknT0f9A0yteASsweYZtDyTuVlM4aSag==}
|
|
536
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
537
|
+
cpu: [riscv64]
|
|
538
|
+
os: [linux]
|
|
539
|
+
libc: [glibc]
|
|
540
|
+
|
|
541
|
+
'@oxlint/binding-linux-riscv64-musl@1.66.0':
|
|
542
|
+
resolution: {integrity: sha512-OekL4XFiu7RPK0JIZi8VeHgtIXPREf42t8Cy/rKEsC+P3gcqDgNAAGiyuUOpdbG4wwbfue1q4CHcCO7spSve6w==}
|
|
543
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
544
|
+
cpu: [riscv64]
|
|
545
|
+
os: [linux]
|
|
546
|
+
libc: [musl]
|
|
547
|
+
|
|
548
|
+
'@oxlint/binding-linux-s390x-gnu@1.66.0':
|
|
549
|
+
resolution: {integrity: sha512-Ga1D0kj1SFslm34ThA/BdkUlyAYEnTsXyRC4pF0C5agZSwtGdHYWMTQWemUfBGp4RCG4QWXgdO+HmmmKqOtlBg==}
|
|
550
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
551
|
+
cpu: [s390x]
|
|
552
|
+
os: [linux]
|
|
553
|
+
libc: [glibc]
|
|
554
|
+
|
|
555
|
+
'@oxlint/binding-linux-x64-gnu@1.66.0':
|
|
556
|
+
resolution: {integrity: sha512-p5jfP1wUZe/IC3qpQO84n9DRnf9g3lKRtLBlQq23ykyrDglHcVx7sWmVTlPuU6SBw8mNnPzyOn022G3XZHnlww==}
|
|
557
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
558
|
+
cpu: [x64]
|
|
559
|
+
os: [linux]
|
|
560
|
+
libc: [glibc]
|
|
561
|
+
|
|
562
|
+
'@oxlint/binding-linux-x64-musl@1.66.0':
|
|
563
|
+
resolution: {integrity: sha512-vUB/sYlYZorDL1ZD+o9mRv7zbsykrrFRtmgS6R8musZqLtrPRQn1gc1eGpuX+sfdccz42STl/AqldY6XRb2upQ==}
|
|
564
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
565
|
+
cpu: [x64]
|
|
566
|
+
os: [linux]
|
|
567
|
+
libc: [musl]
|
|
568
|
+
|
|
569
|
+
'@oxlint/binding-openharmony-arm64@1.66.0':
|
|
570
|
+
resolution: {integrity: sha512-yde+6p/F59xRkGR9H1HfngWRif1QRJjynZK349l+UI0H6w9hL3G8/AVaTHFyTtLVQ56qtNbX2/5Dc77n1ovnOg==}
|
|
571
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
572
|
+
cpu: [arm64]
|
|
573
|
+
os: [openharmony]
|
|
574
|
+
|
|
575
|
+
'@oxlint/binding-win32-arm64-msvc@1.66.0':
|
|
576
|
+
resolution: {integrity: sha512-O9GLucgoTdmOrbBX+EjzNe7o/Ze5TFOvXcib6bzUOtBOmj6cV+zw18NgB+cGKAkDw1Pdqs8vGkfHbbsLuDtXWg==}
|
|
577
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
578
|
+
cpu: [arm64]
|
|
579
|
+
os: [win32]
|
|
580
|
+
|
|
581
|
+
'@oxlint/binding-win32-ia32-msvc@1.66.0':
|
|
582
|
+
resolution: {integrity: sha512-m3Pjwc2MfTcom4E4gOv7DyuGyt7OfGNCbmqDHd+N7EzXmP+ppHuudm2NjcA3AjV5TSeGxaguVF4SbTKHe1USYA==}
|
|
583
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
584
|
+
cpu: [ia32]
|
|
585
|
+
os: [win32]
|
|
586
|
+
|
|
587
|
+
'@oxlint/binding-win32-x64-msvc@1.66.0':
|
|
588
|
+
resolution: {integrity: sha512-/DbBvw8UFBhja6PqudUjV4UtfsJr0Oa7jUjWVKB0g86lj/VwnPrkngn0sFql3c9RDA0O16dh7ozsXb6GjNAzBQ==}
|
|
589
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
590
|
+
cpu: [x64]
|
|
591
|
+
os: [win32]
|
|
592
|
+
|
|
593
|
+
'@pkgr/core@0.2.9':
|
|
594
|
+
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
|
|
595
|
+
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
|
|
596
|
+
|
|
597
|
+
'@polka/url@1.0.0-next.29':
|
|
598
|
+
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
|
|
599
|
+
|
|
600
|
+
'@rolldown/binding-android-arm64@1.0.2':
|
|
601
|
+
resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==}
|
|
602
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
603
|
+
cpu: [arm64]
|
|
604
|
+
os: [android]
|
|
605
|
+
|
|
606
|
+
'@rolldown/binding-darwin-arm64@1.0.2':
|
|
607
|
+
resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==}
|
|
608
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
609
|
+
cpu: [arm64]
|
|
610
|
+
os: [darwin]
|
|
611
|
+
|
|
612
|
+
'@rolldown/binding-darwin-x64@1.0.2':
|
|
613
|
+
resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==}
|
|
614
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
615
|
+
cpu: [x64]
|
|
616
|
+
os: [darwin]
|
|
617
|
+
|
|
618
|
+
'@rolldown/binding-freebsd-x64@1.0.2':
|
|
619
|
+
resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==}
|
|
620
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
621
|
+
cpu: [x64]
|
|
622
|
+
os: [freebsd]
|
|
623
|
+
|
|
624
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.2':
|
|
625
|
+
resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==}
|
|
626
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
627
|
+
cpu: [arm]
|
|
628
|
+
os: [linux]
|
|
629
|
+
|
|
630
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.2':
|
|
631
|
+
resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==}
|
|
632
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
633
|
+
cpu: [arm64]
|
|
634
|
+
os: [linux]
|
|
635
|
+
libc: [glibc]
|
|
636
|
+
|
|
637
|
+
'@rolldown/binding-linux-arm64-musl@1.0.2':
|
|
638
|
+
resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==}
|
|
639
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
640
|
+
cpu: [arm64]
|
|
641
|
+
os: [linux]
|
|
642
|
+
libc: [musl]
|
|
643
|
+
|
|
644
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.2':
|
|
645
|
+
resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==}
|
|
646
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
647
|
+
cpu: [ppc64]
|
|
648
|
+
os: [linux]
|
|
649
|
+
libc: [glibc]
|
|
650
|
+
|
|
651
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.2':
|
|
652
|
+
resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==}
|
|
653
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
654
|
+
cpu: [s390x]
|
|
655
|
+
os: [linux]
|
|
656
|
+
libc: [glibc]
|
|
657
|
+
|
|
658
|
+
'@rolldown/binding-linux-x64-gnu@1.0.2':
|
|
659
|
+
resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==}
|
|
660
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
661
|
+
cpu: [x64]
|
|
662
|
+
os: [linux]
|
|
663
|
+
libc: [glibc]
|
|
664
|
+
|
|
665
|
+
'@rolldown/binding-linux-x64-musl@1.0.2':
|
|
666
|
+
resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==}
|
|
667
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
668
|
+
cpu: [x64]
|
|
669
|
+
os: [linux]
|
|
670
|
+
libc: [musl]
|
|
671
|
+
|
|
672
|
+
'@rolldown/binding-openharmony-arm64@1.0.2':
|
|
673
|
+
resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==}
|
|
674
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
675
|
+
cpu: [arm64]
|
|
676
|
+
os: [openharmony]
|
|
677
|
+
|
|
678
|
+
'@rolldown/binding-wasm32-wasi@1.0.2':
|
|
679
|
+
resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==}
|
|
680
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
681
|
+
cpu: [wasm32]
|
|
682
|
+
|
|
683
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.2':
|
|
684
|
+
resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==}
|
|
685
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
686
|
+
cpu: [arm64]
|
|
687
|
+
os: [win32]
|
|
688
|
+
|
|
689
|
+
'@rolldown/binding-win32-x64-msvc@1.0.2':
|
|
690
|
+
resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==}
|
|
691
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
692
|
+
cpu: [x64]
|
|
693
|
+
os: [win32]
|
|
694
|
+
|
|
695
|
+
'@rolldown/pluginutils@1.0.1':
|
|
696
|
+
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
|
|
697
|
+
|
|
698
|
+
'@tailwindcss/node@4.3.0':
|
|
699
|
+
resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
|
|
700
|
+
|
|
701
|
+
'@tailwindcss/oxide-android-arm64@4.3.0':
|
|
702
|
+
resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==}
|
|
703
|
+
engines: {node: '>= 20'}
|
|
704
|
+
cpu: [arm64]
|
|
705
|
+
os: [android]
|
|
706
|
+
|
|
707
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.0':
|
|
708
|
+
resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==}
|
|
709
|
+
engines: {node: '>= 20'}
|
|
710
|
+
cpu: [arm64]
|
|
711
|
+
os: [darwin]
|
|
712
|
+
|
|
713
|
+
'@tailwindcss/oxide-darwin-x64@4.3.0':
|
|
714
|
+
resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==}
|
|
715
|
+
engines: {node: '>= 20'}
|
|
716
|
+
cpu: [x64]
|
|
717
|
+
os: [darwin]
|
|
718
|
+
|
|
719
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.0':
|
|
720
|
+
resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==}
|
|
721
|
+
engines: {node: '>= 20'}
|
|
722
|
+
cpu: [x64]
|
|
723
|
+
os: [freebsd]
|
|
724
|
+
|
|
725
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
|
|
726
|
+
resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==}
|
|
727
|
+
engines: {node: '>= 20'}
|
|
728
|
+
cpu: [arm]
|
|
729
|
+
os: [linux]
|
|
730
|
+
|
|
731
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
|
|
732
|
+
resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==}
|
|
733
|
+
engines: {node: '>= 20'}
|
|
734
|
+
cpu: [arm64]
|
|
735
|
+
os: [linux]
|
|
736
|
+
libc: [glibc]
|
|
737
|
+
|
|
738
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
739
|
+
resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
|
|
740
|
+
engines: {node: '>= 20'}
|
|
741
|
+
cpu: [arm64]
|
|
742
|
+
os: [linux]
|
|
743
|
+
libc: [musl]
|
|
744
|
+
|
|
745
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
746
|
+
resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
|
|
747
|
+
engines: {node: '>= 20'}
|
|
748
|
+
cpu: [x64]
|
|
749
|
+
os: [linux]
|
|
750
|
+
libc: [glibc]
|
|
751
|
+
|
|
752
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
753
|
+
resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
|
|
754
|
+
engines: {node: '>= 20'}
|
|
755
|
+
cpu: [x64]
|
|
756
|
+
os: [linux]
|
|
757
|
+
libc: [musl]
|
|
758
|
+
|
|
759
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
760
|
+
resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
|
|
761
|
+
engines: {node: '>=14.0.0'}
|
|
762
|
+
cpu: [wasm32]
|
|
763
|
+
bundledDependencies:
|
|
764
|
+
- '@napi-rs/wasm-runtime'
|
|
765
|
+
- '@emnapi/core'
|
|
766
|
+
- '@emnapi/runtime'
|
|
767
|
+
- '@tybys/wasm-util'
|
|
768
|
+
- '@emnapi/wasi-threads'
|
|
769
|
+
- tslib
|
|
770
|
+
|
|
771
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
|
|
772
|
+
resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==}
|
|
773
|
+
engines: {node: '>= 20'}
|
|
774
|
+
cpu: [arm64]
|
|
775
|
+
os: [win32]
|
|
776
|
+
|
|
777
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.0':
|
|
778
|
+
resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==}
|
|
779
|
+
engines: {node: '>= 20'}
|
|
780
|
+
cpu: [x64]
|
|
781
|
+
os: [win32]
|
|
782
|
+
|
|
783
|
+
'@tailwindcss/oxide@4.3.0':
|
|
784
|
+
resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==}
|
|
785
|
+
engines: {node: '>= 20'}
|
|
786
|
+
|
|
787
|
+
'@tailwindcss/vite@4.3.0':
|
|
788
|
+
resolution: {integrity: sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==}
|
|
789
|
+
peerDependencies:
|
|
790
|
+
vite: ^5.2.0 || ^6 || ^7 || ^8
|
|
791
|
+
|
|
792
|
+
'@tauri-apps/api@2.11.0':
|
|
793
|
+
resolution: {integrity: sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==}
|
|
794
|
+
|
|
795
|
+
'@tauri-apps/cli-darwin-arm64@2.11.2':
|
|
796
|
+
resolution: {integrity: sha512-+4UZzLt+eOAEQCwgd+TqKgyUJMrvx+BgdXLLaqJYmPqzP+nE6YZr/hY6CWLYGQb8jFn99jEkmC6uA3tNvamA1w==}
|
|
797
|
+
engines: {node: '>= 10'}
|
|
798
|
+
cpu: [arm64]
|
|
799
|
+
os: [darwin]
|
|
800
|
+
|
|
801
|
+
'@tauri-apps/cli-darwin-x64@2.11.2':
|
|
802
|
+
resolution: {integrity: sha512-VjYYtZUPqDMLutSfJEyxFE3Bz+DPi7c8wC3imckgvciLDZLq4qwKJxBicg0BXGhXjJsl8vKWgWRFNMPELQ+Xyg==}
|
|
803
|
+
engines: {node: '>= 10'}
|
|
804
|
+
cpu: [x64]
|
|
805
|
+
os: [darwin]
|
|
806
|
+
|
|
807
|
+
'@tauri-apps/cli-linux-arm-gnueabihf@2.11.2':
|
|
808
|
+
resolution: {integrity: sha512-yMemD6f4i95AQriS8EazyOFzbE34yjnP16i3IOzpHGQvBoy2DjypFMFBq0NtPuITURv/cOGguRtHR5d79/9CSA==}
|
|
809
|
+
engines: {node: '>= 10'}
|
|
810
|
+
cpu: [arm]
|
|
811
|
+
os: [linux]
|
|
812
|
+
|
|
813
|
+
'@tauri-apps/cli-linux-arm64-gnu@2.11.2':
|
|
814
|
+
resolution: {integrity: sha512-cgI91D2wL8GSgoWwZXDqt+DwnuZCP2/bz03QAE4TrhgAKIsrB4hX26W/H1EONPUUNkqrsgeCD0wU6pcNjV/5kw==}
|
|
815
|
+
engines: {node: '>= 10'}
|
|
816
|
+
cpu: [arm64]
|
|
817
|
+
os: [linux]
|
|
818
|
+
libc: [glibc]
|
|
819
|
+
|
|
820
|
+
'@tauri-apps/cli-linux-arm64-musl@2.11.2':
|
|
821
|
+
resolution: {integrity: sha512-X1rm0BERqAAggtYTESSgXrS3sz4Sb/OiPiz54UqISlXW+GkR3vNIGnsy/lejNmoXGVqri3Q53BCfQiclOIyRPw==}
|
|
822
|
+
engines: {node: '>= 10'}
|
|
823
|
+
cpu: [arm64]
|
|
824
|
+
os: [linux]
|
|
825
|
+
libc: [musl]
|
|
826
|
+
|
|
827
|
+
'@tauri-apps/cli-linux-riscv64-gnu@2.11.2':
|
|
828
|
+
resolution: {integrity: sha512-usbMLJbT3KtkOrBMDVeGYNM35aTHXx38SJSzTMSqqjeUIOQ+iVPjb2yAGNAE+KqmBbAx4FOFIyMeKXx2M/JKGQ==}
|
|
829
|
+
engines: {node: '>= 10'}
|
|
830
|
+
cpu: [riscv64]
|
|
831
|
+
os: [linux]
|
|
832
|
+
libc: [glibc]
|
|
833
|
+
|
|
834
|
+
'@tauri-apps/cli-linux-x64-gnu@2.11.2':
|
|
835
|
+
resolution: {integrity: sha512-Ru4gwJKPG0ctVGchRGpRup4Y4lW2SSfFnrbQcyHhCliKy4g8Qz97TrUgCur4CbWyAgKxvGh3SjrkA0LDYzDGiw==}
|
|
836
|
+
engines: {node: '>= 10'}
|
|
837
|
+
cpu: [x64]
|
|
838
|
+
os: [linux]
|
|
839
|
+
libc: [glibc]
|
|
840
|
+
|
|
841
|
+
'@tauri-apps/cli-linux-x64-musl@2.11.2':
|
|
842
|
+
resolution: {integrity: sha512-eUm7T6clN1MMmNSRQ9gaWsQdyehQx2Gmn5hht/QUlqZQI/qcP2OJK5dnaxqwFzCr2HdsEo9ydxaqcS1oJzMvUw==}
|
|
843
|
+
engines: {node: '>= 10'}
|
|
844
|
+
cpu: [x64]
|
|
845
|
+
os: [linux]
|
|
846
|
+
libc: [musl]
|
|
847
|
+
|
|
848
|
+
'@tauri-apps/cli-win32-arm64-msvc@2.11.2':
|
|
849
|
+
resolution: {integrity: sha512-HeeZW80jU+gVTOEX4X/hC6NVSAdDVXajwP5fxIZ/3z9WvUC7qrudX2GMTilYq6Dg0e0sk0XgsAJD1hZ5wPBXUA==}
|
|
850
|
+
engines: {node: '>= 10'}
|
|
851
|
+
cpu: [arm64]
|
|
852
|
+
os: [win32]
|
|
853
|
+
|
|
854
|
+
'@tauri-apps/cli-win32-ia32-msvc@2.11.2':
|
|
855
|
+
resolution: {integrity: sha512-YhjQNZcXfbkCLyazSv1nPnJ9iRFE1wm6kc51FDbU10/Dk09io+6PAGMLjkxnX2GdM0qMnDmTjstY8mTDVvtKeA==}
|
|
856
|
+
engines: {node: '>= 10'}
|
|
857
|
+
cpu: [ia32]
|
|
858
|
+
os: [win32]
|
|
859
|
+
|
|
860
|
+
'@tauri-apps/cli-win32-x64-msvc@2.11.2':
|
|
861
|
+
resolution: {integrity: sha512-d2JchlFIpZevZVReyqhQOekJmb1UH3rhZ5VX6sH3ty9ETE0TKQavpihvoScUXfKKpW6HZC0MrFGRU0ZtD+w3gA==}
|
|
862
|
+
engines: {node: '>= 10'}
|
|
863
|
+
cpu: [x64]
|
|
864
|
+
os: [win32]
|
|
865
|
+
|
|
866
|
+
'@tauri-apps/cli@2.11.2':
|
|
867
|
+
resolution: {integrity: sha512-bk3HemqvGRoy+5D/dVMUQHKMYLglD0jVnMm/0iGMH6ufZ+p8r14m6BpIixwij3PBvZdvORUp1YifTD8QxVZ1Nw==}
|
|
868
|
+
engines: {node: '>= 10'}
|
|
869
|
+
hasBin: true
|
|
870
|
+
|
|
871
|
+
'@tsconfig/node24@24.0.4':
|
|
872
|
+
resolution: {integrity: sha512-2A933l5P5oCbv6qSxHs7ckKwobs8BDAe9SJ/Xr2Hy+nDlwmLE1GhFh/g/vXGRZWgxBg9nX/5piDtHR9Dkw/XuA==}
|
|
873
|
+
|
|
874
|
+
'@tybys/wasm-util@0.10.2':
|
|
875
|
+
resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
|
|
876
|
+
|
|
877
|
+
'@types/esrecurse@4.3.1':
|
|
878
|
+
resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
|
|
879
|
+
|
|
880
|
+
'@types/estree@1.0.9':
|
|
881
|
+
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
882
|
+
|
|
883
|
+
'@types/json-schema@7.0.15':
|
|
884
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
885
|
+
|
|
886
|
+
'@types/node@25.9.1':
|
|
887
|
+
resolution: {integrity: sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==}
|
|
888
|
+
|
|
889
|
+
'@typescript-eslint/eslint-plugin@8.59.4':
|
|
890
|
+
resolution: {integrity: sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==}
|
|
891
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
892
|
+
peerDependencies:
|
|
893
|
+
'@typescript-eslint/parser': ^8.59.4
|
|
894
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
895
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
896
|
+
|
|
897
|
+
'@typescript-eslint/parser@8.59.4':
|
|
898
|
+
resolution: {integrity: sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==}
|
|
899
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
900
|
+
peerDependencies:
|
|
901
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
902
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
903
|
+
|
|
904
|
+
'@typescript-eslint/project-service@8.59.4':
|
|
905
|
+
resolution: {integrity: sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==}
|
|
906
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
907
|
+
peerDependencies:
|
|
908
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
909
|
+
|
|
910
|
+
'@typescript-eslint/scope-manager@8.59.4':
|
|
911
|
+
resolution: {integrity: sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==}
|
|
912
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
913
|
+
|
|
914
|
+
'@typescript-eslint/tsconfig-utils@8.59.4':
|
|
915
|
+
resolution: {integrity: sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==}
|
|
916
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
917
|
+
peerDependencies:
|
|
918
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
919
|
+
|
|
920
|
+
'@typescript-eslint/type-utils@8.59.4':
|
|
921
|
+
resolution: {integrity: sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==}
|
|
922
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
923
|
+
peerDependencies:
|
|
924
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
925
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
926
|
+
|
|
927
|
+
'@typescript-eslint/types@8.59.4':
|
|
928
|
+
resolution: {integrity: sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==}
|
|
929
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
930
|
+
|
|
931
|
+
'@typescript-eslint/typescript-estree@8.59.4':
|
|
932
|
+
resolution: {integrity: sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==}
|
|
933
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
934
|
+
peerDependencies:
|
|
935
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
936
|
+
|
|
937
|
+
'@typescript-eslint/utils@8.59.4':
|
|
938
|
+
resolution: {integrity: sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==}
|
|
939
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
940
|
+
peerDependencies:
|
|
941
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
942
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
943
|
+
|
|
944
|
+
'@typescript-eslint/visitor-keys@8.59.4':
|
|
945
|
+
resolution: {integrity: sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==}
|
|
946
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
947
|
+
|
|
948
|
+
'@vitejs/plugin-vue@6.0.7':
|
|
949
|
+
resolution: {integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==}
|
|
950
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
951
|
+
peerDependencies:
|
|
952
|
+
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
953
|
+
vue: ^3.2.25
|
|
954
|
+
|
|
955
|
+
'@volar/language-core@2.4.28':
|
|
956
|
+
resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
|
|
957
|
+
|
|
958
|
+
'@volar/source-map@2.4.28':
|
|
959
|
+
resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
|
|
960
|
+
|
|
961
|
+
'@volar/typescript@2.4.28':
|
|
962
|
+
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
|
|
963
|
+
|
|
964
|
+
'@vue/babel-helper-vue-transform-on@1.5.0':
|
|
965
|
+
resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==}
|
|
966
|
+
|
|
967
|
+
'@vue/babel-plugin-jsx@1.5.0':
|
|
968
|
+
resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==}
|
|
969
|
+
peerDependencies:
|
|
970
|
+
'@babel/core': ^7.0.0-0
|
|
971
|
+
peerDependenciesMeta:
|
|
972
|
+
'@babel/core':
|
|
973
|
+
optional: true
|
|
974
|
+
|
|
975
|
+
'@vue/babel-plugin-resolve-type@1.5.0':
|
|
976
|
+
resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==}
|
|
977
|
+
peerDependencies:
|
|
978
|
+
'@babel/core': ^7.0.0-0
|
|
979
|
+
|
|
980
|
+
'@vue/compiler-core@3.5.34':
|
|
981
|
+
resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==}
|
|
982
|
+
|
|
983
|
+
'@vue/compiler-dom@3.5.34':
|
|
984
|
+
resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
|
|
985
|
+
|
|
986
|
+
'@vue/compiler-sfc@3.5.34':
|
|
987
|
+
resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
|
|
988
|
+
|
|
989
|
+
'@vue/compiler-ssr@3.5.34':
|
|
990
|
+
resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
|
|
991
|
+
|
|
992
|
+
'@vue/devtools-core@8.1.2':
|
|
993
|
+
resolution: {integrity: sha512-ZGGyaSBP4/+bN2Nd9ZHNYAVDRIzMw1rv2RyXWtyZlo6mQal+IDmTvKY4V+DjAEBhaXt30mHmsgYp1yXJ/2tIWg==}
|
|
994
|
+
peerDependencies:
|
|
995
|
+
vue: ^3.0.0
|
|
996
|
+
|
|
997
|
+
'@vue/devtools-kit@8.1.2':
|
|
998
|
+
resolution: {integrity: sha512-f75/upc+GCyjXErpgPGz4582ujS0L/adAltGy+tqXMGUJpgAcfGr6CxnnhpZY8BHuMYt6KpbF8uaFrrQG66rGQ==}
|
|
999
|
+
|
|
1000
|
+
'@vue/devtools-shared@8.1.2':
|
|
1001
|
+
resolution: {integrity: sha512-X9RyVFYAdkBe4IUf5v48TxBF/6QPmF8CmWrDAjXzfUHrgQ/HGfTC1A6TqgXqZ03ye66l3AD51BAGD69IvKM9sw==}
|
|
1002
|
+
|
|
1003
|
+
'@vue/eslint-config-prettier@10.2.0':
|
|
1004
|
+
resolution: {integrity: sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==}
|
|
1005
|
+
peerDependencies:
|
|
1006
|
+
eslint: '>= 8.21.0'
|
|
1007
|
+
prettier: '>= 3.0.0'
|
|
1008
|
+
|
|
1009
|
+
'@vue/eslint-config-typescript@14.7.0':
|
|
1010
|
+
resolution: {integrity: sha512-iegbMINVc+seZ/QxtzWiOBozctrHiF2WvGedruu2EbLujg9VuU0FQiNcN2z1ycuaoKKpF4m2qzB5HDEMKbxtIg==}
|
|
1011
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1012
|
+
peerDependencies:
|
|
1013
|
+
eslint: ^9.10.0 || ^10.0.0
|
|
1014
|
+
eslint-plugin-vue: ^9.28.0 || ^10.0.0
|
|
1015
|
+
typescript: '>=4.8.4'
|
|
1016
|
+
peerDependenciesMeta:
|
|
1017
|
+
typescript:
|
|
1018
|
+
optional: true
|
|
1019
|
+
|
|
1020
|
+
'@vue/language-core@3.3.1':
|
|
1021
|
+
resolution: {integrity: sha512-NP8g6V7x81NVOXbLupUvYY6i6LqUkjkVowe2epRedmpgaFCOdjgWHE/rQBvEJ4r7koAYODIjGeBWEdt6n7jYXQ==}
|
|
1022
|
+
|
|
1023
|
+
'@vue/reactivity@3.5.34':
|
|
1024
|
+
resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
|
|
1025
|
+
|
|
1026
|
+
'@vue/runtime-core@3.5.34':
|
|
1027
|
+
resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
|
|
1028
|
+
|
|
1029
|
+
'@vue/runtime-dom@3.5.34':
|
|
1030
|
+
resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
|
|
1031
|
+
|
|
1032
|
+
'@vue/server-renderer@3.5.34':
|
|
1033
|
+
resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
|
|
1034
|
+
peerDependencies:
|
|
1035
|
+
vue: 3.5.34
|
|
1036
|
+
|
|
1037
|
+
'@vue/shared@3.5.34':
|
|
1038
|
+
resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
|
|
1039
|
+
|
|
1040
|
+
'@vue/tsconfig@0.9.1':
|
|
1041
|
+
resolution: {integrity: sha512-buvjm+9NzLCJL29KY1j1991YYJ5e6275OiK+G4jtmfIb+z4POywbdm0wXusT9adVWqe0xqg70TbI7+mRx4uU9w==}
|
|
1042
|
+
peerDependencies:
|
|
1043
|
+
typescript: '>= 5.8'
|
|
1044
|
+
vue: ^3.4.0
|
|
1045
|
+
peerDependenciesMeta:
|
|
1046
|
+
typescript:
|
|
1047
|
+
optional: true
|
|
1048
|
+
vue:
|
|
1049
|
+
optional: true
|
|
1050
|
+
|
|
1051
|
+
acorn-jsx@5.3.2:
|
|
1052
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
1053
|
+
peerDependencies:
|
|
1054
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
1055
|
+
|
|
1056
|
+
acorn@8.16.0:
|
|
1057
|
+
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
1058
|
+
engines: {node: '>=0.4.0'}
|
|
1059
|
+
hasBin: true
|
|
1060
|
+
|
|
1061
|
+
ajv@6.15.0:
|
|
1062
|
+
resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
|
|
1063
|
+
|
|
1064
|
+
alien-signals@3.2.1:
|
|
1065
|
+
resolution: {integrity: sha512-I8FjmltrfnDFoZedi5CG8DghVYNhzb/Ijluz7tCSJH0xpd0484Kowhbb1XDYOxfJpU1p5wnM2X54dA+IfGyD1g==}
|
|
1066
|
+
|
|
1067
|
+
ansi-escapes@7.3.0:
|
|
1068
|
+
resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
|
|
1069
|
+
engines: {node: '>=18'}
|
|
1070
|
+
|
|
1071
|
+
ansi-regex@6.2.2:
|
|
1072
|
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
|
|
1073
|
+
engines: {node: '>=12'}
|
|
1074
|
+
|
|
1075
|
+
ansi-styles@6.2.3:
|
|
1076
|
+
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
|
|
1077
|
+
engines: {node: '>=12'}
|
|
1078
|
+
|
|
1079
|
+
ansis@4.3.0:
|
|
1080
|
+
resolution: {integrity: sha512-44mvgtPvohuU/70DdY5Oz2AIrLJ9k6/5x4KmoSvPwO+5Moijo0+N9D0fKbbYZQWP1hNm5CpOf+E01jhxG/r8xg==}
|
|
1081
|
+
engines: {node: '>=14'}
|
|
1082
|
+
|
|
1083
|
+
balanced-match@4.0.4:
|
|
1084
|
+
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
1085
|
+
engines: {node: 18 || 20 || >=22}
|
|
1086
|
+
|
|
1087
|
+
baseline-browser-mapping@2.10.31:
|
|
1088
|
+
resolution: {integrity: sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==}
|
|
1089
|
+
engines: {node: '>=6.0.0'}
|
|
1090
|
+
hasBin: true
|
|
1091
|
+
|
|
1092
|
+
birpc@2.9.0:
|
|
1093
|
+
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
|
|
1094
|
+
|
|
1095
|
+
boolbase@1.0.0:
|
|
1096
|
+
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
1097
|
+
|
|
1098
|
+
brace-expansion@5.0.6:
|
|
1099
|
+
resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
|
|
1100
|
+
engines: {node: 18 || 20 || >=22}
|
|
1101
|
+
|
|
1102
|
+
braces@3.0.3:
|
|
1103
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
1104
|
+
engines: {node: '>=8'}
|
|
1105
|
+
|
|
1106
|
+
browserslist@4.28.2:
|
|
1107
|
+
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
1108
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1109
|
+
hasBin: true
|
|
1110
|
+
|
|
1111
|
+
bundle-name@4.1.0:
|
|
1112
|
+
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
|
|
1113
|
+
engines: {node: '>=18'}
|
|
1114
|
+
|
|
1115
|
+
caniuse-lite@1.0.30001793:
|
|
1116
|
+
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
|
1117
|
+
|
|
1118
|
+
chokidar@5.0.0:
|
|
1119
|
+
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
|
|
1120
|
+
engines: {node: '>= 20.19.0'}
|
|
1121
|
+
|
|
1122
|
+
class-variance-authority@0.7.1:
|
|
1123
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
1124
|
+
|
|
1125
|
+
cli-cursor@5.0.0:
|
|
1126
|
+
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
|
|
1127
|
+
engines: {node: '>=18'}
|
|
1128
|
+
|
|
1129
|
+
cli-truncate@5.2.0:
|
|
1130
|
+
resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
|
|
1131
|
+
engines: {node: '>=20'}
|
|
1132
|
+
|
|
1133
|
+
clsx@2.1.1:
|
|
1134
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
1135
|
+
engines: {node: '>=6'}
|
|
1136
|
+
|
|
1137
|
+
confbox@0.1.8:
|
|
1138
|
+
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
|
|
1139
|
+
|
|
1140
|
+
confbox@0.2.4:
|
|
1141
|
+
resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
|
|
1142
|
+
|
|
1143
|
+
convert-source-map@2.0.0:
|
|
1144
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
1145
|
+
|
|
1146
|
+
cross-spawn@7.0.6:
|
|
1147
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
1148
|
+
engines: {node: '>= 8'}
|
|
1149
|
+
|
|
1150
|
+
cssesc@3.0.0:
|
|
1151
|
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
1152
|
+
engines: {node: '>=4'}
|
|
1153
|
+
hasBin: true
|
|
1154
|
+
|
|
1155
|
+
csstype@3.2.3:
|
|
1156
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
1157
|
+
|
|
1158
|
+
debug@4.4.3:
|
|
1159
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
1160
|
+
engines: {node: '>=6.0'}
|
|
1161
|
+
peerDependencies:
|
|
1162
|
+
supports-color: '*'
|
|
1163
|
+
peerDependenciesMeta:
|
|
1164
|
+
supports-color:
|
|
1165
|
+
optional: true
|
|
1166
|
+
|
|
1167
|
+
deep-is@0.1.4:
|
|
1168
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
1169
|
+
|
|
1170
|
+
default-browser-id@5.0.1:
|
|
1171
|
+
resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
|
|
1172
|
+
engines: {node: '>=18'}
|
|
1173
|
+
|
|
1174
|
+
default-browser@5.5.0:
|
|
1175
|
+
resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==}
|
|
1176
|
+
engines: {node: '>=18'}
|
|
1177
|
+
|
|
1178
|
+
define-lazy-prop@3.0.0:
|
|
1179
|
+
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
|
|
1180
|
+
engines: {node: '>=12'}
|
|
1181
|
+
|
|
1182
|
+
detect-libc@2.1.2:
|
|
1183
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
1184
|
+
engines: {node: '>=8'}
|
|
1185
|
+
|
|
1186
|
+
electron-to-chromium@1.5.360:
|
|
1187
|
+
resolution: {integrity: sha512-GkcBt6YYAw9SxFWn+xVar4cLVGlXVuswwtRLBozi2zp0GjXs4ZnOrqV4zbXzg35n7w81hCkyJNYicgXlVHAmBA==}
|
|
1188
|
+
|
|
1189
|
+
emoji-regex@10.6.0:
|
|
1190
|
+
resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
|
|
1191
|
+
|
|
1192
|
+
enhanced-resolve@5.21.6:
|
|
1193
|
+
resolution: {integrity: sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==}
|
|
1194
|
+
engines: {node: '>=10.13.0'}
|
|
1195
|
+
|
|
1196
|
+
entities@7.0.1:
|
|
1197
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
1198
|
+
engines: {node: '>=0.12'}
|
|
1199
|
+
|
|
1200
|
+
environment@1.1.0:
|
|
1201
|
+
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
|
|
1202
|
+
engines: {node: '>=18'}
|
|
1203
|
+
|
|
1204
|
+
error-stack-parser-es@1.0.5:
|
|
1205
|
+
resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
|
|
1206
|
+
|
|
1207
|
+
escalade@3.2.0:
|
|
1208
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1209
|
+
engines: {node: '>=6'}
|
|
1210
|
+
|
|
1211
|
+
escape-string-regexp@4.0.0:
|
|
1212
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1213
|
+
engines: {node: '>=10'}
|
|
1214
|
+
|
|
1215
|
+
escape-string-regexp@5.0.0:
|
|
1216
|
+
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
|
1217
|
+
engines: {node: '>=12'}
|
|
1218
|
+
|
|
1219
|
+
eslint-config-prettier@10.1.8:
|
|
1220
|
+
resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==}
|
|
1221
|
+
hasBin: true
|
|
1222
|
+
peerDependencies:
|
|
1223
|
+
eslint: '>=7.0.0'
|
|
1224
|
+
|
|
1225
|
+
eslint-plugin-oxlint@1.66.0:
|
|
1226
|
+
resolution: {integrity: sha512-hiEL6unj3874OBe4FZaCL6oAs66b4cjgovvfvWGwwmUIg2Sqnd0xxBRBT8nXFCqJKthmligSPTsZ1gSvyO3YjQ==}
|
|
1227
|
+
peerDependencies:
|
|
1228
|
+
oxlint: ~1.66.0
|
|
1229
|
+
|
|
1230
|
+
eslint-plugin-prettier@5.5.5:
|
|
1231
|
+
resolution: {integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==}
|
|
1232
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
1233
|
+
peerDependencies:
|
|
1234
|
+
'@types/eslint': '>=8.0.0'
|
|
1235
|
+
eslint: '>=8.0.0'
|
|
1236
|
+
eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
|
|
1237
|
+
prettier: '>=3.0.0'
|
|
1238
|
+
peerDependenciesMeta:
|
|
1239
|
+
'@types/eslint':
|
|
1240
|
+
optional: true
|
|
1241
|
+
eslint-config-prettier:
|
|
1242
|
+
optional: true
|
|
1243
|
+
|
|
1244
|
+
eslint-plugin-vue@10.9.1:
|
|
1245
|
+
resolution: {integrity: sha512-cHB0Tf4Duvzwecwd/AqWzZvF/QszE13BhjVUpVXWCy9AeMR5GjkAjP3i85vqgLgOuTmkHR1OJ5oMeqLHtuw8zg==}
|
|
1246
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1247
|
+
peerDependencies:
|
|
1248
|
+
'@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
|
|
1249
|
+
'@typescript-eslint/parser': ^7.0.0 || ^8.0.0
|
|
1250
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1251
|
+
vue-eslint-parser: ^10.3.0
|
|
1252
|
+
peerDependenciesMeta:
|
|
1253
|
+
'@stylistic/eslint-plugin':
|
|
1254
|
+
optional: true
|
|
1255
|
+
'@typescript-eslint/parser':
|
|
1256
|
+
optional: true
|
|
1257
|
+
|
|
1258
|
+
eslint-scope@9.1.2:
|
|
1259
|
+
resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
|
|
1260
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1261
|
+
|
|
1262
|
+
eslint-visitor-keys@3.4.3:
|
|
1263
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
1264
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1265
|
+
|
|
1266
|
+
eslint-visitor-keys@5.0.1:
|
|
1267
|
+
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
1268
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1269
|
+
|
|
1270
|
+
eslint@10.4.0:
|
|
1271
|
+
resolution: {integrity: sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==}
|
|
1272
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1273
|
+
hasBin: true
|
|
1274
|
+
peerDependencies:
|
|
1275
|
+
jiti: '*'
|
|
1276
|
+
peerDependenciesMeta:
|
|
1277
|
+
jiti:
|
|
1278
|
+
optional: true
|
|
1279
|
+
|
|
1280
|
+
espree@11.2.0:
|
|
1281
|
+
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
|
1282
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1283
|
+
|
|
1284
|
+
esquery@1.7.0:
|
|
1285
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
1286
|
+
engines: {node: '>=0.10'}
|
|
1287
|
+
|
|
1288
|
+
esrecurse@4.3.0:
|
|
1289
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
1290
|
+
engines: {node: '>=4.0'}
|
|
1291
|
+
|
|
1292
|
+
estraverse@5.3.0:
|
|
1293
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
1294
|
+
engines: {node: '>=4.0'}
|
|
1295
|
+
|
|
1296
|
+
estree-walker@2.0.2:
|
|
1297
|
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
1298
|
+
|
|
1299
|
+
estree-walker@3.0.3:
|
|
1300
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
1301
|
+
|
|
1302
|
+
esutils@2.0.3:
|
|
1303
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
1304
|
+
engines: {node: '>=0.10.0'}
|
|
1305
|
+
|
|
1306
|
+
eventemitter3@5.0.4:
|
|
1307
|
+
resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
|
|
1308
|
+
|
|
1309
|
+
exsolve@1.0.8:
|
|
1310
|
+
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
|
|
1311
|
+
|
|
1312
|
+
fast-deep-equal@3.1.3:
|
|
1313
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1314
|
+
|
|
1315
|
+
fast-diff@1.3.0:
|
|
1316
|
+
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
|
|
1317
|
+
|
|
1318
|
+
fast-glob@3.3.3:
|
|
1319
|
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
1320
|
+
engines: {node: '>=8.6.0'}
|
|
1321
|
+
|
|
1322
|
+
fast-json-stable-stringify@2.1.0:
|
|
1323
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
1324
|
+
|
|
1325
|
+
fast-levenshtein@2.0.6:
|
|
1326
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1327
|
+
|
|
1328
|
+
fastq@1.20.1:
|
|
1329
|
+
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
1330
|
+
|
|
1331
|
+
fdir@6.5.0:
|
|
1332
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
1333
|
+
engines: {node: '>=12.0.0'}
|
|
1334
|
+
peerDependencies:
|
|
1335
|
+
picomatch: ^3 || ^4
|
|
1336
|
+
peerDependenciesMeta:
|
|
1337
|
+
picomatch:
|
|
1338
|
+
optional: true
|
|
1339
|
+
|
|
1340
|
+
file-entry-cache@8.0.0:
|
|
1341
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1342
|
+
engines: {node: '>=16.0.0'}
|
|
1343
|
+
|
|
1344
|
+
fill-range@7.1.1:
|
|
1345
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1346
|
+
engines: {node: '>=8'}
|
|
1347
|
+
|
|
1348
|
+
find-up@5.0.0:
|
|
1349
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1350
|
+
engines: {node: '>=10'}
|
|
1351
|
+
|
|
1352
|
+
flat-cache@4.0.1:
|
|
1353
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1354
|
+
engines: {node: '>=16'}
|
|
1355
|
+
|
|
1356
|
+
flatted@3.4.2:
|
|
1357
|
+
resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
|
|
1358
|
+
|
|
1359
|
+
fsevents@2.3.3:
|
|
1360
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1361
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1362
|
+
os: [darwin]
|
|
1363
|
+
|
|
1364
|
+
gensync@1.0.0-beta.2:
|
|
1365
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
1366
|
+
engines: {node: '>=6.9.0'}
|
|
1367
|
+
|
|
1368
|
+
get-east-asian-width@1.6.0:
|
|
1369
|
+
resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==}
|
|
1370
|
+
engines: {node: '>=18'}
|
|
1371
|
+
|
|
1372
|
+
glob-parent@5.1.2:
|
|
1373
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
1374
|
+
engines: {node: '>= 6'}
|
|
1375
|
+
|
|
1376
|
+
glob-parent@6.0.2:
|
|
1377
|
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
1378
|
+
engines: {node: '>=10.13.0'}
|
|
1379
|
+
|
|
1380
|
+
graceful-fs@4.2.11:
|
|
1381
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1382
|
+
|
|
1383
|
+
hookable@5.5.3:
|
|
1384
|
+
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
|
|
1385
|
+
|
|
1386
|
+
husky@9.1.7:
|
|
1387
|
+
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
|
|
1388
|
+
engines: {node: '>=18'}
|
|
1389
|
+
hasBin: true
|
|
1390
|
+
|
|
1391
|
+
ignore@5.3.2:
|
|
1392
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1393
|
+
engines: {node: '>= 4'}
|
|
1394
|
+
|
|
1395
|
+
ignore@7.0.5:
|
|
1396
|
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
1397
|
+
engines: {node: '>= 4'}
|
|
1398
|
+
|
|
1399
|
+
imurmurhash@0.1.4:
|
|
1400
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1401
|
+
engines: {node: '>=0.8.19'}
|
|
1402
|
+
|
|
1403
|
+
is-docker@3.0.0:
|
|
1404
|
+
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
|
|
1405
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1406
|
+
hasBin: true
|
|
1407
|
+
|
|
1408
|
+
is-extglob@2.1.1:
|
|
1409
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
1410
|
+
engines: {node: '>=0.10.0'}
|
|
1411
|
+
|
|
1412
|
+
is-fullwidth-code-point@5.1.0:
|
|
1413
|
+
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
|
|
1414
|
+
engines: {node: '>=18'}
|
|
1415
|
+
|
|
1416
|
+
is-glob@4.0.3:
|
|
1417
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1418
|
+
engines: {node: '>=0.10.0'}
|
|
1419
|
+
|
|
1420
|
+
is-inside-container@1.0.0:
|
|
1421
|
+
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
|
|
1422
|
+
engines: {node: '>=14.16'}
|
|
1423
|
+
hasBin: true
|
|
1424
|
+
|
|
1425
|
+
is-number@7.0.0:
|
|
1426
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1427
|
+
engines: {node: '>=0.12.0'}
|
|
1428
|
+
|
|
1429
|
+
is-wsl@3.1.1:
|
|
1430
|
+
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
|
|
1431
|
+
engines: {node: '>=16'}
|
|
1432
|
+
|
|
1433
|
+
isexe@2.0.0:
|
|
1434
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1435
|
+
|
|
1436
|
+
isexe@4.0.0:
|
|
1437
|
+
resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==}
|
|
1438
|
+
engines: {node: '>=20'}
|
|
1439
|
+
|
|
1440
|
+
jiti@2.7.0:
|
|
1441
|
+
resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
|
|
1442
|
+
hasBin: true
|
|
1443
|
+
|
|
1444
|
+
js-tokens@4.0.0:
|
|
1445
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1446
|
+
|
|
1447
|
+
js-tokens@9.0.1:
|
|
1448
|
+
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
|
|
1449
|
+
|
|
1450
|
+
jsesc@3.1.0:
|
|
1451
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
1452
|
+
engines: {node: '>=6'}
|
|
1453
|
+
hasBin: true
|
|
1454
|
+
|
|
1455
|
+
json-buffer@3.0.1:
|
|
1456
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1457
|
+
|
|
1458
|
+
json-parse-even-better-errors@6.0.0:
|
|
1459
|
+
resolution: {integrity: sha512-2/8adwnK1/+Fdjyts4r6wSpfANWw8zdNhU9U/Llk59c6O+DjSisPWPykwoL8gZmocP9Dy64S7oie2g+Mia123A==}
|
|
1460
|
+
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
|
1461
|
+
|
|
1462
|
+
json-schema-traverse@0.4.1:
|
|
1463
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1464
|
+
|
|
1465
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1466
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1467
|
+
|
|
1468
|
+
json5@2.2.3:
|
|
1469
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
1470
|
+
engines: {node: '>=6'}
|
|
1471
|
+
hasBin: true
|
|
1472
|
+
|
|
1473
|
+
jsonc-parser@3.3.1:
|
|
1474
|
+
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
|
|
1475
|
+
|
|
1476
|
+
keyv@4.5.4:
|
|
1477
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1478
|
+
|
|
1479
|
+
kolorist@1.8.0:
|
|
1480
|
+
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
|
|
1481
|
+
|
|
1482
|
+
levn@0.4.1:
|
|
1483
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1484
|
+
engines: {node: '>= 0.8.0'}
|
|
1485
|
+
|
|
1486
|
+
lightningcss-android-arm64@1.32.0:
|
|
1487
|
+
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
1488
|
+
engines: {node: '>= 12.0.0'}
|
|
1489
|
+
cpu: [arm64]
|
|
1490
|
+
os: [android]
|
|
1491
|
+
|
|
1492
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
1493
|
+
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
|
|
1494
|
+
engines: {node: '>= 12.0.0'}
|
|
1495
|
+
cpu: [arm64]
|
|
1496
|
+
os: [darwin]
|
|
1497
|
+
|
|
1498
|
+
lightningcss-darwin-x64@1.32.0:
|
|
1499
|
+
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
|
|
1500
|
+
engines: {node: '>= 12.0.0'}
|
|
1501
|
+
cpu: [x64]
|
|
1502
|
+
os: [darwin]
|
|
1503
|
+
|
|
1504
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
1505
|
+
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
|
|
1506
|
+
engines: {node: '>= 12.0.0'}
|
|
1507
|
+
cpu: [x64]
|
|
1508
|
+
os: [freebsd]
|
|
1509
|
+
|
|
1510
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
1511
|
+
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
|
|
1512
|
+
engines: {node: '>= 12.0.0'}
|
|
1513
|
+
cpu: [arm]
|
|
1514
|
+
os: [linux]
|
|
1515
|
+
|
|
1516
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
1517
|
+
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
|
|
1518
|
+
engines: {node: '>= 12.0.0'}
|
|
1519
|
+
cpu: [arm64]
|
|
1520
|
+
os: [linux]
|
|
1521
|
+
libc: [glibc]
|
|
1522
|
+
|
|
1523
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
1524
|
+
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
1525
|
+
engines: {node: '>= 12.0.0'}
|
|
1526
|
+
cpu: [arm64]
|
|
1527
|
+
os: [linux]
|
|
1528
|
+
libc: [musl]
|
|
1529
|
+
|
|
1530
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
1531
|
+
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
1532
|
+
engines: {node: '>= 12.0.0'}
|
|
1533
|
+
cpu: [x64]
|
|
1534
|
+
os: [linux]
|
|
1535
|
+
libc: [glibc]
|
|
1536
|
+
|
|
1537
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
1538
|
+
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
1539
|
+
engines: {node: '>= 12.0.0'}
|
|
1540
|
+
cpu: [x64]
|
|
1541
|
+
os: [linux]
|
|
1542
|
+
libc: [musl]
|
|
1543
|
+
|
|
1544
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1545
|
+
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
1546
|
+
engines: {node: '>= 12.0.0'}
|
|
1547
|
+
cpu: [arm64]
|
|
1548
|
+
os: [win32]
|
|
1549
|
+
|
|
1550
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
1551
|
+
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
|
|
1552
|
+
engines: {node: '>= 12.0.0'}
|
|
1553
|
+
cpu: [x64]
|
|
1554
|
+
os: [win32]
|
|
1555
|
+
|
|
1556
|
+
lightningcss@1.32.0:
|
|
1557
|
+
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
|
|
1558
|
+
engines: {node: '>= 12.0.0'}
|
|
1559
|
+
|
|
1560
|
+
lint-staged@17.0.5:
|
|
1561
|
+
resolution: {integrity: sha512-d12yC+/e8RhBjZtaxZn71FyrgU/P5e+uAPifhCLwdosQZP/zamSdKRWDC30ocVIbzDKiFG1McHc/LUgB92GIPw==}
|
|
1562
|
+
engines: {node: '>=22.22.1'}
|
|
1563
|
+
hasBin: true
|
|
1564
|
+
|
|
1565
|
+
listr2@10.2.1:
|
|
1566
|
+
resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==}
|
|
1567
|
+
engines: {node: '>=22.13.0'}
|
|
1568
|
+
|
|
1569
|
+
local-pkg@1.2.1:
|
|
1570
|
+
resolution: {integrity: sha512-++gUqRDEvcnN6Zhqrr+y/CkVEHhlrR96vZn3nZZPYzMcBUyBtTKzB9NadClFIsIVSsu+3i9tfk/erqy9kAmt7Q==}
|
|
1571
|
+
engines: {node: '>=14'}
|
|
1572
|
+
|
|
1573
|
+
locate-path@6.0.0:
|
|
1574
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1575
|
+
engines: {node: '>=10'}
|
|
1576
|
+
|
|
1577
|
+
log-update@6.1.0:
|
|
1578
|
+
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
|
|
1579
|
+
engines: {node: '>=18'}
|
|
1580
|
+
|
|
1581
|
+
lru-cache@5.1.1:
|
|
1582
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1583
|
+
|
|
1584
|
+
magic-string@0.30.21:
|
|
1585
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1586
|
+
|
|
1587
|
+
memorystream@0.3.1:
|
|
1588
|
+
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
|
|
1589
|
+
engines: {node: '>= 0.10.0'}
|
|
1590
|
+
|
|
1591
|
+
merge2@1.4.1:
|
|
1592
|
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
1593
|
+
engines: {node: '>= 8'}
|
|
1594
|
+
|
|
1595
|
+
micromatch@4.0.8:
|
|
1596
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1597
|
+
engines: {node: '>=8.6'}
|
|
1598
|
+
|
|
1599
|
+
mimic-function@5.0.1:
|
|
1600
|
+
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
|
|
1601
|
+
engines: {node: '>=18'}
|
|
1602
|
+
|
|
1603
|
+
minimatch@10.2.5:
|
|
1604
|
+
resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
|
|
1605
|
+
engines: {node: 18 || 20 || >=22}
|
|
1606
|
+
|
|
1607
|
+
mlly@1.8.2:
|
|
1608
|
+
resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
|
|
1609
|
+
|
|
1610
|
+
mrmime@2.0.1:
|
|
1611
|
+
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
|
|
1612
|
+
engines: {node: '>=10'}
|
|
1613
|
+
|
|
1614
|
+
ms@2.1.3:
|
|
1615
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1616
|
+
|
|
1617
|
+
muggle-string@0.4.1:
|
|
1618
|
+
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
|
|
1619
|
+
|
|
1620
|
+
nanoid@3.3.12:
|
|
1621
|
+
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
|
1622
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1623
|
+
hasBin: true
|
|
1624
|
+
|
|
1625
|
+
natural-compare@1.4.0:
|
|
1626
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1627
|
+
|
|
1628
|
+
node-releases@2.0.45:
|
|
1629
|
+
resolution: {integrity: sha512-iIbHXV9eBB2nB0wa7oTsrrXq+qQt+9SIlx9AX3T96YgobtEQfis5n6TJ6vV+3QP8DwdriEAcGhARaFCu37peBg==}
|
|
1630
|
+
engines: {node: '>=18'}
|
|
1631
|
+
|
|
1632
|
+
npm-normalize-package-bin@6.0.0:
|
|
1633
|
+
resolution: {integrity: sha512-tdt4aFn9QamlhdN3HV2D2ccpBwO5/fyjjbXUxYA6uBjyekMZcZvDq0aSj9t5Jo+tih6AYFnt/cuIRn9013e0Uw==}
|
|
1634
|
+
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
|
1635
|
+
|
|
1636
|
+
npm-run-all2@9.0.0:
|
|
1637
|
+
resolution: {integrity: sha512-NMHaiMWl+kotdoAzVtwElvEh4PLdjAGsdmCJXOGv0rdM4d19FGIa0z0ISFuMklmYgVgQzS4h+jNlowz+q1aojw==}
|
|
1638
|
+
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0, npm: '>= 10'}
|
|
1639
|
+
hasBin: true
|
|
1640
|
+
|
|
1641
|
+
nth-check@2.1.1:
|
|
1642
|
+
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
|
|
1643
|
+
|
|
1644
|
+
obug@2.1.1:
|
|
1645
|
+
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
|
1646
|
+
|
|
1647
|
+
ohash@2.0.11:
|
|
1648
|
+
resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
|
|
1649
|
+
|
|
1650
|
+
onetime@7.0.0:
|
|
1651
|
+
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
1652
|
+
engines: {node: '>=18'}
|
|
1653
|
+
|
|
1654
|
+
open@10.2.0:
|
|
1655
|
+
resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
|
|
1656
|
+
engines: {node: '>=18'}
|
|
1657
|
+
|
|
1658
|
+
optionator@0.9.4:
|
|
1659
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1660
|
+
engines: {node: '>= 0.8.0'}
|
|
1661
|
+
|
|
1662
|
+
oxfmt@0.51.0:
|
|
1663
|
+
resolution: {integrity: sha512-l/AoAnaEOV7Q5/Z9kHOMDehVJnCgYN7wRoooWCTUMBMi16BJhLZqd9cmCnwcVFfVlzkt53zK2KLPFNp8vSsoDg==}
|
|
1664
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1665
|
+
hasBin: true
|
|
1666
|
+
peerDependencies:
|
|
1667
|
+
svelte: ^5.0.0
|
|
1668
|
+
peerDependenciesMeta:
|
|
1669
|
+
svelte:
|
|
1670
|
+
optional: true
|
|
1671
|
+
|
|
1672
|
+
oxlint@1.66.0:
|
|
1673
|
+
resolution: {integrity: sha512-N4LLxYLd94KEBqXDMDM5f+2PUpItTjDLreXe2Gn5KhjhCK4Qp2YUXaBi8Yu325ryOgKwt22m45fpD7nPOn69Yw==}
|
|
1674
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1675
|
+
hasBin: true
|
|
1676
|
+
peerDependencies:
|
|
1677
|
+
oxlint-tsgolint: '>=0.22.1'
|
|
1678
|
+
peerDependenciesMeta:
|
|
1679
|
+
oxlint-tsgolint:
|
|
1680
|
+
optional: true
|
|
1681
|
+
|
|
1682
|
+
p-limit@3.1.0:
|
|
1683
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1684
|
+
engines: {node: '>=10'}
|
|
1685
|
+
|
|
1686
|
+
p-locate@5.0.0:
|
|
1687
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1688
|
+
engines: {node: '>=10'}
|
|
1689
|
+
|
|
1690
|
+
path-browserify@1.0.1:
|
|
1691
|
+
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
|
|
1692
|
+
|
|
1693
|
+
path-exists@4.0.0:
|
|
1694
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1695
|
+
engines: {node: '>=8'}
|
|
1696
|
+
|
|
1697
|
+
path-key@3.1.1:
|
|
1698
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1699
|
+
engines: {node: '>=8'}
|
|
1700
|
+
|
|
1701
|
+
pathe@2.0.3:
|
|
1702
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1703
|
+
|
|
1704
|
+
perfect-debounce@2.1.0:
|
|
1705
|
+
resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
|
|
1706
|
+
|
|
1707
|
+
picocolors@1.1.1:
|
|
1708
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1709
|
+
|
|
1710
|
+
picomatch@2.3.2:
|
|
1711
|
+
resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
|
|
1712
|
+
engines: {node: '>=8.6'}
|
|
1713
|
+
|
|
1714
|
+
picomatch@4.0.4:
|
|
1715
|
+
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
1716
|
+
engines: {node: '>=12'}
|
|
1717
|
+
|
|
1718
|
+
pidtree@0.6.0:
|
|
1719
|
+
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
|
|
1720
|
+
engines: {node: '>=0.10'}
|
|
1721
|
+
hasBin: true
|
|
1722
|
+
|
|
1723
|
+
pkg-types@1.3.1:
|
|
1724
|
+
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
|
1725
|
+
|
|
1726
|
+
pkg-types@2.3.1:
|
|
1727
|
+
resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
|
|
1728
|
+
|
|
1729
|
+
postcss-selector-parser@7.1.1:
|
|
1730
|
+
resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
|
|
1731
|
+
engines: {node: '>=4'}
|
|
1732
|
+
|
|
1733
|
+
postcss@8.5.15:
|
|
1734
|
+
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
|
|
1735
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1736
|
+
|
|
1737
|
+
prelude-ls@1.2.1:
|
|
1738
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1739
|
+
engines: {node: '>= 0.8.0'}
|
|
1740
|
+
|
|
1741
|
+
prettier-linter-helpers@1.0.1:
|
|
1742
|
+
resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==}
|
|
1743
|
+
engines: {node: '>=6.0.0'}
|
|
1744
|
+
|
|
1745
|
+
prettier@3.8.3:
|
|
1746
|
+
resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
|
|
1747
|
+
engines: {node: '>=14'}
|
|
1748
|
+
hasBin: true
|
|
1749
|
+
|
|
1750
|
+
punycode@2.3.1:
|
|
1751
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1752
|
+
engines: {node: '>=6'}
|
|
1753
|
+
|
|
1754
|
+
quansync@0.2.11:
|
|
1755
|
+
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
|
|
1756
|
+
|
|
1757
|
+
queue-microtask@1.2.3:
|
|
1758
|
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
1759
|
+
|
|
1760
|
+
read-package-json-fast@6.0.0:
|
|
1761
|
+
resolution: {integrity: sha512-PNaGjoCnw9DBA2Kl8D+8po957z778q/HOPuY2u3Bkw/JO3eC8MDx7jn/PgMtSgpcBbs+6UOjDbwReGpXmRvs0g==}
|
|
1762
|
+
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
|
1763
|
+
|
|
1764
|
+
readdirp@5.0.0:
|
|
1765
|
+
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
|
|
1766
|
+
engines: {node: '>= 20.19.0'}
|
|
1767
|
+
|
|
1768
|
+
restore-cursor@5.1.0:
|
|
1769
|
+
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
1770
|
+
engines: {node: '>=18'}
|
|
1771
|
+
|
|
1772
|
+
reusify@1.1.0:
|
|
1773
|
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
1774
|
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
1775
|
+
|
|
1776
|
+
rfdc@1.4.1:
|
|
1777
|
+
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
1778
|
+
|
|
1779
|
+
rolldown@1.0.2:
|
|
1780
|
+
resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==}
|
|
1781
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1782
|
+
hasBin: true
|
|
1783
|
+
|
|
1784
|
+
run-applescript@7.1.0:
|
|
1785
|
+
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
|
|
1786
|
+
engines: {node: '>=18'}
|
|
1787
|
+
|
|
1788
|
+
run-parallel@1.2.0:
|
|
1789
|
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
1790
|
+
|
|
1791
|
+
scule@1.3.0:
|
|
1792
|
+
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
|
|
1793
|
+
|
|
1794
|
+
semver@6.3.1:
|
|
1795
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1796
|
+
hasBin: true
|
|
1797
|
+
|
|
1798
|
+
semver@7.8.0:
|
|
1799
|
+
resolution: {integrity: sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==}
|
|
1800
|
+
engines: {node: '>=10'}
|
|
1801
|
+
hasBin: true
|
|
1802
|
+
|
|
1803
|
+
shebang-command@2.0.0:
|
|
1804
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1805
|
+
engines: {node: '>=8'}
|
|
1806
|
+
|
|
1807
|
+
shebang-regex@3.0.0:
|
|
1808
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1809
|
+
engines: {node: '>=8'}
|
|
1810
|
+
|
|
1811
|
+
shell-quote@1.8.3:
|
|
1812
|
+
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
|
|
1813
|
+
engines: {node: '>= 0.4'}
|
|
1814
|
+
|
|
1815
|
+
signal-exit@4.1.0:
|
|
1816
|
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
1817
|
+
engines: {node: '>=14'}
|
|
1818
|
+
|
|
1819
|
+
sirv@3.0.2:
|
|
1820
|
+
resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
|
|
1821
|
+
engines: {node: '>=18'}
|
|
1822
|
+
|
|
1823
|
+
slice-ansi@7.1.2:
|
|
1824
|
+
resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
|
|
1825
|
+
engines: {node: '>=18'}
|
|
1826
|
+
|
|
1827
|
+
slice-ansi@8.0.0:
|
|
1828
|
+
resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
|
|
1829
|
+
engines: {node: '>=20'}
|
|
1830
|
+
|
|
1831
|
+
source-map-js@1.2.1:
|
|
1832
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1833
|
+
engines: {node: '>=0.10.0'}
|
|
1834
|
+
|
|
1835
|
+
string-argv@0.3.2:
|
|
1836
|
+
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
|
|
1837
|
+
engines: {node: '>=0.6.19'}
|
|
1838
|
+
|
|
1839
|
+
string-width@7.2.0:
|
|
1840
|
+
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
1841
|
+
engines: {node: '>=18'}
|
|
1842
|
+
|
|
1843
|
+
string-width@8.2.1:
|
|
1844
|
+
resolution: {integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==}
|
|
1845
|
+
engines: {node: '>=20'}
|
|
1846
|
+
|
|
1847
|
+
strip-ansi@7.2.0:
|
|
1848
|
+
resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
|
|
1849
|
+
engines: {node: '>=12'}
|
|
1850
|
+
|
|
1851
|
+
strip-literal@3.1.0:
|
|
1852
|
+
resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
|
|
1853
|
+
|
|
1854
|
+
synckit@0.11.12:
|
|
1855
|
+
resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
|
|
1856
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
1857
|
+
|
|
1858
|
+
tailwind-merge@3.6.0:
|
|
1859
|
+
resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==}
|
|
1860
|
+
|
|
1861
|
+
tailwindcss@4.3.0:
|
|
1862
|
+
resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==}
|
|
1863
|
+
|
|
1864
|
+
tapable@2.3.3:
|
|
1865
|
+
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
1866
|
+
engines: {node: '>=6'}
|
|
1867
|
+
|
|
1868
|
+
tinyexec@1.1.2:
|
|
1869
|
+
resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==}
|
|
1870
|
+
engines: {node: '>=18'}
|
|
1871
|
+
|
|
1872
|
+
tinyglobby@0.2.16:
|
|
1873
|
+
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
|
|
1874
|
+
engines: {node: '>=12.0.0'}
|
|
1875
|
+
|
|
1876
|
+
tinypool@2.1.0:
|
|
1877
|
+
resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==}
|
|
1878
|
+
engines: {node: ^20.0.0 || >=22.0.0}
|
|
1879
|
+
|
|
1880
|
+
to-regex-range@5.0.1:
|
|
1881
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1882
|
+
engines: {node: '>=8.0'}
|
|
1883
|
+
|
|
1884
|
+
totalist@3.0.1:
|
|
1885
|
+
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
|
|
1886
|
+
engines: {node: '>=6'}
|
|
1887
|
+
|
|
1888
|
+
ts-api-utils@2.5.0:
|
|
1889
|
+
resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
|
|
1890
|
+
engines: {node: '>=18.12'}
|
|
1891
|
+
peerDependencies:
|
|
1892
|
+
typescript: '>=4.8.4'
|
|
1893
|
+
|
|
1894
|
+
tslib@2.8.1:
|
|
1895
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1896
|
+
|
|
1897
|
+
tw-animate-css@1.4.0:
|
|
1898
|
+
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
1899
|
+
|
|
1900
|
+
type-check@0.4.0:
|
|
1901
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1902
|
+
engines: {node: '>= 0.8.0'}
|
|
1903
|
+
|
|
1904
|
+
typescript-eslint@8.59.4:
|
|
1905
|
+
resolution: {integrity: sha512-Rw6+44QNFaXtgHSjPy+Kw8hrJniMYzR85E9yLmOLcfZ91/rz+JXQbDTCmc6ccxMPY6K6PgAq26f0JCBfR7LIPQ==}
|
|
1906
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1907
|
+
peerDependencies:
|
|
1908
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1909
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1910
|
+
|
|
1911
|
+
typescript@6.0.3:
|
|
1912
|
+
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
|
1913
|
+
engines: {node: '>=14.17'}
|
|
1914
|
+
hasBin: true
|
|
1915
|
+
|
|
1916
|
+
ufo@1.6.4:
|
|
1917
|
+
resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
|
|
1918
|
+
|
|
1919
|
+
undici-types@7.24.6:
|
|
1920
|
+
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
1921
|
+
|
|
1922
|
+
unimport@5.7.0:
|
|
1923
|
+
resolution: {integrity: sha512-njnL6sp8lEA8QQbZrt+52p/g4X0rw3bnGGmUcJnt1jeG8+iiqO779aGz0PirCtydAIVcuTBRlJ52F0u46z309Q==}
|
|
1924
|
+
engines: {node: '>=18.12.0'}
|
|
1925
|
+
|
|
1926
|
+
unplugin-auto-import@21.0.0:
|
|
1927
|
+
resolution: {integrity: sha512-vWuC8SwqJmxZFYwPojhOhOXDb5xFhNNcEVb9K/RFkyk/3VnfaOjzitWN7v+8DEKpMjSsY2AEGXNgt6I0yQrhRQ==}
|
|
1928
|
+
engines: {node: '>=20.19.0'}
|
|
1929
|
+
peerDependencies:
|
|
1930
|
+
'@nuxt/kit': ^4.0.0
|
|
1931
|
+
'@vueuse/core': '*'
|
|
1932
|
+
peerDependenciesMeta:
|
|
1933
|
+
'@nuxt/kit':
|
|
1934
|
+
optional: true
|
|
1935
|
+
'@vueuse/core':
|
|
1936
|
+
optional: true
|
|
1937
|
+
|
|
1938
|
+
unplugin-utils@0.3.1:
|
|
1939
|
+
resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
|
|
1940
|
+
engines: {node: '>=20.19.0'}
|
|
1941
|
+
|
|
1942
|
+
unplugin-vue-components@32.1.0:
|
|
1943
|
+
resolution: {integrity: sha512-YiUkSxuRjab18XFOrX5VsIxXzccrfmHVGsGeJgSgklb829DQmCy9E4vvDUE4tuvZZdxyFJZX0Oc4TPnnxiiMyg==}
|
|
1944
|
+
engines: {node: '>=20.19.0'}
|
|
1945
|
+
peerDependencies:
|
|
1946
|
+
'@nuxt/kit': ^3.2.2 || ^4.0.0
|
|
1947
|
+
vue: ^3.0.0
|
|
1948
|
+
peerDependenciesMeta:
|
|
1949
|
+
'@nuxt/kit':
|
|
1950
|
+
optional: true
|
|
1951
|
+
|
|
1952
|
+
unplugin@2.3.11:
|
|
1953
|
+
resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
|
|
1954
|
+
engines: {node: '>=18.12.0'}
|
|
1955
|
+
|
|
1956
|
+
unplugin@3.0.0:
|
|
1957
|
+
resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
|
|
1958
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1959
|
+
|
|
1960
|
+
update-browserslist-db@1.2.3:
|
|
1961
|
+
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
1962
|
+
hasBin: true
|
|
1963
|
+
peerDependencies:
|
|
1964
|
+
browserslist: '>= 4.21.0'
|
|
1965
|
+
|
|
1966
|
+
uri-js@4.4.1:
|
|
1967
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1968
|
+
|
|
1969
|
+
util-deprecate@1.0.2:
|
|
1970
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1971
|
+
|
|
1972
|
+
vite-dev-rpc@1.1.0:
|
|
1973
|
+
resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==}
|
|
1974
|
+
peerDependencies:
|
|
1975
|
+
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0
|
|
1976
|
+
|
|
1977
|
+
vite-hot-client@2.2.0:
|
|
1978
|
+
resolution: {integrity: sha512-76Zs9zrHbH7M7wqeyooGQKdX+yg0pQ0xuQ1PbFp4z5a0Lzn2e5IPFoCswnmqZ4GiwqB4Jo3WcDAMO9jARTJl8w==}
|
|
1979
|
+
peerDependencies:
|
|
1980
|
+
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 || ^8.0.0
|
|
1981
|
+
|
|
1982
|
+
vite-plugin-inspect@11.3.3:
|
|
1983
|
+
resolution: {integrity: sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==}
|
|
1984
|
+
engines: {node: '>=14'}
|
|
1985
|
+
peerDependencies:
|
|
1986
|
+
'@nuxt/kit': '*'
|
|
1987
|
+
vite: ^6.0.0 || ^7.0.0-0
|
|
1988
|
+
peerDependenciesMeta:
|
|
1989
|
+
'@nuxt/kit':
|
|
1990
|
+
optional: true
|
|
1991
|
+
|
|
1992
|
+
vite-plugin-vue-devtools@8.1.2:
|
|
1993
|
+
resolution: {integrity: sha512-gt5h1CNryR9Hy0tvhSbqY3j0F7aj0pGxBxWLa1lXSiZVkhdWDf0vbCOZyjh8ivFGE6FDHTGy3zkcZGlMZdVHig==}
|
|
1994
|
+
engines: {node: '>=v14.21.3'}
|
|
1995
|
+
peerDependencies:
|
|
1996
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
1997
|
+
|
|
1998
|
+
vite-plugin-vue-inspector@6.0.0:
|
|
1999
|
+
resolution: {integrity: sha512-OpyITJLgZNibxlrik1EmRtvXHDjLRxNPsWkGFTERZs2LgMEdG4W0WoFt5GIgp3a3jRou+eJR8U1zOBk/XQgEbw==}
|
|
2000
|
+
peerDependencies:
|
|
2001
|
+
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
2002
|
+
|
|
2003
|
+
vite@8.0.14:
|
|
2004
|
+
resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==}
|
|
2005
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
2006
|
+
hasBin: true
|
|
2007
|
+
peerDependencies:
|
|
2008
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
2009
|
+
'@vitejs/devtools': ^0.1.18
|
|
2010
|
+
esbuild: ^0.27.0 || ^0.28.0
|
|
2011
|
+
jiti: '>=1.21.0'
|
|
2012
|
+
less: ^4.0.0
|
|
2013
|
+
sass: ^1.70.0
|
|
2014
|
+
sass-embedded: ^1.70.0
|
|
2015
|
+
stylus: '>=0.54.8'
|
|
2016
|
+
sugarss: ^5.0.0
|
|
2017
|
+
terser: ^5.16.0
|
|
2018
|
+
tsx: ^4.8.1
|
|
2019
|
+
yaml: ^2.4.2
|
|
2020
|
+
peerDependenciesMeta:
|
|
2021
|
+
'@types/node':
|
|
2022
|
+
optional: true
|
|
2023
|
+
'@vitejs/devtools':
|
|
2024
|
+
optional: true
|
|
2025
|
+
esbuild:
|
|
2026
|
+
optional: true
|
|
2027
|
+
jiti:
|
|
2028
|
+
optional: true
|
|
2029
|
+
less:
|
|
2030
|
+
optional: true
|
|
2031
|
+
sass:
|
|
2032
|
+
optional: true
|
|
2033
|
+
sass-embedded:
|
|
2034
|
+
optional: true
|
|
2035
|
+
stylus:
|
|
2036
|
+
optional: true
|
|
2037
|
+
sugarss:
|
|
2038
|
+
optional: true
|
|
2039
|
+
terser:
|
|
2040
|
+
optional: true
|
|
2041
|
+
tsx:
|
|
2042
|
+
optional: true
|
|
2043
|
+
yaml:
|
|
2044
|
+
optional: true
|
|
2045
|
+
|
|
2046
|
+
vscode-uri@3.1.0:
|
|
2047
|
+
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
|
|
2048
|
+
|
|
2049
|
+
vue-eslint-parser@10.4.0:
|
|
2050
|
+
resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==}
|
|
2051
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2052
|
+
peerDependencies:
|
|
2053
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
2054
|
+
|
|
2055
|
+
vue-tsc@3.3.1:
|
|
2056
|
+
resolution: {integrity: sha512-webBP3jhlxzhELZ2g+11KJ6pg5OVY1xWhWrj7N/yQMi1CrtxJnW+tUACyRVeDK0cQNLP2Va5HNYK8pe+7c+msw==}
|
|
2057
|
+
hasBin: true
|
|
2058
|
+
peerDependencies:
|
|
2059
|
+
typescript: '>=5.0.0'
|
|
2060
|
+
|
|
2061
|
+
vue@3.5.34:
|
|
2062
|
+
resolution: {integrity: sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==}
|
|
2063
|
+
peerDependencies:
|
|
2064
|
+
typescript: '*'
|
|
2065
|
+
peerDependenciesMeta:
|
|
2066
|
+
typescript:
|
|
2067
|
+
optional: true
|
|
2068
|
+
|
|
2069
|
+
webpack-virtual-modules@0.6.2:
|
|
2070
|
+
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
|
|
2071
|
+
|
|
2072
|
+
which@2.0.2:
|
|
2073
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
2074
|
+
engines: {node: '>= 8'}
|
|
2075
|
+
hasBin: true
|
|
2076
|
+
|
|
2077
|
+
which@7.0.0:
|
|
2078
|
+
resolution: {integrity: sha512-RancgH2dmbLdHl6LRhEqvklWMgl/Hdnun0Y90KhBOLkMefg8Qa7/Zel8Sm+8HEcP6DEjzsWzpkuBQEZok58isA==}
|
|
2079
|
+
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
|
2080
|
+
hasBin: true
|
|
2081
|
+
|
|
2082
|
+
word-wrap@1.2.5:
|
|
2083
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
2084
|
+
engines: {node: '>=0.10.0'}
|
|
2085
|
+
|
|
2086
|
+
wrap-ansi@10.0.0:
|
|
2087
|
+
resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
|
|
2088
|
+
engines: {node: '>=20'}
|
|
2089
|
+
|
|
2090
|
+
wrap-ansi@9.0.2:
|
|
2091
|
+
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
|
|
2092
|
+
engines: {node: '>=18'}
|
|
2093
|
+
|
|
2094
|
+
wsl-utils@0.1.0:
|
|
2095
|
+
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
|
|
2096
|
+
engines: {node: '>=18'}
|
|
2097
|
+
|
|
2098
|
+
xml-name-validator@4.0.0:
|
|
2099
|
+
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
|
|
2100
|
+
engines: {node: '>=12'}
|
|
2101
|
+
|
|
2102
|
+
yallist@3.1.1:
|
|
2103
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
2104
|
+
|
|
2105
|
+
yaml@2.9.0:
|
|
2106
|
+
resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
|
|
2107
|
+
engines: {node: '>= 14.6'}
|
|
2108
|
+
hasBin: true
|
|
2109
|
+
|
|
2110
|
+
yocto-queue@0.1.0:
|
|
2111
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
2112
|
+
engines: {node: '>=10'}
|
|
2113
|
+
|
|
2114
|
+
snapshots:
|
|
2115
|
+
|
|
2116
|
+
'@babel/code-frame@7.29.0':
|
|
2117
|
+
dependencies:
|
|
2118
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
2119
|
+
js-tokens: 4.0.0
|
|
2120
|
+
picocolors: 1.1.1
|
|
2121
|
+
|
|
2122
|
+
'@babel/compat-data@7.29.3': {}
|
|
2123
|
+
|
|
2124
|
+
'@babel/core@7.29.0':
|
|
2125
|
+
dependencies:
|
|
2126
|
+
'@babel/code-frame': 7.29.0
|
|
2127
|
+
'@babel/generator': 7.29.1
|
|
2128
|
+
'@babel/helper-compilation-targets': 7.28.6
|
|
2129
|
+
'@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
|
|
2130
|
+
'@babel/helpers': 7.29.2
|
|
2131
|
+
'@babel/parser': 7.29.3
|
|
2132
|
+
'@babel/template': 7.28.6
|
|
2133
|
+
'@babel/traverse': 7.29.0
|
|
2134
|
+
'@babel/types': 7.29.0
|
|
2135
|
+
'@jridgewell/remapping': 2.3.5
|
|
2136
|
+
convert-source-map: 2.0.0
|
|
2137
|
+
debug: 4.4.3
|
|
2138
|
+
gensync: 1.0.0-beta.2
|
|
2139
|
+
json5: 2.2.3
|
|
2140
|
+
semver: 6.3.1
|
|
2141
|
+
transitivePeerDependencies:
|
|
2142
|
+
- supports-color
|
|
2143
|
+
|
|
2144
|
+
'@babel/generator@7.29.1':
|
|
2145
|
+
dependencies:
|
|
2146
|
+
'@babel/parser': 7.29.3
|
|
2147
|
+
'@babel/types': 7.29.0
|
|
2148
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2149
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2150
|
+
jsesc: 3.1.0
|
|
2151
|
+
|
|
2152
|
+
'@babel/helper-annotate-as-pure@7.27.3':
|
|
2153
|
+
dependencies:
|
|
2154
|
+
'@babel/types': 7.29.0
|
|
2155
|
+
|
|
2156
|
+
'@babel/helper-compilation-targets@7.28.6':
|
|
2157
|
+
dependencies:
|
|
2158
|
+
'@babel/compat-data': 7.29.3
|
|
2159
|
+
'@babel/helper-validator-option': 7.27.1
|
|
2160
|
+
browserslist: 4.28.2
|
|
2161
|
+
lru-cache: 5.1.1
|
|
2162
|
+
semver: 6.3.1
|
|
2163
|
+
|
|
2164
|
+
'@babel/helper-create-class-features-plugin@7.29.3(@babel/core@7.29.0)':
|
|
2165
|
+
dependencies:
|
|
2166
|
+
'@babel/core': 7.29.0
|
|
2167
|
+
'@babel/helper-annotate-as-pure': 7.27.3
|
|
2168
|
+
'@babel/helper-member-expression-to-functions': 7.28.5
|
|
2169
|
+
'@babel/helper-optimise-call-expression': 7.27.1
|
|
2170
|
+
'@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
|
|
2171
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
2172
|
+
'@babel/traverse': 7.29.0
|
|
2173
|
+
semver: 6.3.1
|
|
2174
|
+
transitivePeerDependencies:
|
|
2175
|
+
- supports-color
|
|
2176
|
+
|
|
2177
|
+
'@babel/helper-globals@7.28.0': {}
|
|
2178
|
+
|
|
2179
|
+
'@babel/helper-member-expression-to-functions@7.28.5':
|
|
2180
|
+
dependencies:
|
|
2181
|
+
'@babel/traverse': 7.29.0
|
|
2182
|
+
'@babel/types': 7.29.0
|
|
2183
|
+
transitivePeerDependencies:
|
|
2184
|
+
- supports-color
|
|
2185
|
+
|
|
2186
|
+
'@babel/helper-module-imports@7.28.6':
|
|
2187
|
+
dependencies:
|
|
2188
|
+
'@babel/traverse': 7.29.0
|
|
2189
|
+
'@babel/types': 7.29.0
|
|
2190
|
+
transitivePeerDependencies:
|
|
2191
|
+
- supports-color
|
|
2192
|
+
|
|
2193
|
+
'@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
|
|
2194
|
+
dependencies:
|
|
2195
|
+
'@babel/core': 7.29.0
|
|
2196
|
+
'@babel/helper-module-imports': 7.28.6
|
|
2197
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
2198
|
+
'@babel/traverse': 7.29.0
|
|
2199
|
+
transitivePeerDependencies:
|
|
2200
|
+
- supports-color
|
|
2201
|
+
|
|
2202
|
+
'@babel/helper-optimise-call-expression@7.27.1':
|
|
2203
|
+
dependencies:
|
|
2204
|
+
'@babel/types': 7.29.0
|
|
2205
|
+
|
|
2206
|
+
'@babel/helper-plugin-utils@7.28.6': {}
|
|
2207
|
+
|
|
2208
|
+
'@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)':
|
|
2209
|
+
dependencies:
|
|
2210
|
+
'@babel/core': 7.29.0
|
|
2211
|
+
'@babel/helper-member-expression-to-functions': 7.28.5
|
|
2212
|
+
'@babel/helper-optimise-call-expression': 7.27.1
|
|
2213
|
+
'@babel/traverse': 7.29.0
|
|
2214
|
+
transitivePeerDependencies:
|
|
2215
|
+
- supports-color
|
|
2216
|
+
|
|
2217
|
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
|
|
2218
|
+
dependencies:
|
|
2219
|
+
'@babel/traverse': 7.29.0
|
|
2220
|
+
'@babel/types': 7.29.0
|
|
2221
|
+
transitivePeerDependencies:
|
|
2222
|
+
- supports-color
|
|
2223
|
+
|
|
2224
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
2225
|
+
|
|
2226
|
+
'@babel/helper-validator-identifier@7.28.5': {}
|
|
2227
|
+
|
|
2228
|
+
'@babel/helper-validator-option@7.27.1': {}
|
|
2229
|
+
|
|
2230
|
+
'@babel/helpers@7.29.2':
|
|
2231
|
+
dependencies:
|
|
2232
|
+
'@babel/template': 7.28.6
|
|
2233
|
+
'@babel/types': 7.29.0
|
|
2234
|
+
|
|
2235
|
+
'@babel/parser@7.29.3':
|
|
2236
|
+
dependencies:
|
|
2237
|
+
'@babel/types': 7.29.0
|
|
2238
|
+
|
|
2239
|
+
'@babel/plugin-proposal-decorators@7.29.0(@babel/core@7.29.0)':
|
|
2240
|
+
dependencies:
|
|
2241
|
+
'@babel/core': 7.29.0
|
|
2242
|
+
'@babel/helper-create-class-features-plugin': 7.29.3(@babel/core@7.29.0)
|
|
2243
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2244
|
+
'@babel/plugin-syntax-decorators': 7.28.6(@babel/core@7.29.0)
|
|
2245
|
+
transitivePeerDependencies:
|
|
2246
|
+
- supports-color
|
|
2247
|
+
|
|
2248
|
+
'@babel/plugin-syntax-decorators@7.28.6(@babel/core@7.29.0)':
|
|
2249
|
+
dependencies:
|
|
2250
|
+
'@babel/core': 7.29.0
|
|
2251
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2252
|
+
|
|
2253
|
+
'@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)':
|
|
2254
|
+
dependencies:
|
|
2255
|
+
'@babel/core': 7.29.0
|
|
2256
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2257
|
+
|
|
2258
|
+
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)':
|
|
2259
|
+
dependencies:
|
|
2260
|
+
'@babel/core': 7.29.0
|
|
2261
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2262
|
+
|
|
2263
|
+
'@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
|
|
2264
|
+
dependencies:
|
|
2265
|
+
'@babel/core': 7.29.0
|
|
2266
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2267
|
+
|
|
2268
|
+
'@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
|
|
2269
|
+
dependencies:
|
|
2270
|
+
'@babel/core': 7.29.0
|
|
2271
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2272
|
+
|
|
2273
|
+
'@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)':
|
|
2274
|
+
dependencies:
|
|
2275
|
+
'@babel/core': 7.29.0
|
|
2276
|
+
'@babel/helper-annotate-as-pure': 7.27.3
|
|
2277
|
+
'@babel/helper-create-class-features-plugin': 7.29.3(@babel/core@7.29.0)
|
|
2278
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2279
|
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
2280
|
+
'@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
|
|
2281
|
+
transitivePeerDependencies:
|
|
2282
|
+
- supports-color
|
|
2283
|
+
|
|
2284
|
+
'@babel/template@7.28.6':
|
|
2285
|
+
dependencies:
|
|
2286
|
+
'@babel/code-frame': 7.29.0
|
|
2287
|
+
'@babel/parser': 7.29.3
|
|
2288
|
+
'@babel/types': 7.29.0
|
|
2289
|
+
|
|
2290
|
+
'@babel/traverse@7.29.0':
|
|
2291
|
+
dependencies:
|
|
2292
|
+
'@babel/code-frame': 7.29.0
|
|
2293
|
+
'@babel/generator': 7.29.1
|
|
2294
|
+
'@babel/helper-globals': 7.28.0
|
|
2295
|
+
'@babel/parser': 7.29.3
|
|
2296
|
+
'@babel/template': 7.28.6
|
|
2297
|
+
'@babel/types': 7.29.0
|
|
2298
|
+
debug: 4.4.3
|
|
2299
|
+
transitivePeerDependencies:
|
|
2300
|
+
- supports-color
|
|
2301
|
+
|
|
2302
|
+
'@babel/types@7.29.0':
|
|
2303
|
+
dependencies:
|
|
2304
|
+
'@babel/helper-string-parser': 7.27.1
|
|
2305
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
2306
|
+
|
|
2307
|
+
'@emnapi/core@1.10.0':
|
|
2308
|
+
dependencies:
|
|
2309
|
+
'@emnapi/wasi-threads': 1.2.1
|
|
2310
|
+
tslib: 2.8.1
|
|
2311
|
+
optional: true
|
|
2312
|
+
|
|
2313
|
+
'@emnapi/runtime@1.10.0':
|
|
2314
|
+
dependencies:
|
|
2315
|
+
tslib: 2.8.1
|
|
2316
|
+
optional: true
|
|
2317
|
+
|
|
2318
|
+
'@emnapi/wasi-threads@1.2.1':
|
|
2319
|
+
dependencies:
|
|
2320
|
+
tslib: 2.8.1
|
|
2321
|
+
optional: true
|
|
2322
|
+
|
|
2323
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.4.0(jiti@2.7.0))':
|
|
2324
|
+
dependencies:
|
|
2325
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2326
|
+
eslint-visitor-keys: 3.4.3
|
|
2327
|
+
|
|
2328
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
2329
|
+
|
|
2330
|
+
'@eslint/config-array@0.23.5':
|
|
2331
|
+
dependencies:
|
|
2332
|
+
'@eslint/object-schema': 3.0.5
|
|
2333
|
+
debug: 4.4.3
|
|
2334
|
+
minimatch: 10.2.5
|
|
2335
|
+
transitivePeerDependencies:
|
|
2336
|
+
- supports-color
|
|
2337
|
+
|
|
2338
|
+
'@eslint/config-helpers@0.6.0':
|
|
2339
|
+
dependencies:
|
|
2340
|
+
'@eslint/core': 1.2.1
|
|
2341
|
+
|
|
2342
|
+
'@eslint/core@1.2.1':
|
|
2343
|
+
dependencies:
|
|
2344
|
+
'@types/json-schema': 7.0.15
|
|
2345
|
+
|
|
2346
|
+
'@eslint/object-schema@3.0.5': {}
|
|
2347
|
+
|
|
2348
|
+
'@eslint/plugin-kit@0.7.1':
|
|
2349
|
+
dependencies:
|
|
2350
|
+
'@eslint/core': 1.2.1
|
|
2351
|
+
levn: 0.4.1
|
|
2352
|
+
|
|
2353
|
+
'@humanfs/core@0.19.2':
|
|
2354
|
+
dependencies:
|
|
2355
|
+
'@humanfs/types': 0.15.0
|
|
2356
|
+
|
|
2357
|
+
'@humanfs/node@0.16.8':
|
|
2358
|
+
dependencies:
|
|
2359
|
+
'@humanfs/core': 0.19.2
|
|
2360
|
+
'@humanfs/types': 0.15.0
|
|
2361
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2362
|
+
|
|
2363
|
+
'@humanfs/types@0.15.0': {}
|
|
2364
|
+
|
|
2365
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
2366
|
+
|
|
2367
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
2368
|
+
|
|
2369
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2370
|
+
dependencies:
|
|
2371
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2372
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2373
|
+
|
|
2374
|
+
'@jridgewell/remapping@2.3.5':
|
|
2375
|
+
dependencies:
|
|
2376
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2377
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2378
|
+
|
|
2379
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2380
|
+
|
|
2381
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2382
|
+
|
|
2383
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2384
|
+
dependencies:
|
|
2385
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2386
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2387
|
+
|
|
2388
|
+
'@lucide/vue@1.16.0(vue@3.5.34(typescript@6.0.3))':
|
|
2389
|
+
dependencies:
|
|
2390
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
2391
|
+
|
|
2392
|
+
'@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
|
2393
|
+
dependencies:
|
|
2394
|
+
'@emnapi/core': 1.10.0
|
|
2395
|
+
'@emnapi/runtime': 1.10.0
|
|
2396
|
+
'@tybys/wasm-util': 0.10.2
|
|
2397
|
+
optional: true
|
|
2398
|
+
|
|
2399
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
2400
|
+
dependencies:
|
|
2401
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2402
|
+
run-parallel: 1.2.0
|
|
2403
|
+
|
|
2404
|
+
'@nodelib/fs.stat@2.0.5': {}
|
|
2405
|
+
|
|
2406
|
+
'@nodelib/fs.walk@1.2.8':
|
|
2407
|
+
dependencies:
|
|
2408
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
2409
|
+
fastq: 1.20.1
|
|
2410
|
+
|
|
2411
|
+
'@oxc-project/types@0.132.0': {}
|
|
2412
|
+
|
|
2413
|
+
'@oxfmt/binding-android-arm-eabi@0.51.0':
|
|
2414
|
+
optional: true
|
|
2415
|
+
|
|
2416
|
+
'@oxfmt/binding-android-arm64@0.51.0':
|
|
2417
|
+
optional: true
|
|
2418
|
+
|
|
2419
|
+
'@oxfmt/binding-darwin-arm64@0.51.0':
|
|
2420
|
+
optional: true
|
|
2421
|
+
|
|
2422
|
+
'@oxfmt/binding-darwin-x64@0.51.0':
|
|
2423
|
+
optional: true
|
|
2424
|
+
|
|
2425
|
+
'@oxfmt/binding-freebsd-x64@0.51.0':
|
|
2426
|
+
optional: true
|
|
2427
|
+
|
|
2428
|
+
'@oxfmt/binding-linux-arm-gnueabihf@0.51.0':
|
|
2429
|
+
optional: true
|
|
2430
|
+
|
|
2431
|
+
'@oxfmt/binding-linux-arm-musleabihf@0.51.0':
|
|
2432
|
+
optional: true
|
|
2433
|
+
|
|
2434
|
+
'@oxfmt/binding-linux-arm64-gnu@0.51.0':
|
|
2435
|
+
optional: true
|
|
2436
|
+
|
|
2437
|
+
'@oxfmt/binding-linux-arm64-musl@0.51.0':
|
|
2438
|
+
optional: true
|
|
2439
|
+
|
|
2440
|
+
'@oxfmt/binding-linux-ppc64-gnu@0.51.0':
|
|
2441
|
+
optional: true
|
|
2442
|
+
|
|
2443
|
+
'@oxfmt/binding-linux-riscv64-gnu@0.51.0':
|
|
2444
|
+
optional: true
|
|
2445
|
+
|
|
2446
|
+
'@oxfmt/binding-linux-riscv64-musl@0.51.0':
|
|
2447
|
+
optional: true
|
|
2448
|
+
|
|
2449
|
+
'@oxfmt/binding-linux-s390x-gnu@0.51.0':
|
|
2450
|
+
optional: true
|
|
2451
|
+
|
|
2452
|
+
'@oxfmt/binding-linux-x64-gnu@0.51.0':
|
|
2453
|
+
optional: true
|
|
2454
|
+
|
|
2455
|
+
'@oxfmt/binding-linux-x64-musl@0.51.0':
|
|
2456
|
+
optional: true
|
|
2457
|
+
|
|
2458
|
+
'@oxfmt/binding-openharmony-arm64@0.51.0':
|
|
2459
|
+
optional: true
|
|
2460
|
+
|
|
2461
|
+
'@oxfmt/binding-win32-arm64-msvc@0.51.0':
|
|
2462
|
+
optional: true
|
|
2463
|
+
|
|
2464
|
+
'@oxfmt/binding-win32-ia32-msvc@0.51.0':
|
|
2465
|
+
optional: true
|
|
2466
|
+
|
|
2467
|
+
'@oxfmt/binding-win32-x64-msvc@0.51.0':
|
|
2468
|
+
optional: true
|
|
2469
|
+
|
|
2470
|
+
'@oxlint/binding-android-arm-eabi@1.66.0':
|
|
2471
|
+
optional: true
|
|
2472
|
+
|
|
2473
|
+
'@oxlint/binding-android-arm64@1.66.0':
|
|
2474
|
+
optional: true
|
|
2475
|
+
|
|
2476
|
+
'@oxlint/binding-darwin-arm64@1.66.0':
|
|
2477
|
+
optional: true
|
|
2478
|
+
|
|
2479
|
+
'@oxlint/binding-darwin-x64@1.66.0':
|
|
2480
|
+
optional: true
|
|
2481
|
+
|
|
2482
|
+
'@oxlint/binding-freebsd-x64@1.66.0':
|
|
2483
|
+
optional: true
|
|
2484
|
+
|
|
2485
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.66.0':
|
|
2486
|
+
optional: true
|
|
2487
|
+
|
|
2488
|
+
'@oxlint/binding-linux-arm-musleabihf@1.66.0':
|
|
2489
|
+
optional: true
|
|
2490
|
+
|
|
2491
|
+
'@oxlint/binding-linux-arm64-gnu@1.66.0':
|
|
2492
|
+
optional: true
|
|
2493
|
+
|
|
2494
|
+
'@oxlint/binding-linux-arm64-musl@1.66.0':
|
|
2495
|
+
optional: true
|
|
2496
|
+
|
|
2497
|
+
'@oxlint/binding-linux-ppc64-gnu@1.66.0':
|
|
2498
|
+
optional: true
|
|
2499
|
+
|
|
2500
|
+
'@oxlint/binding-linux-riscv64-gnu@1.66.0':
|
|
2501
|
+
optional: true
|
|
2502
|
+
|
|
2503
|
+
'@oxlint/binding-linux-riscv64-musl@1.66.0':
|
|
2504
|
+
optional: true
|
|
2505
|
+
|
|
2506
|
+
'@oxlint/binding-linux-s390x-gnu@1.66.0':
|
|
2507
|
+
optional: true
|
|
2508
|
+
|
|
2509
|
+
'@oxlint/binding-linux-x64-gnu@1.66.0':
|
|
2510
|
+
optional: true
|
|
2511
|
+
|
|
2512
|
+
'@oxlint/binding-linux-x64-musl@1.66.0':
|
|
2513
|
+
optional: true
|
|
2514
|
+
|
|
2515
|
+
'@oxlint/binding-openharmony-arm64@1.66.0':
|
|
2516
|
+
optional: true
|
|
2517
|
+
|
|
2518
|
+
'@oxlint/binding-win32-arm64-msvc@1.66.0':
|
|
2519
|
+
optional: true
|
|
2520
|
+
|
|
2521
|
+
'@oxlint/binding-win32-ia32-msvc@1.66.0':
|
|
2522
|
+
optional: true
|
|
2523
|
+
|
|
2524
|
+
'@oxlint/binding-win32-x64-msvc@1.66.0':
|
|
2525
|
+
optional: true
|
|
2526
|
+
|
|
2527
|
+
'@pkgr/core@0.2.9': {}
|
|
2528
|
+
|
|
2529
|
+
'@polka/url@1.0.0-next.29': {}
|
|
2530
|
+
|
|
2531
|
+
'@rolldown/binding-android-arm64@1.0.2':
|
|
2532
|
+
optional: true
|
|
2533
|
+
|
|
2534
|
+
'@rolldown/binding-darwin-arm64@1.0.2':
|
|
2535
|
+
optional: true
|
|
2536
|
+
|
|
2537
|
+
'@rolldown/binding-darwin-x64@1.0.2':
|
|
2538
|
+
optional: true
|
|
2539
|
+
|
|
2540
|
+
'@rolldown/binding-freebsd-x64@1.0.2':
|
|
2541
|
+
optional: true
|
|
2542
|
+
|
|
2543
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.2':
|
|
2544
|
+
optional: true
|
|
2545
|
+
|
|
2546
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.2':
|
|
2547
|
+
optional: true
|
|
2548
|
+
|
|
2549
|
+
'@rolldown/binding-linux-arm64-musl@1.0.2':
|
|
2550
|
+
optional: true
|
|
2551
|
+
|
|
2552
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.2':
|
|
2553
|
+
optional: true
|
|
2554
|
+
|
|
2555
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.2':
|
|
2556
|
+
optional: true
|
|
2557
|
+
|
|
2558
|
+
'@rolldown/binding-linux-x64-gnu@1.0.2':
|
|
2559
|
+
optional: true
|
|
2560
|
+
|
|
2561
|
+
'@rolldown/binding-linux-x64-musl@1.0.2':
|
|
2562
|
+
optional: true
|
|
2563
|
+
|
|
2564
|
+
'@rolldown/binding-openharmony-arm64@1.0.2':
|
|
2565
|
+
optional: true
|
|
2566
|
+
|
|
2567
|
+
'@rolldown/binding-wasm32-wasi@1.0.2':
|
|
2568
|
+
dependencies:
|
|
2569
|
+
'@emnapi/core': 1.10.0
|
|
2570
|
+
'@emnapi/runtime': 1.10.0
|
|
2571
|
+
'@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
|
|
2572
|
+
optional: true
|
|
2573
|
+
|
|
2574
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.2':
|
|
2575
|
+
optional: true
|
|
2576
|
+
|
|
2577
|
+
'@rolldown/binding-win32-x64-msvc@1.0.2':
|
|
2578
|
+
optional: true
|
|
2579
|
+
|
|
2580
|
+
'@rolldown/pluginutils@1.0.1': {}
|
|
2581
|
+
|
|
2582
|
+
'@tailwindcss/node@4.3.0':
|
|
2583
|
+
dependencies:
|
|
2584
|
+
'@jridgewell/remapping': 2.3.5
|
|
2585
|
+
enhanced-resolve: 5.21.6
|
|
2586
|
+
jiti: 2.7.0
|
|
2587
|
+
lightningcss: 1.32.0
|
|
2588
|
+
magic-string: 0.30.21
|
|
2589
|
+
source-map-js: 1.2.1
|
|
2590
|
+
tailwindcss: 4.3.0
|
|
2591
|
+
|
|
2592
|
+
'@tailwindcss/oxide-android-arm64@4.3.0':
|
|
2593
|
+
optional: true
|
|
2594
|
+
|
|
2595
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.0':
|
|
2596
|
+
optional: true
|
|
2597
|
+
|
|
2598
|
+
'@tailwindcss/oxide-darwin-x64@4.3.0':
|
|
2599
|
+
optional: true
|
|
2600
|
+
|
|
2601
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.0':
|
|
2602
|
+
optional: true
|
|
2603
|
+
|
|
2604
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
|
|
2605
|
+
optional: true
|
|
2606
|
+
|
|
2607
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
|
|
2608
|
+
optional: true
|
|
2609
|
+
|
|
2610
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
2611
|
+
optional: true
|
|
2612
|
+
|
|
2613
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
2614
|
+
optional: true
|
|
2615
|
+
|
|
2616
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
2617
|
+
optional: true
|
|
2618
|
+
|
|
2619
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
2620
|
+
optional: true
|
|
2621
|
+
|
|
2622
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
|
|
2623
|
+
optional: true
|
|
2624
|
+
|
|
2625
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.0':
|
|
2626
|
+
optional: true
|
|
2627
|
+
|
|
2628
|
+
'@tailwindcss/oxide@4.3.0':
|
|
2629
|
+
optionalDependencies:
|
|
2630
|
+
'@tailwindcss/oxide-android-arm64': 4.3.0
|
|
2631
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.0
|
|
2632
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.0
|
|
2633
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.0
|
|
2634
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0
|
|
2635
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.0
|
|
2636
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.0
|
|
2637
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.0
|
|
2638
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.0
|
|
2639
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.0
|
|
2640
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.0
|
|
2641
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.0
|
|
2642
|
+
|
|
2643
|
+
'@tailwindcss/vite@4.3.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))':
|
|
2644
|
+
dependencies:
|
|
2645
|
+
'@tailwindcss/node': 4.3.0
|
|
2646
|
+
'@tailwindcss/oxide': 4.3.0
|
|
2647
|
+
tailwindcss: 4.3.0
|
|
2648
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
2649
|
+
|
|
2650
|
+
'@tauri-apps/api@2.11.0': {}
|
|
2651
|
+
|
|
2652
|
+
'@tauri-apps/cli-darwin-arm64@2.11.2':
|
|
2653
|
+
optional: true
|
|
2654
|
+
|
|
2655
|
+
'@tauri-apps/cli-darwin-x64@2.11.2':
|
|
2656
|
+
optional: true
|
|
2657
|
+
|
|
2658
|
+
'@tauri-apps/cli-linux-arm-gnueabihf@2.11.2':
|
|
2659
|
+
optional: true
|
|
2660
|
+
|
|
2661
|
+
'@tauri-apps/cli-linux-arm64-gnu@2.11.2':
|
|
2662
|
+
optional: true
|
|
2663
|
+
|
|
2664
|
+
'@tauri-apps/cli-linux-arm64-musl@2.11.2':
|
|
2665
|
+
optional: true
|
|
2666
|
+
|
|
2667
|
+
'@tauri-apps/cli-linux-riscv64-gnu@2.11.2':
|
|
2668
|
+
optional: true
|
|
2669
|
+
|
|
2670
|
+
'@tauri-apps/cli-linux-x64-gnu@2.11.2':
|
|
2671
|
+
optional: true
|
|
2672
|
+
|
|
2673
|
+
'@tauri-apps/cli-linux-x64-musl@2.11.2':
|
|
2674
|
+
optional: true
|
|
2675
|
+
|
|
2676
|
+
'@tauri-apps/cli-win32-arm64-msvc@2.11.2':
|
|
2677
|
+
optional: true
|
|
2678
|
+
|
|
2679
|
+
'@tauri-apps/cli-win32-ia32-msvc@2.11.2':
|
|
2680
|
+
optional: true
|
|
2681
|
+
|
|
2682
|
+
'@tauri-apps/cli-win32-x64-msvc@2.11.2':
|
|
2683
|
+
optional: true
|
|
2684
|
+
|
|
2685
|
+
'@tauri-apps/cli@2.11.2':
|
|
2686
|
+
optionalDependencies:
|
|
2687
|
+
'@tauri-apps/cli-darwin-arm64': 2.11.2
|
|
2688
|
+
'@tauri-apps/cli-darwin-x64': 2.11.2
|
|
2689
|
+
'@tauri-apps/cli-linux-arm-gnueabihf': 2.11.2
|
|
2690
|
+
'@tauri-apps/cli-linux-arm64-gnu': 2.11.2
|
|
2691
|
+
'@tauri-apps/cli-linux-arm64-musl': 2.11.2
|
|
2692
|
+
'@tauri-apps/cli-linux-riscv64-gnu': 2.11.2
|
|
2693
|
+
'@tauri-apps/cli-linux-x64-gnu': 2.11.2
|
|
2694
|
+
'@tauri-apps/cli-linux-x64-musl': 2.11.2
|
|
2695
|
+
'@tauri-apps/cli-win32-arm64-msvc': 2.11.2
|
|
2696
|
+
'@tauri-apps/cli-win32-ia32-msvc': 2.11.2
|
|
2697
|
+
'@tauri-apps/cli-win32-x64-msvc': 2.11.2
|
|
2698
|
+
|
|
2699
|
+
'@tsconfig/node24@24.0.4': {}
|
|
2700
|
+
|
|
2701
|
+
'@tybys/wasm-util@0.10.2':
|
|
2702
|
+
dependencies:
|
|
2703
|
+
tslib: 2.8.1
|
|
2704
|
+
optional: true
|
|
2705
|
+
|
|
2706
|
+
'@types/esrecurse@4.3.1': {}
|
|
2707
|
+
|
|
2708
|
+
'@types/estree@1.0.9': {}
|
|
2709
|
+
|
|
2710
|
+
'@types/json-schema@7.0.15': {}
|
|
2711
|
+
|
|
2712
|
+
'@types/node@25.9.1':
|
|
2713
|
+
dependencies:
|
|
2714
|
+
undici-types: 7.24.6
|
|
2715
|
+
|
|
2716
|
+
'@typescript-eslint/eslint-plugin@8.59.4(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)':
|
|
2717
|
+
dependencies:
|
|
2718
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2719
|
+
'@typescript-eslint/parser': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2720
|
+
'@typescript-eslint/scope-manager': 8.59.4
|
|
2721
|
+
'@typescript-eslint/type-utils': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2722
|
+
'@typescript-eslint/utils': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2723
|
+
'@typescript-eslint/visitor-keys': 8.59.4
|
|
2724
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2725
|
+
ignore: 7.0.5
|
|
2726
|
+
natural-compare: 1.4.0
|
|
2727
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
2728
|
+
typescript: 6.0.3
|
|
2729
|
+
transitivePeerDependencies:
|
|
2730
|
+
- supports-color
|
|
2731
|
+
|
|
2732
|
+
'@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)':
|
|
2733
|
+
dependencies:
|
|
2734
|
+
'@typescript-eslint/scope-manager': 8.59.4
|
|
2735
|
+
'@typescript-eslint/types': 8.59.4
|
|
2736
|
+
'@typescript-eslint/typescript-estree': 8.59.4(typescript@6.0.3)
|
|
2737
|
+
'@typescript-eslint/visitor-keys': 8.59.4
|
|
2738
|
+
debug: 4.4.3
|
|
2739
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2740
|
+
typescript: 6.0.3
|
|
2741
|
+
transitivePeerDependencies:
|
|
2742
|
+
- supports-color
|
|
2743
|
+
|
|
2744
|
+
'@typescript-eslint/project-service@8.59.4(typescript@6.0.3)':
|
|
2745
|
+
dependencies:
|
|
2746
|
+
'@typescript-eslint/tsconfig-utils': 8.59.4(typescript@6.0.3)
|
|
2747
|
+
'@typescript-eslint/types': 8.59.4
|
|
2748
|
+
debug: 4.4.3
|
|
2749
|
+
typescript: 6.0.3
|
|
2750
|
+
transitivePeerDependencies:
|
|
2751
|
+
- supports-color
|
|
2752
|
+
|
|
2753
|
+
'@typescript-eslint/scope-manager@8.59.4':
|
|
2754
|
+
dependencies:
|
|
2755
|
+
'@typescript-eslint/types': 8.59.4
|
|
2756
|
+
'@typescript-eslint/visitor-keys': 8.59.4
|
|
2757
|
+
|
|
2758
|
+
'@typescript-eslint/tsconfig-utils@8.59.4(typescript@6.0.3)':
|
|
2759
|
+
dependencies:
|
|
2760
|
+
typescript: 6.0.3
|
|
2761
|
+
|
|
2762
|
+
'@typescript-eslint/type-utils@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)':
|
|
2763
|
+
dependencies:
|
|
2764
|
+
'@typescript-eslint/types': 8.59.4
|
|
2765
|
+
'@typescript-eslint/typescript-estree': 8.59.4(typescript@6.0.3)
|
|
2766
|
+
'@typescript-eslint/utils': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2767
|
+
debug: 4.4.3
|
|
2768
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2769
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
2770
|
+
typescript: 6.0.3
|
|
2771
|
+
transitivePeerDependencies:
|
|
2772
|
+
- supports-color
|
|
2773
|
+
|
|
2774
|
+
'@typescript-eslint/types@8.59.4': {}
|
|
2775
|
+
|
|
2776
|
+
'@typescript-eslint/typescript-estree@8.59.4(typescript@6.0.3)':
|
|
2777
|
+
dependencies:
|
|
2778
|
+
'@typescript-eslint/project-service': 8.59.4(typescript@6.0.3)
|
|
2779
|
+
'@typescript-eslint/tsconfig-utils': 8.59.4(typescript@6.0.3)
|
|
2780
|
+
'@typescript-eslint/types': 8.59.4
|
|
2781
|
+
'@typescript-eslint/visitor-keys': 8.59.4
|
|
2782
|
+
debug: 4.4.3
|
|
2783
|
+
minimatch: 10.2.5
|
|
2784
|
+
semver: 7.8.0
|
|
2785
|
+
tinyglobby: 0.2.16
|
|
2786
|
+
ts-api-utils: 2.5.0(typescript@6.0.3)
|
|
2787
|
+
typescript: 6.0.3
|
|
2788
|
+
transitivePeerDependencies:
|
|
2789
|
+
- supports-color
|
|
2790
|
+
|
|
2791
|
+
'@typescript-eslint/utils@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)':
|
|
2792
|
+
dependencies:
|
|
2793
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.7.0))
|
|
2794
|
+
'@typescript-eslint/scope-manager': 8.59.4
|
|
2795
|
+
'@typescript-eslint/types': 8.59.4
|
|
2796
|
+
'@typescript-eslint/typescript-estree': 8.59.4(typescript@6.0.3)
|
|
2797
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2798
|
+
typescript: 6.0.3
|
|
2799
|
+
transitivePeerDependencies:
|
|
2800
|
+
- supports-color
|
|
2801
|
+
|
|
2802
|
+
'@typescript-eslint/visitor-keys@8.59.4':
|
|
2803
|
+
dependencies:
|
|
2804
|
+
'@typescript-eslint/types': 8.59.4
|
|
2805
|
+
eslint-visitor-keys: 5.0.1
|
|
2806
|
+
|
|
2807
|
+
'@vitejs/plugin-vue@6.0.7(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))':
|
|
2808
|
+
dependencies:
|
|
2809
|
+
'@rolldown/pluginutils': 1.0.1
|
|
2810
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
2811
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
2812
|
+
|
|
2813
|
+
'@volar/language-core@2.4.28':
|
|
2814
|
+
dependencies:
|
|
2815
|
+
'@volar/source-map': 2.4.28
|
|
2816
|
+
|
|
2817
|
+
'@volar/source-map@2.4.28': {}
|
|
2818
|
+
|
|
2819
|
+
'@volar/typescript@2.4.28':
|
|
2820
|
+
dependencies:
|
|
2821
|
+
'@volar/language-core': 2.4.28
|
|
2822
|
+
path-browserify: 1.0.1
|
|
2823
|
+
vscode-uri: 3.1.0
|
|
2824
|
+
|
|
2825
|
+
'@vue/babel-helper-vue-transform-on@1.5.0': {}
|
|
2826
|
+
|
|
2827
|
+
'@vue/babel-plugin-jsx@1.5.0(@babel/core@7.29.0)':
|
|
2828
|
+
dependencies:
|
|
2829
|
+
'@babel/helper-module-imports': 7.28.6
|
|
2830
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2831
|
+
'@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
|
|
2832
|
+
'@babel/template': 7.28.6
|
|
2833
|
+
'@babel/traverse': 7.29.0
|
|
2834
|
+
'@babel/types': 7.29.0
|
|
2835
|
+
'@vue/babel-helper-vue-transform-on': 1.5.0
|
|
2836
|
+
'@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.29.0)
|
|
2837
|
+
'@vue/shared': 3.5.34
|
|
2838
|
+
optionalDependencies:
|
|
2839
|
+
'@babel/core': 7.29.0
|
|
2840
|
+
transitivePeerDependencies:
|
|
2841
|
+
- supports-color
|
|
2842
|
+
|
|
2843
|
+
'@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.29.0)':
|
|
2844
|
+
dependencies:
|
|
2845
|
+
'@babel/code-frame': 7.29.0
|
|
2846
|
+
'@babel/core': 7.29.0
|
|
2847
|
+
'@babel/helper-module-imports': 7.28.6
|
|
2848
|
+
'@babel/helper-plugin-utils': 7.28.6
|
|
2849
|
+
'@babel/parser': 7.29.3
|
|
2850
|
+
'@vue/compiler-sfc': 3.5.34
|
|
2851
|
+
transitivePeerDependencies:
|
|
2852
|
+
- supports-color
|
|
2853
|
+
|
|
2854
|
+
'@vue/compiler-core@3.5.34':
|
|
2855
|
+
dependencies:
|
|
2856
|
+
'@babel/parser': 7.29.3
|
|
2857
|
+
'@vue/shared': 3.5.34
|
|
2858
|
+
entities: 7.0.1
|
|
2859
|
+
estree-walker: 2.0.2
|
|
2860
|
+
source-map-js: 1.2.1
|
|
2861
|
+
|
|
2862
|
+
'@vue/compiler-dom@3.5.34':
|
|
2863
|
+
dependencies:
|
|
2864
|
+
'@vue/compiler-core': 3.5.34
|
|
2865
|
+
'@vue/shared': 3.5.34
|
|
2866
|
+
|
|
2867
|
+
'@vue/compiler-sfc@3.5.34':
|
|
2868
|
+
dependencies:
|
|
2869
|
+
'@babel/parser': 7.29.3
|
|
2870
|
+
'@vue/compiler-core': 3.5.34
|
|
2871
|
+
'@vue/compiler-dom': 3.5.34
|
|
2872
|
+
'@vue/compiler-ssr': 3.5.34
|
|
2873
|
+
'@vue/shared': 3.5.34
|
|
2874
|
+
estree-walker: 2.0.2
|
|
2875
|
+
magic-string: 0.30.21
|
|
2876
|
+
postcss: 8.5.15
|
|
2877
|
+
source-map-js: 1.2.1
|
|
2878
|
+
|
|
2879
|
+
'@vue/compiler-ssr@3.5.34':
|
|
2880
|
+
dependencies:
|
|
2881
|
+
'@vue/compiler-dom': 3.5.34
|
|
2882
|
+
'@vue/shared': 3.5.34
|
|
2883
|
+
|
|
2884
|
+
'@vue/devtools-core@8.1.2(vue@3.5.34(typescript@6.0.3))':
|
|
2885
|
+
dependencies:
|
|
2886
|
+
'@vue/devtools-kit': 8.1.2
|
|
2887
|
+
'@vue/devtools-shared': 8.1.2
|
|
2888
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
2889
|
+
|
|
2890
|
+
'@vue/devtools-kit@8.1.2':
|
|
2891
|
+
dependencies:
|
|
2892
|
+
'@vue/devtools-shared': 8.1.2
|
|
2893
|
+
birpc: 2.9.0
|
|
2894
|
+
hookable: 5.5.3
|
|
2895
|
+
perfect-debounce: 2.1.0
|
|
2896
|
+
|
|
2897
|
+
'@vue/devtools-shared@8.1.2': {}
|
|
2898
|
+
|
|
2899
|
+
'@vue/eslint-config-prettier@10.2.0(eslint@10.4.0(jiti@2.7.0))(prettier@3.8.3)':
|
|
2900
|
+
dependencies:
|
|
2901
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2902
|
+
eslint-config-prettier: 10.1.8(eslint@10.4.0(jiti@2.7.0))
|
|
2903
|
+
eslint-plugin-prettier: 5.5.5(eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.7.0)))(eslint@10.4.0(jiti@2.7.0))(prettier@3.8.3)
|
|
2904
|
+
prettier: 3.8.3
|
|
2905
|
+
transitivePeerDependencies:
|
|
2906
|
+
- '@types/eslint'
|
|
2907
|
+
|
|
2908
|
+
'@vue/eslint-config-typescript@14.7.0(eslint-plugin-vue@10.9.1(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0))))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)':
|
|
2909
|
+
dependencies:
|
|
2910
|
+
'@typescript-eslint/utils': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2911
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
2912
|
+
eslint-plugin-vue: 10.9.1(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0)))
|
|
2913
|
+
fast-glob: 3.3.3
|
|
2914
|
+
typescript-eslint: 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
2915
|
+
vue-eslint-parser: 10.4.0(eslint@10.4.0(jiti@2.7.0))
|
|
2916
|
+
optionalDependencies:
|
|
2917
|
+
typescript: 6.0.3
|
|
2918
|
+
transitivePeerDependencies:
|
|
2919
|
+
- supports-color
|
|
2920
|
+
|
|
2921
|
+
'@vue/language-core@3.3.1':
|
|
2922
|
+
dependencies:
|
|
2923
|
+
'@volar/language-core': 2.4.28
|
|
2924
|
+
'@vue/compiler-dom': 3.5.34
|
|
2925
|
+
'@vue/shared': 3.5.34
|
|
2926
|
+
alien-signals: 3.2.1
|
|
2927
|
+
muggle-string: 0.4.1
|
|
2928
|
+
path-browserify: 1.0.1
|
|
2929
|
+
picomatch: 4.0.4
|
|
2930
|
+
|
|
2931
|
+
'@vue/reactivity@3.5.34':
|
|
2932
|
+
dependencies:
|
|
2933
|
+
'@vue/shared': 3.5.34
|
|
2934
|
+
|
|
2935
|
+
'@vue/runtime-core@3.5.34':
|
|
2936
|
+
dependencies:
|
|
2937
|
+
'@vue/reactivity': 3.5.34
|
|
2938
|
+
'@vue/shared': 3.5.34
|
|
2939
|
+
|
|
2940
|
+
'@vue/runtime-dom@3.5.34':
|
|
2941
|
+
dependencies:
|
|
2942
|
+
'@vue/reactivity': 3.5.34
|
|
2943
|
+
'@vue/runtime-core': 3.5.34
|
|
2944
|
+
'@vue/shared': 3.5.34
|
|
2945
|
+
csstype: 3.2.3
|
|
2946
|
+
|
|
2947
|
+
'@vue/server-renderer@3.5.34(vue@3.5.34(typescript@6.0.3))':
|
|
2948
|
+
dependencies:
|
|
2949
|
+
'@vue/compiler-ssr': 3.5.34
|
|
2950
|
+
'@vue/shared': 3.5.34
|
|
2951
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
2952
|
+
|
|
2953
|
+
'@vue/shared@3.5.34': {}
|
|
2954
|
+
|
|
2955
|
+
'@vue/tsconfig@0.9.1(typescript@6.0.3)(vue@3.5.34(typescript@6.0.3))':
|
|
2956
|
+
optionalDependencies:
|
|
2957
|
+
typescript: 6.0.3
|
|
2958
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
2959
|
+
|
|
2960
|
+
acorn-jsx@5.3.2(acorn@8.16.0):
|
|
2961
|
+
dependencies:
|
|
2962
|
+
acorn: 8.16.0
|
|
2963
|
+
|
|
2964
|
+
acorn@8.16.0: {}
|
|
2965
|
+
|
|
2966
|
+
ajv@6.15.0:
|
|
2967
|
+
dependencies:
|
|
2968
|
+
fast-deep-equal: 3.1.3
|
|
2969
|
+
fast-json-stable-stringify: 2.1.0
|
|
2970
|
+
json-schema-traverse: 0.4.1
|
|
2971
|
+
uri-js: 4.4.1
|
|
2972
|
+
|
|
2973
|
+
alien-signals@3.2.1: {}
|
|
2974
|
+
|
|
2975
|
+
ansi-escapes@7.3.0:
|
|
2976
|
+
dependencies:
|
|
2977
|
+
environment: 1.1.0
|
|
2978
|
+
|
|
2979
|
+
ansi-regex@6.2.2: {}
|
|
2980
|
+
|
|
2981
|
+
ansi-styles@6.2.3: {}
|
|
2982
|
+
|
|
2983
|
+
ansis@4.3.0: {}
|
|
2984
|
+
|
|
2985
|
+
balanced-match@4.0.4: {}
|
|
2986
|
+
|
|
2987
|
+
baseline-browser-mapping@2.10.31: {}
|
|
2988
|
+
|
|
2989
|
+
birpc@2.9.0: {}
|
|
2990
|
+
|
|
2991
|
+
boolbase@1.0.0: {}
|
|
2992
|
+
|
|
2993
|
+
brace-expansion@5.0.6:
|
|
2994
|
+
dependencies:
|
|
2995
|
+
balanced-match: 4.0.4
|
|
2996
|
+
|
|
2997
|
+
braces@3.0.3:
|
|
2998
|
+
dependencies:
|
|
2999
|
+
fill-range: 7.1.1
|
|
3000
|
+
|
|
3001
|
+
browserslist@4.28.2:
|
|
3002
|
+
dependencies:
|
|
3003
|
+
baseline-browser-mapping: 2.10.31
|
|
3004
|
+
caniuse-lite: 1.0.30001793
|
|
3005
|
+
electron-to-chromium: 1.5.360
|
|
3006
|
+
node-releases: 2.0.45
|
|
3007
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
3008
|
+
|
|
3009
|
+
bundle-name@4.1.0:
|
|
3010
|
+
dependencies:
|
|
3011
|
+
run-applescript: 7.1.0
|
|
3012
|
+
|
|
3013
|
+
caniuse-lite@1.0.30001793: {}
|
|
3014
|
+
|
|
3015
|
+
chokidar@5.0.0:
|
|
3016
|
+
dependencies:
|
|
3017
|
+
readdirp: 5.0.0
|
|
3018
|
+
|
|
3019
|
+
class-variance-authority@0.7.1:
|
|
3020
|
+
dependencies:
|
|
3021
|
+
clsx: 2.1.1
|
|
3022
|
+
|
|
3023
|
+
cli-cursor@5.0.0:
|
|
3024
|
+
dependencies:
|
|
3025
|
+
restore-cursor: 5.1.0
|
|
3026
|
+
|
|
3027
|
+
cli-truncate@5.2.0:
|
|
3028
|
+
dependencies:
|
|
3029
|
+
slice-ansi: 8.0.0
|
|
3030
|
+
string-width: 8.2.1
|
|
3031
|
+
|
|
3032
|
+
clsx@2.1.1: {}
|
|
3033
|
+
|
|
3034
|
+
confbox@0.1.8: {}
|
|
3035
|
+
|
|
3036
|
+
confbox@0.2.4: {}
|
|
3037
|
+
|
|
3038
|
+
convert-source-map@2.0.0: {}
|
|
3039
|
+
|
|
3040
|
+
cross-spawn@7.0.6:
|
|
3041
|
+
dependencies:
|
|
3042
|
+
path-key: 3.1.1
|
|
3043
|
+
shebang-command: 2.0.0
|
|
3044
|
+
which: 2.0.2
|
|
3045
|
+
|
|
3046
|
+
cssesc@3.0.0: {}
|
|
3047
|
+
|
|
3048
|
+
csstype@3.2.3: {}
|
|
3049
|
+
|
|
3050
|
+
debug@4.4.3:
|
|
3051
|
+
dependencies:
|
|
3052
|
+
ms: 2.1.3
|
|
3053
|
+
|
|
3054
|
+
deep-is@0.1.4: {}
|
|
3055
|
+
|
|
3056
|
+
default-browser-id@5.0.1: {}
|
|
3057
|
+
|
|
3058
|
+
default-browser@5.5.0:
|
|
3059
|
+
dependencies:
|
|
3060
|
+
bundle-name: 4.1.0
|
|
3061
|
+
default-browser-id: 5.0.1
|
|
3062
|
+
|
|
3063
|
+
define-lazy-prop@3.0.0: {}
|
|
3064
|
+
|
|
3065
|
+
detect-libc@2.1.2: {}
|
|
3066
|
+
|
|
3067
|
+
electron-to-chromium@1.5.360: {}
|
|
3068
|
+
|
|
3069
|
+
emoji-regex@10.6.0: {}
|
|
3070
|
+
|
|
3071
|
+
enhanced-resolve@5.21.6:
|
|
3072
|
+
dependencies:
|
|
3073
|
+
graceful-fs: 4.2.11
|
|
3074
|
+
tapable: 2.3.3
|
|
3075
|
+
|
|
3076
|
+
entities@7.0.1: {}
|
|
3077
|
+
|
|
3078
|
+
environment@1.1.0: {}
|
|
3079
|
+
|
|
3080
|
+
error-stack-parser-es@1.0.5: {}
|
|
3081
|
+
|
|
3082
|
+
escalade@3.2.0: {}
|
|
3083
|
+
|
|
3084
|
+
escape-string-regexp@4.0.0: {}
|
|
3085
|
+
|
|
3086
|
+
escape-string-regexp@5.0.0: {}
|
|
3087
|
+
|
|
3088
|
+
eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.7.0)):
|
|
3089
|
+
dependencies:
|
|
3090
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
3091
|
+
|
|
3092
|
+
eslint-plugin-oxlint@1.66.0(oxlint@1.66.0):
|
|
3093
|
+
dependencies:
|
|
3094
|
+
jsonc-parser: 3.3.1
|
|
3095
|
+
oxlint: 1.66.0
|
|
3096
|
+
|
|
3097
|
+
eslint-plugin-prettier@5.5.5(eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.7.0)))(eslint@10.4.0(jiti@2.7.0))(prettier@3.8.3):
|
|
3098
|
+
dependencies:
|
|
3099
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
3100
|
+
prettier: 3.8.3
|
|
3101
|
+
prettier-linter-helpers: 1.0.1
|
|
3102
|
+
synckit: 0.11.12
|
|
3103
|
+
optionalDependencies:
|
|
3104
|
+
eslint-config-prettier: 10.1.8(eslint@10.4.0(jiti@2.7.0))
|
|
3105
|
+
|
|
3106
|
+
eslint-plugin-vue@10.9.1(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0))):
|
|
3107
|
+
dependencies:
|
|
3108
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.7.0))
|
|
3109
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
3110
|
+
natural-compare: 1.4.0
|
|
3111
|
+
nth-check: 2.1.1
|
|
3112
|
+
postcss-selector-parser: 7.1.1
|
|
3113
|
+
semver: 7.8.0
|
|
3114
|
+
vue-eslint-parser: 10.4.0(eslint@10.4.0(jiti@2.7.0))
|
|
3115
|
+
xml-name-validator: 4.0.0
|
|
3116
|
+
optionalDependencies:
|
|
3117
|
+
'@typescript-eslint/parser': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
3118
|
+
|
|
3119
|
+
eslint-scope@9.1.2:
|
|
3120
|
+
dependencies:
|
|
3121
|
+
'@types/esrecurse': 4.3.1
|
|
3122
|
+
'@types/estree': 1.0.9
|
|
3123
|
+
esrecurse: 4.3.0
|
|
3124
|
+
estraverse: 5.3.0
|
|
3125
|
+
|
|
3126
|
+
eslint-visitor-keys@3.4.3: {}
|
|
3127
|
+
|
|
3128
|
+
eslint-visitor-keys@5.0.1: {}
|
|
3129
|
+
|
|
3130
|
+
eslint@10.4.0(jiti@2.7.0):
|
|
3131
|
+
dependencies:
|
|
3132
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.7.0))
|
|
3133
|
+
'@eslint-community/regexpp': 4.12.2
|
|
3134
|
+
'@eslint/config-array': 0.23.5
|
|
3135
|
+
'@eslint/config-helpers': 0.6.0
|
|
3136
|
+
'@eslint/core': 1.2.1
|
|
3137
|
+
'@eslint/plugin-kit': 0.7.1
|
|
3138
|
+
'@humanfs/node': 0.16.8
|
|
3139
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
3140
|
+
'@humanwhocodes/retry': 0.4.3
|
|
3141
|
+
'@types/estree': 1.0.9
|
|
3142
|
+
ajv: 6.15.0
|
|
3143
|
+
cross-spawn: 7.0.6
|
|
3144
|
+
debug: 4.4.3
|
|
3145
|
+
escape-string-regexp: 4.0.0
|
|
3146
|
+
eslint-scope: 9.1.2
|
|
3147
|
+
eslint-visitor-keys: 5.0.1
|
|
3148
|
+
espree: 11.2.0
|
|
3149
|
+
esquery: 1.7.0
|
|
3150
|
+
esutils: 2.0.3
|
|
3151
|
+
fast-deep-equal: 3.1.3
|
|
3152
|
+
file-entry-cache: 8.0.0
|
|
3153
|
+
find-up: 5.0.0
|
|
3154
|
+
glob-parent: 6.0.2
|
|
3155
|
+
ignore: 5.3.2
|
|
3156
|
+
imurmurhash: 0.1.4
|
|
3157
|
+
is-glob: 4.0.3
|
|
3158
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
3159
|
+
minimatch: 10.2.5
|
|
3160
|
+
natural-compare: 1.4.0
|
|
3161
|
+
optionator: 0.9.4
|
|
3162
|
+
optionalDependencies:
|
|
3163
|
+
jiti: 2.7.0
|
|
3164
|
+
transitivePeerDependencies:
|
|
3165
|
+
- supports-color
|
|
3166
|
+
|
|
3167
|
+
espree@11.2.0:
|
|
3168
|
+
dependencies:
|
|
3169
|
+
acorn: 8.16.0
|
|
3170
|
+
acorn-jsx: 5.3.2(acorn@8.16.0)
|
|
3171
|
+
eslint-visitor-keys: 5.0.1
|
|
3172
|
+
|
|
3173
|
+
esquery@1.7.0:
|
|
3174
|
+
dependencies:
|
|
3175
|
+
estraverse: 5.3.0
|
|
3176
|
+
|
|
3177
|
+
esrecurse@4.3.0:
|
|
3178
|
+
dependencies:
|
|
3179
|
+
estraverse: 5.3.0
|
|
3180
|
+
|
|
3181
|
+
estraverse@5.3.0: {}
|
|
3182
|
+
|
|
3183
|
+
estree-walker@2.0.2: {}
|
|
3184
|
+
|
|
3185
|
+
estree-walker@3.0.3:
|
|
3186
|
+
dependencies:
|
|
3187
|
+
'@types/estree': 1.0.9
|
|
3188
|
+
|
|
3189
|
+
esutils@2.0.3: {}
|
|
3190
|
+
|
|
3191
|
+
eventemitter3@5.0.4: {}
|
|
3192
|
+
|
|
3193
|
+
exsolve@1.0.8: {}
|
|
3194
|
+
|
|
3195
|
+
fast-deep-equal@3.1.3: {}
|
|
3196
|
+
|
|
3197
|
+
fast-diff@1.3.0: {}
|
|
3198
|
+
|
|
3199
|
+
fast-glob@3.3.3:
|
|
3200
|
+
dependencies:
|
|
3201
|
+
'@nodelib/fs.stat': 2.0.5
|
|
3202
|
+
'@nodelib/fs.walk': 1.2.8
|
|
3203
|
+
glob-parent: 5.1.2
|
|
3204
|
+
merge2: 1.4.1
|
|
3205
|
+
micromatch: 4.0.8
|
|
3206
|
+
|
|
3207
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
3208
|
+
|
|
3209
|
+
fast-levenshtein@2.0.6: {}
|
|
3210
|
+
|
|
3211
|
+
fastq@1.20.1:
|
|
3212
|
+
dependencies:
|
|
3213
|
+
reusify: 1.1.0
|
|
3214
|
+
|
|
3215
|
+
fdir@6.5.0(picomatch@4.0.4):
|
|
3216
|
+
optionalDependencies:
|
|
3217
|
+
picomatch: 4.0.4
|
|
3218
|
+
|
|
3219
|
+
file-entry-cache@8.0.0:
|
|
3220
|
+
dependencies:
|
|
3221
|
+
flat-cache: 4.0.1
|
|
3222
|
+
|
|
3223
|
+
fill-range@7.1.1:
|
|
3224
|
+
dependencies:
|
|
3225
|
+
to-regex-range: 5.0.1
|
|
3226
|
+
|
|
3227
|
+
find-up@5.0.0:
|
|
3228
|
+
dependencies:
|
|
3229
|
+
locate-path: 6.0.0
|
|
3230
|
+
path-exists: 4.0.0
|
|
3231
|
+
|
|
3232
|
+
flat-cache@4.0.1:
|
|
3233
|
+
dependencies:
|
|
3234
|
+
flatted: 3.4.2
|
|
3235
|
+
keyv: 4.5.4
|
|
3236
|
+
|
|
3237
|
+
flatted@3.4.2: {}
|
|
3238
|
+
|
|
3239
|
+
fsevents@2.3.3:
|
|
3240
|
+
optional: true
|
|
3241
|
+
|
|
3242
|
+
gensync@1.0.0-beta.2: {}
|
|
3243
|
+
|
|
3244
|
+
get-east-asian-width@1.6.0: {}
|
|
3245
|
+
|
|
3246
|
+
glob-parent@5.1.2:
|
|
3247
|
+
dependencies:
|
|
3248
|
+
is-glob: 4.0.3
|
|
3249
|
+
|
|
3250
|
+
glob-parent@6.0.2:
|
|
3251
|
+
dependencies:
|
|
3252
|
+
is-glob: 4.0.3
|
|
3253
|
+
|
|
3254
|
+
graceful-fs@4.2.11: {}
|
|
3255
|
+
|
|
3256
|
+
hookable@5.5.3: {}
|
|
3257
|
+
|
|
3258
|
+
husky@9.1.7: {}
|
|
3259
|
+
|
|
3260
|
+
ignore@5.3.2: {}
|
|
3261
|
+
|
|
3262
|
+
ignore@7.0.5: {}
|
|
3263
|
+
|
|
3264
|
+
imurmurhash@0.1.4: {}
|
|
3265
|
+
|
|
3266
|
+
is-docker@3.0.0: {}
|
|
3267
|
+
|
|
3268
|
+
is-extglob@2.1.1: {}
|
|
3269
|
+
|
|
3270
|
+
is-fullwidth-code-point@5.1.0:
|
|
3271
|
+
dependencies:
|
|
3272
|
+
get-east-asian-width: 1.6.0
|
|
3273
|
+
|
|
3274
|
+
is-glob@4.0.3:
|
|
3275
|
+
dependencies:
|
|
3276
|
+
is-extglob: 2.1.1
|
|
3277
|
+
|
|
3278
|
+
is-inside-container@1.0.0:
|
|
3279
|
+
dependencies:
|
|
3280
|
+
is-docker: 3.0.0
|
|
3281
|
+
|
|
3282
|
+
is-number@7.0.0: {}
|
|
3283
|
+
|
|
3284
|
+
is-wsl@3.1.1:
|
|
3285
|
+
dependencies:
|
|
3286
|
+
is-inside-container: 1.0.0
|
|
3287
|
+
|
|
3288
|
+
isexe@2.0.0: {}
|
|
3289
|
+
|
|
3290
|
+
isexe@4.0.0: {}
|
|
3291
|
+
|
|
3292
|
+
jiti@2.7.0: {}
|
|
3293
|
+
|
|
3294
|
+
js-tokens@4.0.0: {}
|
|
3295
|
+
|
|
3296
|
+
js-tokens@9.0.1: {}
|
|
3297
|
+
|
|
3298
|
+
jsesc@3.1.0: {}
|
|
3299
|
+
|
|
3300
|
+
json-buffer@3.0.1: {}
|
|
3301
|
+
|
|
3302
|
+
json-parse-even-better-errors@6.0.0: {}
|
|
3303
|
+
|
|
3304
|
+
json-schema-traverse@0.4.1: {}
|
|
3305
|
+
|
|
3306
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
3307
|
+
|
|
3308
|
+
json5@2.2.3: {}
|
|
3309
|
+
|
|
3310
|
+
jsonc-parser@3.3.1: {}
|
|
3311
|
+
|
|
3312
|
+
keyv@4.5.4:
|
|
3313
|
+
dependencies:
|
|
3314
|
+
json-buffer: 3.0.1
|
|
3315
|
+
|
|
3316
|
+
kolorist@1.8.0: {}
|
|
3317
|
+
|
|
3318
|
+
levn@0.4.1:
|
|
3319
|
+
dependencies:
|
|
3320
|
+
prelude-ls: 1.2.1
|
|
3321
|
+
type-check: 0.4.0
|
|
3322
|
+
|
|
3323
|
+
lightningcss-android-arm64@1.32.0:
|
|
3324
|
+
optional: true
|
|
3325
|
+
|
|
3326
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
3327
|
+
optional: true
|
|
3328
|
+
|
|
3329
|
+
lightningcss-darwin-x64@1.32.0:
|
|
3330
|
+
optional: true
|
|
3331
|
+
|
|
3332
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
3333
|
+
optional: true
|
|
3334
|
+
|
|
3335
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
3336
|
+
optional: true
|
|
3337
|
+
|
|
3338
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
3339
|
+
optional: true
|
|
3340
|
+
|
|
3341
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
3342
|
+
optional: true
|
|
3343
|
+
|
|
3344
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
3345
|
+
optional: true
|
|
3346
|
+
|
|
3347
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
3348
|
+
optional: true
|
|
3349
|
+
|
|
3350
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
3351
|
+
optional: true
|
|
3352
|
+
|
|
3353
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
3354
|
+
optional: true
|
|
3355
|
+
|
|
3356
|
+
lightningcss@1.32.0:
|
|
3357
|
+
dependencies:
|
|
3358
|
+
detect-libc: 2.1.2
|
|
3359
|
+
optionalDependencies:
|
|
3360
|
+
lightningcss-android-arm64: 1.32.0
|
|
3361
|
+
lightningcss-darwin-arm64: 1.32.0
|
|
3362
|
+
lightningcss-darwin-x64: 1.32.0
|
|
3363
|
+
lightningcss-freebsd-x64: 1.32.0
|
|
3364
|
+
lightningcss-linux-arm-gnueabihf: 1.32.0
|
|
3365
|
+
lightningcss-linux-arm64-gnu: 1.32.0
|
|
3366
|
+
lightningcss-linux-arm64-musl: 1.32.0
|
|
3367
|
+
lightningcss-linux-x64-gnu: 1.32.0
|
|
3368
|
+
lightningcss-linux-x64-musl: 1.32.0
|
|
3369
|
+
lightningcss-win32-arm64-msvc: 1.32.0
|
|
3370
|
+
lightningcss-win32-x64-msvc: 1.32.0
|
|
3371
|
+
|
|
3372
|
+
lint-staged@17.0.5:
|
|
3373
|
+
dependencies:
|
|
3374
|
+
listr2: 10.2.1
|
|
3375
|
+
picomatch: 4.0.4
|
|
3376
|
+
string-argv: 0.3.2
|
|
3377
|
+
tinyexec: 1.1.2
|
|
3378
|
+
optionalDependencies:
|
|
3379
|
+
yaml: 2.9.0
|
|
3380
|
+
|
|
3381
|
+
listr2@10.2.1:
|
|
3382
|
+
dependencies:
|
|
3383
|
+
cli-truncate: 5.2.0
|
|
3384
|
+
eventemitter3: 5.0.4
|
|
3385
|
+
log-update: 6.1.0
|
|
3386
|
+
rfdc: 1.4.1
|
|
3387
|
+
wrap-ansi: 10.0.0
|
|
3388
|
+
|
|
3389
|
+
local-pkg@1.2.1:
|
|
3390
|
+
dependencies:
|
|
3391
|
+
mlly: 1.8.2
|
|
3392
|
+
pkg-types: 2.3.1
|
|
3393
|
+
quansync: 0.2.11
|
|
3394
|
+
|
|
3395
|
+
locate-path@6.0.0:
|
|
3396
|
+
dependencies:
|
|
3397
|
+
p-locate: 5.0.0
|
|
3398
|
+
|
|
3399
|
+
log-update@6.1.0:
|
|
3400
|
+
dependencies:
|
|
3401
|
+
ansi-escapes: 7.3.0
|
|
3402
|
+
cli-cursor: 5.0.0
|
|
3403
|
+
slice-ansi: 7.1.2
|
|
3404
|
+
strip-ansi: 7.2.0
|
|
3405
|
+
wrap-ansi: 9.0.2
|
|
3406
|
+
|
|
3407
|
+
lru-cache@5.1.1:
|
|
3408
|
+
dependencies:
|
|
3409
|
+
yallist: 3.1.1
|
|
3410
|
+
|
|
3411
|
+
magic-string@0.30.21:
|
|
3412
|
+
dependencies:
|
|
3413
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3414
|
+
|
|
3415
|
+
memorystream@0.3.1: {}
|
|
3416
|
+
|
|
3417
|
+
merge2@1.4.1: {}
|
|
3418
|
+
|
|
3419
|
+
micromatch@4.0.8:
|
|
3420
|
+
dependencies:
|
|
3421
|
+
braces: 3.0.3
|
|
3422
|
+
picomatch: 2.3.2
|
|
3423
|
+
|
|
3424
|
+
mimic-function@5.0.1: {}
|
|
3425
|
+
|
|
3426
|
+
minimatch@10.2.5:
|
|
3427
|
+
dependencies:
|
|
3428
|
+
brace-expansion: 5.0.6
|
|
3429
|
+
|
|
3430
|
+
mlly@1.8.2:
|
|
3431
|
+
dependencies:
|
|
3432
|
+
acorn: 8.16.0
|
|
3433
|
+
pathe: 2.0.3
|
|
3434
|
+
pkg-types: 1.3.1
|
|
3435
|
+
ufo: 1.6.4
|
|
3436
|
+
|
|
3437
|
+
mrmime@2.0.1: {}
|
|
3438
|
+
|
|
3439
|
+
ms@2.1.3: {}
|
|
3440
|
+
|
|
3441
|
+
muggle-string@0.4.1: {}
|
|
3442
|
+
|
|
3443
|
+
nanoid@3.3.12: {}
|
|
3444
|
+
|
|
3445
|
+
natural-compare@1.4.0: {}
|
|
3446
|
+
|
|
3447
|
+
node-releases@2.0.45: {}
|
|
3448
|
+
|
|
3449
|
+
npm-normalize-package-bin@6.0.0: {}
|
|
3450
|
+
|
|
3451
|
+
npm-run-all2@9.0.0:
|
|
3452
|
+
dependencies:
|
|
3453
|
+
ansi-styles: 6.2.3
|
|
3454
|
+
cross-spawn: 7.0.6
|
|
3455
|
+
memorystream: 0.3.1
|
|
3456
|
+
picomatch: 4.0.4
|
|
3457
|
+
pidtree: 0.6.0
|
|
3458
|
+
read-package-json-fast: 6.0.0
|
|
3459
|
+
shell-quote: 1.8.3
|
|
3460
|
+
which: 7.0.0
|
|
3461
|
+
|
|
3462
|
+
nth-check@2.1.1:
|
|
3463
|
+
dependencies:
|
|
3464
|
+
boolbase: 1.0.0
|
|
3465
|
+
|
|
3466
|
+
obug@2.1.1: {}
|
|
3467
|
+
|
|
3468
|
+
ohash@2.0.11: {}
|
|
3469
|
+
|
|
3470
|
+
onetime@7.0.0:
|
|
3471
|
+
dependencies:
|
|
3472
|
+
mimic-function: 5.0.1
|
|
3473
|
+
|
|
3474
|
+
open@10.2.0:
|
|
3475
|
+
dependencies:
|
|
3476
|
+
default-browser: 5.5.0
|
|
3477
|
+
define-lazy-prop: 3.0.0
|
|
3478
|
+
is-inside-container: 1.0.0
|
|
3479
|
+
wsl-utils: 0.1.0
|
|
3480
|
+
|
|
3481
|
+
optionator@0.9.4:
|
|
3482
|
+
dependencies:
|
|
3483
|
+
deep-is: 0.1.4
|
|
3484
|
+
fast-levenshtein: 2.0.6
|
|
3485
|
+
levn: 0.4.1
|
|
3486
|
+
prelude-ls: 1.2.1
|
|
3487
|
+
type-check: 0.4.0
|
|
3488
|
+
word-wrap: 1.2.5
|
|
3489
|
+
|
|
3490
|
+
oxfmt@0.51.0:
|
|
3491
|
+
dependencies:
|
|
3492
|
+
tinypool: 2.1.0
|
|
3493
|
+
optionalDependencies:
|
|
3494
|
+
'@oxfmt/binding-android-arm-eabi': 0.51.0
|
|
3495
|
+
'@oxfmt/binding-android-arm64': 0.51.0
|
|
3496
|
+
'@oxfmt/binding-darwin-arm64': 0.51.0
|
|
3497
|
+
'@oxfmt/binding-darwin-x64': 0.51.0
|
|
3498
|
+
'@oxfmt/binding-freebsd-x64': 0.51.0
|
|
3499
|
+
'@oxfmt/binding-linux-arm-gnueabihf': 0.51.0
|
|
3500
|
+
'@oxfmt/binding-linux-arm-musleabihf': 0.51.0
|
|
3501
|
+
'@oxfmt/binding-linux-arm64-gnu': 0.51.0
|
|
3502
|
+
'@oxfmt/binding-linux-arm64-musl': 0.51.0
|
|
3503
|
+
'@oxfmt/binding-linux-ppc64-gnu': 0.51.0
|
|
3504
|
+
'@oxfmt/binding-linux-riscv64-gnu': 0.51.0
|
|
3505
|
+
'@oxfmt/binding-linux-riscv64-musl': 0.51.0
|
|
3506
|
+
'@oxfmt/binding-linux-s390x-gnu': 0.51.0
|
|
3507
|
+
'@oxfmt/binding-linux-x64-gnu': 0.51.0
|
|
3508
|
+
'@oxfmt/binding-linux-x64-musl': 0.51.0
|
|
3509
|
+
'@oxfmt/binding-openharmony-arm64': 0.51.0
|
|
3510
|
+
'@oxfmt/binding-win32-arm64-msvc': 0.51.0
|
|
3511
|
+
'@oxfmt/binding-win32-ia32-msvc': 0.51.0
|
|
3512
|
+
'@oxfmt/binding-win32-x64-msvc': 0.51.0
|
|
3513
|
+
|
|
3514
|
+
oxlint@1.66.0:
|
|
3515
|
+
optionalDependencies:
|
|
3516
|
+
'@oxlint/binding-android-arm-eabi': 1.66.0
|
|
3517
|
+
'@oxlint/binding-android-arm64': 1.66.0
|
|
3518
|
+
'@oxlint/binding-darwin-arm64': 1.66.0
|
|
3519
|
+
'@oxlint/binding-darwin-x64': 1.66.0
|
|
3520
|
+
'@oxlint/binding-freebsd-x64': 1.66.0
|
|
3521
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.66.0
|
|
3522
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.66.0
|
|
3523
|
+
'@oxlint/binding-linux-arm64-gnu': 1.66.0
|
|
3524
|
+
'@oxlint/binding-linux-arm64-musl': 1.66.0
|
|
3525
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.66.0
|
|
3526
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.66.0
|
|
3527
|
+
'@oxlint/binding-linux-riscv64-musl': 1.66.0
|
|
3528
|
+
'@oxlint/binding-linux-s390x-gnu': 1.66.0
|
|
3529
|
+
'@oxlint/binding-linux-x64-gnu': 1.66.0
|
|
3530
|
+
'@oxlint/binding-linux-x64-musl': 1.66.0
|
|
3531
|
+
'@oxlint/binding-openharmony-arm64': 1.66.0
|
|
3532
|
+
'@oxlint/binding-win32-arm64-msvc': 1.66.0
|
|
3533
|
+
'@oxlint/binding-win32-ia32-msvc': 1.66.0
|
|
3534
|
+
'@oxlint/binding-win32-x64-msvc': 1.66.0
|
|
3535
|
+
|
|
3536
|
+
p-limit@3.1.0:
|
|
3537
|
+
dependencies:
|
|
3538
|
+
yocto-queue: 0.1.0
|
|
3539
|
+
|
|
3540
|
+
p-locate@5.0.0:
|
|
3541
|
+
dependencies:
|
|
3542
|
+
p-limit: 3.1.0
|
|
3543
|
+
|
|
3544
|
+
path-browserify@1.0.1: {}
|
|
3545
|
+
|
|
3546
|
+
path-exists@4.0.0: {}
|
|
3547
|
+
|
|
3548
|
+
path-key@3.1.1: {}
|
|
3549
|
+
|
|
3550
|
+
pathe@2.0.3: {}
|
|
3551
|
+
|
|
3552
|
+
perfect-debounce@2.1.0: {}
|
|
3553
|
+
|
|
3554
|
+
picocolors@1.1.1: {}
|
|
3555
|
+
|
|
3556
|
+
picomatch@2.3.2: {}
|
|
3557
|
+
|
|
3558
|
+
picomatch@4.0.4: {}
|
|
3559
|
+
|
|
3560
|
+
pidtree@0.6.0: {}
|
|
3561
|
+
|
|
3562
|
+
pkg-types@1.3.1:
|
|
3563
|
+
dependencies:
|
|
3564
|
+
confbox: 0.1.8
|
|
3565
|
+
mlly: 1.8.2
|
|
3566
|
+
pathe: 2.0.3
|
|
3567
|
+
|
|
3568
|
+
pkg-types@2.3.1:
|
|
3569
|
+
dependencies:
|
|
3570
|
+
confbox: 0.2.4
|
|
3571
|
+
exsolve: 1.0.8
|
|
3572
|
+
pathe: 2.0.3
|
|
3573
|
+
|
|
3574
|
+
postcss-selector-parser@7.1.1:
|
|
3575
|
+
dependencies:
|
|
3576
|
+
cssesc: 3.0.0
|
|
3577
|
+
util-deprecate: 1.0.2
|
|
3578
|
+
|
|
3579
|
+
postcss@8.5.15:
|
|
3580
|
+
dependencies:
|
|
3581
|
+
nanoid: 3.3.12
|
|
3582
|
+
picocolors: 1.1.1
|
|
3583
|
+
source-map-js: 1.2.1
|
|
3584
|
+
|
|
3585
|
+
prelude-ls@1.2.1: {}
|
|
3586
|
+
|
|
3587
|
+
prettier-linter-helpers@1.0.1:
|
|
3588
|
+
dependencies:
|
|
3589
|
+
fast-diff: 1.3.0
|
|
3590
|
+
|
|
3591
|
+
prettier@3.8.3: {}
|
|
3592
|
+
|
|
3593
|
+
punycode@2.3.1: {}
|
|
3594
|
+
|
|
3595
|
+
quansync@0.2.11: {}
|
|
3596
|
+
|
|
3597
|
+
queue-microtask@1.2.3: {}
|
|
3598
|
+
|
|
3599
|
+
read-package-json-fast@6.0.0:
|
|
3600
|
+
dependencies:
|
|
3601
|
+
json-parse-even-better-errors: 6.0.0
|
|
3602
|
+
npm-normalize-package-bin: 6.0.0
|
|
3603
|
+
|
|
3604
|
+
readdirp@5.0.0: {}
|
|
3605
|
+
|
|
3606
|
+
restore-cursor@5.1.0:
|
|
3607
|
+
dependencies:
|
|
3608
|
+
onetime: 7.0.0
|
|
3609
|
+
signal-exit: 4.1.0
|
|
3610
|
+
|
|
3611
|
+
reusify@1.1.0: {}
|
|
3612
|
+
|
|
3613
|
+
rfdc@1.4.1: {}
|
|
3614
|
+
|
|
3615
|
+
rolldown@1.0.2:
|
|
3616
|
+
dependencies:
|
|
3617
|
+
'@oxc-project/types': 0.132.0
|
|
3618
|
+
'@rolldown/pluginutils': 1.0.1
|
|
3619
|
+
optionalDependencies:
|
|
3620
|
+
'@rolldown/binding-android-arm64': 1.0.2
|
|
3621
|
+
'@rolldown/binding-darwin-arm64': 1.0.2
|
|
3622
|
+
'@rolldown/binding-darwin-x64': 1.0.2
|
|
3623
|
+
'@rolldown/binding-freebsd-x64': 1.0.2
|
|
3624
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.0.2
|
|
3625
|
+
'@rolldown/binding-linux-arm64-gnu': 1.0.2
|
|
3626
|
+
'@rolldown/binding-linux-arm64-musl': 1.0.2
|
|
3627
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.0.2
|
|
3628
|
+
'@rolldown/binding-linux-s390x-gnu': 1.0.2
|
|
3629
|
+
'@rolldown/binding-linux-x64-gnu': 1.0.2
|
|
3630
|
+
'@rolldown/binding-linux-x64-musl': 1.0.2
|
|
3631
|
+
'@rolldown/binding-openharmony-arm64': 1.0.2
|
|
3632
|
+
'@rolldown/binding-wasm32-wasi': 1.0.2
|
|
3633
|
+
'@rolldown/binding-win32-arm64-msvc': 1.0.2
|
|
3634
|
+
'@rolldown/binding-win32-x64-msvc': 1.0.2
|
|
3635
|
+
|
|
3636
|
+
run-applescript@7.1.0: {}
|
|
3637
|
+
|
|
3638
|
+
run-parallel@1.2.0:
|
|
3639
|
+
dependencies:
|
|
3640
|
+
queue-microtask: 1.2.3
|
|
3641
|
+
|
|
3642
|
+
scule@1.3.0: {}
|
|
3643
|
+
|
|
3644
|
+
semver@6.3.1: {}
|
|
3645
|
+
|
|
3646
|
+
semver@7.8.0: {}
|
|
3647
|
+
|
|
3648
|
+
shebang-command@2.0.0:
|
|
3649
|
+
dependencies:
|
|
3650
|
+
shebang-regex: 3.0.0
|
|
3651
|
+
|
|
3652
|
+
shebang-regex@3.0.0: {}
|
|
3653
|
+
|
|
3654
|
+
shell-quote@1.8.3: {}
|
|
3655
|
+
|
|
3656
|
+
signal-exit@4.1.0: {}
|
|
3657
|
+
|
|
3658
|
+
sirv@3.0.2:
|
|
3659
|
+
dependencies:
|
|
3660
|
+
'@polka/url': 1.0.0-next.29
|
|
3661
|
+
mrmime: 2.0.1
|
|
3662
|
+
totalist: 3.0.1
|
|
3663
|
+
|
|
3664
|
+
slice-ansi@7.1.2:
|
|
3665
|
+
dependencies:
|
|
3666
|
+
ansi-styles: 6.2.3
|
|
3667
|
+
is-fullwidth-code-point: 5.1.0
|
|
3668
|
+
|
|
3669
|
+
slice-ansi@8.0.0:
|
|
3670
|
+
dependencies:
|
|
3671
|
+
ansi-styles: 6.2.3
|
|
3672
|
+
is-fullwidth-code-point: 5.1.0
|
|
3673
|
+
|
|
3674
|
+
source-map-js@1.2.1: {}
|
|
3675
|
+
|
|
3676
|
+
string-argv@0.3.2: {}
|
|
3677
|
+
|
|
3678
|
+
string-width@7.2.0:
|
|
3679
|
+
dependencies:
|
|
3680
|
+
emoji-regex: 10.6.0
|
|
3681
|
+
get-east-asian-width: 1.6.0
|
|
3682
|
+
strip-ansi: 7.2.0
|
|
3683
|
+
|
|
3684
|
+
string-width@8.2.1:
|
|
3685
|
+
dependencies:
|
|
3686
|
+
get-east-asian-width: 1.6.0
|
|
3687
|
+
strip-ansi: 7.2.0
|
|
3688
|
+
|
|
3689
|
+
strip-ansi@7.2.0:
|
|
3690
|
+
dependencies:
|
|
3691
|
+
ansi-regex: 6.2.2
|
|
3692
|
+
|
|
3693
|
+
strip-literal@3.1.0:
|
|
3694
|
+
dependencies:
|
|
3695
|
+
js-tokens: 9.0.1
|
|
3696
|
+
|
|
3697
|
+
synckit@0.11.12:
|
|
3698
|
+
dependencies:
|
|
3699
|
+
'@pkgr/core': 0.2.9
|
|
3700
|
+
|
|
3701
|
+
tailwind-merge@3.6.0: {}
|
|
3702
|
+
|
|
3703
|
+
tailwindcss@4.3.0: {}
|
|
3704
|
+
|
|
3705
|
+
tapable@2.3.3: {}
|
|
3706
|
+
|
|
3707
|
+
tinyexec@1.1.2: {}
|
|
3708
|
+
|
|
3709
|
+
tinyglobby@0.2.16:
|
|
3710
|
+
dependencies:
|
|
3711
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
3712
|
+
picomatch: 4.0.4
|
|
3713
|
+
|
|
3714
|
+
tinypool@2.1.0: {}
|
|
3715
|
+
|
|
3716
|
+
to-regex-range@5.0.1:
|
|
3717
|
+
dependencies:
|
|
3718
|
+
is-number: 7.0.0
|
|
3719
|
+
|
|
3720
|
+
totalist@3.0.1: {}
|
|
3721
|
+
|
|
3722
|
+
ts-api-utils@2.5.0(typescript@6.0.3):
|
|
3723
|
+
dependencies:
|
|
3724
|
+
typescript: 6.0.3
|
|
3725
|
+
|
|
3726
|
+
tslib@2.8.1:
|
|
3727
|
+
optional: true
|
|
3728
|
+
|
|
3729
|
+
tw-animate-css@1.4.0: {}
|
|
3730
|
+
|
|
3731
|
+
type-check@0.4.0:
|
|
3732
|
+
dependencies:
|
|
3733
|
+
prelude-ls: 1.2.1
|
|
3734
|
+
|
|
3735
|
+
typescript-eslint@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3):
|
|
3736
|
+
dependencies:
|
|
3737
|
+
'@typescript-eslint/eslint-plugin': 8.59.4(@typescript-eslint/parser@8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
3738
|
+
'@typescript-eslint/parser': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
3739
|
+
'@typescript-eslint/typescript-estree': 8.59.4(typescript@6.0.3)
|
|
3740
|
+
'@typescript-eslint/utils': 8.59.4(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3)
|
|
3741
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
3742
|
+
typescript: 6.0.3
|
|
3743
|
+
transitivePeerDependencies:
|
|
3744
|
+
- supports-color
|
|
3745
|
+
|
|
3746
|
+
typescript@6.0.3: {}
|
|
3747
|
+
|
|
3748
|
+
ufo@1.6.4: {}
|
|
3749
|
+
|
|
3750
|
+
undici-types@7.24.6: {}
|
|
3751
|
+
|
|
3752
|
+
unimport@5.7.0:
|
|
3753
|
+
dependencies:
|
|
3754
|
+
acorn: 8.16.0
|
|
3755
|
+
escape-string-regexp: 5.0.0
|
|
3756
|
+
estree-walker: 3.0.3
|
|
3757
|
+
local-pkg: 1.2.1
|
|
3758
|
+
magic-string: 0.30.21
|
|
3759
|
+
mlly: 1.8.2
|
|
3760
|
+
pathe: 2.0.3
|
|
3761
|
+
picomatch: 4.0.4
|
|
3762
|
+
pkg-types: 2.3.1
|
|
3763
|
+
scule: 1.3.0
|
|
3764
|
+
strip-literal: 3.1.0
|
|
3765
|
+
tinyglobby: 0.2.16
|
|
3766
|
+
unplugin: 2.3.11
|
|
3767
|
+
unplugin-utils: 0.3.1
|
|
3768
|
+
|
|
3769
|
+
unplugin-auto-import@21.0.0:
|
|
3770
|
+
dependencies:
|
|
3771
|
+
local-pkg: 1.2.1
|
|
3772
|
+
magic-string: 0.30.21
|
|
3773
|
+
picomatch: 4.0.4
|
|
3774
|
+
unimport: 5.7.0
|
|
3775
|
+
unplugin: 2.3.11
|
|
3776
|
+
unplugin-utils: 0.3.1
|
|
3777
|
+
|
|
3778
|
+
unplugin-utils@0.3.1:
|
|
3779
|
+
dependencies:
|
|
3780
|
+
pathe: 2.0.3
|
|
3781
|
+
picomatch: 4.0.4
|
|
3782
|
+
|
|
3783
|
+
unplugin-vue-components@32.1.0(vue@3.5.34(typescript@6.0.3)):
|
|
3784
|
+
dependencies:
|
|
3785
|
+
chokidar: 5.0.0
|
|
3786
|
+
local-pkg: 1.2.1
|
|
3787
|
+
magic-string: 0.30.21
|
|
3788
|
+
mlly: 1.8.2
|
|
3789
|
+
obug: 2.1.1
|
|
3790
|
+
picomatch: 4.0.4
|
|
3791
|
+
tinyglobby: 0.2.16
|
|
3792
|
+
unplugin: 3.0.0
|
|
3793
|
+
unplugin-utils: 0.3.1
|
|
3794
|
+
vue: 3.5.34(typescript@6.0.3)
|
|
3795
|
+
|
|
3796
|
+
unplugin@2.3.11:
|
|
3797
|
+
dependencies:
|
|
3798
|
+
'@jridgewell/remapping': 2.3.5
|
|
3799
|
+
acorn: 8.16.0
|
|
3800
|
+
picomatch: 4.0.4
|
|
3801
|
+
webpack-virtual-modules: 0.6.2
|
|
3802
|
+
|
|
3803
|
+
unplugin@3.0.0:
|
|
3804
|
+
dependencies:
|
|
3805
|
+
'@jridgewell/remapping': 2.3.5
|
|
3806
|
+
picomatch: 4.0.4
|
|
3807
|
+
webpack-virtual-modules: 0.6.2
|
|
3808
|
+
|
|
3809
|
+
update-browserslist-db@1.2.3(browserslist@4.28.2):
|
|
3810
|
+
dependencies:
|
|
3811
|
+
browserslist: 4.28.2
|
|
3812
|
+
escalade: 3.2.0
|
|
3813
|
+
picocolors: 1.1.1
|
|
3814
|
+
|
|
3815
|
+
uri-js@4.4.1:
|
|
3816
|
+
dependencies:
|
|
3817
|
+
punycode: 2.3.1
|
|
3818
|
+
|
|
3819
|
+
util-deprecate@1.0.2: {}
|
|
3820
|
+
|
|
3821
|
+
vite-dev-rpc@1.1.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)):
|
|
3822
|
+
dependencies:
|
|
3823
|
+
birpc: 2.9.0
|
|
3824
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
3825
|
+
vite-hot-client: 2.2.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))
|
|
3826
|
+
|
|
3827
|
+
vite-hot-client@2.2.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)):
|
|
3828
|
+
dependencies:
|
|
3829
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
3830
|
+
|
|
3831
|
+
vite-plugin-inspect@11.3.3(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)):
|
|
3832
|
+
dependencies:
|
|
3833
|
+
ansis: 4.3.0
|
|
3834
|
+
debug: 4.4.3
|
|
3835
|
+
error-stack-parser-es: 1.0.5
|
|
3836
|
+
ohash: 2.0.11
|
|
3837
|
+
open: 10.2.0
|
|
3838
|
+
perfect-debounce: 2.1.0
|
|
3839
|
+
sirv: 3.0.2
|
|
3840
|
+
unplugin-utils: 0.3.1
|
|
3841
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
3842
|
+
vite-dev-rpc: 1.1.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))
|
|
3843
|
+
transitivePeerDependencies:
|
|
3844
|
+
- supports-color
|
|
3845
|
+
|
|
3846
|
+
vite-plugin-vue-devtools@8.1.2(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)):
|
|
3847
|
+
dependencies:
|
|
3848
|
+
'@vue/devtools-core': 8.1.2(vue@3.5.34(typescript@6.0.3))
|
|
3849
|
+
'@vue/devtools-kit': 8.1.2
|
|
3850
|
+
'@vue/devtools-shared': 8.1.2
|
|
3851
|
+
sirv: 3.0.2
|
|
3852
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
3853
|
+
vite-plugin-inspect: 11.3.3(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))
|
|
3854
|
+
vite-plugin-vue-inspector: 6.0.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0))
|
|
3855
|
+
transitivePeerDependencies:
|
|
3856
|
+
- '@nuxt/kit'
|
|
3857
|
+
- supports-color
|
|
3858
|
+
- vue
|
|
3859
|
+
|
|
3860
|
+
vite-plugin-vue-inspector@6.0.0(vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)):
|
|
3861
|
+
dependencies:
|
|
3862
|
+
'@babel/core': 7.29.0
|
|
3863
|
+
'@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
|
|
3864
|
+
'@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
|
|
3865
|
+
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0)
|
|
3866
|
+
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
|
|
3867
|
+
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0)
|
|
3868
|
+
'@vue/compiler-dom': 3.5.34
|
|
3869
|
+
kolorist: 1.8.0
|
|
3870
|
+
magic-string: 0.30.21
|
|
3871
|
+
vite: 8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0)
|
|
3872
|
+
transitivePeerDependencies:
|
|
3873
|
+
- supports-color
|
|
3874
|
+
|
|
3875
|
+
vite@8.0.14(@types/node@25.9.1)(jiti@2.7.0)(yaml@2.9.0):
|
|
3876
|
+
dependencies:
|
|
3877
|
+
lightningcss: 1.32.0
|
|
3878
|
+
picomatch: 4.0.4
|
|
3879
|
+
postcss: 8.5.15
|
|
3880
|
+
rolldown: 1.0.2
|
|
3881
|
+
tinyglobby: 0.2.16
|
|
3882
|
+
optionalDependencies:
|
|
3883
|
+
'@types/node': 25.9.1
|
|
3884
|
+
fsevents: 2.3.3
|
|
3885
|
+
jiti: 2.7.0
|
|
3886
|
+
yaml: 2.9.0
|
|
3887
|
+
|
|
3888
|
+
vscode-uri@3.1.0: {}
|
|
3889
|
+
|
|
3890
|
+
vue-eslint-parser@10.4.0(eslint@10.4.0(jiti@2.7.0)):
|
|
3891
|
+
dependencies:
|
|
3892
|
+
debug: 4.4.3
|
|
3893
|
+
eslint: 10.4.0(jiti@2.7.0)
|
|
3894
|
+
eslint-scope: 9.1.2
|
|
3895
|
+
eslint-visitor-keys: 5.0.1
|
|
3896
|
+
espree: 11.2.0
|
|
3897
|
+
esquery: 1.7.0
|
|
3898
|
+
semver: 7.8.0
|
|
3899
|
+
transitivePeerDependencies:
|
|
3900
|
+
- supports-color
|
|
3901
|
+
|
|
3902
|
+
vue-tsc@3.3.1(typescript@6.0.3):
|
|
3903
|
+
dependencies:
|
|
3904
|
+
'@volar/typescript': 2.4.28
|
|
3905
|
+
'@vue/language-core': 3.3.1
|
|
3906
|
+
typescript: 6.0.3
|
|
3907
|
+
|
|
3908
|
+
vue@3.5.34(typescript@6.0.3):
|
|
3909
|
+
dependencies:
|
|
3910
|
+
'@vue/compiler-dom': 3.5.34
|
|
3911
|
+
'@vue/compiler-sfc': 3.5.34
|
|
3912
|
+
'@vue/runtime-dom': 3.5.34
|
|
3913
|
+
'@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@6.0.3))
|
|
3914
|
+
'@vue/shared': 3.5.34
|
|
3915
|
+
optionalDependencies:
|
|
3916
|
+
typescript: 6.0.3
|
|
3917
|
+
|
|
3918
|
+
webpack-virtual-modules@0.6.2: {}
|
|
3919
|
+
|
|
3920
|
+
which@2.0.2:
|
|
3921
|
+
dependencies:
|
|
3922
|
+
isexe: 2.0.0
|
|
3923
|
+
|
|
3924
|
+
which@7.0.0:
|
|
3925
|
+
dependencies:
|
|
3926
|
+
isexe: 4.0.0
|
|
3927
|
+
|
|
3928
|
+
word-wrap@1.2.5: {}
|
|
3929
|
+
|
|
3930
|
+
wrap-ansi@10.0.0:
|
|
3931
|
+
dependencies:
|
|
3932
|
+
ansi-styles: 6.2.3
|
|
3933
|
+
string-width: 8.2.1
|
|
3934
|
+
strip-ansi: 7.2.0
|
|
3935
|
+
|
|
3936
|
+
wrap-ansi@9.0.2:
|
|
3937
|
+
dependencies:
|
|
3938
|
+
ansi-styles: 6.2.3
|
|
3939
|
+
string-width: 7.2.0
|
|
3940
|
+
strip-ansi: 7.2.0
|
|
3941
|
+
|
|
3942
|
+
wsl-utils@0.1.0:
|
|
3943
|
+
dependencies:
|
|
3944
|
+
is-wsl: 3.1.1
|
|
3945
|
+
|
|
3946
|
+
xml-name-validator@4.0.0: {}
|
|
3947
|
+
|
|
3948
|
+
yallist@3.1.1: {}
|
|
3949
|
+
|
|
3950
|
+
yaml@2.9.0:
|
|
3951
|
+
optional: true
|
|
3952
|
+
|
|
3953
|
+
yocto-queue@0.1.0: {}
|