create-outsystems-astro 0.10.0 → 0.11.1
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/bin/cli.js +7 -2
- package/integrations/.yarnrc.yml +28 -0
- package/integrations/bun.lock +80 -52
- package/integrations/deno.json +36 -2
- package/integrations/deno.lock +281 -223
- package/integrations/package-lock.json +345 -227
- package/integrations/package.json +12 -3
- package/integrations/pnpm-lock.yaml +545 -479
- package/integrations/pnpm-workspace.yaml +30 -0
- package/integrations/tsconfig.json +2 -1
- package/integrations/twig/client.ts +34 -0
- package/integrations/twig/index.ts +185 -0
- package/integrations/twig/server.ts +54 -0
- package/integrations/yarn.lock +547 -480
- package/package.json +1 -1
- package/template/.yarnrc.yml +27 -1
- package/template/AGENTS.md +47 -0
- package/template/astro.config.mjs +4 -0
- package/template/bun.lock +1469 -1389
- package/template/deno.json +36 -4
- package/template/deno.lock +737 -637
- package/template/package-lock.json +1569 -4290
- package/template/package.json +43 -41
- package/template/pnpm-lock.yaml +1736 -1894
- package/template/pnpm-workspace.yaml +28 -2
- package/template/src/env.d.ts +6 -0
- package/template/src/framework/twig/Demo.twig +100 -0
- package/template/src/framework/twig/Store.twig +45 -0
- package/template/src/images/twig.png +0 -0
- package/template/src/pages/multi/store.astro +10 -0
- package/template/src/pages/twig/twig-demo.astro +65 -0
- package/template/src/stores/framework.ts +1 -0
- package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
- package/template/test/integration/twig/Demo.test.ts +84 -0
- package/template/vitest.config.ts +9 -0
- package/template/yarn.lock +1296 -1457
- /package/template/patches/{@analogjs+astro-angular+2.5.2.patch → @analogjs+astro-angular+2.6.0.patch} +0 -0
- /package/template/patches/{@angular+build+21.2.12.patch → @angular+build+21.2.14.patch} +0 -0
|
@@ -4,13 +4,19 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
esbuild: ^0.28.1
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
10
13
|
dependencies:
|
|
11
14
|
astro:
|
|
12
|
-
specifier: ^6.
|
|
13
|
-
version: 6.
|
|
15
|
+
specifier: ^6.4.4
|
|
16
|
+
version: 6.4.4(@types/node@25.9.2)(rollup@4.61.1)
|
|
17
|
+
twig:
|
|
18
|
+
specifier: ^3.0.0
|
|
19
|
+
version: 3.0.0
|
|
14
20
|
devDependencies:
|
|
15
21
|
'@eslint/compat':
|
|
16
22
|
specifier: ^2.1.0
|
|
@@ -18,6 +24,12 @@ importers:
|
|
|
18
24
|
'@eslint/js':
|
|
19
25
|
specifier: ^9.39.4
|
|
20
26
|
version: 9.39.4
|
|
27
|
+
'@types/node':
|
|
28
|
+
specifier: ^25.9.2
|
|
29
|
+
version: 25.9.2
|
|
30
|
+
'@types/twig':
|
|
31
|
+
specifier: ^1.12.17
|
|
32
|
+
version: 1.12.17
|
|
21
33
|
better-npm-audit:
|
|
22
34
|
specifier: ^3.11.0
|
|
23
35
|
version: 3.11.0
|
|
@@ -32,7 +44,7 @@ importers:
|
|
|
32
44
|
version: 1.7.0(eslint@9.39.4)
|
|
33
45
|
eslint-plugin-import:
|
|
34
46
|
specifier: ^2.32.0
|
|
35
|
-
version: 2.32.0(@typescript-eslint/parser@8.
|
|
47
|
+
version: 2.32.0(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)
|
|
36
48
|
eslint-plugin-perfectionist:
|
|
37
49
|
specifier: ^5.9.0
|
|
38
50
|
version: 5.9.0(eslint@9.39.4)(typescript@5.9.3)
|
|
@@ -46,8 +58,8 @@ importers:
|
|
|
46
58
|
specifier: ^5.9.3
|
|
47
59
|
version: 5.9.3
|
|
48
60
|
typescript-eslint:
|
|
49
|
-
specifier: ^8.
|
|
50
|
-
version: 8.
|
|
61
|
+
specifier: ^8.60.1
|
|
62
|
+
version: 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
51
63
|
|
|
52
64
|
packages:
|
|
53
65
|
|
|
@@ -57,11 +69,11 @@ packages:
|
|
|
57
69
|
'@astrojs/compiler@4.0.0':
|
|
58
70
|
resolution: {integrity: sha512-eouss7G8ygdZqHuke033VMcVw5HTZUu+PXd/h06DGDUg/jt5btPYPqh66ENWw/mU78rBrf/oeC4oqoBwMtDMNA==}
|
|
59
71
|
|
|
60
|
-
'@astrojs/internal-helpers@0.
|
|
61
|
-
resolution: {integrity: sha512-
|
|
72
|
+
'@astrojs/internal-helpers@0.10.0':
|
|
73
|
+
resolution: {integrity: sha512-Ry2R3VPeIN4uPCSA4xQc+e+vsJXkalKpEbDc07hV+a/o5Bs2N/s/uDcPJH/05L19DKh9tAy7e6JM3YZ6Cxfezw==}
|
|
62
74
|
|
|
63
|
-
'@astrojs/markdown-remark@7.
|
|
64
|
-
resolution: {integrity: sha512
|
|
75
|
+
'@astrojs/markdown-remark@7.2.0':
|
|
76
|
+
resolution: {integrity: sha512-+YxmVQu1Bd+MFfSzjq1rOJvD9+nIOJzz5YIIhdIH01RrxRkKbyKoEgyIqP3yv51MhzMDgd79QaPv+kCVPT8vHw==}
|
|
65
77
|
|
|
66
78
|
'@astrojs/prism@4.0.2':
|
|
67
79
|
resolution: {integrity: sha512-KTivpmnz6lDsC6o9H4+DNm2SrE/GHzw8cNAvEJwAvUT+eoaEnn/4NtbDNfRRaxaJHdp15gf+tfHAWiXR4wB3BA==}
|
|
@@ -71,190 +83,194 @@ packages:
|
|
|
71
83
|
resolution: {integrity: sha512-j8DNruA8ors99Al39RYZPJK4DC1bKkoNm93mAMuBhY9TCNC4R8n1q7ovFnJ5qhGh5Lsh7pa1gpQVpYpsJPeTHQ==}
|
|
72
84
|
engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0}
|
|
73
85
|
|
|
74
|
-
'@babel/helper-string-parser@7.
|
|
75
|
-
resolution: {integrity: sha512-
|
|
86
|
+
'@babel/helper-string-parser@7.29.7':
|
|
87
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
76
88
|
engines: {node: '>=6.9.0'}
|
|
77
89
|
|
|
78
|
-
'@babel/helper-validator-identifier@7.
|
|
79
|
-
resolution: {integrity: sha512-
|
|
90
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
91
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
80
92
|
engines: {node: '>=6.9.0'}
|
|
81
93
|
|
|
82
|
-
'@babel/parser@7.29.
|
|
83
|
-
resolution: {integrity: sha512-
|
|
94
|
+
'@babel/parser@7.29.7':
|
|
95
|
+
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
|
|
84
96
|
engines: {node: '>=6.0.0'}
|
|
85
97
|
hasBin: true
|
|
86
98
|
|
|
87
|
-
'@babel/
|
|
88
|
-
resolution: {integrity: sha512-
|
|
99
|
+
'@babel/runtime@7.29.7':
|
|
100
|
+
resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
|
|
101
|
+
engines: {node: '>=6.9.0'}
|
|
102
|
+
|
|
103
|
+
'@babel/types@7.29.7':
|
|
104
|
+
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
89
105
|
engines: {node: '>=6.9.0'}
|
|
90
106
|
|
|
91
107
|
'@capsizecss/unpack@4.0.0':
|
|
92
108
|
resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==}
|
|
93
109
|
engines: {node: '>=18'}
|
|
94
110
|
|
|
95
|
-
'@clack/core@1.
|
|
96
|
-
resolution: {integrity: sha512-
|
|
111
|
+
'@clack/core@1.4.1':
|
|
112
|
+
resolution: {integrity: sha512-FILJa1gGKEFTGZAJE9RpVhrjKz3c3h4ar60dSv6cGuDqufQ84YEIS3GAGvZiN+H6yaLbbvTFNejjCC4tXpZEuw==}
|
|
97
113
|
engines: {node: '>= 20.12.0'}
|
|
98
114
|
|
|
99
|
-
'@clack/prompts@1.
|
|
100
|
-
resolution: {integrity: sha512-
|
|
115
|
+
'@clack/prompts@1.5.1':
|
|
116
|
+
resolution: {integrity: sha512-zccHj2z2oCCO4yrDiRSlFOxWerGqRiysP7a5jPK6uoI9URKAquwY42Dd/iUP8JWHxEzdRe4TlbvZCo8z1/mhrw==}
|
|
101
117
|
engines: {node: '>= 20.12.0'}
|
|
102
118
|
|
|
103
119
|
'@emnapi/runtime@1.10.0':
|
|
104
120
|
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
|
|
105
121
|
|
|
106
|
-
'@esbuild/aix-ppc64@0.
|
|
107
|
-
resolution: {integrity: sha512-
|
|
122
|
+
'@esbuild/aix-ppc64@0.28.1':
|
|
123
|
+
resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
|
|
108
124
|
engines: {node: '>=18'}
|
|
109
125
|
cpu: [ppc64]
|
|
110
126
|
os: [aix]
|
|
111
127
|
|
|
112
|
-
'@esbuild/android-arm64@0.
|
|
113
|
-
resolution: {integrity: sha512-
|
|
128
|
+
'@esbuild/android-arm64@0.28.1':
|
|
129
|
+
resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
|
|
114
130
|
engines: {node: '>=18'}
|
|
115
131
|
cpu: [arm64]
|
|
116
132
|
os: [android]
|
|
117
133
|
|
|
118
|
-
'@esbuild/android-arm@0.
|
|
119
|
-
resolution: {integrity: sha512-
|
|
134
|
+
'@esbuild/android-arm@0.28.1':
|
|
135
|
+
resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
|
|
120
136
|
engines: {node: '>=18'}
|
|
121
137
|
cpu: [arm]
|
|
122
138
|
os: [android]
|
|
123
139
|
|
|
124
|
-
'@esbuild/android-x64@0.
|
|
125
|
-
resolution: {integrity: sha512-
|
|
140
|
+
'@esbuild/android-x64@0.28.1':
|
|
141
|
+
resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
|
|
126
142
|
engines: {node: '>=18'}
|
|
127
143
|
cpu: [x64]
|
|
128
144
|
os: [android]
|
|
129
145
|
|
|
130
|
-
'@esbuild/darwin-arm64@0.
|
|
131
|
-
resolution: {integrity: sha512-
|
|
146
|
+
'@esbuild/darwin-arm64@0.28.1':
|
|
147
|
+
resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
|
|
132
148
|
engines: {node: '>=18'}
|
|
133
149
|
cpu: [arm64]
|
|
134
150
|
os: [darwin]
|
|
135
151
|
|
|
136
|
-
'@esbuild/darwin-x64@0.
|
|
137
|
-
resolution: {integrity: sha512-
|
|
152
|
+
'@esbuild/darwin-x64@0.28.1':
|
|
153
|
+
resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
|
|
138
154
|
engines: {node: '>=18'}
|
|
139
155
|
cpu: [x64]
|
|
140
156
|
os: [darwin]
|
|
141
157
|
|
|
142
|
-
'@esbuild/freebsd-arm64@0.
|
|
143
|
-
resolution: {integrity: sha512-
|
|
158
|
+
'@esbuild/freebsd-arm64@0.28.1':
|
|
159
|
+
resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
|
|
144
160
|
engines: {node: '>=18'}
|
|
145
161
|
cpu: [arm64]
|
|
146
162
|
os: [freebsd]
|
|
147
163
|
|
|
148
|
-
'@esbuild/freebsd-x64@0.
|
|
149
|
-
resolution: {integrity: sha512-
|
|
164
|
+
'@esbuild/freebsd-x64@0.28.1':
|
|
165
|
+
resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
|
|
150
166
|
engines: {node: '>=18'}
|
|
151
167
|
cpu: [x64]
|
|
152
168
|
os: [freebsd]
|
|
153
169
|
|
|
154
|
-
'@esbuild/linux-arm64@0.
|
|
155
|
-
resolution: {integrity: sha512-
|
|
170
|
+
'@esbuild/linux-arm64@0.28.1':
|
|
171
|
+
resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
|
|
156
172
|
engines: {node: '>=18'}
|
|
157
173
|
cpu: [arm64]
|
|
158
174
|
os: [linux]
|
|
159
175
|
|
|
160
|
-
'@esbuild/linux-arm@0.
|
|
161
|
-
resolution: {integrity: sha512-
|
|
176
|
+
'@esbuild/linux-arm@0.28.1':
|
|
177
|
+
resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
|
|
162
178
|
engines: {node: '>=18'}
|
|
163
179
|
cpu: [arm]
|
|
164
180
|
os: [linux]
|
|
165
181
|
|
|
166
|
-
'@esbuild/linux-ia32@0.
|
|
167
|
-
resolution: {integrity: sha512-
|
|
182
|
+
'@esbuild/linux-ia32@0.28.1':
|
|
183
|
+
resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
|
|
168
184
|
engines: {node: '>=18'}
|
|
169
185
|
cpu: [ia32]
|
|
170
186
|
os: [linux]
|
|
171
187
|
|
|
172
|
-
'@esbuild/linux-loong64@0.
|
|
173
|
-
resolution: {integrity: sha512-
|
|
188
|
+
'@esbuild/linux-loong64@0.28.1':
|
|
189
|
+
resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
|
|
174
190
|
engines: {node: '>=18'}
|
|
175
191
|
cpu: [loong64]
|
|
176
192
|
os: [linux]
|
|
177
193
|
|
|
178
|
-
'@esbuild/linux-mips64el@0.
|
|
179
|
-
resolution: {integrity: sha512-
|
|
194
|
+
'@esbuild/linux-mips64el@0.28.1':
|
|
195
|
+
resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
|
|
180
196
|
engines: {node: '>=18'}
|
|
181
197
|
cpu: [mips64el]
|
|
182
198
|
os: [linux]
|
|
183
199
|
|
|
184
|
-
'@esbuild/linux-ppc64@0.
|
|
185
|
-
resolution: {integrity: sha512-
|
|
200
|
+
'@esbuild/linux-ppc64@0.28.1':
|
|
201
|
+
resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
|
|
186
202
|
engines: {node: '>=18'}
|
|
187
203
|
cpu: [ppc64]
|
|
188
204
|
os: [linux]
|
|
189
205
|
|
|
190
|
-
'@esbuild/linux-riscv64@0.
|
|
191
|
-
resolution: {integrity: sha512-
|
|
206
|
+
'@esbuild/linux-riscv64@0.28.1':
|
|
207
|
+
resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
|
|
192
208
|
engines: {node: '>=18'}
|
|
193
209
|
cpu: [riscv64]
|
|
194
210
|
os: [linux]
|
|
195
211
|
|
|
196
|
-
'@esbuild/linux-s390x@0.
|
|
197
|
-
resolution: {integrity: sha512
|
|
212
|
+
'@esbuild/linux-s390x@0.28.1':
|
|
213
|
+
resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
|
|
198
214
|
engines: {node: '>=18'}
|
|
199
215
|
cpu: [s390x]
|
|
200
216
|
os: [linux]
|
|
201
217
|
|
|
202
|
-
'@esbuild/linux-x64@0.
|
|
203
|
-
resolution: {integrity: sha512-
|
|
218
|
+
'@esbuild/linux-x64@0.28.1':
|
|
219
|
+
resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
|
|
204
220
|
engines: {node: '>=18'}
|
|
205
221
|
cpu: [x64]
|
|
206
222
|
os: [linux]
|
|
207
223
|
|
|
208
|
-
'@esbuild/netbsd-arm64@0.
|
|
209
|
-
resolution: {integrity: sha512-
|
|
224
|
+
'@esbuild/netbsd-arm64@0.28.1':
|
|
225
|
+
resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
|
|
210
226
|
engines: {node: '>=18'}
|
|
211
227
|
cpu: [arm64]
|
|
212
228
|
os: [netbsd]
|
|
213
229
|
|
|
214
|
-
'@esbuild/netbsd-x64@0.
|
|
215
|
-
resolution: {integrity: sha512-
|
|
230
|
+
'@esbuild/netbsd-x64@0.28.1':
|
|
231
|
+
resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
|
|
216
232
|
engines: {node: '>=18'}
|
|
217
233
|
cpu: [x64]
|
|
218
234
|
os: [netbsd]
|
|
219
235
|
|
|
220
|
-
'@esbuild/openbsd-arm64@0.
|
|
221
|
-
resolution: {integrity: sha512-
|
|
236
|
+
'@esbuild/openbsd-arm64@0.28.1':
|
|
237
|
+
resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
|
|
222
238
|
engines: {node: '>=18'}
|
|
223
239
|
cpu: [arm64]
|
|
224
240
|
os: [openbsd]
|
|
225
241
|
|
|
226
|
-
'@esbuild/openbsd-x64@0.
|
|
227
|
-
resolution: {integrity: sha512
|
|
242
|
+
'@esbuild/openbsd-x64@0.28.1':
|
|
243
|
+
resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
|
|
228
244
|
engines: {node: '>=18'}
|
|
229
245
|
cpu: [x64]
|
|
230
246
|
os: [openbsd]
|
|
231
247
|
|
|
232
|
-
'@esbuild/openharmony-arm64@0.
|
|
233
|
-
resolution: {integrity: sha512
|
|
248
|
+
'@esbuild/openharmony-arm64@0.28.1':
|
|
249
|
+
resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
|
|
234
250
|
engines: {node: '>=18'}
|
|
235
251
|
cpu: [arm64]
|
|
236
252
|
os: [openharmony]
|
|
237
253
|
|
|
238
|
-
'@esbuild/sunos-x64@0.
|
|
239
|
-
resolution: {integrity: sha512-
|
|
254
|
+
'@esbuild/sunos-x64@0.28.1':
|
|
255
|
+
resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
|
|
240
256
|
engines: {node: '>=18'}
|
|
241
257
|
cpu: [x64]
|
|
242
258
|
os: [sunos]
|
|
243
259
|
|
|
244
|
-
'@esbuild/win32-arm64@0.
|
|
245
|
-
resolution: {integrity: sha512-
|
|
260
|
+
'@esbuild/win32-arm64@0.28.1':
|
|
261
|
+
resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
|
|
246
262
|
engines: {node: '>=18'}
|
|
247
263
|
cpu: [arm64]
|
|
248
264
|
os: [win32]
|
|
249
265
|
|
|
250
|
-
'@esbuild/win32-ia32@0.
|
|
251
|
-
resolution: {integrity: sha512-
|
|
266
|
+
'@esbuild/win32-ia32@0.28.1':
|
|
267
|
+
resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
|
|
252
268
|
engines: {node: '>=18'}
|
|
253
269
|
cpu: [ia32]
|
|
254
270
|
os: [win32]
|
|
255
271
|
|
|
256
|
-
'@esbuild/win32-x64@0.
|
|
257
|
-
resolution: {integrity: sha512-
|
|
272
|
+
'@esbuild/win32-x64@0.28.1':
|
|
273
|
+
resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
|
|
258
274
|
engines: {node: '>=18'}
|
|
259
275
|
cpu: [x64]
|
|
260
276
|
os: [win32]
|
|
@@ -501,12 +517,12 @@ packages:
|
|
|
501
517
|
'@oslojs/encoding@1.1.0':
|
|
502
518
|
resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==}
|
|
503
519
|
|
|
504
|
-
'@pkgr/core@0.
|
|
505
|
-
resolution: {integrity: sha512-
|
|
506
|
-
engines: {node: ^
|
|
520
|
+
'@pkgr/core@0.3.6':
|
|
521
|
+
resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==}
|
|
522
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
507
523
|
|
|
508
|
-
'@rollup/pluginutils@5.
|
|
509
|
-
resolution: {integrity: sha512-
|
|
524
|
+
'@rollup/pluginutils@5.4.0':
|
|
525
|
+
resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==}
|
|
510
526
|
engines: {node: '>=14.0.0'}
|
|
511
527
|
peerDependencies:
|
|
512
528
|
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
|
|
@@ -514,173 +530,173 @@ packages:
|
|
|
514
530
|
rollup:
|
|
515
531
|
optional: true
|
|
516
532
|
|
|
517
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
518
|
-
resolution: {integrity: sha512-
|
|
533
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
534
|
+
resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==}
|
|
519
535
|
cpu: [arm]
|
|
520
536
|
os: [android]
|
|
521
537
|
|
|
522
|
-
'@rollup/rollup-android-arm64@4.
|
|
523
|
-
resolution: {integrity: sha512-
|
|
538
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
539
|
+
resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==}
|
|
524
540
|
cpu: [arm64]
|
|
525
541
|
os: [android]
|
|
526
542
|
|
|
527
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
528
|
-
resolution: {integrity: sha512-
|
|
543
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
544
|
+
resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==}
|
|
529
545
|
cpu: [arm64]
|
|
530
546
|
os: [darwin]
|
|
531
547
|
|
|
532
|
-
'@rollup/rollup-darwin-x64@4.
|
|
533
|
-
resolution: {integrity: sha512-
|
|
548
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
549
|
+
resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==}
|
|
534
550
|
cpu: [x64]
|
|
535
551
|
os: [darwin]
|
|
536
552
|
|
|
537
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
538
|
-
resolution: {integrity: sha512
|
|
553
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
554
|
+
resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==}
|
|
539
555
|
cpu: [arm64]
|
|
540
556
|
os: [freebsd]
|
|
541
557
|
|
|
542
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
543
|
-
resolution: {integrity: sha512-
|
|
558
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
559
|
+
resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==}
|
|
544
560
|
cpu: [x64]
|
|
545
561
|
os: [freebsd]
|
|
546
562
|
|
|
547
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
548
|
-
resolution: {integrity: sha512-
|
|
563
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
564
|
+
resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==}
|
|
549
565
|
cpu: [arm]
|
|
550
566
|
os: [linux]
|
|
551
567
|
libc: [glibc]
|
|
552
568
|
|
|
553
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
554
|
-
resolution: {integrity: sha512-
|
|
569
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
570
|
+
resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==}
|
|
555
571
|
cpu: [arm]
|
|
556
572
|
os: [linux]
|
|
557
573
|
libc: [musl]
|
|
558
574
|
|
|
559
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
560
|
-
resolution: {integrity: sha512-
|
|
575
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
576
|
+
resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==}
|
|
561
577
|
cpu: [arm64]
|
|
562
578
|
os: [linux]
|
|
563
579
|
libc: [glibc]
|
|
564
580
|
|
|
565
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
566
|
-
resolution: {integrity: sha512-
|
|
581
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
582
|
+
resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==}
|
|
567
583
|
cpu: [arm64]
|
|
568
584
|
os: [linux]
|
|
569
585
|
libc: [musl]
|
|
570
586
|
|
|
571
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
572
|
-
resolution: {integrity: sha512-
|
|
587
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
588
|
+
resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==}
|
|
573
589
|
cpu: [loong64]
|
|
574
590
|
os: [linux]
|
|
575
591
|
libc: [glibc]
|
|
576
592
|
|
|
577
|
-
'@rollup/rollup-linux-loong64-musl@4.
|
|
578
|
-
resolution: {integrity: sha512-
|
|
593
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
594
|
+
resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==}
|
|
579
595
|
cpu: [loong64]
|
|
580
596
|
os: [linux]
|
|
581
597
|
libc: [musl]
|
|
582
598
|
|
|
583
|
-
'@rollup/rollup-linux-ppc64-gnu@4.
|
|
584
|
-
resolution: {integrity: sha512-
|
|
599
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
600
|
+
resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==}
|
|
585
601
|
cpu: [ppc64]
|
|
586
602
|
os: [linux]
|
|
587
603
|
libc: [glibc]
|
|
588
604
|
|
|
589
|
-
'@rollup/rollup-linux-ppc64-musl@4.
|
|
590
|
-
resolution: {integrity: sha512-
|
|
605
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
606
|
+
resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==}
|
|
591
607
|
cpu: [ppc64]
|
|
592
608
|
os: [linux]
|
|
593
609
|
libc: [musl]
|
|
594
610
|
|
|
595
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
596
|
-
resolution: {integrity: sha512-
|
|
611
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
612
|
+
resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==}
|
|
597
613
|
cpu: [riscv64]
|
|
598
614
|
os: [linux]
|
|
599
615
|
libc: [glibc]
|
|
600
616
|
|
|
601
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
602
|
-
resolution: {integrity: sha512-
|
|
617
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
618
|
+
resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==}
|
|
603
619
|
cpu: [riscv64]
|
|
604
620
|
os: [linux]
|
|
605
621
|
libc: [musl]
|
|
606
622
|
|
|
607
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
608
|
-
resolution: {integrity: sha512-
|
|
623
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
624
|
+
resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==}
|
|
609
625
|
cpu: [s390x]
|
|
610
626
|
os: [linux]
|
|
611
627
|
libc: [glibc]
|
|
612
628
|
|
|
613
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
614
|
-
resolution: {integrity: sha512-
|
|
629
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
630
|
+
resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==}
|
|
615
631
|
cpu: [x64]
|
|
616
632
|
os: [linux]
|
|
617
633
|
libc: [glibc]
|
|
618
634
|
|
|
619
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
620
|
-
resolution: {integrity: sha512
|
|
635
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
636
|
+
resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==}
|
|
621
637
|
cpu: [x64]
|
|
622
638
|
os: [linux]
|
|
623
639
|
libc: [musl]
|
|
624
640
|
|
|
625
|
-
'@rollup/rollup-openbsd-x64@4.
|
|
626
|
-
resolution: {integrity: sha512-
|
|
641
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
642
|
+
resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==}
|
|
627
643
|
cpu: [x64]
|
|
628
644
|
os: [openbsd]
|
|
629
645
|
|
|
630
|
-
'@rollup/rollup-openharmony-arm64@4.
|
|
631
|
-
resolution: {integrity: sha512-
|
|
646
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
647
|
+
resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==}
|
|
632
648
|
cpu: [arm64]
|
|
633
649
|
os: [openharmony]
|
|
634
650
|
|
|
635
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
636
|
-
resolution: {integrity: sha512-
|
|
651
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
652
|
+
resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==}
|
|
637
653
|
cpu: [arm64]
|
|
638
654
|
os: [win32]
|
|
639
655
|
|
|
640
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
641
|
-
resolution: {integrity: sha512-
|
|
656
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
657
|
+
resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==}
|
|
642
658
|
cpu: [ia32]
|
|
643
659
|
os: [win32]
|
|
644
660
|
|
|
645
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
646
|
-
resolution: {integrity: sha512-
|
|
661
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
662
|
+
resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==}
|
|
647
663
|
cpu: [x64]
|
|
648
664
|
os: [win32]
|
|
649
665
|
|
|
650
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
651
|
-
resolution: {integrity: sha512-
|
|
666
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
667
|
+
resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==}
|
|
652
668
|
cpu: [x64]
|
|
653
669
|
os: [win32]
|
|
654
670
|
|
|
655
671
|
'@rtsao/scc@1.1.0':
|
|
656
672
|
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
|
|
657
673
|
|
|
658
|
-
'@shikijs/core@4.
|
|
659
|
-
resolution: {integrity: sha512-
|
|
674
|
+
'@shikijs/core@4.2.0':
|
|
675
|
+
resolution: {integrity: sha512-Hc87Ab1Ld/vEbZRCbwx344I5v+4RU8CVToUTRkqXL1+TjbuOp9U5Xa0M23V4GEWHxVn+yO5otb+HkQVm3ptWQQ==}
|
|
660
676
|
engines: {node: '>=20'}
|
|
661
677
|
|
|
662
|
-
'@shikijs/engine-javascript@4.
|
|
663
|
-
resolution: {integrity: sha512-
|
|
678
|
+
'@shikijs/engine-javascript@4.2.0':
|
|
679
|
+
resolution: {integrity: sha512-fjETeq1k5ffyXqRgS6+3hpvqseLalp1kjNfRbXpUgWR8FpZ1CmQfiNHovc5lncYjt/Vg5JK/WJEmLahjwMa0og==}
|
|
664
680
|
engines: {node: '>=20'}
|
|
665
681
|
|
|
666
|
-
'@shikijs/engine-oniguruma@4.
|
|
667
|
-
resolution: {integrity: sha512-
|
|
682
|
+
'@shikijs/engine-oniguruma@4.2.0':
|
|
683
|
+
resolution: {integrity: sha512-hTorK1dffPkpbMUk6Z+828PgRo7d07HbnizoP0hNPFjhxMHctj0Px/qoHeGMYafc6ju+u9iMldN4JbVzNQM++g==}
|
|
668
684
|
engines: {node: '>=20'}
|
|
669
685
|
|
|
670
|
-
'@shikijs/langs@4.
|
|
671
|
-
resolution: {integrity: sha512-
|
|
686
|
+
'@shikijs/langs@4.2.0':
|
|
687
|
+
resolution: {integrity: sha512-bwrVRlJ0wUhZxAbVdvBbv2TTC9yLsh4C/IO5Ofz0T8MQntgDvyVnkbjw9vi50r1kx7RCIJdnJnjZAwmAsXFLZQ==}
|
|
672
688
|
engines: {node: '>=20'}
|
|
673
689
|
|
|
674
|
-
'@shikijs/primitive@4.
|
|
675
|
-
resolution: {integrity: sha512-
|
|
690
|
+
'@shikijs/primitive@4.2.0':
|
|
691
|
+
resolution: {integrity: sha512-NOq+DtUkVBJtZMVXL5A0vI0Xk8nvDYaXetFHSJFlOqjDZIVhIPRYFdGkSoElDqNuegikcc3A76SNUa8dTqtAYA==}
|
|
676
692
|
engines: {node: '>=20'}
|
|
677
693
|
|
|
678
|
-
'@shikijs/themes@4.
|
|
679
|
-
resolution: {integrity: sha512-
|
|
694
|
+
'@shikijs/themes@4.2.0':
|
|
695
|
+
resolution: {integrity: sha512-RX8IHYeLv8Cu2W6ruc3RxUqWn0IYCqSrMBzi/uRGAmfyDNOnNO5BF/Px7o97n4XTpmFTo5GbRaazuOWj+2ak2w==}
|
|
680
696
|
engines: {node: '>=20'}
|
|
681
697
|
|
|
682
|
-
'@shikijs/types@4.
|
|
683
|
-
resolution: {integrity: sha512-
|
|
698
|
+
'@shikijs/types@4.2.0':
|
|
699
|
+
resolution: {integrity: sha512-VT/MKtlpOhEPZloSH3Pb9WCZEBDoQVMa9jedp5UAwmJOar1DVc9DRODAxmYPW9M93IK4ryuqRejFfmlvlVDemw==}
|
|
684
700
|
engines: {node: '>=20'}
|
|
685
701
|
|
|
686
702
|
'@shikijs/vscode-textmate@10.0.2':
|
|
@@ -689,9 +705,6 @@ packages:
|
|
|
689
705
|
'@types/debug@4.1.13':
|
|
690
706
|
resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==}
|
|
691
707
|
|
|
692
|
-
'@types/estree@1.0.8':
|
|
693
|
-
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
694
|
-
|
|
695
708
|
'@types/estree@1.0.9':
|
|
696
709
|
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
697
710
|
|
|
@@ -713,66 +726,72 @@ packages:
|
|
|
713
726
|
'@types/nlcst@2.0.3':
|
|
714
727
|
resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
|
|
715
728
|
|
|
729
|
+
'@types/node@25.9.2':
|
|
730
|
+
resolution: {integrity: sha512-G05zqtJhcDLb8uslf5EjCxXg9G1KQxiV8OS0R26IC//Eoyitzqe8z37I7cqvnZlrlSfgocQRfSn/AHBZJJFyGw==}
|
|
731
|
+
|
|
732
|
+
'@types/twig@1.12.17':
|
|
733
|
+
resolution: {integrity: sha512-Lxcjgzt4mlDrv1xp1EdoBLPTxpjLAt9vtN3/qoblC5D6hMCYgZJOQHfaT/0gwCcAZENnKQ7Sga28DSsckPWa0g==}
|
|
734
|
+
|
|
716
735
|
'@types/unist@3.0.3':
|
|
717
736
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
718
737
|
|
|
719
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
720
|
-
resolution: {integrity: sha512-
|
|
738
|
+
'@typescript-eslint/eslint-plugin@8.60.1':
|
|
739
|
+
resolution: {integrity: sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==}
|
|
721
740
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
722
741
|
peerDependencies:
|
|
723
|
-
'@typescript-eslint/parser': ^8.
|
|
742
|
+
'@typescript-eslint/parser': ^8.60.1
|
|
724
743
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
725
744
|
typescript: '>=4.8.4 <6.1.0'
|
|
726
745
|
|
|
727
|
-
'@typescript-eslint/parser@8.
|
|
728
|
-
resolution: {integrity: sha512-
|
|
746
|
+
'@typescript-eslint/parser@8.60.1':
|
|
747
|
+
resolution: {integrity: sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==}
|
|
729
748
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
730
749
|
peerDependencies:
|
|
731
750
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
732
751
|
typescript: '>=4.8.4 <6.1.0'
|
|
733
752
|
|
|
734
|
-
'@typescript-eslint/project-service@8.
|
|
735
|
-
resolution: {integrity: sha512-
|
|
753
|
+
'@typescript-eslint/project-service@8.60.1':
|
|
754
|
+
resolution: {integrity: sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==}
|
|
736
755
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
737
756
|
peerDependencies:
|
|
738
757
|
typescript: '>=4.8.4 <6.1.0'
|
|
739
758
|
|
|
740
|
-
'@typescript-eslint/scope-manager@8.
|
|
741
|
-
resolution: {integrity: sha512-
|
|
759
|
+
'@typescript-eslint/scope-manager@8.60.1':
|
|
760
|
+
resolution: {integrity: sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==}
|
|
742
761
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
743
762
|
|
|
744
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
745
|
-
resolution: {integrity: sha512-
|
|
763
|
+
'@typescript-eslint/tsconfig-utils@8.60.1':
|
|
764
|
+
resolution: {integrity: sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==}
|
|
746
765
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
747
766
|
peerDependencies:
|
|
748
767
|
typescript: '>=4.8.4 <6.1.0'
|
|
749
768
|
|
|
750
|
-
'@typescript-eslint/type-utils@8.
|
|
751
|
-
resolution: {integrity: sha512-
|
|
769
|
+
'@typescript-eslint/type-utils@8.60.1':
|
|
770
|
+
resolution: {integrity: sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==}
|
|
752
771
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
753
772
|
peerDependencies:
|
|
754
773
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
755
774
|
typescript: '>=4.8.4 <6.1.0'
|
|
756
775
|
|
|
757
|
-
'@typescript-eslint/types@8.
|
|
758
|
-
resolution: {integrity: sha512-
|
|
776
|
+
'@typescript-eslint/types@8.60.1':
|
|
777
|
+
resolution: {integrity: sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==}
|
|
759
778
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
760
779
|
|
|
761
|
-
'@typescript-eslint/typescript-estree@8.
|
|
762
|
-
resolution: {integrity: sha512-
|
|
780
|
+
'@typescript-eslint/typescript-estree@8.60.1':
|
|
781
|
+
resolution: {integrity: sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==}
|
|
763
782
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
764
783
|
peerDependencies:
|
|
765
784
|
typescript: '>=4.8.4 <6.1.0'
|
|
766
785
|
|
|
767
|
-
'@typescript-eslint/utils@8.
|
|
768
|
-
resolution: {integrity: sha512-
|
|
786
|
+
'@typescript-eslint/utils@8.60.1':
|
|
787
|
+
resolution: {integrity: sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==}
|
|
769
788
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
770
789
|
peerDependencies:
|
|
771
790
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
772
791
|
typescript: '>=4.8.4 <6.1.0'
|
|
773
792
|
|
|
774
|
-
'@typescript-eslint/visitor-keys@8.
|
|
775
|
-
resolution: {integrity: sha512-
|
|
793
|
+
'@typescript-eslint/visitor-keys@8.60.1':
|
|
794
|
+
resolution: {integrity: sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==}
|
|
776
795
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
777
796
|
|
|
778
797
|
'@ungap/structured-clone@1.3.1':
|
|
@@ -848,8 +867,8 @@ packages:
|
|
|
848
867
|
resolution: {integrity: sha512-+QDcgc7e+au6EZ0YjMmRRjNoQo5bDMlaR45aWDoFsuxQTCM9qmCHRoiKJPELgckJ8Wmr7vcfpa9eCDHBFh6G4w==}
|
|
849
868
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
850
869
|
|
|
851
|
-
astro@6.
|
|
852
|
-
resolution: {integrity: sha512-
|
|
870
|
+
astro@6.4.4:
|
|
871
|
+
resolution: {integrity: sha512-hVe8tq3lqt/Dr0UyB//yUmQSlHMTU8scTiF/vQddQVahLE4TTaSdH5H0nb7OvRcwo0UmlAO8DWYar4jNaS7H+A==}
|
|
853
872
|
engines: {node: '>=22.12.0', npm: '>=9.6.5', pnpm: '>=7.1.0'}
|
|
854
873
|
hasBin: true
|
|
855
874
|
|
|
@@ -889,8 +908,8 @@ packages:
|
|
|
889
908
|
boolbase@1.0.0:
|
|
890
909
|
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
891
910
|
|
|
892
|
-
brace-expansion@1.1.
|
|
893
|
-
resolution: {integrity: sha512-
|
|
911
|
+
brace-expansion@1.1.15:
|
|
912
|
+
resolution: {integrity: sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==}
|
|
894
913
|
|
|
895
914
|
brace-expansion@5.0.6:
|
|
896
915
|
resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
|
|
@@ -1019,8 +1038,8 @@ packages:
|
|
|
1019
1038
|
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
|
|
1020
1039
|
engines: {node: '>= 0.4'}
|
|
1021
1040
|
|
|
1022
|
-
dayjs@1.11.
|
|
1023
|
-
resolution: {integrity: sha512-
|
|
1041
|
+
dayjs@1.11.21:
|
|
1042
|
+
resolution: {integrity: sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==}
|
|
1024
1043
|
|
|
1025
1044
|
debug@3.2.7:
|
|
1026
1045
|
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
|
@@ -1148,8 +1167,8 @@ packages:
|
|
|
1148
1167
|
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
|
|
1149
1168
|
engines: {node: '>= 0.4'}
|
|
1150
1169
|
|
|
1151
|
-
esbuild@0.
|
|
1152
|
-
resolution: {integrity: sha512-
|
|
1170
|
+
esbuild@0.28.1:
|
|
1171
|
+
resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
|
|
1153
1172
|
engines: {node: '>=18'}
|
|
1154
1173
|
hasBin: true
|
|
1155
1174
|
|
|
@@ -1176,8 +1195,8 @@ packages:
|
|
|
1176
1195
|
eslint-import-resolver-node@0.3.10:
|
|
1177
1196
|
resolution: {integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==}
|
|
1178
1197
|
|
|
1179
|
-
eslint-module-utils@2.
|
|
1180
|
-
resolution: {integrity: sha512-
|
|
1198
|
+
eslint-module-utils@2.13.0:
|
|
1199
|
+
resolution: {integrity: sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ==}
|
|
1181
1200
|
engines: {node: '>=4'}
|
|
1182
1201
|
peerDependencies:
|
|
1183
1202
|
'@typescript-eslint/parser': '*'
|
|
@@ -1345,6 +1364,9 @@ packages:
|
|
|
1345
1364
|
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
|
|
1346
1365
|
engines: {node: '>= 0.4'}
|
|
1347
1366
|
|
|
1367
|
+
foreachasync@3.0.0:
|
|
1368
|
+
resolution: {integrity: sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==}
|
|
1369
|
+
|
|
1348
1370
|
fsevents@2.3.3:
|
|
1349
1371
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1350
1372
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1437,8 +1459,8 @@ packages:
|
|
|
1437
1459
|
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
1438
1460
|
engines: {node: '>= 0.4'}
|
|
1439
1461
|
|
|
1440
|
-
hasown@2.0.
|
|
1441
|
-
resolution: {integrity: sha512-
|
|
1462
|
+
hasown@2.0.4:
|
|
1463
|
+
resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
|
|
1442
1464
|
engines: {node: '>= 0.4'}
|
|
1443
1465
|
|
|
1444
1466
|
hast-util-from-html@2.0.3:
|
|
@@ -1636,8 +1658,8 @@ packages:
|
|
|
1636
1658
|
isexe@2.0.0:
|
|
1637
1659
|
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1638
1660
|
|
|
1639
|
-
js-yaml@4.
|
|
1640
|
-
resolution: {integrity: sha512-
|
|
1661
|
+
js-yaml@4.2.0:
|
|
1662
|
+
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
1641
1663
|
hasBin: true
|
|
1642
1664
|
|
|
1643
1665
|
json-buffer@3.0.1:
|
|
@@ -1670,6 +1692,10 @@ packages:
|
|
|
1670
1692
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1671
1693
|
engines: {node: '>=10'}
|
|
1672
1694
|
|
|
1695
|
+
locutus@3.0.36:
|
|
1696
|
+
resolution: {integrity: sha512-ilsz33lqEd+KerV9JnSHM9EApVYOZ86/JTGKyafmWvhTFtjYauzT1WmZgdJ4JBGR3dY0N0PTfIq2uLvazw5QsQ==}
|
|
1697
|
+
engines: {node: '>= 22', yarn: '>= 1'}
|
|
1698
|
+
|
|
1673
1699
|
lodash.get@4.4.2:
|
|
1674
1700
|
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
|
|
1675
1701
|
deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
|
|
@@ -1683,8 +1709,8 @@ packages:
|
|
|
1683
1709
|
longest-streak@3.1.0:
|
|
1684
1710
|
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
|
|
1685
1711
|
|
|
1686
|
-
lru-cache@11.5.
|
|
1687
|
-
resolution: {integrity: sha512-
|
|
1712
|
+
lru-cache@11.5.1:
|
|
1713
|
+
resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==}
|
|
1688
1714
|
engines: {node: 20 || >=22}
|
|
1689
1715
|
|
|
1690
1716
|
magic-string@0.30.21:
|
|
@@ -1918,8 +1944,9 @@ packages:
|
|
|
1918
1944
|
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
|
|
1919
1945
|
engines: {node: '>= 0.4'}
|
|
1920
1946
|
|
|
1921
|
-
obug@2.1.
|
|
1922
|
-
resolution: {integrity: sha512-
|
|
1947
|
+
obug@2.1.2:
|
|
1948
|
+
resolution: {integrity: sha512-AWGB9WFcRXOQs48Z/udjI5ZcZMHXwX8XPByNpOydgcGsDLIzjGizhoMWJyKAWze7AVW/2W1i+/gPX4YtKe5cyg==}
|
|
1949
|
+
engines: {node: '>=12.20.0'}
|
|
1923
1950
|
|
|
1924
1951
|
ofetch@1.5.1:
|
|
1925
1952
|
resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
|
|
@@ -2024,8 +2051,8 @@ packages:
|
|
|
2024
2051
|
resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
|
|
2025
2052
|
engines: {node: '>=6'}
|
|
2026
2053
|
|
|
2027
|
-
property-information@7.
|
|
2028
|
-
resolution: {integrity: sha512-
|
|
2054
|
+
property-information@7.2.0:
|
|
2055
|
+
resolution: {integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==}
|
|
2029
2056
|
|
|
2030
2057
|
punycode@2.3.1:
|
|
2031
2058
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
@@ -2118,8 +2145,8 @@ packages:
|
|
|
2118
2145
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
2119
2146
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
2120
2147
|
|
|
2121
|
-
rollup@4.
|
|
2122
|
-
resolution: {integrity: sha512-
|
|
2148
|
+
rollup@4.61.1:
|
|
2149
|
+
resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==}
|
|
2123
2150
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
2124
2151
|
hasBin: true
|
|
2125
2152
|
|
|
@@ -2146,8 +2173,8 @@ packages:
|
|
|
2146
2173
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
2147
2174
|
hasBin: true
|
|
2148
2175
|
|
|
2149
|
-
semver@7.8.
|
|
2150
|
-
resolution: {integrity: sha512-
|
|
2176
|
+
semver@7.8.2:
|
|
2177
|
+
resolution: {integrity: sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==}
|
|
2151
2178
|
engines: {node: '>=10'}
|
|
2152
2179
|
hasBin: true
|
|
2153
2180
|
|
|
@@ -2175,8 +2202,8 @@ packages:
|
|
|
2175
2202
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
2176
2203
|
engines: {node: '>=8'}
|
|
2177
2204
|
|
|
2178
|
-
shiki@4.
|
|
2179
|
-
resolution: {integrity: sha512-
|
|
2205
|
+
shiki@4.2.0:
|
|
2206
|
+
resolution: {integrity: sha512-hjNax6o/ylDy9lefQEaSDtzaT3iVNtZ3WmpQnbuQNoG4xvnSKf2kSKbihZVO4JRG1TTMejs7CmNRYlWgAL66pQ==}
|
|
2180
2207
|
engines: {node: '>=20'}
|
|
2181
2208
|
|
|
2182
2209
|
side-channel-list@1.0.1:
|
|
@@ -2221,12 +2248,12 @@ packages:
|
|
|
2221
2248
|
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
2222
2249
|
engines: {node: '>=8'}
|
|
2223
2250
|
|
|
2224
|
-
string.prototype.trim@1.2.
|
|
2225
|
-
resolution: {integrity: sha512-
|
|
2251
|
+
string.prototype.trim@1.2.11:
|
|
2252
|
+
resolution: {integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==}
|
|
2226
2253
|
engines: {node: '>= 0.4'}
|
|
2227
2254
|
|
|
2228
|
-
string.prototype.trimend@1.0.
|
|
2229
|
-
resolution: {integrity: sha512-
|
|
2255
|
+
string.prototype.trimend@1.0.10:
|
|
2256
|
+
resolution: {integrity: sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==}
|
|
2230
2257
|
engines: {node: '>= 0.4'}
|
|
2231
2258
|
|
|
2232
2259
|
string.prototype.trimstart@1.0.8:
|
|
@@ -2261,8 +2288,8 @@ packages:
|
|
|
2261
2288
|
engines: {node: '>=16'}
|
|
2262
2289
|
hasBin: true
|
|
2263
2290
|
|
|
2264
|
-
synckit@0.11.
|
|
2265
|
-
resolution: {integrity: sha512-
|
|
2291
|
+
synckit@0.11.13:
|
|
2292
|
+
resolution: {integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg==}
|
|
2266
2293
|
engines: {node: ^14.18.0 || >=16.0.0}
|
|
2267
2294
|
|
|
2268
2295
|
table@6.9.0:
|
|
@@ -2272,16 +2299,16 @@ packages:
|
|
|
2272
2299
|
tiny-inflate@1.0.3:
|
|
2273
2300
|
resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
|
|
2274
2301
|
|
|
2275
|
-
tinyclip@0.1.
|
|
2276
|
-
resolution: {integrity: sha512-
|
|
2302
|
+
tinyclip@0.1.14:
|
|
2303
|
+
resolution: {integrity: sha512-F1oWdz8tjT17qe1d5JgDK6z03WGOhYYAN0lK3/D/fzNiy93xswLLEw7pk+3g05onhAy6Bsc6PLNUGhdgVjemMQ==}
|
|
2277
2304
|
engines: {node: ^16.14.0 || >= 17.3.0}
|
|
2278
2305
|
|
|
2279
|
-
tinyexec@1.2.
|
|
2280
|
-
resolution: {integrity: sha512-
|
|
2306
|
+
tinyexec@1.2.4:
|
|
2307
|
+
resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==}
|
|
2281
2308
|
engines: {node: '>=18'}
|
|
2282
2309
|
|
|
2283
|
-
tinyglobby@0.2.
|
|
2284
|
-
resolution: {integrity: sha512-
|
|
2310
|
+
tinyglobby@0.2.17:
|
|
2311
|
+
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
|
2285
2312
|
engines: {node: '>=12.0.0'}
|
|
2286
2313
|
|
|
2287
2314
|
to-regex-range@5.0.1:
|
|
@@ -2306,6 +2333,11 @@ packages:
|
|
|
2306
2333
|
tslib@2.8.1:
|
|
2307
2334
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2308
2335
|
|
|
2336
|
+
twig@3.0.0:
|
|
2337
|
+
resolution: {integrity: sha512-cMfYLWAgdW15B7L5wmanmga113e4phQmo3rk5EFuUrQd99g7I3ncxgynS38P01m4ZXBDSdMYUTV1g3A66/Y56Q==}
|
|
2338
|
+
engines: {node: '>=22'}
|
|
2339
|
+
hasBin: true
|
|
2340
|
+
|
|
2309
2341
|
type-check@0.4.0:
|
|
2310
2342
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
2311
2343
|
engines: {node: '>= 0.8.0'}
|
|
@@ -2322,12 +2354,12 @@ packages:
|
|
|
2322
2354
|
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
|
|
2323
2355
|
engines: {node: '>= 0.4'}
|
|
2324
2356
|
|
|
2325
|
-
typed-array-length@1.0.
|
|
2326
|
-
resolution: {integrity: sha512-
|
|
2357
|
+
typed-array-length@1.0.8:
|
|
2358
|
+
resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==}
|
|
2327
2359
|
engines: {node: '>= 0.4'}
|
|
2328
2360
|
|
|
2329
|
-
typescript-eslint@8.
|
|
2330
|
-
resolution: {integrity: sha512-
|
|
2361
|
+
typescript-eslint@8.60.1:
|
|
2362
|
+
resolution: {integrity: sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==}
|
|
2331
2363
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2332
2364
|
peerDependencies:
|
|
2333
2365
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -2351,6 +2383,9 @@ packages:
|
|
|
2351
2383
|
uncrypto@0.1.3:
|
|
2352
2384
|
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
|
|
2353
2385
|
|
|
2386
|
+
undici-types@7.24.6:
|
|
2387
|
+
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
2388
|
+
|
|
2354
2389
|
unified@11.0.5:
|
|
2355
2390
|
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
|
|
2356
2391
|
|
|
@@ -2461,8 +2496,8 @@ packages:
|
|
|
2461
2496
|
vfile@6.0.3:
|
|
2462
2497
|
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
2463
2498
|
|
|
2464
|
-
vite@7.3.
|
|
2465
|
-
resolution: {integrity: sha512
|
|
2499
|
+
vite@7.3.5:
|
|
2500
|
+
resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==}
|
|
2466
2501
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
2467
2502
|
hasBin: true
|
|
2468
2503
|
peerDependencies:
|
|
@@ -2509,6 +2544,9 @@ packages:
|
|
|
2509
2544
|
vite:
|
|
2510
2545
|
optional: true
|
|
2511
2546
|
|
|
2547
|
+
walk@2.3.15:
|
|
2548
|
+
resolution: {integrity: sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==}
|
|
2549
|
+
|
|
2512
2550
|
web-namespaces@2.0.1:
|
|
2513
2551
|
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
|
|
2514
2552
|
|
|
@@ -2528,8 +2566,8 @@ packages:
|
|
|
2528
2566
|
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
|
|
2529
2567
|
engines: {node: '>=4'}
|
|
2530
2568
|
|
|
2531
|
-
which-typed-array@1.1.
|
|
2532
|
-
resolution: {integrity: sha512-
|
|
2569
|
+
which-typed-array@1.1.22:
|
|
2570
|
+
resolution: {integrity: sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==}
|
|
2533
2571
|
engines: {node: '>= 0.4'}
|
|
2534
2572
|
|
|
2535
2573
|
which@2.0.2:
|
|
@@ -2568,18 +2606,24 @@ snapshots:
|
|
|
2568
2606
|
|
|
2569
2607
|
'@astrojs/compiler@4.0.0': {}
|
|
2570
2608
|
|
|
2571
|
-
'@astrojs/internal-helpers@0.
|
|
2609
|
+
'@astrojs/internal-helpers@0.10.0':
|
|
2572
2610
|
dependencies:
|
|
2611
|
+
'@types/hast': 3.0.4
|
|
2612
|
+
'@types/mdast': 4.0.4
|
|
2613
|
+
js-yaml: 4.2.0
|
|
2573
2614
|
picomatch: 4.0.4
|
|
2615
|
+
retext-smartypants: 6.2.0
|
|
2616
|
+
shiki: 4.2.0
|
|
2617
|
+
smol-toml: 1.6.1
|
|
2618
|
+
unified: 11.0.5
|
|
2574
2619
|
|
|
2575
|
-
'@astrojs/markdown-remark@7.
|
|
2620
|
+
'@astrojs/markdown-remark@7.2.0':
|
|
2576
2621
|
dependencies:
|
|
2577
|
-
'@astrojs/internal-helpers': 0.
|
|
2622
|
+
'@astrojs/internal-helpers': 0.10.0
|
|
2578
2623
|
'@astrojs/prism': 4.0.2
|
|
2579
2624
|
github-slugger: 2.0.0
|
|
2580
2625
|
hast-util-from-html: 2.0.3
|
|
2581
2626
|
hast-util-to-text: 4.0.2
|
|
2582
|
-
js-yaml: 4.1.1
|
|
2583
2627
|
mdast-util-definitions: 6.0.0
|
|
2584
2628
|
rehype-raw: 7.0.0
|
|
2585
2629
|
rehype-stringify: 10.0.1
|
|
@@ -2587,9 +2631,6 @@ snapshots:
|
|
|
2587
2631
|
remark-parse: 11.0.0
|
|
2588
2632
|
remark-rehype: 11.1.2
|
|
2589
2633
|
remark-smartypants: 3.0.2
|
|
2590
|
-
retext-smartypants: 6.2.0
|
|
2591
|
-
shiki: 4.1.0
|
|
2592
|
-
smol-toml: 1.6.1
|
|
2593
2634
|
unified: 11.0.5
|
|
2594
2635
|
unist-util-remove-position: 5.0.0
|
|
2595
2636
|
unist-util-visit: 5.1.0
|
|
@@ -2610,31 +2651,33 @@ snapshots:
|
|
|
2610
2651
|
is-wsl: 3.1.1
|
|
2611
2652
|
which-pm-runs: 1.1.0
|
|
2612
2653
|
|
|
2613
|
-
'@babel/helper-string-parser@7.
|
|
2654
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
2614
2655
|
|
|
2615
|
-
'@babel/helper-validator-identifier@7.
|
|
2656
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
2616
2657
|
|
|
2617
|
-
'@babel/parser@7.29.
|
|
2658
|
+
'@babel/parser@7.29.7':
|
|
2618
2659
|
dependencies:
|
|
2619
|
-
'@babel/types': 7.29.
|
|
2660
|
+
'@babel/types': 7.29.7
|
|
2620
2661
|
|
|
2621
|
-
'@babel/
|
|
2662
|
+
'@babel/runtime@7.29.7': {}
|
|
2663
|
+
|
|
2664
|
+
'@babel/types@7.29.7':
|
|
2622
2665
|
dependencies:
|
|
2623
|
-
'@babel/helper-string-parser': 7.
|
|
2624
|
-
'@babel/helper-validator-identifier': 7.
|
|
2666
|
+
'@babel/helper-string-parser': 7.29.7
|
|
2667
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
2625
2668
|
|
|
2626
2669
|
'@capsizecss/unpack@4.0.0':
|
|
2627
2670
|
dependencies:
|
|
2628
2671
|
fontkitten: 1.0.3
|
|
2629
2672
|
|
|
2630
|
-
'@clack/core@1.
|
|
2673
|
+
'@clack/core@1.4.1':
|
|
2631
2674
|
dependencies:
|
|
2632
2675
|
fast-wrap-ansi: 0.2.2
|
|
2633
2676
|
sisteransi: 1.0.5
|
|
2634
2677
|
|
|
2635
|
-
'@clack/prompts@1.
|
|
2678
|
+
'@clack/prompts@1.5.1':
|
|
2636
2679
|
dependencies:
|
|
2637
|
-
'@clack/core': 1.
|
|
2680
|
+
'@clack/core': 1.4.1
|
|
2638
2681
|
fast-string-width: 3.0.2
|
|
2639
2682
|
fast-wrap-ansi: 0.2.2
|
|
2640
2683
|
sisteransi: 1.0.5
|
|
@@ -2644,82 +2687,82 @@ snapshots:
|
|
|
2644
2687
|
tslib: 2.8.1
|
|
2645
2688
|
optional: true
|
|
2646
2689
|
|
|
2647
|
-
'@esbuild/aix-ppc64@0.
|
|
2690
|
+
'@esbuild/aix-ppc64@0.28.1':
|
|
2648
2691
|
optional: true
|
|
2649
2692
|
|
|
2650
|
-
'@esbuild/android-arm64@0.
|
|
2693
|
+
'@esbuild/android-arm64@0.28.1':
|
|
2651
2694
|
optional: true
|
|
2652
2695
|
|
|
2653
|
-
'@esbuild/android-arm@0.
|
|
2696
|
+
'@esbuild/android-arm@0.28.1':
|
|
2654
2697
|
optional: true
|
|
2655
2698
|
|
|
2656
|
-
'@esbuild/android-x64@0.
|
|
2699
|
+
'@esbuild/android-x64@0.28.1':
|
|
2657
2700
|
optional: true
|
|
2658
2701
|
|
|
2659
|
-
'@esbuild/darwin-arm64@0.
|
|
2702
|
+
'@esbuild/darwin-arm64@0.28.1':
|
|
2660
2703
|
optional: true
|
|
2661
2704
|
|
|
2662
|
-
'@esbuild/darwin-x64@0.
|
|
2705
|
+
'@esbuild/darwin-x64@0.28.1':
|
|
2663
2706
|
optional: true
|
|
2664
2707
|
|
|
2665
|
-
'@esbuild/freebsd-arm64@0.
|
|
2708
|
+
'@esbuild/freebsd-arm64@0.28.1':
|
|
2666
2709
|
optional: true
|
|
2667
2710
|
|
|
2668
|
-
'@esbuild/freebsd-x64@0.
|
|
2711
|
+
'@esbuild/freebsd-x64@0.28.1':
|
|
2669
2712
|
optional: true
|
|
2670
2713
|
|
|
2671
|
-
'@esbuild/linux-arm64@0.
|
|
2714
|
+
'@esbuild/linux-arm64@0.28.1':
|
|
2672
2715
|
optional: true
|
|
2673
2716
|
|
|
2674
|
-
'@esbuild/linux-arm@0.
|
|
2717
|
+
'@esbuild/linux-arm@0.28.1':
|
|
2675
2718
|
optional: true
|
|
2676
2719
|
|
|
2677
|
-
'@esbuild/linux-ia32@0.
|
|
2720
|
+
'@esbuild/linux-ia32@0.28.1':
|
|
2678
2721
|
optional: true
|
|
2679
2722
|
|
|
2680
|
-
'@esbuild/linux-loong64@0.
|
|
2723
|
+
'@esbuild/linux-loong64@0.28.1':
|
|
2681
2724
|
optional: true
|
|
2682
2725
|
|
|
2683
|
-
'@esbuild/linux-mips64el@0.
|
|
2726
|
+
'@esbuild/linux-mips64el@0.28.1':
|
|
2684
2727
|
optional: true
|
|
2685
2728
|
|
|
2686
|
-
'@esbuild/linux-ppc64@0.
|
|
2729
|
+
'@esbuild/linux-ppc64@0.28.1':
|
|
2687
2730
|
optional: true
|
|
2688
2731
|
|
|
2689
|
-
'@esbuild/linux-riscv64@0.
|
|
2732
|
+
'@esbuild/linux-riscv64@0.28.1':
|
|
2690
2733
|
optional: true
|
|
2691
2734
|
|
|
2692
|
-
'@esbuild/linux-s390x@0.
|
|
2735
|
+
'@esbuild/linux-s390x@0.28.1':
|
|
2693
2736
|
optional: true
|
|
2694
2737
|
|
|
2695
|
-
'@esbuild/linux-x64@0.
|
|
2738
|
+
'@esbuild/linux-x64@0.28.1':
|
|
2696
2739
|
optional: true
|
|
2697
2740
|
|
|
2698
|
-
'@esbuild/netbsd-arm64@0.
|
|
2741
|
+
'@esbuild/netbsd-arm64@0.28.1':
|
|
2699
2742
|
optional: true
|
|
2700
2743
|
|
|
2701
|
-
'@esbuild/netbsd-x64@0.
|
|
2744
|
+
'@esbuild/netbsd-x64@0.28.1':
|
|
2702
2745
|
optional: true
|
|
2703
2746
|
|
|
2704
|
-
'@esbuild/openbsd-arm64@0.
|
|
2747
|
+
'@esbuild/openbsd-arm64@0.28.1':
|
|
2705
2748
|
optional: true
|
|
2706
2749
|
|
|
2707
|
-
'@esbuild/openbsd-x64@0.
|
|
2750
|
+
'@esbuild/openbsd-x64@0.28.1':
|
|
2708
2751
|
optional: true
|
|
2709
2752
|
|
|
2710
|
-
'@esbuild/openharmony-arm64@0.
|
|
2753
|
+
'@esbuild/openharmony-arm64@0.28.1':
|
|
2711
2754
|
optional: true
|
|
2712
2755
|
|
|
2713
|
-
'@esbuild/sunos-x64@0.
|
|
2756
|
+
'@esbuild/sunos-x64@0.28.1':
|
|
2714
2757
|
optional: true
|
|
2715
2758
|
|
|
2716
|
-
'@esbuild/win32-arm64@0.
|
|
2759
|
+
'@esbuild/win32-arm64@0.28.1':
|
|
2717
2760
|
optional: true
|
|
2718
2761
|
|
|
2719
|
-
'@esbuild/win32-ia32@0.
|
|
2762
|
+
'@esbuild/win32-ia32@0.28.1':
|
|
2720
2763
|
optional: true
|
|
2721
2764
|
|
|
2722
|
-
'@esbuild/win32-x64@0.
|
|
2765
|
+
'@esbuild/win32-x64@0.28.1':
|
|
2723
2766
|
optional: true
|
|
2724
2767
|
|
|
2725
2768
|
'@eslint-community/eslint-utils@4.9.1(eslint@9.39.4)':
|
|
@@ -2763,7 +2806,7 @@ snapshots:
|
|
|
2763
2806
|
globals: 14.0.0
|
|
2764
2807
|
ignore: 5.3.2
|
|
2765
2808
|
import-fresh: 3.3.1
|
|
2766
|
-
js-yaml: 4.
|
|
2809
|
+
js-yaml: 4.2.0
|
|
2767
2810
|
minimatch: 3.1.5
|
|
2768
2811
|
strip-json-comments: 3.1.1
|
|
2769
2812
|
transitivePeerDependencies:
|
|
@@ -2907,127 +2950,127 @@ snapshots:
|
|
|
2907
2950
|
|
|
2908
2951
|
'@oslojs/encoding@1.1.0': {}
|
|
2909
2952
|
|
|
2910
|
-
'@pkgr/core@0.
|
|
2953
|
+
'@pkgr/core@0.3.6': {}
|
|
2911
2954
|
|
|
2912
|
-
'@rollup/pluginutils@5.
|
|
2955
|
+
'@rollup/pluginutils@5.4.0(rollup@4.61.1)':
|
|
2913
2956
|
dependencies:
|
|
2914
2957
|
'@types/estree': 1.0.9
|
|
2915
2958
|
estree-walker: 2.0.2
|
|
2916
2959
|
picomatch: 4.0.4
|
|
2917
2960
|
optionalDependencies:
|
|
2918
|
-
rollup: 4.
|
|
2961
|
+
rollup: 4.61.1
|
|
2919
2962
|
|
|
2920
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
2963
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
2921
2964
|
optional: true
|
|
2922
2965
|
|
|
2923
|
-
'@rollup/rollup-android-arm64@4.
|
|
2966
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
2924
2967
|
optional: true
|
|
2925
2968
|
|
|
2926
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
2969
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
2927
2970
|
optional: true
|
|
2928
2971
|
|
|
2929
|
-
'@rollup/rollup-darwin-x64@4.
|
|
2972
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
2930
2973
|
optional: true
|
|
2931
2974
|
|
|
2932
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
2975
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
2933
2976
|
optional: true
|
|
2934
2977
|
|
|
2935
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
2978
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
2936
2979
|
optional: true
|
|
2937
2980
|
|
|
2938
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
2981
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
2939
2982
|
optional: true
|
|
2940
2983
|
|
|
2941
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
2984
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
2942
2985
|
optional: true
|
|
2943
2986
|
|
|
2944
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
2987
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
2945
2988
|
optional: true
|
|
2946
2989
|
|
|
2947
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
2990
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
2948
2991
|
optional: true
|
|
2949
2992
|
|
|
2950
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
2993
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
2951
2994
|
optional: true
|
|
2952
2995
|
|
|
2953
|
-
'@rollup/rollup-linux-loong64-musl@4.
|
|
2996
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
2954
2997
|
optional: true
|
|
2955
2998
|
|
|
2956
|
-
'@rollup/rollup-linux-ppc64-gnu@4.
|
|
2999
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
2957
3000
|
optional: true
|
|
2958
3001
|
|
|
2959
|
-
'@rollup/rollup-linux-ppc64-musl@4.
|
|
3002
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
2960
3003
|
optional: true
|
|
2961
3004
|
|
|
2962
|
-
'@rollup/rollup-linux-riscv64-gnu@4.
|
|
3005
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
2963
3006
|
optional: true
|
|
2964
3007
|
|
|
2965
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
3008
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
2966
3009
|
optional: true
|
|
2967
3010
|
|
|
2968
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
3011
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
2969
3012
|
optional: true
|
|
2970
3013
|
|
|
2971
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
3014
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
2972
3015
|
optional: true
|
|
2973
3016
|
|
|
2974
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
3017
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
2975
3018
|
optional: true
|
|
2976
3019
|
|
|
2977
|
-
'@rollup/rollup-openbsd-x64@4.
|
|
3020
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
2978
3021
|
optional: true
|
|
2979
3022
|
|
|
2980
|
-
'@rollup/rollup-openharmony-arm64@4.
|
|
3023
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
2981
3024
|
optional: true
|
|
2982
3025
|
|
|
2983
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
3026
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
2984
3027
|
optional: true
|
|
2985
3028
|
|
|
2986
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
3029
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
2987
3030
|
optional: true
|
|
2988
3031
|
|
|
2989
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
3032
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
2990
3033
|
optional: true
|
|
2991
3034
|
|
|
2992
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
3035
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
2993
3036
|
optional: true
|
|
2994
3037
|
|
|
2995
3038
|
'@rtsao/scc@1.1.0': {}
|
|
2996
3039
|
|
|
2997
|
-
'@shikijs/core@4.
|
|
3040
|
+
'@shikijs/core@4.2.0':
|
|
2998
3041
|
dependencies:
|
|
2999
|
-
'@shikijs/primitive': 4.
|
|
3000
|
-
'@shikijs/types': 4.
|
|
3042
|
+
'@shikijs/primitive': 4.2.0
|
|
3043
|
+
'@shikijs/types': 4.2.0
|
|
3001
3044
|
'@shikijs/vscode-textmate': 10.0.2
|
|
3002
3045
|
'@types/hast': 3.0.4
|
|
3003
3046
|
hast-util-to-html: 9.0.5
|
|
3004
3047
|
|
|
3005
|
-
'@shikijs/engine-javascript@4.
|
|
3048
|
+
'@shikijs/engine-javascript@4.2.0':
|
|
3006
3049
|
dependencies:
|
|
3007
|
-
'@shikijs/types': 4.
|
|
3050
|
+
'@shikijs/types': 4.2.0
|
|
3008
3051
|
'@shikijs/vscode-textmate': 10.0.2
|
|
3009
3052
|
oniguruma-to-es: 4.3.6
|
|
3010
3053
|
|
|
3011
|
-
'@shikijs/engine-oniguruma@4.
|
|
3054
|
+
'@shikijs/engine-oniguruma@4.2.0':
|
|
3012
3055
|
dependencies:
|
|
3013
|
-
'@shikijs/types': 4.
|
|
3056
|
+
'@shikijs/types': 4.2.0
|
|
3014
3057
|
'@shikijs/vscode-textmate': 10.0.2
|
|
3015
3058
|
|
|
3016
|
-
'@shikijs/langs@4.
|
|
3059
|
+
'@shikijs/langs@4.2.0':
|
|
3017
3060
|
dependencies:
|
|
3018
|
-
'@shikijs/types': 4.
|
|
3061
|
+
'@shikijs/types': 4.2.0
|
|
3019
3062
|
|
|
3020
|
-
'@shikijs/primitive@4.
|
|
3063
|
+
'@shikijs/primitive@4.2.0':
|
|
3021
3064
|
dependencies:
|
|
3022
|
-
'@shikijs/types': 4.
|
|
3065
|
+
'@shikijs/types': 4.2.0
|
|
3023
3066
|
'@shikijs/vscode-textmate': 10.0.2
|
|
3024
3067
|
'@types/hast': 3.0.4
|
|
3025
3068
|
|
|
3026
|
-
'@shikijs/themes@4.
|
|
3069
|
+
'@shikijs/themes@4.2.0':
|
|
3027
3070
|
dependencies:
|
|
3028
|
-
'@shikijs/types': 4.
|
|
3071
|
+
'@shikijs/types': 4.2.0
|
|
3029
3072
|
|
|
3030
|
-
'@shikijs/types@4.
|
|
3073
|
+
'@shikijs/types@4.2.0':
|
|
3031
3074
|
dependencies:
|
|
3032
3075
|
'@shikijs/vscode-textmate': 10.0.2
|
|
3033
3076
|
'@types/hast': 3.0.4
|
|
@@ -3038,8 +3081,6 @@ snapshots:
|
|
|
3038
3081
|
dependencies:
|
|
3039
3082
|
'@types/ms': 2.1.0
|
|
3040
3083
|
|
|
3041
|
-
'@types/estree@1.0.8': {}
|
|
3042
|
-
|
|
3043
3084
|
'@types/estree@1.0.9': {}
|
|
3044
3085
|
|
|
3045
3086
|
'@types/hast@3.0.4':
|
|
@@ -3060,16 +3101,22 @@ snapshots:
|
|
|
3060
3101
|
dependencies:
|
|
3061
3102
|
'@types/unist': 3.0.3
|
|
3062
3103
|
|
|
3104
|
+
'@types/node@25.9.2':
|
|
3105
|
+
dependencies:
|
|
3106
|
+
undici-types: 7.24.6
|
|
3107
|
+
|
|
3108
|
+
'@types/twig@1.12.17': {}
|
|
3109
|
+
|
|
3063
3110
|
'@types/unist@3.0.3': {}
|
|
3064
3111
|
|
|
3065
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
3112
|
+
'@typescript-eslint/eslint-plugin@8.60.1(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)(typescript@5.9.3)':
|
|
3066
3113
|
dependencies:
|
|
3067
3114
|
'@eslint-community/regexpp': 4.12.2
|
|
3068
|
-
'@typescript-eslint/parser': 8.
|
|
3069
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3070
|
-
'@typescript-eslint/type-utils': 8.
|
|
3071
|
-
'@typescript-eslint/utils': 8.
|
|
3072
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3115
|
+
'@typescript-eslint/parser': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3116
|
+
'@typescript-eslint/scope-manager': 8.60.1
|
|
3117
|
+
'@typescript-eslint/type-utils': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3118
|
+
'@typescript-eslint/utils': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3119
|
+
'@typescript-eslint/visitor-keys': 8.60.1
|
|
3073
3120
|
eslint: 9.39.4
|
|
3074
3121
|
ignore: 7.0.5
|
|
3075
3122
|
natural-compare: 1.4.0
|
|
@@ -3078,41 +3125,41 @@ snapshots:
|
|
|
3078
3125
|
transitivePeerDependencies:
|
|
3079
3126
|
- supports-color
|
|
3080
3127
|
|
|
3081
|
-
'@typescript-eslint/parser@8.
|
|
3128
|
+
'@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3)':
|
|
3082
3129
|
dependencies:
|
|
3083
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3084
|
-
'@typescript-eslint/types': 8.
|
|
3085
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3086
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3130
|
+
'@typescript-eslint/scope-manager': 8.60.1
|
|
3131
|
+
'@typescript-eslint/types': 8.60.1
|
|
3132
|
+
'@typescript-eslint/typescript-estree': 8.60.1(typescript@5.9.3)
|
|
3133
|
+
'@typescript-eslint/visitor-keys': 8.60.1
|
|
3087
3134
|
debug: 4.4.3
|
|
3088
3135
|
eslint: 9.39.4
|
|
3089
3136
|
typescript: 5.9.3
|
|
3090
3137
|
transitivePeerDependencies:
|
|
3091
3138
|
- supports-color
|
|
3092
3139
|
|
|
3093
|
-
'@typescript-eslint/project-service@8.
|
|
3140
|
+
'@typescript-eslint/project-service@8.60.1(typescript@5.9.3)':
|
|
3094
3141
|
dependencies:
|
|
3095
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3096
|
-
'@typescript-eslint/types': 8.
|
|
3142
|
+
'@typescript-eslint/tsconfig-utils': 8.60.1(typescript@5.9.3)
|
|
3143
|
+
'@typescript-eslint/types': 8.60.1
|
|
3097
3144
|
debug: 4.4.3
|
|
3098
3145
|
typescript: 5.9.3
|
|
3099
3146
|
transitivePeerDependencies:
|
|
3100
3147
|
- supports-color
|
|
3101
3148
|
|
|
3102
|
-
'@typescript-eslint/scope-manager@8.
|
|
3149
|
+
'@typescript-eslint/scope-manager@8.60.1':
|
|
3103
3150
|
dependencies:
|
|
3104
|
-
'@typescript-eslint/types': 8.
|
|
3105
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3151
|
+
'@typescript-eslint/types': 8.60.1
|
|
3152
|
+
'@typescript-eslint/visitor-keys': 8.60.1
|
|
3106
3153
|
|
|
3107
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
3154
|
+
'@typescript-eslint/tsconfig-utils@8.60.1(typescript@5.9.3)':
|
|
3108
3155
|
dependencies:
|
|
3109
3156
|
typescript: 5.9.3
|
|
3110
3157
|
|
|
3111
|
-
'@typescript-eslint/type-utils@8.
|
|
3158
|
+
'@typescript-eslint/type-utils@8.60.1(eslint@9.39.4)(typescript@5.9.3)':
|
|
3112
3159
|
dependencies:
|
|
3113
|
-
'@typescript-eslint/types': 8.
|
|
3114
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3115
|
-
'@typescript-eslint/utils': 8.
|
|
3160
|
+
'@typescript-eslint/types': 8.60.1
|
|
3161
|
+
'@typescript-eslint/typescript-estree': 8.60.1(typescript@5.9.3)
|
|
3162
|
+
'@typescript-eslint/utils': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3116
3163
|
debug: 4.4.3
|
|
3117
3164
|
eslint: 9.39.4
|
|
3118
3165
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -3120,37 +3167,37 @@ snapshots:
|
|
|
3120
3167
|
transitivePeerDependencies:
|
|
3121
3168
|
- supports-color
|
|
3122
3169
|
|
|
3123
|
-
'@typescript-eslint/types@8.
|
|
3170
|
+
'@typescript-eslint/types@8.60.1': {}
|
|
3124
3171
|
|
|
3125
|
-
'@typescript-eslint/typescript-estree@8.
|
|
3172
|
+
'@typescript-eslint/typescript-estree@8.60.1(typescript@5.9.3)':
|
|
3126
3173
|
dependencies:
|
|
3127
|
-
'@typescript-eslint/project-service': 8.
|
|
3128
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3129
|
-
'@typescript-eslint/types': 8.
|
|
3130
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
3174
|
+
'@typescript-eslint/project-service': 8.60.1(typescript@5.9.3)
|
|
3175
|
+
'@typescript-eslint/tsconfig-utils': 8.60.1(typescript@5.9.3)
|
|
3176
|
+
'@typescript-eslint/types': 8.60.1
|
|
3177
|
+
'@typescript-eslint/visitor-keys': 8.60.1
|
|
3131
3178
|
debug: 4.4.3
|
|
3132
3179
|
minimatch: 10.2.5
|
|
3133
|
-
semver: 7.8.
|
|
3134
|
-
tinyglobby: 0.2.
|
|
3180
|
+
semver: 7.8.2
|
|
3181
|
+
tinyglobby: 0.2.17
|
|
3135
3182
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
3136
3183
|
typescript: 5.9.3
|
|
3137
3184
|
transitivePeerDependencies:
|
|
3138
3185
|
- supports-color
|
|
3139
3186
|
|
|
3140
|
-
'@typescript-eslint/utils@8.
|
|
3187
|
+
'@typescript-eslint/utils@8.60.1(eslint@9.39.4)(typescript@5.9.3)':
|
|
3141
3188
|
dependencies:
|
|
3142
3189
|
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
|
|
3143
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3144
|
-
'@typescript-eslint/types': 8.
|
|
3145
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3190
|
+
'@typescript-eslint/scope-manager': 8.60.1
|
|
3191
|
+
'@typescript-eslint/types': 8.60.1
|
|
3192
|
+
'@typescript-eslint/typescript-estree': 8.60.1(typescript@5.9.3)
|
|
3146
3193
|
eslint: 9.39.4
|
|
3147
3194
|
typescript: 5.9.3
|
|
3148
3195
|
transitivePeerDependencies:
|
|
3149
3196
|
- supports-color
|
|
3150
3197
|
|
|
3151
|
-
'@typescript-eslint/visitor-keys@8.
|
|
3198
|
+
'@typescript-eslint/visitor-keys@8.60.1':
|
|
3152
3199
|
dependencies:
|
|
3153
|
-
'@typescript-eslint/types': 8.
|
|
3200
|
+
'@typescript-eslint/types': 8.60.1
|
|
3154
3201
|
eslint-visitor-keys: 5.0.1
|
|
3155
3202
|
|
|
3156
3203
|
'@ungap/structured-clone@1.3.1': {}
|
|
@@ -3247,8 +3294,8 @@ snapshots:
|
|
|
3247
3294
|
astro-eslint-parser@1.4.0:
|
|
3248
3295
|
dependencies:
|
|
3249
3296
|
'@astrojs/compiler': 3.0.1
|
|
3250
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3251
|
-
'@typescript-eslint/types': 8.
|
|
3297
|
+
'@typescript-eslint/scope-manager': 8.60.1
|
|
3298
|
+
'@typescript-eslint/types': 8.60.1
|
|
3252
3299
|
astrojs-compiler-sync: 1.1.1(@astrojs/compiler@3.0.1)
|
|
3253
3300
|
debug: 4.4.3
|
|
3254
3301
|
entities: 7.0.1
|
|
@@ -3257,20 +3304,20 @@ snapshots:
|
|
|
3257
3304
|
espree: 10.4.0
|
|
3258
3305
|
fast-glob: 3.3.3
|
|
3259
3306
|
is-glob: 4.0.3
|
|
3260
|
-
semver: 7.8.
|
|
3307
|
+
semver: 7.8.2
|
|
3261
3308
|
transitivePeerDependencies:
|
|
3262
3309
|
- supports-color
|
|
3263
3310
|
|
|
3264
|
-
astro@6.
|
|
3311
|
+
astro@6.4.4(@types/node@25.9.2)(rollup@4.61.1):
|
|
3265
3312
|
dependencies:
|
|
3266
3313
|
'@astrojs/compiler': 4.0.0
|
|
3267
|
-
'@astrojs/internal-helpers': 0.
|
|
3268
|
-
'@astrojs/markdown-remark': 7.
|
|
3314
|
+
'@astrojs/internal-helpers': 0.10.0
|
|
3315
|
+
'@astrojs/markdown-remark': 7.2.0
|
|
3269
3316
|
'@astrojs/telemetry': 3.3.2
|
|
3270
3317
|
'@capsizecss/unpack': 4.0.0
|
|
3271
|
-
'@clack/prompts': 1.
|
|
3318
|
+
'@clack/prompts': 1.5.1
|
|
3272
3319
|
'@oslojs/encoding': 1.1.0
|
|
3273
|
-
'@rollup/pluginutils': 5.
|
|
3320
|
+
'@rollup/pluginutils': 5.4.0(rollup@4.61.1)
|
|
3274
3321
|
aria-query: 5.3.2
|
|
3275
3322
|
axobject-query: 4.1.0
|
|
3276
3323
|
ci-info: 4.4.0
|
|
@@ -3281,40 +3328,40 @@ snapshots:
|
|
|
3281
3328
|
diff: 8.0.4
|
|
3282
3329
|
dset: 3.1.4
|
|
3283
3330
|
es-module-lexer: 2.1.0
|
|
3284
|
-
esbuild: 0.
|
|
3331
|
+
esbuild: 0.28.1
|
|
3285
3332
|
flattie: 1.1.1
|
|
3286
3333
|
fontace: 0.4.1
|
|
3287
3334
|
get-tsconfig: 5.0.0-beta.4
|
|
3288
3335
|
github-slugger: 2.0.0
|
|
3289
3336
|
html-escaper: 3.0.3
|
|
3290
3337
|
http-cache-semantics: 4.2.0
|
|
3291
|
-
js-yaml: 4.
|
|
3338
|
+
js-yaml: 4.2.0
|
|
3292
3339
|
jsonc-parser: 3.3.1
|
|
3293
3340
|
magic-string: 0.30.21
|
|
3294
3341
|
magicast: 0.5.3
|
|
3295
3342
|
mrmime: 2.0.1
|
|
3296
3343
|
neotraverse: 0.6.18
|
|
3297
|
-
obug: 2.1.
|
|
3344
|
+
obug: 2.1.2
|
|
3298
3345
|
p-limit: 7.3.0
|
|
3299
3346
|
p-queue: 9.3.0
|
|
3300
3347
|
package-manager-detector: 1.6.0
|
|
3301
3348
|
piccolore: 0.1.3
|
|
3302
3349
|
picomatch: 4.0.4
|
|
3303
3350
|
rehype: 13.0.2
|
|
3304
|
-
semver: 7.8.
|
|
3305
|
-
shiki: 4.
|
|
3351
|
+
semver: 7.8.2
|
|
3352
|
+
shiki: 4.2.0
|
|
3306
3353
|
smol-toml: 1.6.1
|
|
3307
3354
|
svgo: 4.0.1
|
|
3308
|
-
tinyclip: 0.1.
|
|
3309
|
-
tinyexec: 1.2.
|
|
3310
|
-
tinyglobby: 0.2.
|
|
3355
|
+
tinyclip: 0.1.14
|
|
3356
|
+
tinyexec: 1.2.4
|
|
3357
|
+
tinyglobby: 0.2.17
|
|
3311
3358
|
ultrahtml: 1.6.0
|
|
3312
3359
|
unifont: 0.7.4
|
|
3313
3360
|
unist-util-visit: 5.1.0
|
|
3314
3361
|
unstorage: 1.17.5
|
|
3315
3362
|
vfile: 6.0.3
|
|
3316
|
-
vite: 7.3.
|
|
3317
|
-
vitefu: 1.1.3(vite@7.3.
|
|
3363
|
+
vite: 7.3.5(@types/node@25.9.2)
|
|
3364
|
+
vitefu: 1.1.3(vite@7.3.5(@types/node@25.9.2))
|
|
3318
3365
|
xxhash-wasm: 1.1.0
|
|
3319
3366
|
yargs-parser: 22.0.0
|
|
3320
3367
|
zod: 4.4.3
|
|
@@ -3357,7 +3404,7 @@ snapshots:
|
|
|
3357
3404
|
astrojs-compiler-sync@1.1.1(@astrojs/compiler@3.0.1):
|
|
3358
3405
|
dependencies:
|
|
3359
3406
|
'@astrojs/compiler': 3.0.1
|
|
3360
|
-
synckit: 0.11.
|
|
3407
|
+
synckit: 0.11.13
|
|
3361
3408
|
|
|
3362
3409
|
async-function@1.0.0: {}
|
|
3363
3410
|
|
|
@@ -3376,14 +3423,14 @@ snapshots:
|
|
|
3376
3423
|
better-npm-audit@3.11.0:
|
|
3377
3424
|
dependencies:
|
|
3378
3425
|
commander: 8.3.0
|
|
3379
|
-
dayjs: 1.11.
|
|
3426
|
+
dayjs: 1.11.21
|
|
3380
3427
|
lodash.get: 4.4.2
|
|
3381
|
-
semver: 7.8.
|
|
3428
|
+
semver: 7.8.2
|
|
3382
3429
|
table: 6.9.0
|
|
3383
3430
|
|
|
3384
3431
|
boolbase@1.0.0: {}
|
|
3385
3432
|
|
|
3386
|
-
brace-expansion@1.1.
|
|
3433
|
+
brace-expansion@1.1.15:
|
|
3387
3434
|
dependencies:
|
|
3388
3435
|
balanced-match: 1.0.2
|
|
3389
3436
|
concat-map: 0.0.1
|
|
@@ -3510,7 +3557,7 @@ snapshots:
|
|
|
3510
3557
|
es-errors: 1.3.0
|
|
3511
3558
|
is-data-view: 1.0.2
|
|
3512
3559
|
|
|
3513
|
-
dayjs@1.11.
|
|
3560
|
+
dayjs@1.11.21: {}
|
|
3514
3561
|
|
|
3515
3562
|
debug@3.2.7:
|
|
3516
3563
|
dependencies:
|
|
@@ -3617,7 +3664,7 @@ snapshots:
|
|
|
3617
3664
|
has-property-descriptors: 1.0.2
|
|
3618
3665
|
has-proto: 1.2.0
|
|
3619
3666
|
has-symbols: 1.1.0
|
|
3620
|
-
hasown: 2.0.
|
|
3667
|
+
hasown: 2.0.4
|
|
3621
3668
|
internal-slot: 1.1.0
|
|
3622
3669
|
is-array-buffer: 3.0.5
|
|
3623
3670
|
is-callable: 1.2.7
|
|
@@ -3640,15 +3687,15 @@ snapshots:
|
|
|
3640
3687
|
safe-regex-test: 1.1.0
|
|
3641
3688
|
set-proto: 1.0.0
|
|
3642
3689
|
stop-iteration-iterator: 1.1.0
|
|
3643
|
-
string.prototype.trim: 1.2.
|
|
3644
|
-
string.prototype.trimend: 1.0.
|
|
3690
|
+
string.prototype.trim: 1.2.11
|
|
3691
|
+
string.prototype.trimend: 1.0.10
|
|
3645
3692
|
string.prototype.trimstart: 1.0.8
|
|
3646
3693
|
typed-array-buffer: 1.0.3
|
|
3647
3694
|
typed-array-byte-length: 1.0.3
|
|
3648
3695
|
typed-array-byte-offset: 1.0.4
|
|
3649
|
-
typed-array-length: 1.0.
|
|
3696
|
+
typed-array-length: 1.0.8
|
|
3650
3697
|
unbox-primitive: 1.1.0
|
|
3651
|
-
which-typed-array: 1.1.
|
|
3698
|
+
which-typed-array: 1.1.22
|
|
3652
3699
|
|
|
3653
3700
|
es-define-property@1.0.1: {}
|
|
3654
3701
|
|
|
@@ -3665,11 +3712,11 @@ snapshots:
|
|
|
3665
3712
|
es-errors: 1.3.0
|
|
3666
3713
|
get-intrinsic: 1.3.0
|
|
3667
3714
|
has-tostringtag: 1.0.2
|
|
3668
|
-
hasown: 2.0.
|
|
3715
|
+
hasown: 2.0.4
|
|
3669
3716
|
|
|
3670
3717
|
es-shim-unscopables@1.1.0:
|
|
3671
3718
|
dependencies:
|
|
3672
|
-
hasown: 2.0.
|
|
3719
|
+
hasown: 2.0.4
|
|
3673
3720
|
|
|
3674
3721
|
es-to-primitive@1.3.0:
|
|
3675
3722
|
dependencies:
|
|
@@ -3677,34 +3724,34 @@ snapshots:
|
|
|
3677
3724
|
is-date-object: 1.1.0
|
|
3678
3725
|
is-symbol: 1.1.1
|
|
3679
3726
|
|
|
3680
|
-
esbuild@0.
|
|
3727
|
+
esbuild@0.28.1:
|
|
3681
3728
|
optionalDependencies:
|
|
3682
|
-
'@esbuild/aix-ppc64': 0.
|
|
3683
|
-
'@esbuild/android-arm': 0.
|
|
3684
|
-
'@esbuild/android-arm64': 0.
|
|
3685
|
-
'@esbuild/android-x64': 0.
|
|
3686
|
-
'@esbuild/darwin-arm64': 0.
|
|
3687
|
-
'@esbuild/darwin-x64': 0.
|
|
3688
|
-
'@esbuild/freebsd-arm64': 0.
|
|
3689
|
-
'@esbuild/freebsd-x64': 0.
|
|
3690
|
-
'@esbuild/linux-arm': 0.
|
|
3691
|
-
'@esbuild/linux-arm64': 0.
|
|
3692
|
-
'@esbuild/linux-ia32': 0.
|
|
3693
|
-
'@esbuild/linux-loong64': 0.
|
|
3694
|
-
'@esbuild/linux-mips64el': 0.
|
|
3695
|
-
'@esbuild/linux-ppc64': 0.
|
|
3696
|
-
'@esbuild/linux-riscv64': 0.
|
|
3697
|
-
'@esbuild/linux-s390x': 0.
|
|
3698
|
-
'@esbuild/linux-x64': 0.
|
|
3699
|
-
'@esbuild/netbsd-arm64': 0.
|
|
3700
|
-
'@esbuild/netbsd-x64': 0.
|
|
3701
|
-
'@esbuild/openbsd-arm64': 0.
|
|
3702
|
-
'@esbuild/openbsd-x64': 0.
|
|
3703
|
-
'@esbuild/openharmony-arm64': 0.
|
|
3704
|
-
'@esbuild/sunos-x64': 0.
|
|
3705
|
-
'@esbuild/win32-arm64': 0.
|
|
3706
|
-
'@esbuild/win32-ia32': 0.
|
|
3707
|
-
'@esbuild/win32-x64': 0.
|
|
3729
|
+
'@esbuild/aix-ppc64': 0.28.1
|
|
3730
|
+
'@esbuild/android-arm': 0.28.1
|
|
3731
|
+
'@esbuild/android-arm64': 0.28.1
|
|
3732
|
+
'@esbuild/android-x64': 0.28.1
|
|
3733
|
+
'@esbuild/darwin-arm64': 0.28.1
|
|
3734
|
+
'@esbuild/darwin-x64': 0.28.1
|
|
3735
|
+
'@esbuild/freebsd-arm64': 0.28.1
|
|
3736
|
+
'@esbuild/freebsd-x64': 0.28.1
|
|
3737
|
+
'@esbuild/linux-arm': 0.28.1
|
|
3738
|
+
'@esbuild/linux-arm64': 0.28.1
|
|
3739
|
+
'@esbuild/linux-ia32': 0.28.1
|
|
3740
|
+
'@esbuild/linux-loong64': 0.28.1
|
|
3741
|
+
'@esbuild/linux-mips64el': 0.28.1
|
|
3742
|
+
'@esbuild/linux-ppc64': 0.28.1
|
|
3743
|
+
'@esbuild/linux-riscv64': 0.28.1
|
|
3744
|
+
'@esbuild/linux-s390x': 0.28.1
|
|
3745
|
+
'@esbuild/linux-x64': 0.28.1
|
|
3746
|
+
'@esbuild/netbsd-arm64': 0.28.1
|
|
3747
|
+
'@esbuild/netbsd-x64': 0.28.1
|
|
3748
|
+
'@esbuild/openbsd-arm64': 0.28.1
|
|
3749
|
+
'@esbuild/openbsd-x64': 0.28.1
|
|
3750
|
+
'@esbuild/openharmony-arm64': 0.28.1
|
|
3751
|
+
'@esbuild/sunos-x64': 0.28.1
|
|
3752
|
+
'@esbuild/win32-arm64': 0.28.1
|
|
3753
|
+
'@esbuild/win32-ia32': 0.28.1
|
|
3754
|
+
'@esbuild/win32-x64': 0.28.1
|
|
3708
3755
|
|
|
3709
3756
|
escape-string-regexp@4.0.0: {}
|
|
3710
3757
|
|
|
@@ -3713,7 +3760,7 @@ snapshots:
|
|
|
3713
3760
|
eslint-compat-utils@0.6.5(eslint@9.39.4):
|
|
3714
3761
|
dependencies:
|
|
3715
3762
|
eslint: 9.39.4
|
|
3716
|
-
semver: 7.8.
|
|
3763
|
+
semver: 7.8.2
|
|
3717
3764
|
|
|
3718
3765
|
eslint-config-prettier@10.1.8(eslint@9.39.4):
|
|
3719
3766
|
dependencies:
|
|
@@ -3727,11 +3774,11 @@ snapshots:
|
|
|
3727
3774
|
transitivePeerDependencies:
|
|
3728
3775
|
- supports-color
|
|
3729
3776
|
|
|
3730
|
-
eslint-module-utils@2.
|
|
3777
|
+
eslint-module-utils@2.13.0(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4):
|
|
3731
3778
|
dependencies:
|
|
3732
3779
|
debug: 3.2.7
|
|
3733
3780
|
optionalDependencies:
|
|
3734
|
-
'@typescript-eslint/parser': 8.
|
|
3781
|
+
'@typescript-eslint/parser': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3735
3782
|
eslint: 9.39.4
|
|
3736
3783
|
eslint-import-resolver-node: 0.3.10
|
|
3737
3784
|
transitivePeerDependencies:
|
|
@@ -3741,7 +3788,7 @@ snapshots:
|
|
|
3741
3788
|
dependencies:
|
|
3742
3789
|
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4)
|
|
3743
3790
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3744
|
-
'@typescript-eslint/types': 8.
|
|
3791
|
+
'@typescript-eslint/types': 8.60.1
|
|
3745
3792
|
astro-eslint-parser: 1.4.0
|
|
3746
3793
|
eslint: 9.39.4
|
|
3747
3794
|
eslint-compat-utils: 0.6.5(eslint@9.39.4)
|
|
@@ -3751,7 +3798,7 @@ snapshots:
|
|
|
3751
3798
|
transitivePeerDependencies:
|
|
3752
3799
|
- supports-color
|
|
3753
3800
|
|
|
3754
|
-
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.
|
|
3801
|
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4):
|
|
3755
3802
|
dependencies:
|
|
3756
3803
|
'@rtsao/scc': 1.1.0
|
|
3757
3804
|
array-includes: 3.1.9
|
|
@@ -3762,8 +3809,8 @@ snapshots:
|
|
|
3762
3809
|
doctrine: 2.1.0
|
|
3763
3810
|
eslint: 9.39.4
|
|
3764
3811
|
eslint-import-resolver-node: 0.3.10
|
|
3765
|
-
eslint-module-utils: 2.
|
|
3766
|
-
hasown: 2.0.
|
|
3812
|
+
eslint-module-utils: 2.13.0(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4)
|
|
3813
|
+
hasown: 2.0.4
|
|
3767
3814
|
is-core-module: 2.16.2
|
|
3768
3815
|
is-glob: 4.0.3
|
|
3769
3816
|
minimatch: 3.1.5
|
|
@@ -3771,10 +3818,10 @@ snapshots:
|
|
|
3771
3818
|
object.groupby: 1.0.3
|
|
3772
3819
|
object.values: 1.2.1
|
|
3773
3820
|
semver: 6.3.1
|
|
3774
|
-
string.prototype.trimend: 1.0.
|
|
3821
|
+
string.prototype.trimend: 1.0.10
|
|
3775
3822
|
tsconfig-paths: 3.15.0
|
|
3776
3823
|
optionalDependencies:
|
|
3777
|
-
'@typescript-eslint/parser': 8.
|
|
3824
|
+
'@typescript-eslint/parser': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3778
3825
|
transitivePeerDependencies:
|
|
3779
3826
|
- eslint-import-resolver-typescript
|
|
3780
3827
|
- eslint-import-resolver-webpack
|
|
@@ -3782,7 +3829,7 @@ snapshots:
|
|
|
3782
3829
|
|
|
3783
3830
|
eslint-plugin-perfectionist@5.9.0(eslint@9.39.4)(typescript@5.9.3):
|
|
3784
3831
|
dependencies:
|
|
3785
|
-
'@typescript-eslint/utils': 8.
|
|
3832
|
+
'@typescript-eslint/utils': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
3786
3833
|
eslint: 9.39.4
|
|
3787
3834
|
natural-orderby: 5.0.0
|
|
3788
3835
|
transitivePeerDependencies:
|
|
@@ -3931,6 +3978,8 @@ snapshots:
|
|
|
3931
3978
|
dependencies:
|
|
3932
3979
|
is-callable: 1.2.7
|
|
3933
3980
|
|
|
3981
|
+
foreachasync@3.0.0: {}
|
|
3982
|
+
|
|
3934
3983
|
fsevents@2.3.3:
|
|
3935
3984
|
optional: true
|
|
3936
3985
|
|
|
@@ -3942,7 +3991,7 @@ snapshots:
|
|
|
3942
3991
|
call-bound: 1.0.4
|
|
3943
3992
|
define-properties: 1.2.1
|
|
3944
3993
|
functions-have-names: 1.2.3
|
|
3945
|
-
hasown: 2.0.
|
|
3994
|
+
hasown: 2.0.4
|
|
3946
3995
|
is-callable: 1.2.7
|
|
3947
3996
|
|
|
3948
3997
|
functions-have-names@1.2.3: {}
|
|
@@ -3959,7 +4008,7 @@ snapshots:
|
|
|
3959
4008
|
get-proto: 1.0.1
|
|
3960
4009
|
gopd: 1.2.0
|
|
3961
4010
|
has-symbols: 1.1.0
|
|
3962
|
-
hasown: 2.0.
|
|
4011
|
+
hasown: 2.0.4
|
|
3963
4012
|
math-intrinsics: 1.1.0
|
|
3964
4013
|
|
|
3965
4014
|
get-proto@1.0.1:
|
|
@@ -4030,7 +4079,7 @@ snapshots:
|
|
|
4030
4079
|
dependencies:
|
|
4031
4080
|
has-symbols: 1.1.0
|
|
4032
4081
|
|
|
4033
|
-
hasown@2.0.
|
|
4082
|
+
hasown@2.0.4:
|
|
4034
4083
|
dependencies:
|
|
4035
4084
|
function-bind: 1.1.2
|
|
4036
4085
|
|
|
@@ -4049,7 +4098,7 @@ snapshots:
|
|
|
4049
4098
|
'@types/unist': 3.0.3
|
|
4050
4099
|
devlop: 1.1.0
|
|
4051
4100
|
hastscript: 9.0.1
|
|
4052
|
-
property-information: 7.
|
|
4101
|
+
property-information: 7.2.0
|
|
4053
4102
|
vfile: 6.0.3
|
|
4054
4103
|
vfile-location: 5.0.3
|
|
4055
4104
|
web-namespaces: 2.0.1
|
|
@@ -4087,7 +4136,7 @@ snapshots:
|
|
|
4087
4136
|
hast-util-whitespace: 3.0.0
|
|
4088
4137
|
html-void-elements: 3.0.0
|
|
4089
4138
|
mdast-util-to-hast: 13.2.1
|
|
4090
|
-
property-information: 7.
|
|
4139
|
+
property-information: 7.2.0
|
|
4091
4140
|
space-separated-tokens: 2.0.2
|
|
4092
4141
|
stringify-entities: 4.0.4
|
|
4093
4142
|
zwitch: 2.0.4
|
|
@@ -4097,7 +4146,7 @@ snapshots:
|
|
|
4097
4146
|
'@types/hast': 3.0.4
|
|
4098
4147
|
comma-separated-tokens: 2.0.3
|
|
4099
4148
|
devlop: 1.1.0
|
|
4100
|
-
property-information: 7.
|
|
4149
|
+
property-information: 7.2.0
|
|
4101
4150
|
space-separated-tokens: 2.0.2
|
|
4102
4151
|
web-namespaces: 2.0.1
|
|
4103
4152
|
zwitch: 2.0.4
|
|
@@ -4118,7 +4167,7 @@ snapshots:
|
|
|
4118
4167
|
'@types/hast': 3.0.4
|
|
4119
4168
|
comma-separated-tokens: 2.0.3
|
|
4120
4169
|
hast-util-parse-selector: 4.0.0
|
|
4121
|
-
property-information: 7.
|
|
4170
|
+
property-information: 7.2.0
|
|
4122
4171
|
space-separated-tokens: 2.0.2
|
|
4123
4172
|
|
|
4124
4173
|
html-escaper@3.0.3: {}
|
|
@@ -4141,7 +4190,7 @@ snapshots:
|
|
|
4141
4190
|
internal-slot@1.1.0:
|
|
4142
4191
|
dependencies:
|
|
4143
4192
|
es-errors: 1.3.0
|
|
4144
|
-
hasown: 2.0.
|
|
4193
|
+
hasown: 2.0.4
|
|
4145
4194
|
side-channel: 1.1.0
|
|
4146
4195
|
|
|
4147
4196
|
iron-webcrypto@1.2.1: {}
|
|
@@ -4173,7 +4222,7 @@ snapshots:
|
|
|
4173
4222
|
|
|
4174
4223
|
is-core-module@2.16.2:
|
|
4175
4224
|
dependencies:
|
|
4176
|
-
hasown: 2.0.
|
|
4225
|
+
hasown: 2.0.4
|
|
4177
4226
|
|
|
4178
4227
|
is-data-view@1.0.2:
|
|
4179
4228
|
dependencies:
|
|
@@ -4232,7 +4281,7 @@ snapshots:
|
|
|
4232
4281
|
call-bound: 1.0.4
|
|
4233
4282
|
gopd: 1.2.0
|
|
4234
4283
|
has-tostringtag: 1.0.2
|
|
4235
|
-
hasown: 2.0.
|
|
4284
|
+
hasown: 2.0.4
|
|
4236
4285
|
|
|
4237
4286
|
is-set@2.0.3: {}
|
|
4238
4287
|
|
|
@@ -4253,7 +4302,7 @@ snapshots:
|
|
|
4253
4302
|
|
|
4254
4303
|
is-typed-array@1.1.15:
|
|
4255
4304
|
dependencies:
|
|
4256
|
-
which-typed-array: 1.1.
|
|
4305
|
+
which-typed-array: 1.1.22
|
|
4257
4306
|
|
|
4258
4307
|
is-weakmap@2.0.2: {}
|
|
4259
4308
|
|
|
@@ -4274,7 +4323,7 @@ snapshots:
|
|
|
4274
4323
|
|
|
4275
4324
|
isexe@2.0.0: {}
|
|
4276
4325
|
|
|
4277
|
-
js-yaml@4.
|
|
4326
|
+
js-yaml@4.2.0:
|
|
4278
4327
|
dependencies:
|
|
4279
4328
|
argparse: 2.0.1
|
|
4280
4329
|
|
|
@@ -4305,6 +4354,8 @@ snapshots:
|
|
|
4305
4354
|
dependencies:
|
|
4306
4355
|
p-locate: 5.0.0
|
|
4307
4356
|
|
|
4357
|
+
locutus@3.0.36: {}
|
|
4358
|
+
|
|
4308
4359
|
lodash.get@4.4.2: {}
|
|
4309
4360
|
|
|
4310
4361
|
lodash.merge@4.6.2: {}
|
|
@@ -4313,7 +4364,7 @@ snapshots:
|
|
|
4313
4364
|
|
|
4314
4365
|
longest-streak@3.1.0: {}
|
|
4315
4366
|
|
|
4316
|
-
lru-cache@11.5.
|
|
4367
|
+
lru-cache@11.5.1: {}
|
|
4317
4368
|
|
|
4318
4369
|
magic-string@0.30.21:
|
|
4319
4370
|
dependencies:
|
|
@@ -4321,8 +4372,8 @@ snapshots:
|
|
|
4321
4372
|
|
|
4322
4373
|
magicast@0.5.3:
|
|
4323
4374
|
dependencies:
|
|
4324
|
-
'@babel/parser': 7.29.
|
|
4325
|
-
'@babel/types': 7.29.
|
|
4375
|
+
'@babel/parser': 7.29.7
|
|
4376
|
+
'@babel/types': 7.29.7
|
|
4326
4377
|
source-map-js: 1.2.1
|
|
4327
4378
|
|
|
4328
4379
|
markdown-table@3.0.4: {}
|
|
@@ -4657,7 +4708,7 @@ snapshots:
|
|
|
4657
4708
|
|
|
4658
4709
|
minimatch@3.1.5:
|
|
4659
4710
|
dependencies:
|
|
4660
|
-
brace-expansion: 1.1.
|
|
4711
|
+
brace-expansion: 1.1.15
|
|
4661
4712
|
|
|
4662
4713
|
minimist@1.2.8: {}
|
|
4663
4714
|
|
|
@@ -4734,7 +4785,7 @@ snapshots:
|
|
|
4734
4785
|
define-properties: 1.2.1
|
|
4735
4786
|
es-object-atoms: 1.1.2
|
|
4736
4787
|
|
|
4737
|
-
obug@2.1.
|
|
4788
|
+
obug@2.1.2: {}
|
|
4738
4789
|
|
|
4739
4790
|
ofetch@1.5.1:
|
|
4740
4791
|
dependencies:
|
|
@@ -4838,7 +4889,7 @@ snapshots:
|
|
|
4838
4889
|
|
|
4839
4890
|
prismjs@1.30.0: {}
|
|
4840
4891
|
|
|
4841
|
-
property-information@7.
|
|
4892
|
+
property-information@7.2.0: {}
|
|
4842
4893
|
|
|
4843
4894
|
punycode@2.3.1: {}
|
|
4844
4895
|
|
|
@@ -4986,35 +5037,35 @@ snapshots:
|
|
|
4986
5037
|
|
|
4987
5038
|
reusify@1.1.0: {}
|
|
4988
5039
|
|
|
4989
|
-
rollup@4.
|
|
5040
|
+
rollup@4.61.1:
|
|
4990
5041
|
dependencies:
|
|
4991
|
-
'@types/estree': 1.0.
|
|
5042
|
+
'@types/estree': 1.0.9
|
|
4992
5043
|
optionalDependencies:
|
|
4993
|
-
'@rollup/rollup-android-arm-eabi': 4.
|
|
4994
|
-
'@rollup/rollup-android-arm64': 4.
|
|
4995
|
-
'@rollup/rollup-darwin-arm64': 4.
|
|
4996
|
-
'@rollup/rollup-darwin-x64': 4.
|
|
4997
|
-
'@rollup/rollup-freebsd-arm64': 4.
|
|
4998
|
-
'@rollup/rollup-freebsd-x64': 4.
|
|
4999
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.
|
|
5000
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.
|
|
5001
|
-
'@rollup/rollup-linux-arm64-gnu': 4.
|
|
5002
|
-
'@rollup/rollup-linux-arm64-musl': 4.
|
|
5003
|
-
'@rollup/rollup-linux-loong64-gnu': 4.
|
|
5004
|
-
'@rollup/rollup-linux-loong64-musl': 4.
|
|
5005
|
-
'@rollup/rollup-linux-ppc64-gnu': 4.
|
|
5006
|
-
'@rollup/rollup-linux-ppc64-musl': 4.
|
|
5007
|
-
'@rollup/rollup-linux-riscv64-gnu': 4.
|
|
5008
|
-
'@rollup/rollup-linux-riscv64-musl': 4.
|
|
5009
|
-
'@rollup/rollup-linux-s390x-gnu': 4.
|
|
5010
|
-
'@rollup/rollup-linux-x64-gnu': 4.
|
|
5011
|
-
'@rollup/rollup-linux-x64-musl': 4.
|
|
5012
|
-
'@rollup/rollup-openbsd-x64': 4.
|
|
5013
|
-
'@rollup/rollup-openharmony-arm64': 4.
|
|
5014
|
-
'@rollup/rollup-win32-arm64-msvc': 4.
|
|
5015
|
-
'@rollup/rollup-win32-ia32-msvc': 4.
|
|
5016
|
-
'@rollup/rollup-win32-x64-gnu': 4.
|
|
5017
|
-
'@rollup/rollup-win32-x64-msvc': 4.
|
|
5044
|
+
'@rollup/rollup-android-arm-eabi': 4.61.1
|
|
5045
|
+
'@rollup/rollup-android-arm64': 4.61.1
|
|
5046
|
+
'@rollup/rollup-darwin-arm64': 4.61.1
|
|
5047
|
+
'@rollup/rollup-darwin-x64': 4.61.1
|
|
5048
|
+
'@rollup/rollup-freebsd-arm64': 4.61.1
|
|
5049
|
+
'@rollup/rollup-freebsd-x64': 4.61.1
|
|
5050
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.61.1
|
|
5051
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.61.1
|
|
5052
|
+
'@rollup/rollup-linux-arm64-gnu': 4.61.1
|
|
5053
|
+
'@rollup/rollup-linux-arm64-musl': 4.61.1
|
|
5054
|
+
'@rollup/rollup-linux-loong64-gnu': 4.61.1
|
|
5055
|
+
'@rollup/rollup-linux-loong64-musl': 4.61.1
|
|
5056
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.61.1
|
|
5057
|
+
'@rollup/rollup-linux-ppc64-musl': 4.61.1
|
|
5058
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.61.1
|
|
5059
|
+
'@rollup/rollup-linux-riscv64-musl': 4.61.1
|
|
5060
|
+
'@rollup/rollup-linux-s390x-gnu': 4.61.1
|
|
5061
|
+
'@rollup/rollup-linux-x64-gnu': 4.61.1
|
|
5062
|
+
'@rollup/rollup-linux-x64-musl': 4.61.1
|
|
5063
|
+
'@rollup/rollup-openbsd-x64': 4.61.1
|
|
5064
|
+
'@rollup/rollup-openharmony-arm64': 4.61.1
|
|
5065
|
+
'@rollup/rollup-win32-arm64-msvc': 4.61.1
|
|
5066
|
+
'@rollup/rollup-win32-ia32-msvc': 4.61.1
|
|
5067
|
+
'@rollup/rollup-win32-x64-gnu': 4.61.1
|
|
5068
|
+
'@rollup/rollup-win32-x64-msvc': 4.61.1
|
|
5018
5069
|
fsevents: 2.3.3
|
|
5019
5070
|
|
|
5020
5071
|
run-parallel@1.2.0:
|
|
@@ -5044,7 +5095,7 @@ snapshots:
|
|
|
5044
5095
|
|
|
5045
5096
|
semver@6.3.1: {}
|
|
5046
5097
|
|
|
5047
|
-
semver@7.8.
|
|
5098
|
+
semver@7.8.2: {}
|
|
5048
5099
|
|
|
5049
5100
|
set-function-length@1.2.2:
|
|
5050
5101
|
dependencies:
|
|
@@ -5072,7 +5123,7 @@ snapshots:
|
|
|
5072
5123
|
dependencies:
|
|
5073
5124
|
'@img/colour': 1.1.0
|
|
5074
5125
|
detect-libc: 2.1.2
|
|
5075
|
-
semver: 7.8.
|
|
5126
|
+
semver: 7.8.2
|
|
5076
5127
|
optionalDependencies:
|
|
5077
5128
|
'@img/sharp-darwin-arm64': 0.34.5
|
|
5078
5129
|
'@img/sharp-darwin-x64': 0.34.5
|
|
@@ -5106,14 +5157,14 @@ snapshots:
|
|
|
5106
5157
|
|
|
5107
5158
|
shebang-regex@3.0.0: {}
|
|
5108
5159
|
|
|
5109
|
-
shiki@4.
|
|
5160
|
+
shiki@4.2.0:
|
|
5110
5161
|
dependencies:
|
|
5111
|
-
'@shikijs/core': 4.
|
|
5112
|
-
'@shikijs/engine-javascript': 4.
|
|
5113
|
-
'@shikijs/engine-oniguruma': 4.
|
|
5114
|
-
'@shikijs/langs': 4.
|
|
5115
|
-
'@shikijs/themes': 4.
|
|
5116
|
-
'@shikijs/types': 4.
|
|
5162
|
+
'@shikijs/core': 4.2.0
|
|
5163
|
+
'@shikijs/engine-javascript': 4.2.0
|
|
5164
|
+
'@shikijs/engine-oniguruma': 4.2.0
|
|
5165
|
+
'@shikijs/langs': 4.2.0
|
|
5166
|
+
'@shikijs/themes': 4.2.0
|
|
5167
|
+
'@shikijs/types': 4.2.0
|
|
5117
5168
|
'@shikijs/vscode-textmate': 10.0.2
|
|
5118
5169
|
'@types/hast': 3.0.4
|
|
5119
5170
|
|
|
@@ -5170,7 +5221,7 @@ snapshots:
|
|
|
5170
5221
|
is-fullwidth-code-point: 3.0.0
|
|
5171
5222
|
strip-ansi: 6.0.1
|
|
5172
5223
|
|
|
5173
|
-
string.prototype.trim@1.2.
|
|
5224
|
+
string.prototype.trim@1.2.11:
|
|
5174
5225
|
dependencies:
|
|
5175
5226
|
call-bind: 1.0.9
|
|
5176
5227
|
call-bound: 1.0.4
|
|
@@ -5179,8 +5230,9 @@ snapshots:
|
|
|
5179
5230
|
es-abstract: 1.24.2
|
|
5180
5231
|
es-object-atoms: 1.1.2
|
|
5181
5232
|
has-property-descriptors: 1.0.2
|
|
5233
|
+
safe-regex-test: 1.1.0
|
|
5182
5234
|
|
|
5183
|
-
string.prototype.trimend@1.0.
|
|
5235
|
+
string.prototype.trimend@1.0.10:
|
|
5184
5236
|
dependencies:
|
|
5185
5237
|
call-bind: 1.0.9
|
|
5186
5238
|
call-bound: 1.0.4
|
|
@@ -5222,9 +5274,9 @@ snapshots:
|
|
|
5222
5274
|
picocolors: 1.1.1
|
|
5223
5275
|
sax: 1.6.0
|
|
5224
5276
|
|
|
5225
|
-
synckit@0.11.
|
|
5277
|
+
synckit@0.11.13:
|
|
5226
5278
|
dependencies:
|
|
5227
|
-
'@pkgr/core': 0.
|
|
5279
|
+
'@pkgr/core': 0.3.6
|
|
5228
5280
|
|
|
5229
5281
|
table@6.9.0:
|
|
5230
5282
|
dependencies:
|
|
@@ -5236,11 +5288,11 @@ snapshots:
|
|
|
5236
5288
|
|
|
5237
5289
|
tiny-inflate@1.0.3: {}
|
|
5238
5290
|
|
|
5239
|
-
tinyclip@0.1.
|
|
5291
|
+
tinyclip@0.1.14: {}
|
|
5240
5292
|
|
|
5241
|
-
tinyexec@1.2.
|
|
5293
|
+
tinyexec@1.2.4: {}
|
|
5242
5294
|
|
|
5243
|
-
tinyglobby@0.2.
|
|
5295
|
+
tinyglobby@0.2.17:
|
|
5244
5296
|
dependencies:
|
|
5245
5297
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
5246
5298
|
picomatch: 4.0.4
|
|
@@ -5267,6 +5319,13 @@ snapshots:
|
|
|
5267
5319
|
tslib@2.8.1:
|
|
5268
5320
|
optional: true
|
|
5269
5321
|
|
|
5322
|
+
twig@3.0.0:
|
|
5323
|
+
dependencies:
|
|
5324
|
+
'@babel/runtime': 7.29.7
|
|
5325
|
+
locutus: 3.0.36
|
|
5326
|
+
minimatch: 10.2.5
|
|
5327
|
+
walk: 2.3.15
|
|
5328
|
+
|
|
5270
5329
|
type-check@0.4.0:
|
|
5271
5330
|
dependencies:
|
|
5272
5331
|
prelude-ls: 1.2.1
|
|
@@ -5295,7 +5354,7 @@ snapshots:
|
|
|
5295
5354
|
is-typed-array: 1.1.15
|
|
5296
5355
|
reflect.getprototypeof: 1.0.10
|
|
5297
5356
|
|
|
5298
|
-
typed-array-length@1.0.
|
|
5357
|
+
typed-array-length@1.0.8:
|
|
5299
5358
|
dependencies:
|
|
5300
5359
|
call-bind: 1.0.9
|
|
5301
5360
|
for-each: 0.3.5
|
|
@@ -5304,12 +5363,12 @@ snapshots:
|
|
|
5304
5363
|
possible-typed-array-names: 1.1.0
|
|
5305
5364
|
reflect.getprototypeof: 1.0.10
|
|
5306
5365
|
|
|
5307
|
-
typescript-eslint@8.
|
|
5366
|
+
typescript-eslint@8.60.1(eslint@9.39.4)(typescript@5.9.3):
|
|
5308
5367
|
dependencies:
|
|
5309
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
5310
|
-
'@typescript-eslint/parser': 8.
|
|
5311
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
5312
|
-
'@typescript-eslint/utils': 8.
|
|
5368
|
+
'@typescript-eslint/eslint-plugin': 8.60.1(@typescript-eslint/parser@8.60.1(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)(typescript@5.9.3)
|
|
5369
|
+
'@typescript-eslint/parser': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
5370
|
+
'@typescript-eslint/typescript-estree': 8.60.1(typescript@5.9.3)
|
|
5371
|
+
'@typescript-eslint/utils': 8.60.1(eslint@9.39.4)(typescript@5.9.3)
|
|
5313
5372
|
eslint: 9.39.4
|
|
5314
5373
|
typescript: 5.9.3
|
|
5315
5374
|
transitivePeerDependencies:
|
|
@@ -5330,6 +5389,8 @@ snapshots:
|
|
|
5330
5389
|
|
|
5331
5390
|
uncrypto@0.1.3: {}
|
|
5332
5391
|
|
|
5392
|
+
undici-types@7.24.6: {}
|
|
5393
|
+
|
|
5333
5394
|
unified@11.0.5:
|
|
5334
5395
|
dependencies:
|
|
5335
5396
|
'@types/unist': 3.0.3
|
|
@@ -5394,7 +5455,7 @@ snapshots:
|
|
|
5394
5455
|
chokidar: 5.0.0
|
|
5395
5456
|
destr: 2.0.5
|
|
5396
5457
|
h3: 1.15.11
|
|
5397
|
-
lru-cache: 11.5.
|
|
5458
|
+
lru-cache: 11.5.1
|
|
5398
5459
|
node-fetch-native: 1.6.7
|
|
5399
5460
|
ofetch: 1.5.1
|
|
5400
5461
|
ufo: 1.6.4
|
|
@@ -5420,20 +5481,25 @@ snapshots:
|
|
|
5420
5481
|
'@types/unist': 3.0.3
|
|
5421
5482
|
vfile-message: 4.0.3
|
|
5422
5483
|
|
|
5423
|
-
vite@7.3.
|
|
5484
|
+
vite@7.3.5(@types/node@25.9.2):
|
|
5424
5485
|
dependencies:
|
|
5425
|
-
esbuild: 0.
|
|
5486
|
+
esbuild: 0.28.1
|
|
5426
5487
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
5427
5488
|
picomatch: 4.0.4
|
|
5428
5489
|
postcss: 8.5.15
|
|
5429
|
-
rollup: 4.
|
|
5430
|
-
tinyglobby: 0.2.
|
|
5490
|
+
rollup: 4.61.1
|
|
5491
|
+
tinyglobby: 0.2.17
|
|
5431
5492
|
optionalDependencies:
|
|
5493
|
+
'@types/node': 25.9.2
|
|
5432
5494
|
fsevents: 2.3.3
|
|
5433
5495
|
|
|
5434
|
-
vitefu@1.1.3(vite@7.3.
|
|
5496
|
+
vitefu@1.1.3(vite@7.3.5(@types/node@25.9.2)):
|
|
5435
5497
|
optionalDependencies:
|
|
5436
|
-
vite: 7.3.
|
|
5498
|
+
vite: 7.3.5(@types/node@25.9.2)
|
|
5499
|
+
|
|
5500
|
+
walk@2.3.15:
|
|
5501
|
+
dependencies:
|
|
5502
|
+
foreachasync: 3.0.0
|
|
5437
5503
|
|
|
5438
5504
|
web-namespaces@2.0.1: {}
|
|
5439
5505
|
|
|
@@ -5459,7 +5525,7 @@ snapshots:
|
|
|
5459
5525
|
isarray: 2.0.5
|
|
5460
5526
|
which-boxed-primitive: 1.1.1
|
|
5461
5527
|
which-collection: 1.0.2
|
|
5462
|
-
which-typed-array: 1.1.
|
|
5528
|
+
which-typed-array: 1.1.22
|
|
5463
5529
|
|
|
5464
5530
|
which-collection@1.0.2:
|
|
5465
5531
|
dependencies:
|
|
@@ -5470,7 +5536,7 @@ snapshots:
|
|
|
5470
5536
|
|
|
5471
5537
|
which-pm-runs@1.1.0: {}
|
|
5472
5538
|
|
|
5473
|
-
which-typed-array@1.1.
|
|
5539
|
+
which-typed-array@1.1.22:
|
|
5474
5540
|
dependencies:
|
|
5475
5541
|
available-typed-arrays: 1.0.7
|
|
5476
5542
|
call-bind: 1.0.9
|