superacli 1.1.5 → 1.1.6
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/__tests__/resend-plugin.test.js +22 -1
- package/package.json +1 -1
- package/plugins/plugins.json +2 -2
- package/plugins/resend/plugin.json +279 -2
- package/plugins/resend/skills/quickstart/SKILL.md +32 -13
- package/temp_resend_cli/repo/.github/scripts/pr-title-check.js +34 -0
- package/temp_resend_cli/repo/.github/workflows/ci.yml +67 -0
- package/temp_resend_cli/repo/.github/workflows/post-release.yml +51 -0
- package/temp_resend_cli/repo/.github/workflows/pr-title-check.yml +13 -0
- package/temp_resend_cli/repo/.github/workflows/release.yml +175 -0
- package/temp_resend_cli/repo/.github/workflows/test-install-unix.yml +34 -0
- package/temp_resend_cli/repo/.github/workflows/test-install-windows.yml +48 -0
- package/temp_resend_cli/repo/CHANGELOG.md +31 -0
- package/temp_resend_cli/repo/LICENSE +21 -0
- package/temp_resend_cli/repo/README.md +450 -0
- package/temp_resend_cli/repo/biome.json +36 -0
- package/temp_resend_cli/repo/install.ps1 +141 -0
- package/temp_resend_cli/repo/install.sh +301 -0
- package/temp_resend_cli/repo/package.json +61 -0
- package/temp_resend_cli/repo/pnpm-lock.yaml +2439 -0
- package/temp_resend_cli/repo/renovate.json +4 -0
- package/temp_resend_cli/repo/src/cli.ts +98 -0
- package/temp_resend_cli/repo/src/commands/api-keys/create.ts +114 -0
- package/temp_resend_cli/repo/src/commands/api-keys/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/api-keys/index.ts +26 -0
- package/temp_resend_cli/repo/src/commands/api-keys/list.ts +35 -0
- package/temp_resend_cli/repo/src/commands/api-keys/utils.ts +8 -0
- package/temp_resend_cli/repo/src/commands/auth/index.ts +20 -0
- package/temp_resend_cli/repo/src/commands/auth/login.ts +234 -0
- package/temp_resend_cli/repo/src/commands/auth/logout.ts +105 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/create.ts +196 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/delete.ts +46 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/get.ts +59 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/index.ts +43 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/list.ts +60 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/send.ts +56 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/update.ts +95 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/utils.ts +35 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/create.ts +118 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/delete.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/get.ts +46 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/index.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/list.ts +68 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/update.ts +88 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/utils.ts +17 -0
- package/temp_resend_cli/repo/src/commands/contacts/add-segment.ts +78 -0
- package/temp_resend_cli/repo/src/commands/contacts/create.ts +122 -0
- package/temp_resend_cli/repo/src/commands/contacts/delete.ts +49 -0
- package/temp_resend_cli/repo/src/commands/contacts/get.ts +53 -0
- package/temp_resend_cli/repo/src/commands/contacts/index.ts +58 -0
- package/temp_resend_cli/repo/src/commands/contacts/list.ts +57 -0
- package/temp_resend_cli/repo/src/commands/contacts/remove-segment.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contacts/segments.ts +39 -0
- package/temp_resend_cli/repo/src/commands/contacts/topics.ts +45 -0
- package/temp_resend_cli/repo/src/commands/contacts/update-topics.ts +90 -0
- package/temp_resend_cli/repo/src/commands/contacts/update.ts +77 -0
- package/temp_resend_cli/repo/src/commands/contacts/utils.ts +119 -0
- package/temp_resend_cli/repo/src/commands/doctor.ts +216 -0
- package/temp_resend_cli/repo/src/commands/domains/create.ts +83 -0
- package/temp_resend_cli/repo/src/commands/domains/delete.ts +42 -0
- package/temp_resend_cli/repo/src/commands/domains/get.ts +47 -0
- package/temp_resend_cli/repo/src/commands/domains/index.ts +35 -0
- package/temp_resend_cli/repo/src/commands/domains/list.ts +53 -0
- package/temp_resend_cli/repo/src/commands/domains/update.ts +75 -0
- package/temp_resend_cli/repo/src/commands/domains/utils.ts +44 -0
- package/temp_resend_cli/repo/src/commands/domains/verify.ts +38 -0
- package/temp_resend_cli/repo/src/commands/emails/batch.ts +140 -0
- package/temp_resend_cli/repo/src/commands/emails/get.ts +44 -0
- package/temp_resend_cli/repo/src/commands/emails/index.ts +30 -0
- package/temp_resend_cli/repo/src/commands/emails/list.ts +84 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/attachment.ts +55 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/attachments.ts +68 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/get.ts +58 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/index.ts +28 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/list.ts +59 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/utils.ts +38 -0
- package/temp_resend_cli/repo/src/commands/emails/send.ts +189 -0
- package/temp_resend_cli/repo/src/commands/open.ts +27 -0
- package/temp_resend_cli/repo/src/commands/segments/create.ts +50 -0
- package/temp_resend_cli/repo/src/commands/segments/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/segments/get.ts +38 -0
- package/temp_resend_cli/repo/src/commands/segments/index.ts +36 -0
- package/temp_resend_cli/repo/src/commands/segments/list.ts +58 -0
- package/temp_resend_cli/repo/src/commands/segments/utils.ts +7 -0
- package/temp_resend_cli/repo/src/commands/teams/index.ts +10 -0
- package/temp_resend_cli/repo/src/commands/teams/list.ts +35 -0
- package/temp_resend_cli/repo/src/commands/teams/remove.ts +86 -0
- package/temp_resend_cli/repo/src/commands/teams/switch.ts +76 -0
- package/temp_resend_cli/repo/src/commands/topics/create.ts +73 -0
- package/temp_resend_cli/repo/src/commands/topics/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/topics/get.ts +42 -0
- package/temp_resend_cli/repo/src/commands/topics/index.ts +42 -0
- package/temp_resend_cli/repo/src/commands/topics/list.ts +34 -0
- package/temp_resend_cli/repo/src/commands/topics/update.ts +59 -0
- package/temp_resend_cli/repo/src/commands/topics/utils.ts +16 -0
- package/temp_resend_cli/repo/src/commands/webhooks/create.ts +128 -0
- package/temp_resend_cli/repo/src/commands/webhooks/delete.ts +49 -0
- package/temp_resend_cli/repo/src/commands/webhooks/get.ts +42 -0
- package/temp_resend_cli/repo/src/commands/webhooks/index.ts +42 -0
- package/temp_resend_cli/repo/src/commands/webhooks/list.ts +55 -0
- package/temp_resend_cli/repo/src/commands/webhooks/listen.ts +379 -0
- package/temp_resend_cli/repo/src/commands/webhooks/update.ts +83 -0
- package/temp_resend_cli/repo/src/commands/webhooks/utils.ts +36 -0
- package/temp_resend_cli/repo/src/commands/whoami.ts +71 -0
- package/temp_resend_cli/repo/src/lib/actions.ts +157 -0
- package/temp_resend_cli/repo/src/lib/client.ts +37 -0
- package/temp_resend_cli/repo/src/lib/config.ts +217 -0
- package/temp_resend_cli/repo/src/lib/files.ts +15 -0
- package/temp_resend_cli/repo/src/lib/help-text.ts +38 -0
- package/temp_resend_cli/repo/src/lib/output.ts +56 -0
- package/temp_resend_cli/repo/src/lib/pagination.ts +36 -0
- package/temp_resend_cli/repo/src/lib/prompts.ts +149 -0
- package/temp_resend_cli/repo/src/lib/spinner.ts +100 -0
- package/temp_resend_cli/repo/src/lib/table.ts +57 -0
- package/temp_resend_cli/repo/src/lib/tty.ts +28 -0
- package/temp_resend_cli/repo/src/lib/update-check.ts +169 -0
- package/temp_resend_cli/repo/src/lib/version.ts +4 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/create.test.ts +196 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/list.test.ts +134 -0
- package/temp_resend_cli/repo/tests/commands/auth/login.test.ts +153 -0
- package/temp_resend_cli/repo/tests/commands/auth/logout.test.ts +153 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/create.test.ts +454 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/delete.test.ts +183 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/get.test.ts +147 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/list.test.ts +199 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/send.test.ts +162 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/update.test.ts +288 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/create.test.ts +251 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/delete.test.ts +184 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/get.test.ts +145 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/list.test.ts +181 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/update.test.ts +217 -0
- package/temp_resend_cli/repo/tests/commands/contacts/add-segment.test.ts +189 -0
- package/temp_resend_cli/repo/tests/commands/contacts/create.test.ts +271 -0
- package/temp_resend_cli/repo/tests/commands/contacts/delete.test.ts +193 -0
- package/temp_resend_cli/repo/tests/commands/contacts/get.test.ts +149 -0
- package/temp_resend_cli/repo/tests/commands/contacts/list.test.ts +176 -0
- package/temp_resend_cli/repo/tests/commands/contacts/remove-segment.test.ts +167 -0
- package/temp_resend_cli/repo/tests/commands/contacts/segments.test.ts +168 -0
- package/temp_resend_cli/repo/tests/commands/contacts/topics.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/contacts/update-topics.test.ts +248 -0
- package/temp_resend_cli/repo/tests/commands/contacts/update.test.ts +206 -0
- package/temp_resend_cli/repo/tests/commands/doctor.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/domains/create.test.ts +193 -0
- package/temp_resend_cli/repo/tests/commands/domains/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/domains/get.test.ts +138 -0
- package/temp_resend_cli/repo/tests/commands/domains/list.test.ts +165 -0
- package/temp_resend_cli/repo/tests/commands/domains/update.test.ts +224 -0
- package/temp_resend_cli/repo/tests/commands/domains/verify.test.ts +118 -0
- package/temp_resend_cli/repo/tests/commands/emails/batch.test.ts +324 -0
- package/temp_resend_cli/repo/tests/commands/emails/get.test.ts +132 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/attachment.test.ts +141 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/attachments.test.ts +169 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/get.test.ts +141 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/list.test.ts +182 -0
- package/temp_resend_cli/repo/tests/commands/emails/send.test.ts +312 -0
- package/temp_resend_cli/repo/tests/commands/segments/create.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/segments/delete.test.ts +183 -0
- package/temp_resend_cli/repo/tests/commands/segments/get.test.ts +138 -0
- package/temp_resend_cli/repo/tests/commands/segments/list.test.ts +174 -0
- package/temp_resend_cli/repo/tests/commands/teams/list.test.ts +62 -0
- package/temp_resend_cli/repo/tests/commands/teams/remove.test.ts +110 -0
- package/temp_resend_cli/repo/tests/commands/teams/switch.test.ts +103 -0
- package/temp_resend_cli/repo/tests/commands/topics/create.test.ts +192 -0
- package/temp_resend_cli/repo/tests/commands/topics/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/topics/get.test.ts +126 -0
- package/temp_resend_cli/repo/tests/commands/topics/list.test.ts +125 -0
- package/temp_resend_cli/repo/tests/commands/topics/update.test.ts +178 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/create.test.ts +225 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/get.test.ts +126 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/list.test.ts +178 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/update.test.ts +207 -0
- package/temp_resend_cli/repo/tests/commands/whoami.test.ts +98 -0
- package/temp_resend_cli/repo/tests/e2e/smoke.test.ts +93 -0
- package/temp_resend_cli/repo/tests/helpers.ts +86 -0
- package/temp_resend_cli/repo/tests/lib/client.test.ts +71 -0
- package/temp_resend_cli/repo/tests/lib/config.test.ts +451 -0
- package/temp_resend_cli/repo/tests/lib/files.test.ts +73 -0
- package/temp_resend_cli/repo/tests/lib/help-text.test.ts +97 -0
- package/temp_resend_cli/repo/tests/lib/output.test.ts +136 -0
- package/temp_resend_cli/repo/tests/lib/prompts.test.ts +185 -0
- package/temp_resend_cli/repo/tests/lib/spinner.test.ts +166 -0
- package/temp_resend_cli/repo/tests/lib/table.test.ts +63 -0
- package/temp_resend_cli/repo/tests/lib/tty.test.ts +89 -0
- package/temp_resend_cli/repo/tests/lib/update-check.test.ts +179 -0
- package/temp_resend_cli/repo/tsconfig.json +14 -0
- package/temp_resend_cli/repo/vitest.config.e2e.ts +8 -0
- package/temp_resend_cli/repo/vitest.config.ts +10 -0
- package/tests/test-resend-smoke.sh +7 -3
|
@@ -0,0 +1,2439 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@clack/prompts':
|
|
12
|
+
specifier: 1.1.0
|
|
13
|
+
version: 1.1.0
|
|
14
|
+
'@commander-js/extra-typings':
|
|
15
|
+
specifier: 14.0.0
|
|
16
|
+
version: 14.0.0(commander@14.0.3)
|
|
17
|
+
commander:
|
|
18
|
+
specifier: 14.0.3
|
|
19
|
+
version: 14.0.3
|
|
20
|
+
picocolors:
|
|
21
|
+
specifier: ^1.1.1
|
|
22
|
+
version: 1.1.1
|
|
23
|
+
resend:
|
|
24
|
+
specifier: 6.9.3
|
|
25
|
+
version: 6.9.3
|
|
26
|
+
devDependencies:
|
|
27
|
+
'@biomejs/biome':
|
|
28
|
+
specifier: 2.4.6
|
|
29
|
+
version: 2.4.6
|
|
30
|
+
'@types/node':
|
|
31
|
+
specifier: 22.19.15
|
|
32
|
+
version: 22.19.15
|
|
33
|
+
'@yao-pkg/pkg':
|
|
34
|
+
specifier: 6.14.1
|
|
35
|
+
version: 6.14.1
|
|
36
|
+
esbuild:
|
|
37
|
+
specifier: 0.27.3
|
|
38
|
+
version: 0.27.3
|
|
39
|
+
tsx:
|
|
40
|
+
specifier: 4.19.4
|
|
41
|
+
version: 4.19.4
|
|
42
|
+
typescript:
|
|
43
|
+
specifier: 5.9.3
|
|
44
|
+
version: 5.9.3
|
|
45
|
+
vitest:
|
|
46
|
+
specifier: 3.1.4
|
|
47
|
+
version: 3.1.4(@types/node@22.19.15)(tsx@4.19.4)
|
|
48
|
+
|
|
49
|
+
packages:
|
|
50
|
+
|
|
51
|
+
'@babel/code-frame@7.29.0':
|
|
52
|
+
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
|
|
53
|
+
engines: {node: '>=6.9.0'}
|
|
54
|
+
|
|
55
|
+
'@babel/generator@7.29.1':
|
|
56
|
+
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
|
|
57
|
+
engines: {node: '>=6.9.0'}
|
|
58
|
+
|
|
59
|
+
'@babel/helper-globals@7.28.0':
|
|
60
|
+
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
|
|
61
|
+
engines: {node: '>=6.9.0'}
|
|
62
|
+
|
|
63
|
+
'@babel/helper-string-parser@7.27.1':
|
|
64
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
65
|
+
engines: {node: '>=6.9.0'}
|
|
66
|
+
|
|
67
|
+
'@babel/helper-validator-identifier@7.28.5':
|
|
68
|
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
|
|
69
|
+
engines: {node: '>=6.9.0'}
|
|
70
|
+
|
|
71
|
+
'@babel/parser@7.29.0':
|
|
72
|
+
resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
|
|
73
|
+
engines: {node: '>=6.0.0'}
|
|
74
|
+
hasBin: true
|
|
75
|
+
|
|
76
|
+
'@babel/template@7.28.6':
|
|
77
|
+
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
|
|
78
|
+
engines: {node: '>=6.9.0'}
|
|
79
|
+
|
|
80
|
+
'@babel/traverse@7.29.0':
|
|
81
|
+
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
|
|
82
|
+
engines: {node: '>=6.9.0'}
|
|
83
|
+
|
|
84
|
+
'@babel/types@7.29.0':
|
|
85
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
86
|
+
engines: {node: '>=6.9.0'}
|
|
87
|
+
|
|
88
|
+
'@biomejs/biome@2.4.6':
|
|
89
|
+
resolution: {integrity: sha512-QnHe81PMslpy3mnpL8DnO2M4S4ZnYPkjlGCLWBZT/3R9M6b5daArWMMtEfP52/n174RKnwRIf3oT8+wc9ihSfQ==}
|
|
90
|
+
engines: {node: '>=14.21.3'}
|
|
91
|
+
hasBin: true
|
|
92
|
+
|
|
93
|
+
'@biomejs/cli-darwin-arm64@2.4.6':
|
|
94
|
+
resolution: {integrity: sha512-NW18GSyxr+8sJIqgoGwVp5Zqm4SALH4b4gftIA0n62PTuBs6G2tHlwNAOj0Vq0KKSs7Sf88VjjmHh0O36EnzrQ==}
|
|
95
|
+
engines: {node: '>=14.21.3'}
|
|
96
|
+
cpu: [arm64]
|
|
97
|
+
os: [darwin]
|
|
98
|
+
|
|
99
|
+
'@biomejs/cli-darwin-x64@2.4.6':
|
|
100
|
+
resolution: {integrity: sha512-4uiE/9tuI7cnjtY9b07RgS7gGyYOAfIAGeVJWEfeCnAarOAS7qVmuRyX6d7JTKw28/mt+rUzMasYeZ+0R/U1Mw==}
|
|
101
|
+
engines: {node: '>=14.21.3'}
|
|
102
|
+
cpu: [x64]
|
|
103
|
+
os: [darwin]
|
|
104
|
+
|
|
105
|
+
'@biomejs/cli-linux-arm64-musl@2.4.6':
|
|
106
|
+
resolution: {integrity: sha512-F/JdB7eN22txiTqHM5KhIVt0jVkzZwVYrdTR1O3Y4auBOQcXxHK4dxULf4z43QyZI5tsnQJrRBHZy7wwtL+B3A==}
|
|
107
|
+
engines: {node: '>=14.21.3'}
|
|
108
|
+
cpu: [arm64]
|
|
109
|
+
os: [linux]
|
|
110
|
+
|
|
111
|
+
'@biomejs/cli-linux-arm64@2.4.6':
|
|
112
|
+
resolution: {integrity: sha512-kMLaI7OF5GN1Q8Doymjro1P8rVEoy7BKQALNz6fiR8IC1WKduoNyteBtJlHT7ASIL0Cx2jR6VUOBIbcB1B8pew==}
|
|
113
|
+
engines: {node: '>=14.21.3'}
|
|
114
|
+
cpu: [arm64]
|
|
115
|
+
os: [linux]
|
|
116
|
+
|
|
117
|
+
'@biomejs/cli-linux-x64-musl@2.4.6':
|
|
118
|
+
resolution: {integrity: sha512-C9s98IPDu7DYarjlZNuzJKTjVHN03RUnmHV5htvqsx6vEUXCDSJ59DNwjKVD5XYoSS4N+BYhq3RTBAL8X6svEg==}
|
|
119
|
+
engines: {node: '>=14.21.3'}
|
|
120
|
+
cpu: [x64]
|
|
121
|
+
os: [linux]
|
|
122
|
+
|
|
123
|
+
'@biomejs/cli-linux-x64@2.4.6':
|
|
124
|
+
resolution: {integrity: sha512-oHXmUFEoH8Lql1xfc3QkFLiC1hGR7qedv5eKNlC185or+o4/4HiaU7vYODAH3peRCfsuLr1g6v2fK9dFFOYdyw==}
|
|
125
|
+
engines: {node: '>=14.21.3'}
|
|
126
|
+
cpu: [x64]
|
|
127
|
+
os: [linux]
|
|
128
|
+
|
|
129
|
+
'@biomejs/cli-win32-arm64@2.4.6':
|
|
130
|
+
resolution: {integrity: sha512-xzThn87Pf3YrOGTEODFGONmqXpTwUNxovQb72iaUOdcw8sBSY3+3WD8Hm9IhMYLnPi0n32s3L3NWU6+eSjfqFg==}
|
|
131
|
+
engines: {node: '>=14.21.3'}
|
|
132
|
+
cpu: [arm64]
|
|
133
|
+
os: [win32]
|
|
134
|
+
|
|
135
|
+
'@biomejs/cli-win32-x64@2.4.6':
|
|
136
|
+
resolution: {integrity: sha512-7++XhnsPlr1HDbor5amovPjOH6vsrFOCdp93iKXhFn6bcMUI6soodj3WWKfgEO6JosKU1W5n3uky3WW9RlRjTg==}
|
|
137
|
+
engines: {node: '>=14.21.3'}
|
|
138
|
+
cpu: [x64]
|
|
139
|
+
os: [win32]
|
|
140
|
+
|
|
141
|
+
'@clack/core@1.1.0':
|
|
142
|
+
resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==}
|
|
143
|
+
|
|
144
|
+
'@clack/prompts@1.1.0':
|
|
145
|
+
resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==}
|
|
146
|
+
|
|
147
|
+
'@commander-js/extra-typings@14.0.0':
|
|
148
|
+
resolution: {integrity: sha512-hIn0ncNaJRLkZrxBIp5AsW/eXEHNKYQBh0aPdoUqNgD+Io3NIykQqpKFyKcuasZhicGaEZJX/JBSIkZ4e5x8Dg==}
|
|
149
|
+
peerDependencies:
|
|
150
|
+
commander: ~14.0.0
|
|
151
|
+
|
|
152
|
+
'@esbuild/aix-ppc64@0.25.3':
|
|
153
|
+
resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
|
|
154
|
+
engines: {node: '>=18'}
|
|
155
|
+
cpu: [ppc64]
|
|
156
|
+
os: [aix]
|
|
157
|
+
|
|
158
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
159
|
+
resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
|
|
160
|
+
engines: {node: '>=18'}
|
|
161
|
+
cpu: [ppc64]
|
|
162
|
+
os: [aix]
|
|
163
|
+
|
|
164
|
+
'@esbuild/android-arm64@0.25.3':
|
|
165
|
+
resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
|
|
166
|
+
engines: {node: '>=18'}
|
|
167
|
+
cpu: [arm64]
|
|
168
|
+
os: [android]
|
|
169
|
+
|
|
170
|
+
'@esbuild/android-arm64@0.27.3':
|
|
171
|
+
resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
|
|
172
|
+
engines: {node: '>=18'}
|
|
173
|
+
cpu: [arm64]
|
|
174
|
+
os: [android]
|
|
175
|
+
|
|
176
|
+
'@esbuild/android-arm@0.25.3':
|
|
177
|
+
resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
|
|
178
|
+
engines: {node: '>=18'}
|
|
179
|
+
cpu: [arm]
|
|
180
|
+
os: [android]
|
|
181
|
+
|
|
182
|
+
'@esbuild/android-arm@0.27.3':
|
|
183
|
+
resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
|
|
184
|
+
engines: {node: '>=18'}
|
|
185
|
+
cpu: [arm]
|
|
186
|
+
os: [android]
|
|
187
|
+
|
|
188
|
+
'@esbuild/android-x64@0.25.3':
|
|
189
|
+
resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
|
|
190
|
+
engines: {node: '>=18'}
|
|
191
|
+
cpu: [x64]
|
|
192
|
+
os: [android]
|
|
193
|
+
|
|
194
|
+
'@esbuild/android-x64@0.27.3':
|
|
195
|
+
resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
|
|
196
|
+
engines: {node: '>=18'}
|
|
197
|
+
cpu: [x64]
|
|
198
|
+
os: [android]
|
|
199
|
+
|
|
200
|
+
'@esbuild/darwin-arm64@0.25.3':
|
|
201
|
+
resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
|
|
202
|
+
engines: {node: '>=18'}
|
|
203
|
+
cpu: [arm64]
|
|
204
|
+
os: [darwin]
|
|
205
|
+
|
|
206
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
207
|
+
resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
|
|
208
|
+
engines: {node: '>=18'}
|
|
209
|
+
cpu: [arm64]
|
|
210
|
+
os: [darwin]
|
|
211
|
+
|
|
212
|
+
'@esbuild/darwin-x64@0.25.3':
|
|
213
|
+
resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
|
|
214
|
+
engines: {node: '>=18'}
|
|
215
|
+
cpu: [x64]
|
|
216
|
+
os: [darwin]
|
|
217
|
+
|
|
218
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
219
|
+
resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
|
|
220
|
+
engines: {node: '>=18'}
|
|
221
|
+
cpu: [x64]
|
|
222
|
+
os: [darwin]
|
|
223
|
+
|
|
224
|
+
'@esbuild/freebsd-arm64@0.25.3':
|
|
225
|
+
resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
|
|
226
|
+
engines: {node: '>=18'}
|
|
227
|
+
cpu: [arm64]
|
|
228
|
+
os: [freebsd]
|
|
229
|
+
|
|
230
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
231
|
+
resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
|
|
232
|
+
engines: {node: '>=18'}
|
|
233
|
+
cpu: [arm64]
|
|
234
|
+
os: [freebsd]
|
|
235
|
+
|
|
236
|
+
'@esbuild/freebsd-x64@0.25.3':
|
|
237
|
+
resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
|
|
238
|
+
engines: {node: '>=18'}
|
|
239
|
+
cpu: [x64]
|
|
240
|
+
os: [freebsd]
|
|
241
|
+
|
|
242
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
243
|
+
resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
|
|
244
|
+
engines: {node: '>=18'}
|
|
245
|
+
cpu: [x64]
|
|
246
|
+
os: [freebsd]
|
|
247
|
+
|
|
248
|
+
'@esbuild/linux-arm64@0.25.3':
|
|
249
|
+
resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
|
|
250
|
+
engines: {node: '>=18'}
|
|
251
|
+
cpu: [arm64]
|
|
252
|
+
os: [linux]
|
|
253
|
+
|
|
254
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
255
|
+
resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
|
|
256
|
+
engines: {node: '>=18'}
|
|
257
|
+
cpu: [arm64]
|
|
258
|
+
os: [linux]
|
|
259
|
+
|
|
260
|
+
'@esbuild/linux-arm@0.25.3':
|
|
261
|
+
resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
|
|
262
|
+
engines: {node: '>=18'}
|
|
263
|
+
cpu: [arm]
|
|
264
|
+
os: [linux]
|
|
265
|
+
|
|
266
|
+
'@esbuild/linux-arm@0.27.3':
|
|
267
|
+
resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
|
|
268
|
+
engines: {node: '>=18'}
|
|
269
|
+
cpu: [arm]
|
|
270
|
+
os: [linux]
|
|
271
|
+
|
|
272
|
+
'@esbuild/linux-ia32@0.25.3':
|
|
273
|
+
resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
|
|
274
|
+
engines: {node: '>=18'}
|
|
275
|
+
cpu: [ia32]
|
|
276
|
+
os: [linux]
|
|
277
|
+
|
|
278
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
279
|
+
resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
|
|
280
|
+
engines: {node: '>=18'}
|
|
281
|
+
cpu: [ia32]
|
|
282
|
+
os: [linux]
|
|
283
|
+
|
|
284
|
+
'@esbuild/linux-loong64@0.25.3':
|
|
285
|
+
resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
|
|
286
|
+
engines: {node: '>=18'}
|
|
287
|
+
cpu: [loong64]
|
|
288
|
+
os: [linux]
|
|
289
|
+
|
|
290
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
291
|
+
resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
|
|
292
|
+
engines: {node: '>=18'}
|
|
293
|
+
cpu: [loong64]
|
|
294
|
+
os: [linux]
|
|
295
|
+
|
|
296
|
+
'@esbuild/linux-mips64el@0.25.3':
|
|
297
|
+
resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
|
|
298
|
+
engines: {node: '>=18'}
|
|
299
|
+
cpu: [mips64el]
|
|
300
|
+
os: [linux]
|
|
301
|
+
|
|
302
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
303
|
+
resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
|
|
304
|
+
engines: {node: '>=18'}
|
|
305
|
+
cpu: [mips64el]
|
|
306
|
+
os: [linux]
|
|
307
|
+
|
|
308
|
+
'@esbuild/linux-ppc64@0.25.3':
|
|
309
|
+
resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
|
|
310
|
+
engines: {node: '>=18'}
|
|
311
|
+
cpu: [ppc64]
|
|
312
|
+
os: [linux]
|
|
313
|
+
|
|
314
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
315
|
+
resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
|
|
316
|
+
engines: {node: '>=18'}
|
|
317
|
+
cpu: [ppc64]
|
|
318
|
+
os: [linux]
|
|
319
|
+
|
|
320
|
+
'@esbuild/linux-riscv64@0.25.3':
|
|
321
|
+
resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
|
|
322
|
+
engines: {node: '>=18'}
|
|
323
|
+
cpu: [riscv64]
|
|
324
|
+
os: [linux]
|
|
325
|
+
|
|
326
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
327
|
+
resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
|
|
328
|
+
engines: {node: '>=18'}
|
|
329
|
+
cpu: [riscv64]
|
|
330
|
+
os: [linux]
|
|
331
|
+
|
|
332
|
+
'@esbuild/linux-s390x@0.25.3':
|
|
333
|
+
resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
|
|
334
|
+
engines: {node: '>=18'}
|
|
335
|
+
cpu: [s390x]
|
|
336
|
+
os: [linux]
|
|
337
|
+
|
|
338
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
339
|
+
resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
|
|
340
|
+
engines: {node: '>=18'}
|
|
341
|
+
cpu: [s390x]
|
|
342
|
+
os: [linux]
|
|
343
|
+
|
|
344
|
+
'@esbuild/linux-x64@0.25.3':
|
|
345
|
+
resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
|
|
346
|
+
engines: {node: '>=18'}
|
|
347
|
+
cpu: [x64]
|
|
348
|
+
os: [linux]
|
|
349
|
+
|
|
350
|
+
'@esbuild/linux-x64@0.27.3':
|
|
351
|
+
resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
|
|
352
|
+
engines: {node: '>=18'}
|
|
353
|
+
cpu: [x64]
|
|
354
|
+
os: [linux]
|
|
355
|
+
|
|
356
|
+
'@esbuild/netbsd-arm64@0.25.3':
|
|
357
|
+
resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
|
|
358
|
+
engines: {node: '>=18'}
|
|
359
|
+
cpu: [arm64]
|
|
360
|
+
os: [netbsd]
|
|
361
|
+
|
|
362
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
363
|
+
resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
|
|
364
|
+
engines: {node: '>=18'}
|
|
365
|
+
cpu: [arm64]
|
|
366
|
+
os: [netbsd]
|
|
367
|
+
|
|
368
|
+
'@esbuild/netbsd-x64@0.25.3':
|
|
369
|
+
resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
|
|
370
|
+
engines: {node: '>=18'}
|
|
371
|
+
cpu: [x64]
|
|
372
|
+
os: [netbsd]
|
|
373
|
+
|
|
374
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
375
|
+
resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
|
|
376
|
+
engines: {node: '>=18'}
|
|
377
|
+
cpu: [x64]
|
|
378
|
+
os: [netbsd]
|
|
379
|
+
|
|
380
|
+
'@esbuild/openbsd-arm64@0.25.3':
|
|
381
|
+
resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
|
|
382
|
+
engines: {node: '>=18'}
|
|
383
|
+
cpu: [arm64]
|
|
384
|
+
os: [openbsd]
|
|
385
|
+
|
|
386
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
387
|
+
resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
|
|
388
|
+
engines: {node: '>=18'}
|
|
389
|
+
cpu: [arm64]
|
|
390
|
+
os: [openbsd]
|
|
391
|
+
|
|
392
|
+
'@esbuild/openbsd-x64@0.25.3':
|
|
393
|
+
resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
|
|
394
|
+
engines: {node: '>=18'}
|
|
395
|
+
cpu: [x64]
|
|
396
|
+
os: [openbsd]
|
|
397
|
+
|
|
398
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
399
|
+
resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
|
|
400
|
+
engines: {node: '>=18'}
|
|
401
|
+
cpu: [x64]
|
|
402
|
+
os: [openbsd]
|
|
403
|
+
|
|
404
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
405
|
+
resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
|
|
406
|
+
engines: {node: '>=18'}
|
|
407
|
+
cpu: [arm64]
|
|
408
|
+
os: [openharmony]
|
|
409
|
+
|
|
410
|
+
'@esbuild/sunos-x64@0.25.3':
|
|
411
|
+
resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
|
|
412
|
+
engines: {node: '>=18'}
|
|
413
|
+
cpu: [x64]
|
|
414
|
+
os: [sunos]
|
|
415
|
+
|
|
416
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
417
|
+
resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
|
|
418
|
+
engines: {node: '>=18'}
|
|
419
|
+
cpu: [x64]
|
|
420
|
+
os: [sunos]
|
|
421
|
+
|
|
422
|
+
'@esbuild/win32-arm64@0.25.3':
|
|
423
|
+
resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
|
|
424
|
+
engines: {node: '>=18'}
|
|
425
|
+
cpu: [arm64]
|
|
426
|
+
os: [win32]
|
|
427
|
+
|
|
428
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
429
|
+
resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
|
|
430
|
+
engines: {node: '>=18'}
|
|
431
|
+
cpu: [arm64]
|
|
432
|
+
os: [win32]
|
|
433
|
+
|
|
434
|
+
'@esbuild/win32-ia32@0.25.3':
|
|
435
|
+
resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
|
|
436
|
+
engines: {node: '>=18'}
|
|
437
|
+
cpu: [ia32]
|
|
438
|
+
os: [win32]
|
|
439
|
+
|
|
440
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
441
|
+
resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
|
|
442
|
+
engines: {node: '>=18'}
|
|
443
|
+
cpu: [ia32]
|
|
444
|
+
os: [win32]
|
|
445
|
+
|
|
446
|
+
'@esbuild/win32-x64@0.25.3':
|
|
447
|
+
resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
|
|
448
|
+
engines: {node: '>=18'}
|
|
449
|
+
cpu: [x64]
|
|
450
|
+
os: [win32]
|
|
451
|
+
|
|
452
|
+
'@esbuild/win32-x64@0.27.3':
|
|
453
|
+
resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
|
|
454
|
+
engines: {node: '>=18'}
|
|
455
|
+
cpu: [x64]
|
|
456
|
+
os: [win32]
|
|
457
|
+
|
|
458
|
+
'@isaacs/fs-minipass@4.0.1':
|
|
459
|
+
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
|
|
460
|
+
engines: {node: '>=18.0.0'}
|
|
461
|
+
|
|
462
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
463
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
464
|
+
|
|
465
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
466
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
467
|
+
engines: {node: '>=6.0.0'}
|
|
468
|
+
|
|
469
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
470
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
471
|
+
|
|
472
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
473
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
474
|
+
|
|
475
|
+
'@rollup/rollup-android-arm-eabi@4.59.0':
|
|
476
|
+
resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
|
|
477
|
+
cpu: [arm]
|
|
478
|
+
os: [android]
|
|
479
|
+
|
|
480
|
+
'@rollup/rollup-android-arm64@4.59.0':
|
|
481
|
+
resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
|
|
482
|
+
cpu: [arm64]
|
|
483
|
+
os: [android]
|
|
484
|
+
|
|
485
|
+
'@rollup/rollup-darwin-arm64@4.59.0':
|
|
486
|
+
resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
|
|
487
|
+
cpu: [arm64]
|
|
488
|
+
os: [darwin]
|
|
489
|
+
|
|
490
|
+
'@rollup/rollup-darwin-x64@4.59.0':
|
|
491
|
+
resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
|
|
492
|
+
cpu: [x64]
|
|
493
|
+
os: [darwin]
|
|
494
|
+
|
|
495
|
+
'@rollup/rollup-freebsd-arm64@4.59.0':
|
|
496
|
+
resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
|
|
497
|
+
cpu: [arm64]
|
|
498
|
+
os: [freebsd]
|
|
499
|
+
|
|
500
|
+
'@rollup/rollup-freebsd-x64@4.59.0':
|
|
501
|
+
resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
|
|
502
|
+
cpu: [x64]
|
|
503
|
+
os: [freebsd]
|
|
504
|
+
|
|
505
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.59.0':
|
|
506
|
+
resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
|
|
507
|
+
cpu: [arm]
|
|
508
|
+
os: [linux]
|
|
509
|
+
|
|
510
|
+
'@rollup/rollup-linux-arm-musleabihf@4.59.0':
|
|
511
|
+
resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
|
|
512
|
+
cpu: [arm]
|
|
513
|
+
os: [linux]
|
|
514
|
+
|
|
515
|
+
'@rollup/rollup-linux-arm64-gnu@4.59.0':
|
|
516
|
+
resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
|
|
517
|
+
cpu: [arm64]
|
|
518
|
+
os: [linux]
|
|
519
|
+
|
|
520
|
+
'@rollup/rollup-linux-arm64-musl@4.59.0':
|
|
521
|
+
resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
|
|
522
|
+
cpu: [arm64]
|
|
523
|
+
os: [linux]
|
|
524
|
+
|
|
525
|
+
'@rollup/rollup-linux-loong64-gnu@4.59.0':
|
|
526
|
+
resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
|
|
527
|
+
cpu: [loong64]
|
|
528
|
+
os: [linux]
|
|
529
|
+
|
|
530
|
+
'@rollup/rollup-linux-loong64-musl@4.59.0':
|
|
531
|
+
resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
|
|
532
|
+
cpu: [loong64]
|
|
533
|
+
os: [linux]
|
|
534
|
+
|
|
535
|
+
'@rollup/rollup-linux-ppc64-gnu@4.59.0':
|
|
536
|
+
resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
|
|
537
|
+
cpu: [ppc64]
|
|
538
|
+
os: [linux]
|
|
539
|
+
|
|
540
|
+
'@rollup/rollup-linux-ppc64-musl@4.59.0':
|
|
541
|
+
resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
|
|
542
|
+
cpu: [ppc64]
|
|
543
|
+
os: [linux]
|
|
544
|
+
|
|
545
|
+
'@rollup/rollup-linux-riscv64-gnu@4.59.0':
|
|
546
|
+
resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
|
|
547
|
+
cpu: [riscv64]
|
|
548
|
+
os: [linux]
|
|
549
|
+
|
|
550
|
+
'@rollup/rollup-linux-riscv64-musl@4.59.0':
|
|
551
|
+
resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
|
|
552
|
+
cpu: [riscv64]
|
|
553
|
+
os: [linux]
|
|
554
|
+
|
|
555
|
+
'@rollup/rollup-linux-s390x-gnu@4.59.0':
|
|
556
|
+
resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
|
|
557
|
+
cpu: [s390x]
|
|
558
|
+
os: [linux]
|
|
559
|
+
|
|
560
|
+
'@rollup/rollup-linux-x64-gnu@4.59.0':
|
|
561
|
+
resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
|
|
562
|
+
cpu: [x64]
|
|
563
|
+
os: [linux]
|
|
564
|
+
|
|
565
|
+
'@rollup/rollup-linux-x64-musl@4.59.0':
|
|
566
|
+
resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
|
|
567
|
+
cpu: [x64]
|
|
568
|
+
os: [linux]
|
|
569
|
+
|
|
570
|
+
'@rollup/rollup-openbsd-x64@4.59.0':
|
|
571
|
+
resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
|
|
572
|
+
cpu: [x64]
|
|
573
|
+
os: [openbsd]
|
|
574
|
+
|
|
575
|
+
'@rollup/rollup-openharmony-arm64@4.59.0':
|
|
576
|
+
resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
|
|
577
|
+
cpu: [arm64]
|
|
578
|
+
os: [openharmony]
|
|
579
|
+
|
|
580
|
+
'@rollup/rollup-win32-arm64-msvc@4.59.0':
|
|
581
|
+
resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
|
|
582
|
+
cpu: [arm64]
|
|
583
|
+
os: [win32]
|
|
584
|
+
|
|
585
|
+
'@rollup/rollup-win32-ia32-msvc@4.59.0':
|
|
586
|
+
resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
|
|
587
|
+
cpu: [ia32]
|
|
588
|
+
os: [win32]
|
|
589
|
+
|
|
590
|
+
'@rollup/rollup-win32-x64-gnu@4.59.0':
|
|
591
|
+
resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
|
|
592
|
+
cpu: [x64]
|
|
593
|
+
os: [win32]
|
|
594
|
+
|
|
595
|
+
'@rollup/rollup-win32-x64-msvc@4.59.0':
|
|
596
|
+
resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
|
|
597
|
+
cpu: [x64]
|
|
598
|
+
os: [win32]
|
|
599
|
+
|
|
600
|
+
'@stablelib/base64@1.0.1':
|
|
601
|
+
resolution: {integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==}
|
|
602
|
+
|
|
603
|
+
'@types/estree@1.0.8':
|
|
604
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
605
|
+
|
|
606
|
+
'@types/node@22.19.15':
|
|
607
|
+
resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
|
|
608
|
+
|
|
609
|
+
'@vitest/expect@3.1.4':
|
|
610
|
+
resolution: {integrity: sha512-xkD/ljeliyaClDYqHPNCiJ0plY5YIcM0OlRiZizLhlPmpXWpxnGMyTZXOHFhFeG7w9P5PBeL4IdtJ/HeQwTbQA==}
|
|
611
|
+
|
|
612
|
+
'@vitest/mocker@3.1.4':
|
|
613
|
+
resolution: {integrity: sha512-8IJ3CvwtSw/EFXqWFL8aCMu+YyYXG2WUSrQbViOZkWTKTVicVwZ/YiEZDSqD00kX+v/+W+OnxhNWoeVKorHygA==}
|
|
614
|
+
peerDependencies:
|
|
615
|
+
msw: ^2.4.9
|
|
616
|
+
vite: ^5.0.0 || ^6.0.0
|
|
617
|
+
peerDependenciesMeta:
|
|
618
|
+
msw:
|
|
619
|
+
optional: true
|
|
620
|
+
vite:
|
|
621
|
+
optional: true
|
|
622
|
+
|
|
623
|
+
'@vitest/pretty-format@3.1.4':
|
|
624
|
+
resolution: {integrity: sha512-cqv9H9GvAEoTaoq+cYqUTCGscUjKqlJZC7PRwY5FMySVj5J+xOm1KQcCiYHJOEzOKRUhLH4R2pTwvFlWCEScsg==}
|
|
625
|
+
|
|
626
|
+
'@vitest/pretty-format@3.2.4':
|
|
627
|
+
resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
|
|
628
|
+
|
|
629
|
+
'@vitest/runner@3.1.4':
|
|
630
|
+
resolution: {integrity: sha512-djTeF1/vt985I/wpKVFBMWUlk/I7mb5hmD5oP8K9ACRmVXgKTae3TUOtXAEBfslNKPzUQvnKhNd34nnRSYgLNQ==}
|
|
631
|
+
|
|
632
|
+
'@vitest/snapshot@3.1.4':
|
|
633
|
+
resolution: {integrity: sha512-JPHf68DvuO7vilmvwdPr9TS0SuuIzHvxeaCkxYcCD4jTk67XwL45ZhEHFKIuCm8CYstgI6LZ4XbwD6ANrwMpFg==}
|
|
634
|
+
|
|
635
|
+
'@vitest/spy@3.1.4':
|
|
636
|
+
resolution: {integrity: sha512-Xg1bXhu+vtPXIodYN369M86K8shGLouNjoVI78g8iAq2rFoHFdajNvJJ5A/9bPMFcfQqdaCpOgWKEoMQg/s0Yg==}
|
|
637
|
+
|
|
638
|
+
'@vitest/utils@3.1.4':
|
|
639
|
+
resolution: {integrity: sha512-yriMuO1cfFhmiGc8ataN51+9ooHRuURdfAZfwFd3usWynjzpLslZdYnRegTv32qdgtJTsj15FoeZe2g15fY1gg==}
|
|
640
|
+
|
|
641
|
+
'@yao-pkg/pkg-fetch@3.5.32':
|
|
642
|
+
resolution: {integrity: sha512-hS8zzze5VVyVAciZoNX4q3ZmCdn0gi34P2SElk4PFbzkA4LPs7qBJ3LhUKb4d4KGw1HVkFJJOMgGomH7cMqQ5Q==}
|
|
643
|
+
hasBin: true
|
|
644
|
+
|
|
645
|
+
'@yao-pkg/pkg@6.14.1':
|
|
646
|
+
resolution: {integrity: sha512-kTtxr+r9/pi+POcuuJN9q2YRs1Ekp7iwsgU3du1XO6ozwjlp+F31ZF19WS2ZDIloWYGCvfbURrrXMgQJpWZb+Q==}
|
|
647
|
+
engines: {node: '>=20.0.0'}
|
|
648
|
+
hasBin: true
|
|
649
|
+
|
|
650
|
+
agent-base@6.0.2:
|
|
651
|
+
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
|
|
652
|
+
engines: {node: '>= 6.0.0'}
|
|
653
|
+
|
|
654
|
+
ansi-regex@5.0.1:
|
|
655
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
656
|
+
engines: {node: '>=8'}
|
|
657
|
+
|
|
658
|
+
ansi-styles@4.3.0:
|
|
659
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
660
|
+
engines: {node: '>=8'}
|
|
661
|
+
|
|
662
|
+
assertion-error@2.0.1:
|
|
663
|
+
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
|
|
664
|
+
engines: {node: '>=12'}
|
|
665
|
+
|
|
666
|
+
b4a@1.8.0:
|
|
667
|
+
resolution: {integrity: sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==}
|
|
668
|
+
peerDependencies:
|
|
669
|
+
react-native-b4a: '*'
|
|
670
|
+
peerDependenciesMeta:
|
|
671
|
+
react-native-b4a:
|
|
672
|
+
optional: true
|
|
673
|
+
|
|
674
|
+
bare-events@2.8.2:
|
|
675
|
+
resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==}
|
|
676
|
+
peerDependencies:
|
|
677
|
+
bare-abort-controller: '*'
|
|
678
|
+
peerDependenciesMeta:
|
|
679
|
+
bare-abort-controller:
|
|
680
|
+
optional: true
|
|
681
|
+
|
|
682
|
+
bare-fs@4.5.5:
|
|
683
|
+
resolution: {integrity: sha512-XvwYM6VZqKoqDll8BmSww5luA5eflDzY0uEFfBJtFKe4PAAtxBjU3YIxzIBzhyaEQBy1VXEQBto4cpN5RZJw+w==}
|
|
684
|
+
engines: {bare: '>=1.16.0'}
|
|
685
|
+
peerDependencies:
|
|
686
|
+
bare-buffer: '*'
|
|
687
|
+
peerDependenciesMeta:
|
|
688
|
+
bare-buffer:
|
|
689
|
+
optional: true
|
|
690
|
+
|
|
691
|
+
bare-os@3.7.1:
|
|
692
|
+
resolution: {integrity: sha512-ebvMaS5BgZKmJlvuWh14dg9rbUI84QeV3WlWn6Ph6lFI8jJoh7ADtVTyD2c93euwbe+zgi0DVrl4YmqXeM9aIA==}
|
|
693
|
+
engines: {bare: '>=1.14.0'}
|
|
694
|
+
|
|
695
|
+
bare-path@3.0.0:
|
|
696
|
+
resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
|
|
697
|
+
|
|
698
|
+
bare-stream@2.8.1:
|
|
699
|
+
resolution: {integrity: sha512-bSeR8RfvbRwDpD7HWZvn8M3uYNDrk7m9DQjYOFkENZlXW8Ju/MPaqUPQq5LqJ3kyjEm07siTaAQ7wBKCU59oHg==}
|
|
700
|
+
peerDependencies:
|
|
701
|
+
bare-buffer: '*'
|
|
702
|
+
bare-events: '*'
|
|
703
|
+
peerDependenciesMeta:
|
|
704
|
+
bare-buffer:
|
|
705
|
+
optional: true
|
|
706
|
+
bare-events:
|
|
707
|
+
optional: true
|
|
708
|
+
|
|
709
|
+
bare-url@2.3.2:
|
|
710
|
+
resolution: {integrity: sha512-ZMq4gd9ngV5aTMa5p9+UfY0b3skwhHELaDkhEHetMdX0LRkW9kzaym4oo/Eh+Ghm0CCDuMTsRIGM/ytUc1ZYmw==}
|
|
711
|
+
|
|
712
|
+
base64-js@1.5.1:
|
|
713
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
714
|
+
|
|
715
|
+
bl@4.1.0:
|
|
716
|
+
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
|
|
717
|
+
|
|
718
|
+
bluebird@3.7.2:
|
|
719
|
+
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
|
|
720
|
+
|
|
721
|
+
buffer@5.7.1:
|
|
722
|
+
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
723
|
+
|
|
724
|
+
cac@6.7.14:
|
|
725
|
+
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
|
|
726
|
+
engines: {node: '>=8'}
|
|
727
|
+
|
|
728
|
+
chai@5.3.3:
|
|
729
|
+
resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
|
|
730
|
+
engines: {node: '>=18'}
|
|
731
|
+
|
|
732
|
+
check-error@2.1.3:
|
|
733
|
+
resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
|
|
734
|
+
engines: {node: '>= 16'}
|
|
735
|
+
|
|
736
|
+
chownr@1.1.4:
|
|
737
|
+
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
|
738
|
+
|
|
739
|
+
chownr@3.0.0:
|
|
740
|
+
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
|
|
741
|
+
engines: {node: '>=18'}
|
|
742
|
+
|
|
743
|
+
cliui@7.0.4:
|
|
744
|
+
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
|
|
745
|
+
|
|
746
|
+
color-convert@2.0.1:
|
|
747
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
748
|
+
engines: {node: '>=7.0.0'}
|
|
749
|
+
|
|
750
|
+
color-name@1.1.4:
|
|
751
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
752
|
+
|
|
753
|
+
commander@14.0.3:
|
|
754
|
+
resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
|
|
755
|
+
engines: {node: '>=20'}
|
|
756
|
+
|
|
757
|
+
core-util-is@1.0.3:
|
|
758
|
+
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
|
759
|
+
|
|
760
|
+
debug@4.4.3:
|
|
761
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
762
|
+
engines: {node: '>=6.0'}
|
|
763
|
+
peerDependencies:
|
|
764
|
+
supports-color: '*'
|
|
765
|
+
peerDependenciesMeta:
|
|
766
|
+
supports-color:
|
|
767
|
+
optional: true
|
|
768
|
+
|
|
769
|
+
decompress-response@6.0.0:
|
|
770
|
+
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
|
|
771
|
+
engines: {node: '>=10'}
|
|
772
|
+
|
|
773
|
+
deep-eql@5.0.2:
|
|
774
|
+
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
|
|
775
|
+
engines: {node: '>=6'}
|
|
776
|
+
|
|
777
|
+
deep-extend@0.6.0:
|
|
778
|
+
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
779
|
+
engines: {node: '>=4.0.0'}
|
|
780
|
+
|
|
781
|
+
detect-libc@2.1.2:
|
|
782
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
783
|
+
engines: {node: '>=8'}
|
|
784
|
+
|
|
785
|
+
duplexer2@0.1.4:
|
|
786
|
+
resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
|
|
787
|
+
|
|
788
|
+
emoji-regex@8.0.0:
|
|
789
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
790
|
+
|
|
791
|
+
end-of-stream@1.4.5:
|
|
792
|
+
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
793
|
+
|
|
794
|
+
es-module-lexer@1.7.0:
|
|
795
|
+
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
|
|
796
|
+
|
|
797
|
+
esbuild@0.25.3:
|
|
798
|
+
resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
|
|
799
|
+
engines: {node: '>=18'}
|
|
800
|
+
hasBin: true
|
|
801
|
+
|
|
802
|
+
esbuild@0.27.3:
|
|
803
|
+
resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
|
|
804
|
+
engines: {node: '>=18'}
|
|
805
|
+
hasBin: true
|
|
806
|
+
|
|
807
|
+
escalade@3.2.0:
|
|
808
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
809
|
+
engines: {node: '>=6'}
|
|
810
|
+
|
|
811
|
+
estree-walker@3.0.3:
|
|
812
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
813
|
+
|
|
814
|
+
events-universal@1.0.1:
|
|
815
|
+
resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==}
|
|
816
|
+
|
|
817
|
+
expand-template@2.0.3:
|
|
818
|
+
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
|
819
|
+
engines: {node: '>=6'}
|
|
820
|
+
|
|
821
|
+
expect-type@1.3.0:
|
|
822
|
+
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
|
|
823
|
+
engines: {node: '>=12.0.0'}
|
|
824
|
+
|
|
825
|
+
fast-fifo@1.3.2:
|
|
826
|
+
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
|
|
827
|
+
|
|
828
|
+
fast-sha256@1.3.0:
|
|
829
|
+
resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
|
|
830
|
+
|
|
831
|
+
fdir@6.5.0:
|
|
832
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
833
|
+
engines: {node: '>=12.0.0'}
|
|
834
|
+
peerDependencies:
|
|
835
|
+
picomatch: ^3 || ^4
|
|
836
|
+
peerDependenciesMeta:
|
|
837
|
+
picomatch:
|
|
838
|
+
optional: true
|
|
839
|
+
|
|
840
|
+
fs-constants@1.0.0:
|
|
841
|
+
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
|
842
|
+
|
|
843
|
+
fs-extra@11.3.4:
|
|
844
|
+
resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==}
|
|
845
|
+
engines: {node: '>=14.14'}
|
|
846
|
+
|
|
847
|
+
fsevents@2.3.3:
|
|
848
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
849
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
850
|
+
os: [darwin]
|
|
851
|
+
|
|
852
|
+
function-bind@1.1.2:
|
|
853
|
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
854
|
+
|
|
855
|
+
get-caller-file@2.0.5:
|
|
856
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
857
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
858
|
+
|
|
859
|
+
get-tsconfig@4.13.6:
|
|
860
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
861
|
+
|
|
862
|
+
github-from-package@0.0.0:
|
|
863
|
+
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
|
864
|
+
|
|
865
|
+
graceful-fs@4.2.11:
|
|
866
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
867
|
+
|
|
868
|
+
hasown@2.0.2:
|
|
869
|
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
870
|
+
engines: {node: '>= 0.4'}
|
|
871
|
+
|
|
872
|
+
https-proxy-agent@5.0.1:
|
|
873
|
+
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
|
|
874
|
+
engines: {node: '>= 6'}
|
|
875
|
+
|
|
876
|
+
ieee754@1.2.1:
|
|
877
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
878
|
+
|
|
879
|
+
inherits@2.0.4:
|
|
880
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
881
|
+
|
|
882
|
+
ini@1.3.8:
|
|
883
|
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
884
|
+
|
|
885
|
+
into-stream@9.1.0:
|
|
886
|
+
resolution: {integrity: sha512-DRsRnQrbzdFjaQ1oe4C6/EIUymIOEix1qROEJTF9dbMq+M4Zrm6VaLp6SD/B9IsiEjPZuBSnWWFN+udajugdWA==}
|
|
887
|
+
engines: {node: '>=20'}
|
|
888
|
+
|
|
889
|
+
is-core-module@2.16.1:
|
|
890
|
+
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
|
|
891
|
+
engines: {node: '>= 0.4'}
|
|
892
|
+
|
|
893
|
+
is-fullwidth-code-point@3.0.0:
|
|
894
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
895
|
+
engines: {node: '>=8'}
|
|
896
|
+
|
|
897
|
+
isarray@1.0.0:
|
|
898
|
+
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
|
|
899
|
+
|
|
900
|
+
js-tokens@4.0.0:
|
|
901
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
902
|
+
|
|
903
|
+
jsesc@3.1.0:
|
|
904
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
905
|
+
engines: {node: '>=6'}
|
|
906
|
+
hasBin: true
|
|
907
|
+
|
|
908
|
+
jsonfile@6.2.0:
|
|
909
|
+
resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
|
|
910
|
+
|
|
911
|
+
loupe@3.2.1:
|
|
912
|
+
resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
|
|
913
|
+
|
|
914
|
+
magic-string@0.30.21:
|
|
915
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
916
|
+
|
|
917
|
+
mimic-response@3.1.0:
|
|
918
|
+
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
|
919
|
+
engines: {node: '>=10'}
|
|
920
|
+
|
|
921
|
+
minimist@1.2.8:
|
|
922
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
923
|
+
|
|
924
|
+
minipass@7.1.3:
|
|
925
|
+
resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
|
|
926
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
927
|
+
|
|
928
|
+
minizlib@3.1.0:
|
|
929
|
+
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
|
|
930
|
+
engines: {node: '>= 18'}
|
|
931
|
+
|
|
932
|
+
mkdirp-classic@0.5.3:
|
|
933
|
+
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
|
934
|
+
|
|
935
|
+
ms@2.1.3:
|
|
936
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
937
|
+
|
|
938
|
+
multistream@4.1.0:
|
|
939
|
+
resolution: {integrity: sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw==}
|
|
940
|
+
|
|
941
|
+
nanoid@3.3.11:
|
|
942
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
943
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
944
|
+
hasBin: true
|
|
945
|
+
|
|
946
|
+
napi-build-utils@2.0.0:
|
|
947
|
+
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
948
|
+
|
|
949
|
+
node-abi@3.88.0:
|
|
950
|
+
resolution: {integrity: sha512-At6b4UqIEVudaqPsXjmUO1r/N5BUr4yhDGs5PkBE8/oG5+TfLPhFechiskFsnT6Ql0VfUXbalUUCbfXxtj7K+w==}
|
|
951
|
+
engines: {node: '>=10'}
|
|
952
|
+
|
|
953
|
+
node-fetch@2.7.0:
|
|
954
|
+
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
|
|
955
|
+
engines: {node: 4.x || >=6.0.0}
|
|
956
|
+
peerDependencies:
|
|
957
|
+
encoding: ^0.1.0
|
|
958
|
+
peerDependenciesMeta:
|
|
959
|
+
encoding:
|
|
960
|
+
optional: true
|
|
961
|
+
|
|
962
|
+
node-int64@0.4.0:
|
|
963
|
+
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
|
|
964
|
+
|
|
965
|
+
once@1.4.0:
|
|
966
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
967
|
+
|
|
968
|
+
path-parse@1.0.7:
|
|
969
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
970
|
+
|
|
971
|
+
pathe@2.0.3:
|
|
972
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
973
|
+
|
|
974
|
+
pathval@2.0.1:
|
|
975
|
+
resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
|
|
976
|
+
engines: {node: '>= 14.16'}
|
|
977
|
+
|
|
978
|
+
picocolors@1.1.1:
|
|
979
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
980
|
+
|
|
981
|
+
picomatch@4.0.3:
|
|
982
|
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
983
|
+
engines: {node: '>=12'}
|
|
984
|
+
|
|
985
|
+
postal-mime@2.7.3:
|
|
986
|
+
resolution: {integrity: sha512-MjhXadAJaWgYzevi46+3kLak8y6gbg0ku14O1gO/LNOuay8dO+1PtcSGvAdgDR0DoIsSaiIA8y/Ddw6MnrO0Tw==}
|
|
987
|
+
|
|
988
|
+
postcss@8.5.8:
|
|
989
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
990
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
991
|
+
|
|
992
|
+
prebuild-install@7.1.3:
|
|
993
|
+
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
994
|
+
engines: {node: '>=10'}
|
|
995
|
+
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
996
|
+
hasBin: true
|
|
997
|
+
|
|
998
|
+
process-nextick-args@2.0.1:
|
|
999
|
+
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
|
|
1000
|
+
|
|
1001
|
+
progress@2.0.3:
|
|
1002
|
+
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
|
|
1003
|
+
engines: {node: '>=0.4.0'}
|
|
1004
|
+
|
|
1005
|
+
pump@3.0.4:
|
|
1006
|
+
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
1007
|
+
|
|
1008
|
+
rc@1.2.8:
|
|
1009
|
+
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
|
1010
|
+
hasBin: true
|
|
1011
|
+
|
|
1012
|
+
readable-stream@2.3.8:
|
|
1013
|
+
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
|
|
1014
|
+
|
|
1015
|
+
readable-stream@3.6.2:
|
|
1016
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
1017
|
+
engines: {node: '>= 6'}
|
|
1018
|
+
|
|
1019
|
+
require-directory@2.1.1:
|
|
1020
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
1021
|
+
engines: {node: '>=0.10.0'}
|
|
1022
|
+
|
|
1023
|
+
resend@6.9.3:
|
|
1024
|
+
resolution: {integrity: sha512-GRXjH9XZBJA+daH7bBVDuTShr22iWCxXA8P7t495G4dM/RC+d+3gHBK/6bz9K6Vpcq11zRQKmD+B+jECwQlyGQ==}
|
|
1025
|
+
engines: {node: '>=20'}
|
|
1026
|
+
peerDependencies:
|
|
1027
|
+
'@react-email/render': '*'
|
|
1028
|
+
peerDependenciesMeta:
|
|
1029
|
+
'@react-email/render':
|
|
1030
|
+
optional: true
|
|
1031
|
+
|
|
1032
|
+
resolve-pkg-maps@1.0.0:
|
|
1033
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1034
|
+
|
|
1035
|
+
resolve.exports@2.0.3:
|
|
1036
|
+
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
|
|
1037
|
+
engines: {node: '>=10'}
|
|
1038
|
+
|
|
1039
|
+
resolve@1.22.11:
|
|
1040
|
+
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
|
|
1041
|
+
engines: {node: '>= 0.4'}
|
|
1042
|
+
hasBin: true
|
|
1043
|
+
|
|
1044
|
+
rollup@4.59.0:
|
|
1045
|
+
resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
|
|
1046
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1047
|
+
hasBin: true
|
|
1048
|
+
|
|
1049
|
+
safe-buffer@5.1.2:
|
|
1050
|
+
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
|
|
1051
|
+
|
|
1052
|
+
safe-buffer@5.2.1:
|
|
1053
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1054
|
+
|
|
1055
|
+
semver@7.7.4:
|
|
1056
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
1057
|
+
engines: {node: '>=10'}
|
|
1058
|
+
hasBin: true
|
|
1059
|
+
|
|
1060
|
+
siginfo@2.0.0:
|
|
1061
|
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
|
|
1062
|
+
|
|
1063
|
+
simple-concat@1.0.1:
|
|
1064
|
+
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
|
1065
|
+
|
|
1066
|
+
simple-get@4.0.1:
|
|
1067
|
+
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
|
1068
|
+
|
|
1069
|
+
sisteransi@1.0.5:
|
|
1070
|
+
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
|
1071
|
+
|
|
1072
|
+
source-map-js@1.2.1:
|
|
1073
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1074
|
+
engines: {node: '>=0.10.0'}
|
|
1075
|
+
|
|
1076
|
+
stackback@0.0.2:
|
|
1077
|
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
1078
|
+
|
|
1079
|
+
standardwebhooks@1.0.0:
|
|
1080
|
+
resolution: {integrity: sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==}
|
|
1081
|
+
|
|
1082
|
+
std-env@3.10.0:
|
|
1083
|
+
resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
|
|
1084
|
+
|
|
1085
|
+
stream-meter@1.0.4:
|
|
1086
|
+
resolution: {integrity: sha512-4sOEtrbgFotXwnEuzzsQBYEV1elAeFSO8rSGeTwabuX1RRn/kEq9JVH7I0MRBhKVRR0sJkr0M0QCH7yOLf9fhQ==}
|
|
1087
|
+
|
|
1088
|
+
streamx@2.23.0:
|
|
1089
|
+
resolution: {integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==}
|
|
1090
|
+
|
|
1091
|
+
string-width@4.2.3:
|
|
1092
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
1093
|
+
engines: {node: '>=8'}
|
|
1094
|
+
|
|
1095
|
+
string_decoder@1.1.1:
|
|
1096
|
+
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
|
|
1097
|
+
|
|
1098
|
+
string_decoder@1.3.0:
|
|
1099
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
1100
|
+
|
|
1101
|
+
strip-ansi@6.0.1:
|
|
1102
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1103
|
+
engines: {node: '>=8'}
|
|
1104
|
+
|
|
1105
|
+
strip-json-comments@2.0.1:
|
|
1106
|
+
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
1107
|
+
engines: {node: '>=0.10.0'}
|
|
1108
|
+
|
|
1109
|
+
supports-preserve-symlinks-flag@1.0.0:
|
|
1110
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
1111
|
+
engines: {node: '>= 0.4'}
|
|
1112
|
+
|
|
1113
|
+
svix@1.84.1:
|
|
1114
|
+
resolution: {integrity: sha512-K8DPPSZaW/XqXiz1kEyzSHYgmGLnhB43nQCMeKjWGCUpLIpAMMM8kx3rVVOSm6Bo6EHyK1RQLPT4R06skM/MlQ==}
|
|
1115
|
+
|
|
1116
|
+
tar-fs@2.1.4:
|
|
1117
|
+
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
|
1118
|
+
|
|
1119
|
+
tar-fs@3.1.2:
|
|
1120
|
+
resolution: {integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==}
|
|
1121
|
+
|
|
1122
|
+
tar-stream@2.2.0:
|
|
1123
|
+
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
|
1124
|
+
engines: {node: '>=6'}
|
|
1125
|
+
|
|
1126
|
+
tar-stream@3.1.8:
|
|
1127
|
+
resolution: {integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==}
|
|
1128
|
+
|
|
1129
|
+
tar@7.5.11:
|
|
1130
|
+
resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==}
|
|
1131
|
+
engines: {node: '>=18'}
|
|
1132
|
+
|
|
1133
|
+
teex@1.0.1:
|
|
1134
|
+
resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==}
|
|
1135
|
+
|
|
1136
|
+
text-decoder@1.2.7:
|
|
1137
|
+
resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==}
|
|
1138
|
+
|
|
1139
|
+
tinybench@2.9.0:
|
|
1140
|
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
|
|
1141
|
+
|
|
1142
|
+
tinyexec@0.3.2:
|
|
1143
|
+
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
|
|
1144
|
+
|
|
1145
|
+
tinyglobby@0.2.15:
|
|
1146
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
1147
|
+
engines: {node: '>=12.0.0'}
|
|
1148
|
+
|
|
1149
|
+
tinypool@1.1.1:
|
|
1150
|
+
resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
|
|
1151
|
+
engines: {node: ^18.0.0 || >=20.0.0}
|
|
1152
|
+
|
|
1153
|
+
tinyrainbow@2.0.0:
|
|
1154
|
+
resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
|
|
1155
|
+
engines: {node: '>=14.0.0'}
|
|
1156
|
+
|
|
1157
|
+
tinyspy@3.0.2:
|
|
1158
|
+
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
|
|
1159
|
+
engines: {node: '>=14.0.0'}
|
|
1160
|
+
|
|
1161
|
+
tr46@0.0.3:
|
|
1162
|
+
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
1163
|
+
|
|
1164
|
+
tsx@4.19.4:
|
|
1165
|
+
resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==}
|
|
1166
|
+
engines: {node: '>=18.0.0'}
|
|
1167
|
+
hasBin: true
|
|
1168
|
+
|
|
1169
|
+
tunnel-agent@0.6.0:
|
|
1170
|
+
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
1171
|
+
|
|
1172
|
+
typescript@5.9.3:
|
|
1173
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1174
|
+
engines: {node: '>=14.17'}
|
|
1175
|
+
hasBin: true
|
|
1176
|
+
|
|
1177
|
+
undici-types@6.21.0:
|
|
1178
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
1179
|
+
|
|
1180
|
+
universalify@2.0.1:
|
|
1181
|
+
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
|
|
1182
|
+
engines: {node: '>= 10.0.0'}
|
|
1183
|
+
|
|
1184
|
+
unzipper@0.12.3:
|
|
1185
|
+
resolution: {integrity: sha512-PZ8hTS+AqcGxsaQntl3IRBw65QrBI6lxzqDEL7IAo/XCEqRTKGfOX56Vea5TH9SZczRVxuzk1re04z/YjuYCJA==}
|
|
1186
|
+
|
|
1187
|
+
util-deprecate@1.0.2:
|
|
1188
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1189
|
+
|
|
1190
|
+
uuid@10.0.0:
|
|
1191
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1192
|
+
hasBin: true
|
|
1193
|
+
|
|
1194
|
+
vite-node@3.1.4:
|
|
1195
|
+
resolution: {integrity: sha512-6enNwYnpyDo4hEgytbmc6mYWHXDHYEn0D1/rw4Q+tnHUGtKTJsn8T1YkX6Q18wI5LCrS8CTYlBaiCqxOy2kvUA==}
|
|
1196
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
1197
|
+
hasBin: true
|
|
1198
|
+
|
|
1199
|
+
vite@6.4.1:
|
|
1200
|
+
resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
|
|
1201
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
1202
|
+
hasBin: true
|
|
1203
|
+
peerDependencies:
|
|
1204
|
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
|
1205
|
+
jiti: '>=1.21.0'
|
|
1206
|
+
less: '*'
|
|
1207
|
+
lightningcss: ^1.21.0
|
|
1208
|
+
sass: '*'
|
|
1209
|
+
sass-embedded: '*'
|
|
1210
|
+
stylus: '*'
|
|
1211
|
+
sugarss: '*'
|
|
1212
|
+
terser: ^5.16.0
|
|
1213
|
+
tsx: ^4.8.1
|
|
1214
|
+
yaml: ^2.4.2
|
|
1215
|
+
peerDependenciesMeta:
|
|
1216
|
+
'@types/node':
|
|
1217
|
+
optional: true
|
|
1218
|
+
jiti:
|
|
1219
|
+
optional: true
|
|
1220
|
+
less:
|
|
1221
|
+
optional: true
|
|
1222
|
+
lightningcss:
|
|
1223
|
+
optional: true
|
|
1224
|
+
sass:
|
|
1225
|
+
optional: true
|
|
1226
|
+
sass-embedded:
|
|
1227
|
+
optional: true
|
|
1228
|
+
stylus:
|
|
1229
|
+
optional: true
|
|
1230
|
+
sugarss:
|
|
1231
|
+
optional: true
|
|
1232
|
+
terser:
|
|
1233
|
+
optional: true
|
|
1234
|
+
tsx:
|
|
1235
|
+
optional: true
|
|
1236
|
+
yaml:
|
|
1237
|
+
optional: true
|
|
1238
|
+
|
|
1239
|
+
vitest@3.1.4:
|
|
1240
|
+
resolution: {integrity: sha512-Ta56rT7uWxCSJXlBtKgIlApJnT6e6IGmTYxYcmxjJ4ujuZDI59GUQgVDObXXJujOmPDBYXHK1qmaGtneu6TNIQ==}
|
|
1241
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
1242
|
+
hasBin: true
|
|
1243
|
+
peerDependencies:
|
|
1244
|
+
'@edge-runtime/vm': '*'
|
|
1245
|
+
'@types/debug': ^4.1.12
|
|
1246
|
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
|
1247
|
+
'@vitest/browser': 3.1.4
|
|
1248
|
+
'@vitest/ui': 3.1.4
|
|
1249
|
+
happy-dom: '*'
|
|
1250
|
+
jsdom: '*'
|
|
1251
|
+
peerDependenciesMeta:
|
|
1252
|
+
'@edge-runtime/vm':
|
|
1253
|
+
optional: true
|
|
1254
|
+
'@types/debug':
|
|
1255
|
+
optional: true
|
|
1256
|
+
'@types/node':
|
|
1257
|
+
optional: true
|
|
1258
|
+
'@vitest/browser':
|
|
1259
|
+
optional: true
|
|
1260
|
+
'@vitest/ui':
|
|
1261
|
+
optional: true
|
|
1262
|
+
happy-dom:
|
|
1263
|
+
optional: true
|
|
1264
|
+
jsdom:
|
|
1265
|
+
optional: true
|
|
1266
|
+
|
|
1267
|
+
webidl-conversions@3.0.1:
|
|
1268
|
+
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
|
|
1269
|
+
|
|
1270
|
+
whatwg-url@5.0.0:
|
|
1271
|
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
|
|
1272
|
+
|
|
1273
|
+
why-is-node-running@2.3.0:
|
|
1274
|
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
|
|
1275
|
+
engines: {node: '>=8'}
|
|
1276
|
+
hasBin: true
|
|
1277
|
+
|
|
1278
|
+
wrap-ansi@7.0.0:
|
|
1279
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
1280
|
+
engines: {node: '>=10'}
|
|
1281
|
+
|
|
1282
|
+
wrappy@1.0.2:
|
|
1283
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
1284
|
+
|
|
1285
|
+
y18n@5.0.8:
|
|
1286
|
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
1287
|
+
engines: {node: '>=10'}
|
|
1288
|
+
|
|
1289
|
+
yallist@5.0.0:
|
|
1290
|
+
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
|
|
1291
|
+
engines: {node: '>=18'}
|
|
1292
|
+
|
|
1293
|
+
yargs-parser@20.2.9:
|
|
1294
|
+
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
|
|
1295
|
+
engines: {node: '>=10'}
|
|
1296
|
+
|
|
1297
|
+
yargs@16.2.0:
|
|
1298
|
+
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
|
|
1299
|
+
engines: {node: '>=10'}
|
|
1300
|
+
|
|
1301
|
+
snapshots:
|
|
1302
|
+
|
|
1303
|
+
'@babel/code-frame@7.29.0':
|
|
1304
|
+
dependencies:
|
|
1305
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
1306
|
+
js-tokens: 4.0.0
|
|
1307
|
+
picocolors: 1.1.1
|
|
1308
|
+
|
|
1309
|
+
'@babel/generator@7.29.1':
|
|
1310
|
+
dependencies:
|
|
1311
|
+
'@babel/parser': 7.29.0
|
|
1312
|
+
'@babel/types': 7.29.0
|
|
1313
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
1314
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1315
|
+
jsesc: 3.1.0
|
|
1316
|
+
|
|
1317
|
+
'@babel/helper-globals@7.28.0': {}
|
|
1318
|
+
|
|
1319
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
1320
|
+
|
|
1321
|
+
'@babel/helper-validator-identifier@7.28.5': {}
|
|
1322
|
+
|
|
1323
|
+
'@babel/parser@7.29.0':
|
|
1324
|
+
dependencies:
|
|
1325
|
+
'@babel/types': 7.29.0
|
|
1326
|
+
|
|
1327
|
+
'@babel/template@7.28.6':
|
|
1328
|
+
dependencies:
|
|
1329
|
+
'@babel/code-frame': 7.29.0
|
|
1330
|
+
'@babel/parser': 7.29.0
|
|
1331
|
+
'@babel/types': 7.29.0
|
|
1332
|
+
|
|
1333
|
+
'@babel/traverse@7.29.0':
|
|
1334
|
+
dependencies:
|
|
1335
|
+
'@babel/code-frame': 7.29.0
|
|
1336
|
+
'@babel/generator': 7.29.1
|
|
1337
|
+
'@babel/helper-globals': 7.28.0
|
|
1338
|
+
'@babel/parser': 7.29.0
|
|
1339
|
+
'@babel/template': 7.28.6
|
|
1340
|
+
'@babel/types': 7.29.0
|
|
1341
|
+
debug: 4.4.3
|
|
1342
|
+
transitivePeerDependencies:
|
|
1343
|
+
- supports-color
|
|
1344
|
+
|
|
1345
|
+
'@babel/types@7.29.0':
|
|
1346
|
+
dependencies:
|
|
1347
|
+
'@babel/helper-string-parser': 7.27.1
|
|
1348
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
1349
|
+
|
|
1350
|
+
'@biomejs/biome@2.4.6':
|
|
1351
|
+
optionalDependencies:
|
|
1352
|
+
'@biomejs/cli-darwin-arm64': 2.4.6
|
|
1353
|
+
'@biomejs/cli-darwin-x64': 2.4.6
|
|
1354
|
+
'@biomejs/cli-linux-arm64': 2.4.6
|
|
1355
|
+
'@biomejs/cli-linux-arm64-musl': 2.4.6
|
|
1356
|
+
'@biomejs/cli-linux-x64': 2.4.6
|
|
1357
|
+
'@biomejs/cli-linux-x64-musl': 2.4.6
|
|
1358
|
+
'@biomejs/cli-win32-arm64': 2.4.6
|
|
1359
|
+
'@biomejs/cli-win32-x64': 2.4.6
|
|
1360
|
+
|
|
1361
|
+
'@biomejs/cli-darwin-arm64@2.4.6':
|
|
1362
|
+
optional: true
|
|
1363
|
+
|
|
1364
|
+
'@biomejs/cli-darwin-x64@2.4.6':
|
|
1365
|
+
optional: true
|
|
1366
|
+
|
|
1367
|
+
'@biomejs/cli-linux-arm64-musl@2.4.6':
|
|
1368
|
+
optional: true
|
|
1369
|
+
|
|
1370
|
+
'@biomejs/cli-linux-arm64@2.4.6':
|
|
1371
|
+
optional: true
|
|
1372
|
+
|
|
1373
|
+
'@biomejs/cli-linux-x64-musl@2.4.6':
|
|
1374
|
+
optional: true
|
|
1375
|
+
|
|
1376
|
+
'@biomejs/cli-linux-x64@2.4.6':
|
|
1377
|
+
optional: true
|
|
1378
|
+
|
|
1379
|
+
'@biomejs/cli-win32-arm64@2.4.6':
|
|
1380
|
+
optional: true
|
|
1381
|
+
|
|
1382
|
+
'@biomejs/cli-win32-x64@2.4.6':
|
|
1383
|
+
optional: true
|
|
1384
|
+
|
|
1385
|
+
'@clack/core@1.1.0':
|
|
1386
|
+
dependencies:
|
|
1387
|
+
sisteransi: 1.0.5
|
|
1388
|
+
|
|
1389
|
+
'@clack/prompts@1.1.0':
|
|
1390
|
+
dependencies:
|
|
1391
|
+
'@clack/core': 1.1.0
|
|
1392
|
+
sisteransi: 1.0.5
|
|
1393
|
+
|
|
1394
|
+
'@commander-js/extra-typings@14.0.0(commander@14.0.3)':
|
|
1395
|
+
dependencies:
|
|
1396
|
+
commander: 14.0.3
|
|
1397
|
+
|
|
1398
|
+
'@esbuild/aix-ppc64@0.25.3':
|
|
1399
|
+
optional: true
|
|
1400
|
+
|
|
1401
|
+
'@esbuild/aix-ppc64@0.27.3':
|
|
1402
|
+
optional: true
|
|
1403
|
+
|
|
1404
|
+
'@esbuild/android-arm64@0.25.3':
|
|
1405
|
+
optional: true
|
|
1406
|
+
|
|
1407
|
+
'@esbuild/android-arm64@0.27.3':
|
|
1408
|
+
optional: true
|
|
1409
|
+
|
|
1410
|
+
'@esbuild/android-arm@0.25.3':
|
|
1411
|
+
optional: true
|
|
1412
|
+
|
|
1413
|
+
'@esbuild/android-arm@0.27.3':
|
|
1414
|
+
optional: true
|
|
1415
|
+
|
|
1416
|
+
'@esbuild/android-x64@0.25.3':
|
|
1417
|
+
optional: true
|
|
1418
|
+
|
|
1419
|
+
'@esbuild/android-x64@0.27.3':
|
|
1420
|
+
optional: true
|
|
1421
|
+
|
|
1422
|
+
'@esbuild/darwin-arm64@0.25.3':
|
|
1423
|
+
optional: true
|
|
1424
|
+
|
|
1425
|
+
'@esbuild/darwin-arm64@0.27.3':
|
|
1426
|
+
optional: true
|
|
1427
|
+
|
|
1428
|
+
'@esbuild/darwin-x64@0.25.3':
|
|
1429
|
+
optional: true
|
|
1430
|
+
|
|
1431
|
+
'@esbuild/darwin-x64@0.27.3':
|
|
1432
|
+
optional: true
|
|
1433
|
+
|
|
1434
|
+
'@esbuild/freebsd-arm64@0.25.3':
|
|
1435
|
+
optional: true
|
|
1436
|
+
|
|
1437
|
+
'@esbuild/freebsd-arm64@0.27.3':
|
|
1438
|
+
optional: true
|
|
1439
|
+
|
|
1440
|
+
'@esbuild/freebsd-x64@0.25.3':
|
|
1441
|
+
optional: true
|
|
1442
|
+
|
|
1443
|
+
'@esbuild/freebsd-x64@0.27.3':
|
|
1444
|
+
optional: true
|
|
1445
|
+
|
|
1446
|
+
'@esbuild/linux-arm64@0.25.3':
|
|
1447
|
+
optional: true
|
|
1448
|
+
|
|
1449
|
+
'@esbuild/linux-arm64@0.27.3':
|
|
1450
|
+
optional: true
|
|
1451
|
+
|
|
1452
|
+
'@esbuild/linux-arm@0.25.3':
|
|
1453
|
+
optional: true
|
|
1454
|
+
|
|
1455
|
+
'@esbuild/linux-arm@0.27.3':
|
|
1456
|
+
optional: true
|
|
1457
|
+
|
|
1458
|
+
'@esbuild/linux-ia32@0.25.3':
|
|
1459
|
+
optional: true
|
|
1460
|
+
|
|
1461
|
+
'@esbuild/linux-ia32@0.27.3':
|
|
1462
|
+
optional: true
|
|
1463
|
+
|
|
1464
|
+
'@esbuild/linux-loong64@0.25.3':
|
|
1465
|
+
optional: true
|
|
1466
|
+
|
|
1467
|
+
'@esbuild/linux-loong64@0.27.3':
|
|
1468
|
+
optional: true
|
|
1469
|
+
|
|
1470
|
+
'@esbuild/linux-mips64el@0.25.3':
|
|
1471
|
+
optional: true
|
|
1472
|
+
|
|
1473
|
+
'@esbuild/linux-mips64el@0.27.3':
|
|
1474
|
+
optional: true
|
|
1475
|
+
|
|
1476
|
+
'@esbuild/linux-ppc64@0.25.3':
|
|
1477
|
+
optional: true
|
|
1478
|
+
|
|
1479
|
+
'@esbuild/linux-ppc64@0.27.3':
|
|
1480
|
+
optional: true
|
|
1481
|
+
|
|
1482
|
+
'@esbuild/linux-riscv64@0.25.3':
|
|
1483
|
+
optional: true
|
|
1484
|
+
|
|
1485
|
+
'@esbuild/linux-riscv64@0.27.3':
|
|
1486
|
+
optional: true
|
|
1487
|
+
|
|
1488
|
+
'@esbuild/linux-s390x@0.25.3':
|
|
1489
|
+
optional: true
|
|
1490
|
+
|
|
1491
|
+
'@esbuild/linux-s390x@0.27.3':
|
|
1492
|
+
optional: true
|
|
1493
|
+
|
|
1494
|
+
'@esbuild/linux-x64@0.25.3':
|
|
1495
|
+
optional: true
|
|
1496
|
+
|
|
1497
|
+
'@esbuild/linux-x64@0.27.3':
|
|
1498
|
+
optional: true
|
|
1499
|
+
|
|
1500
|
+
'@esbuild/netbsd-arm64@0.25.3':
|
|
1501
|
+
optional: true
|
|
1502
|
+
|
|
1503
|
+
'@esbuild/netbsd-arm64@0.27.3':
|
|
1504
|
+
optional: true
|
|
1505
|
+
|
|
1506
|
+
'@esbuild/netbsd-x64@0.25.3':
|
|
1507
|
+
optional: true
|
|
1508
|
+
|
|
1509
|
+
'@esbuild/netbsd-x64@0.27.3':
|
|
1510
|
+
optional: true
|
|
1511
|
+
|
|
1512
|
+
'@esbuild/openbsd-arm64@0.25.3':
|
|
1513
|
+
optional: true
|
|
1514
|
+
|
|
1515
|
+
'@esbuild/openbsd-arm64@0.27.3':
|
|
1516
|
+
optional: true
|
|
1517
|
+
|
|
1518
|
+
'@esbuild/openbsd-x64@0.25.3':
|
|
1519
|
+
optional: true
|
|
1520
|
+
|
|
1521
|
+
'@esbuild/openbsd-x64@0.27.3':
|
|
1522
|
+
optional: true
|
|
1523
|
+
|
|
1524
|
+
'@esbuild/openharmony-arm64@0.27.3':
|
|
1525
|
+
optional: true
|
|
1526
|
+
|
|
1527
|
+
'@esbuild/sunos-x64@0.25.3':
|
|
1528
|
+
optional: true
|
|
1529
|
+
|
|
1530
|
+
'@esbuild/sunos-x64@0.27.3':
|
|
1531
|
+
optional: true
|
|
1532
|
+
|
|
1533
|
+
'@esbuild/win32-arm64@0.25.3':
|
|
1534
|
+
optional: true
|
|
1535
|
+
|
|
1536
|
+
'@esbuild/win32-arm64@0.27.3':
|
|
1537
|
+
optional: true
|
|
1538
|
+
|
|
1539
|
+
'@esbuild/win32-ia32@0.25.3':
|
|
1540
|
+
optional: true
|
|
1541
|
+
|
|
1542
|
+
'@esbuild/win32-ia32@0.27.3':
|
|
1543
|
+
optional: true
|
|
1544
|
+
|
|
1545
|
+
'@esbuild/win32-x64@0.25.3':
|
|
1546
|
+
optional: true
|
|
1547
|
+
|
|
1548
|
+
'@esbuild/win32-x64@0.27.3':
|
|
1549
|
+
optional: true
|
|
1550
|
+
|
|
1551
|
+
'@isaacs/fs-minipass@4.0.1':
|
|
1552
|
+
dependencies:
|
|
1553
|
+
minipass: 7.1.3
|
|
1554
|
+
|
|
1555
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
1556
|
+
dependencies:
|
|
1557
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1558
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1559
|
+
|
|
1560
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
1561
|
+
|
|
1562
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
1563
|
+
|
|
1564
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
1565
|
+
dependencies:
|
|
1566
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
1567
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1568
|
+
|
|
1569
|
+
'@rollup/rollup-android-arm-eabi@4.59.0':
|
|
1570
|
+
optional: true
|
|
1571
|
+
|
|
1572
|
+
'@rollup/rollup-android-arm64@4.59.0':
|
|
1573
|
+
optional: true
|
|
1574
|
+
|
|
1575
|
+
'@rollup/rollup-darwin-arm64@4.59.0':
|
|
1576
|
+
optional: true
|
|
1577
|
+
|
|
1578
|
+
'@rollup/rollup-darwin-x64@4.59.0':
|
|
1579
|
+
optional: true
|
|
1580
|
+
|
|
1581
|
+
'@rollup/rollup-freebsd-arm64@4.59.0':
|
|
1582
|
+
optional: true
|
|
1583
|
+
|
|
1584
|
+
'@rollup/rollup-freebsd-x64@4.59.0':
|
|
1585
|
+
optional: true
|
|
1586
|
+
|
|
1587
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.59.0':
|
|
1588
|
+
optional: true
|
|
1589
|
+
|
|
1590
|
+
'@rollup/rollup-linux-arm-musleabihf@4.59.0':
|
|
1591
|
+
optional: true
|
|
1592
|
+
|
|
1593
|
+
'@rollup/rollup-linux-arm64-gnu@4.59.0':
|
|
1594
|
+
optional: true
|
|
1595
|
+
|
|
1596
|
+
'@rollup/rollup-linux-arm64-musl@4.59.0':
|
|
1597
|
+
optional: true
|
|
1598
|
+
|
|
1599
|
+
'@rollup/rollup-linux-loong64-gnu@4.59.0':
|
|
1600
|
+
optional: true
|
|
1601
|
+
|
|
1602
|
+
'@rollup/rollup-linux-loong64-musl@4.59.0':
|
|
1603
|
+
optional: true
|
|
1604
|
+
|
|
1605
|
+
'@rollup/rollup-linux-ppc64-gnu@4.59.0':
|
|
1606
|
+
optional: true
|
|
1607
|
+
|
|
1608
|
+
'@rollup/rollup-linux-ppc64-musl@4.59.0':
|
|
1609
|
+
optional: true
|
|
1610
|
+
|
|
1611
|
+
'@rollup/rollup-linux-riscv64-gnu@4.59.0':
|
|
1612
|
+
optional: true
|
|
1613
|
+
|
|
1614
|
+
'@rollup/rollup-linux-riscv64-musl@4.59.0':
|
|
1615
|
+
optional: true
|
|
1616
|
+
|
|
1617
|
+
'@rollup/rollup-linux-s390x-gnu@4.59.0':
|
|
1618
|
+
optional: true
|
|
1619
|
+
|
|
1620
|
+
'@rollup/rollup-linux-x64-gnu@4.59.0':
|
|
1621
|
+
optional: true
|
|
1622
|
+
|
|
1623
|
+
'@rollup/rollup-linux-x64-musl@4.59.0':
|
|
1624
|
+
optional: true
|
|
1625
|
+
|
|
1626
|
+
'@rollup/rollup-openbsd-x64@4.59.0':
|
|
1627
|
+
optional: true
|
|
1628
|
+
|
|
1629
|
+
'@rollup/rollup-openharmony-arm64@4.59.0':
|
|
1630
|
+
optional: true
|
|
1631
|
+
|
|
1632
|
+
'@rollup/rollup-win32-arm64-msvc@4.59.0':
|
|
1633
|
+
optional: true
|
|
1634
|
+
|
|
1635
|
+
'@rollup/rollup-win32-ia32-msvc@4.59.0':
|
|
1636
|
+
optional: true
|
|
1637
|
+
|
|
1638
|
+
'@rollup/rollup-win32-x64-gnu@4.59.0':
|
|
1639
|
+
optional: true
|
|
1640
|
+
|
|
1641
|
+
'@rollup/rollup-win32-x64-msvc@4.59.0':
|
|
1642
|
+
optional: true
|
|
1643
|
+
|
|
1644
|
+
'@stablelib/base64@1.0.1': {}
|
|
1645
|
+
|
|
1646
|
+
'@types/estree@1.0.8': {}
|
|
1647
|
+
|
|
1648
|
+
'@types/node@22.19.15':
|
|
1649
|
+
dependencies:
|
|
1650
|
+
undici-types: 6.21.0
|
|
1651
|
+
|
|
1652
|
+
'@vitest/expect@3.1.4':
|
|
1653
|
+
dependencies:
|
|
1654
|
+
'@vitest/spy': 3.1.4
|
|
1655
|
+
'@vitest/utils': 3.1.4
|
|
1656
|
+
chai: 5.3.3
|
|
1657
|
+
tinyrainbow: 2.0.0
|
|
1658
|
+
|
|
1659
|
+
'@vitest/mocker@3.1.4(vite@6.4.1(@types/node@22.19.15)(tsx@4.19.4))':
|
|
1660
|
+
dependencies:
|
|
1661
|
+
'@vitest/spy': 3.1.4
|
|
1662
|
+
estree-walker: 3.0.3
|
|
1663
|
+
magic-string: 0.30.21
|
|
1664
|
+
optionalDependencies:
|
|
1665
|
+
vite: 6.4.1(@types/node@22.19.15)(tsx@4.19.4)
|
|
1666
|
+
|
|
1667
|
+
'@vitest/pretty-format@3.1.4':
|
|
1668
|
+
dependencies:
|
|
1669
|
+
tinyrainbow: 2.0.0
|
|
1670
|
+
|
|
1671
|
+
'@vitest/pretty-format@3.2.4':
|
|
1672
|
+
dependencies:
|
|
1673
|
+
tinyrainbow: 2.0.0
|
|
1674
|
+
|
|
1675
|
+
'@vitest/runner@3.1.4':
|
|
1676
|
+
dependencies:
|
|
1677
|
+
'@vitest/utils': 3.1.4
|
|
1678
|
+
pathe: 2.0.3
|
|
1679
|
+
|
|
1680
|
+
'@vitest/snapshot@3.1.4':
|
|
1681
|
+
dependencies:
|
|
1682
|
+
'@vitest/pretty-format': 3.1.4
|
|
1683
|
+
magic-string: 0.30.21
|
|
1684
|
+
pathe: 2.0.3
|
|
1685
|
+
|
|
1686
|
+
'@vitest/spy@3.1.4':
|
|
1687
|
+
dependencies:
|
|
1688
|
+
tinyspy: 3.0.2
|
|
1689
|
+
|
|
1690
|
+
'@vitest/utils@3.1.4':
|
|
1691
|
+
dependencies:
|
|
1692
|
+
'@vitest/pretty-format': 3.1.4
|
|
1693
|
+
loupe: 3.2.1
|
|
1694
|
+
tinyrainbow: 2.0.0
|
|
1695
|
+
|
|
1696
|
+
'@yao-pkg/pkg-fetch@3.5.32':
|
|
1697
|
+
dependencies:
|
|
1698
|
+
https-proxy-agent: 5.0.1
|
|
1699
|
+
node-fetch: 2.7.0
|
|
1700
|
+
picocolors: 1.1.1
|
|
1701
|
+
progress: 2.0.3
|
|
1702
|
+
semver: 7.7.4
|
|
1703
|
+
tar-fs: 3.1.2
|
|
1704
|
+
yargs: 16.2.0
|
|
1705
|
+
transitivePeerDependencies:
|
|
1706
|
+
- bare-abort-controller
|
|
1707
|
+
- bare-buffer
|
|
1708
|
+
- encoding
|
|
1709
|
+
- react-native-b4a
|
|
1710
|
+
- supports-color
|
|
1711
|
+
|
|
1712
|
+
'@yao-pkg/pkg@6.14.1':
|
|
1713
|
+
dependencies:
|
|
1714
|
+
'@babel/generator': 7.29.1
|
|
1715
|
+
'@babel/parser': 7.29.0
|
|
1716
|
+
'@babel/traverse': 7.29.0
|
|
1717
|
+
'@babel/types': 7.29.0
|
|
1718
|
+
'@yao-pkg/pkg-fetch': 3.5.32
|
|
1719
|
+
esbuild: 0.27.3
|
|
1720
|
+
into-stream: 9.1.0
|
|
1721
|
+
minimist: 1.2.8
|
|
1722
|
+
multistream: 4.1.0
|
|
1723
|
+
picocolors: 1.1.1
|
|
1724
|
+
picomatch: 4.0.3
|
|
1725
|
+
prebuild-install: 7.1.3
|
|
1726
|
+
resolve: 1.22.11
|
|
1727
|
+
resolve.exports: 2.0.3
|
|
1728
|
+
stream-meter: 1.0.4
|
|
1729
|
+
tar: 7.5.11
|
|
1730
|
+
tinyglobby: 0.2.15
|
|
1731
|
+
unzipper: 0.12.3
|
|
1732
|
+
transitivePeerDependencies:
|
|
1733
|
+
- bare-abort-controller
|
|
1734
|
+
- bare-buffer
|
|
1735
|
+
- encoding
|
|
1736
|
+
- react-native-b4a
|
|
1737
|
+
- supports-color
|
|
1738
|
+
|
|
1739
|
+
agent-base@6.0.2:
|
|
1740
|
+
dependencies:
|
|
1741
|
+
debug: 4.4.3
|
|
1742
|
+
transitivePeerDependencies:
|
|
1743
|
+
- supports-color
|
|
1744
|
+
|
|
1745
|
+
ansi-regex@5.0.1: {}
|
|
1746
|
+
|
|
1747
|
+
ansi-styles@4.3.0:
|
|
1748
|
+
dependencies:
|
|
1749
|
+
color-convert: 2.0.1
|
|
1750
|
+
|
|
1751
|
+
assertion-error@2.0.1: {}
|
|
1752
|
+
|
|
1753
|
+
b4a@1.8.0: {}
|
|
1754
|
+
|
|
1755
|
+
bare-events@2.8.2: {}
|
|
1756
|
+
|
|
1757
|
+
bare-fs@4.5.5:
|
|
1758
|
+
dependencies:
|
|
1759
|
+
bare-events: 2.8.2
|
|
1760
|
+
bare-path: 3.0.0
|
|
1761
|
+
bare-stream: 2.8.1(bare-events@2.8.2)
|
|
1762
|
+
bare-url: 2.3.2
|
|
1763
|
+
fast-fifo: 1.3.2
|
|
1764
|
+
transitivePeerDependencies:
|
|
1765
|
+
- bare-abort-controller
|
|
1766
|
+
- react-native-b4a
|
|
1767
|
+
|
|
1768
|
+
bare-os@3.7.1: {}
|
|
1769
|
+
|
|
1770
|
+
bare-path@3.0.0:
|
|
1771
|
+
dependencies:
|
|
1772
|
+
bare-os: 3.7.1
|
|
1773
|
+
|
|
1774
|
+
bare-stream@2.8.1(bare-events@2.8.2):
|
|
1775
|
+
dependencies:
|
|
1776
|
+
streamx: 2.23.0
|
|
1777
|
+
teex: 1.0.1
|
|
1778
|
+
optionalDependencies:
|
|
1779
|
+
bare-events: 2.8.2
|
|
1780
|
+
transitivePeerDependencies:
|
|
1781
|
+
- bare-abort-controller
|
|
1782
|
+
- react-native-b4a
|
|
1783
|
+
|
|
1784
|
+
bare-url@2.3.2:
|
|
1785
|
+
dependencies:
|
|
1786
|
+
bare-path: 3.0.0
|
|
1787
|
+
|
|
1788
|
+
base64-js@1.5.1: {}
|
|
1789
|
+
|
|
1790
|
+
bl@4.1.0:
|
|
1791
|
+
dependencies:
|
|
1792
|
+
buffer: 5.7.1
|
|
1793
|
+
inherits: 2.0.4
|
|
1794
|
+
readable-stream: 3.6.2
|
|
1795
|
+
|
|
1796
|
+
bluebird@3.7.2: {}
|
|
1797
|
+
|
|
1798
|
+
buffer@5.7.1:
|
|
1799
|
+
dependencies:
|
|
1800
|
+
base64-js: 1.5.1
|
|
1801
|
+
ieee754: 1.2.1
|
|
1802
|
+
|
|
1803
|
+
cac@6.7.14: {}
|
|
1804
|
+
|
|
1805
|
+
chai@5.3.3:
|
|
1806
|
+
dependencies:
|
|
1807
|
+
assertion-error: 2.0.1
|
|
1808
|
+
check-error: 2.1.3
|
|
1809
|
+
deep-eql: 5.0.2
|
|
1810
|
+
loupe: 3.2.1
|
|
1811
|
+
pathval: 2.0.1
|
|
1812
|
+
|
|
1813
|
+
check-error@2.1.3: {}
|
|
1814
|
+
|
|
1815
|
+
chownr@1.1.4: {}
|
|
1816
|
+
|
|
1817
|
+
chownr@3.0.0: {}
|
|
1818
|
+
|
|
1819
|
+
cliui@7.0.4:
|
|
1820
|
+
dependencies:
|
|
1821
|
+
string-width: 4.2.3
|
|
1822
|
+
strip-ansi: 6.0.1
|
|
1823
|
+
wrap-ansi: 7.0.0
|
|
1824
|
+
|
|
1825
|
+
color-convert@2.0.1:
|
|
1826
|
+
dependencies:
|
|
1827
|
+
color-name: 1.1.4
|
|
1828
|
+
|
|
1829
|
+
color-name@1.1.4: {}
|
|
1830
|
+
|
|
1831
|
+
commander@14.0.3: {}
|
|
1832
|
+
|
|
1833
|
+
core-util-is@1.0.3: {}
|
|
1834
|
+
|
|
1835
|
+
debug@4.4.3:
|
|
1836
|
+
dependencies:
|
|
1837
|
+
ms: 2.1.3
|
|
1838
|
+
|
|
1839
|
+
decompress-response@6.0.0:
|
|
1840
|
+
dependencies:
|
|
1841
|
+
mimic-response: 3.1.0
|
|
1842
|
+
|
|
1843
|
+
deep-eql@5.0.2: {}
|
|
1844
|
+
|
|
1845
|
+
deep-extend@0.6.0: {}
|
|
1846
|
+
|
|
1847
|
+
detect-libc@2.1.2: {}
|
|
1848
|
+
|
|
1849
|
+
duplexer2@0.1.4:
|
|
1850
|
+
dependencies:
|
|
1851
|
+
readable-stream: 2.3.8
|
|
1852
|
+
|
|
1853
|
+
emoji-regex@8.0.0: {}
|
|
1854
|
+
|
|
1855
|
+
end-of-stream@1.4.5:
|
|
1856
|
+
dependencies:
|
|
1857
|
+
once: 1.4.0
|
|
1858
|
+
|
|
1859
|
+
es-module-lexer@1.7.0: {}
|
|
1860
|
+
|
|
1861
|
+
esbuild@0.25.3:
|
|
1862
|
+
optionalDependencies:
|
|
1863
|
+
'@esbuild/aix-ppc64': 0.25.3
|
|
1864
|
+
'@esbuild/android-arm': 0.25.3
|
|
1865
|
+
'@esbuild/android-arm64': 0.25.3
|
|
1866
|
+
'@esbuild/android-x64': 0.25.3
|
|
1867
|
+
'@esbuild/darwin-arm64': 0.25.3
|
|
1868
|
+
'@esbuild/darwin-x64': 0.25.3
|
|
1869
|
+
'@esbuild/freebsd-arm64': 0.25.3
|
|
1870
|
+
'@esbuild/freebsd-x64': 0.25.3
|
|
1871
|
+
'@esbuild/linux-arm': 0.25.3
|
|
1872
|
+
'@esbuild/linux-arm64': 0.25.3
|
|
1873
|
+
'@esbuild/linux-ia32': 0.25.3
|
|
1874
|
+
'@esbuild/linux-loong64': 0.25.3
|
|
1875
|
+
'@esbuild/linux-mips64el': 0.25.3
|
|
1876
|
+
'@esbuild/linux-ppc64': 0.25.3
|
|
1877
|
+
'@esbuild/linux-riscv64': 0.25.3
|
|
1878
|
+
'@esbuild/linux-s390x': 0.25.3
|
|
1879
|
+
'@esbuild/linux-x64': 0.25.3
|
|
1880
|
+
'@esbuild/netbsd-arm64': 0.25.3
|
|
1881
|
+
'@esbuild/netbsd-x64': 0.25.3
|
|
1882
|
+
'@esbuild/openbsd-arm64': 0.25.3
|
|
1883
|
+
'@esbuild/openbsd-x64': 0.25.3
|
|
1884
|
+
'@esbuild/sunos-x64': 0.25.3
|
|
1885
|
+
'@esbuild/win32-arm64': 0.25.3
|
|
1886
|
+
'@esbuild/win32-ia32': 0.25.3
|
|
1887
|
+
'@esbuild/win32-x64': 0.25.3
|
|
1888
|
+
|
|
1889
|
+
esbuild@0.27.3:
|
|
1890
|
+
optionalDependencies:
|
|
1891
|
+
'@esbuild/aix-ppc64': 0.27.3
|
|
1892
|
+
'@esbuild/android-arm': 0.27.3
|
|
1893
|
+
'@esbuild/android-arm64': 0.27.3
|
|
1894
|
+
'@esbuild/android-x64': 0.27.3
|
|
1895
|
+
'@esbuild/darwin-arm64': 0.27.3
|
|
1896
|
+
'@esbuild/darwin-x64': 0.27.3
|
|
1897
|
+
'@esbuild/freebsd-arm64': 0.27.3
|
|
1898
|
+
'@esbuild/freebsd-x64': 0.27.3
|
|
1899
|
+
'@esbuild/linux-arm': 0.27.3
|
|
1900
|
+
'@esbuild/linux-arm64': 0.27.3
|
|
1901
|
+
'@esbuild/linux-ia32': 0.27.3
|
|
1902
|
+
'@esbuild/linux-loong64': 0.27.3
|
|
1903
|
+
'@esbuild/linux-mips64el': 0.27.3
|
|
1904
|
+
'@esbuild/linux-ppc64': 0.27.3
|
|
1905
|
+
'@esbuild/linux-riscv64': 0.27.3
|
|
1906
|
+
'@esbuild/linux-s390x': 0.27.3
|
|
1907
|
+
'@esbuild/linux-x64': 0.27.3
|
|
1908
|
+
'@esbuild/netbsd-arm64': 0.27.3
|
|
1909
|
+
'@esbuild/netbsd-x64': 0.27.3
|
|
1910
|
+
'@esbuild/openbsd-arm64': 0.27.3
|
|
1911
|
+
'@esbuild/openbsd-x64': 0.27.3
|
|
1912
|
+
'@esbuild/openharmony-arm64': 0.27.3
|
|
1913
|
+
'@esbuild/sunos-x64': 0.27.3
|
|
1914
|
+
'@esbuild/win32-arm64': 0.27.3
|
|
1915
|
+
'@esbuild/win32-ia32': 0.27.3
|
|
1916
|
+
'@esbuild/win32-x64': 0.27.3
|
|
1917
|
+
|
|
1918
|
+
escalade@3.2.0: {}
|
|
1919
|
+
|
|
1920
|
+
estree-walker@3.0.3:
|
|
1921
|
+
dependencies:
|
|
1922
|
+
'@types/estree': 1.0.8
|
|
1923
|
+
|
|
1924
|
+
events-universal@1.0.1:
|
|
1925
|
+
dependencies:
|
|
1926
|
+
bare-events: 2.8.2
|
|
1927
|
+
transitivePeerDependencies:
|
|
1928
|
+
- bare-abort-controller
|
|
1929
|
+
|
|
1930
|
+
expand-template@2.0.3: {}
|
|
1931
|
+
|
|
1932
|
+
expect-type@1.3.0: {}
|
|
1933
|
+
|
|
1934
|
+
fast-fifo@1.3.2: {}
|
|
1935
|
+
|
|
1936
|
+
fast-sha256@1.3.0: {}
|
|
1937
|
+
|
|
1938
|
+
fdir@6.5.0(picomatch@4.0.3):
|
|
1939
|
+
optionalDependencies:
|
|
1940
|
+
picomatch: 4.0.3
|
|
1941
|
+
|
|
1942
|
+
fs-constants@1.0.0: {}
|
|
1943
|
+
|
|
1944
|
+
fs-extra@11.3.4:
|
|
1945
|
+
dependencies:
|
|
1946
|
+
graceful-fs: 4.2.11
|
|
1947
|
+
jsonfile: 6.2.0
|
|
1948
|
+
universalify: 2.0.1
|
|
1949
|
+
|
|
1950
|
+
fsevents@2.3.3:
|
|
1951
|
+
optional: true
|
|
1952
|
+
|
|
1953
|
+
function-bind@1.1.2: {}
|
|
1954
|
+
|
|
1955
|
+
get-caller-file@2.0.5: {}
|
|
1956
|
+
|
|
1957
|
+
get-tsconfig@4.13.6:
|
|
1958
|
+
dependencies:
|
|
1959
|
+
resolve-pkg-maps: 1.0.0
|
|
1960
|
+
|
|
1961
|
+
github-from-package@0.0.0: {}
|
|
1962
|
+
|
|
1963
|
+
graceful-fs@4.2.11: {}
|
|
1964
|
+
|
|
1965
|
+
hasown@2.0.2:
|
|
1966
|
+
dependencies:
|
|
1967
|
+
function-bind: 1.1.2
|
|
1968
|
+
|
|
1969
|
+
https-proxy-agent@5.0.1:
|
|
1970
|
+
dependencies:
|
|
1971
|
+
agent-base: 6.0.2
|
|
1972
|
+
debug: 4.4.3
|
|
1973
|
+
transitivePeerDependencies:
|
|
1974
|
+
- supports-color
|
|
1975
|
+
|
|
1976
|
+
ieee754@1.2.1: {}
|
|
1977
|
+
|
|
1978
|
+
inherits@2.0.4: {}
|
|
1979
|
+
|
|
1980
|
+
ini@1.3.8: {}
|
|
1981
|
+
|
|
1982
|
+
into-stream@9.1.0: {}
|
|
1983
|
+
|
|
1984
|
+
is-core-module@2.16.1:
|
|
1985
|
+
dependencies:
|
|
1986
|
+
hasown: 2.0.2
|
|
1987
|
+
|
|
1988
|
+
is-fullwidth-code-point@3.0.0: {}
|
|
1989
|
+
|
|
1990
|
+
isarray@1.0.0: {}
|
|
1991
|
+
|
|
1992
|
+
js-tokens@4.0.0: {}
|
|
1993
|
+
|
|
1994
|
+
jsesc@3.1.0: {}
|
|
1995
|
+
|
|
1996
|
+
jsonfile@6.2.0:
|
|
1997
|
+
dependencies:
|
|
1998
|
+
universalify: 2.0.1
|
|
1999
|
+
optionalDependencies:
|
|
2000
|
+
graceful-fs: 4.2.11
|
|
2001
|
+
|
|
2002
|
+
loupe@3.2.1: {}
|
|
2003
|
+
|
|
2004
|
+
magic-string@0.30.21:
|
|
2005
|
+
dependencies:
|
|
2006
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2007
|
+
|
|
2008
|
+
mimic-response@3.1.0: {}
|
|
2009
|
+
|
|
2010
|
+
minimist@1.2.8: {}
|
|
2011
|
+
|
|
2012
|
+
minipass@7.1.3: {}
|
|
2013
|
+
|
|
2014
|
+
minizlib@3.1.0:
|
|
2015
|
+
dependencies:
|
|
2016
|
+
minipass: 7.1.3
|
|
2017
|
+
|
|
2018
|
+
mkdirp-classic@0.5.3: {}
|
|
2019
|
+
|
|
2020
|
+
ms@2.1.3: {}
|
|
2021
|
+
|
|
2022
|
+
multistream@4.1.0:
|
|
2023
|
+
dependencies:
|
|
2024
|
+
once: 1.4.0
|
|
2025
|
+
readable-stream: 3.6.2
|
|
2026
|
+
|
|
2027
|
+
nanoid@3.3.11: {}
|
|
2028
|
+
|
|
2029
|
+
napi-build-utils@2.0.0: {}
|
|
2030
|
+
|
|
2031
|
+
node-abi@3.88.0:
|
|
2032
|
+
dependencies:
|
|
2033
|
+
semver: 7.7.4
|
|
2034
|
+
|
|
2035
|
+
node-fetch@2.7.0:
|
|
2036
|
+
dependencies:
|
|
2037
|
+
whatwg-url: 5.0.0
|
|
2038
|
+
|
|
2039
|
+
node-int64@0.4.0: {}
|
|
2040
|
+
|
|
2041
|
+
once@1.4.0:
|
|
2042
|
+
dependencies:
|
|
2043
|
+
wrappy: 1.0.2
|
|
2044
|
+
|
|
2045
|
+
path-parse@1.0.7: {}
|
|
2046
|
+
|
|
2047
|
+
pathe@2.0.3: {}
|
|
2048
|
+
|
|
2049
|
+
pathval@2.0.1: {}
|
|
2050
|
+
|
|
2051
|
+
picocolors@1.1.1: {}
|
|
2052
|
+
|
|
2053
|
+
picomatch@4.0.3: {}
|
|
2054
|
+
|
|
2055
|
+
postal-mime@2.7.3: {}
|
|
2056
|
+
|
|
2057
|
+
postcss@8.5.8:
|
|
2058
|
+
dependencies:
|
|
2059
|
+
nanoid: 3.3.11
|
|
2060
|
+
picocolors: 1.1.1
|
|
2061
|
+
source-map-js: 1.2.1
|
|
2062
|
+
|
|
2063
|
+
prebuild-install@7.1.3:
|
|
2064
|
+
dependencies:
|
|
2065
|
+
detect-libc: 2.1.2
|
|
2066
|
+
expand-template: 2.0.3
|
|
2067
|
+
github-from-package: 0.0.0
|
|
2068
|
+
minimist: 1.2.8
|
|
2069
|
+
mkdirp-classic: 0.5.3
|
|
2070
|
+
napi-build-utils: 2.0.0
|
|
2071
|
+
node-abi: 3.88.0
|
|
2072
|
+
pump: 3.0.4
|
|
2073
|
+
rc: 1.2.8
|
|
2074
|
+
simple-get: 4.0.1
|
|
2075
|
+
tar-fs: 2.1.4
|
|
2076
|
+
tunnel-agent: 0.6.0
|
|
2077
|
+
|
|
2078
|
+
process-nextick-args@2.0.1: {}
|
|
2079
|
+
|
|
2080
|
+
progress@2.0.3: {}
|
|
2081
|
+
|
|
2082
|
+
pump@3.0.4:
|
|
2083
|
+
dependencies:
|
|
2084
|
+
end-of-stream: 1.4.5
|
|
2085
|
+
once: 1.4.0
|
|
2086
|
+
|
|
2087
|
+
rc@1.2.8:
|
|
2088
|
+
dependencies:
|
|
2089
|
+
deep-extend: 0.6.0
|
|
2090
|
+
ini: 1.3.8
|
|
2091
|
+
minimist: 1.2.8
|
|
2092
|
+
strip-json-comments: 2.0.1
|
|
2093
|
+
|
|
2094
|
+
readable-stream@2.3.8:
|
|
2095
|
+
dependencies:
|
|
2096
|
+
core-util-is: 1.0.3
|
|
2097
|
+
inherits: 2.0.4
|
|
2098
|
+
isarray: 1.0.0
|
|
2099
|
+
process-nextick-args: 2.0.1
|
|
2100
|
+
safe-buffer: 5.1.2
|
|
2101
|
+
string_decoder: 1.1.1
|
|
2102
|
+
util-deprecate: 1.0.2
|
|
2103
|
+
|
|
2104
|
+
readable-stream@3.6.2:
|
|
2105
|
+
dependencies:
|
|
2106
|
+
inherits: 2.0.4
|
|
2107
|
+
string_decoder: 1.3.0
|
|
2108
|
+
util-deprecate: 1.0.2
|
|
2109
|
+
|
|
2110
|
+
require-directory@2.1.1: {}
|
|
2111
|
+
|
|
2112
|
+
resend@6.9.3:
|
|
2113
|
+
dependencies:
|
|
2114
|
+
postal-mime: 2.7.3
|
|
2115
|
+
svix: 1.84.1
|
|
2116
|
+
|
|
2117
|
+
resolve-pkg-maps@1.0.0: {}
|
|
2118
|
+
|
|
2119
|
+
resolve.exports@2.0.3: {}
|
|
2120
|
+
|
|
2121
|
+
resolve@1.22.11:
|
|
2122
|
+
dependencies:
|
|
2123
|
+
is-core-module: 2.16.1
|
|
2124
|
+
path-parse: 1.0.7
|
|
2125
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
2126
|
+
|
|
2127
|
+
rollup@4.59.0:
|
|
2128
|
+
dependencies:
|
|
2129
|
+
'@types/estree': 1.0.8
|
|
2130
|
+
optionalDependencies:
|
|
2131
|
+
'@rollup/rollup-android-arm-eabi': 4.59.0
|
|
2132
|
+
'@rollup/rollup-android-arm64': 4.59.0
|
|
2133
|
+
'@rollup/rollup-darwin-arm64': 4.59.0
|
|
2134
|
+
'@rollup/rollup-darwin-x64': 4.59.0
|
|
2135
|
+
'@rollup/rollup-freebsd-arm64': 4.59.0
|
|
2136
|
+
'@rollup/rollup-freebsd-x64': 4.59.0
|
|
2137
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.59.0
|
|
2138
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.59.0
|
|
2139
|
+
'@rollup/rollup-linux-arm64-gnu': 4.59.0
|
|
2140
|
+
'@rollup/rollup-linux-arm64-musl': 4.59.0
|
|
2141
|
+
'@rollup/rollup-linux-loong64-gnu': 4.59.0
|
|
2142
|
+
'@rollup/rollup-linux-loong64-musl': 4.59.0
|
|
2143
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.59.0
|
|
2144
|
+
'@rollup/rollup-linux-ppc64-musl': 4.59.0
|
|
2145
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.59.0
|
|
2146
|
+
'@rollup/rollup-linux-riscv64-musl': 4.59.0
|
|
2147
|
+
'@rollup/rollup-linux-s390x-gnu': 4.59.0
|
|
2148
|
+
'@rollup/rollup-linux-x64-gnu': 4.59.0
|
|
2149
|
+
'@rollup/rollup-linux-x64-musl': 4.59.0
|
|
2150
|
+
'@rollup/rollup-openbsd-x64': 4.59.0
|
|
2151
|
+
'@rollup/rollup-openharmony-arm64': 4.59.0
|
|
2152
|
+
'@rollup/rollup-win32-arm64-msvc': 4.59.0
|
|
2153
|
+
'@rollup/rollup-win32-ia32-msvc': 4.59.0
|
|
2154
|
+
'@rollup/rollup-win32-x64-gnu': 4.59.0
|
|
2155
|
+
'@rollup/rollup-win32-x64-msvc': 4.59.0
|
|
2156
|
+
fsevents: 2.3.3
|
|
2157
|
+
|
|
2158
|
+
safe-buffer@5.1.2: {}
|
|
2159
|
+
|
|
2160
|
+
safe-buffer@5.2.1: {}
|
|
2161
|
+
|
|
2162
|
+
semver@7.7.4: {}
|
|
2163
|
+
|
|
2164
|
+
siginfo@2.0.0: {}
|
|
2165
|
+
|
|
2166
|
+
simple-concat@1.0.1: {}
|
|
2167
|
+
|
|
2168
|
+
simple-get@4.0.1:
|
|
2169
|
+
dependencies:
|
|
2170
|
+
decompress-response: 6.0.0
|
|
2171
|
+
once: 1.4.0
|
|
2172
|
+
simple-concat: 1.0.1
|
|
2173
|
+
|
|
2174
|
+
sisteransi@1.0.5: {}
|
|
2175
|
+
|
|
2176
|
+
source-map-js@1.2.1: {}
|
|
2177
|
+
|
|
2178
|
+
stackback@0.0.2: {}
|
|
2179
|
+
|
|
2180
|
+
standardwebhooks@1.0.0:
|
|
2181
|
+
dependencies:
|
|
2182
|
+
'@stablelib/base64': 1.0.1
|
|
2183
|
+
fast-sha256: 1.3.0
|
|
2184
|
+
|
|
2185
|
+
std-env@3.10.0: {}
|
|
2186
|
+
|
|
2187
|
+
stream-meter@1.0.4:
|
|
2188
|
+
dependencies:
|
|
2189
|
+
readable-stream: 2.3.8
|
|
2190
|
+
|
|
2191
|
+
streamx@2.23.0:
|
|
2192
|
+
dependencies:
|
|
2193
|
+
events-universal: 1.0.1
|
|
2194
|
+
fast-fifo: 1.3.2
|
|
2195
|
+
text-decoder: 1.2.7
|
|
2196
|
+
transitivePeerDependencies:
|
|
2197
|
+
- bare-abort-controller
|
|
2198
|
+
- react-native-b4a
|
|
2199
|
+
|
|
2200
|
+
string-width@4.2.3:
|
|
2201
|
+
dependencies:
|
|
2202
|
+
emoji-regex: 8.0.0
|
|
2203
|
+
is-fullwidth-code-point: 3.0.0
|
|
2204
|
+
strip-ansi: 6.0.1
|
|
2205
|
+
|
|
2206
|
+
string_decoder@1.1.1:
|
|
2207
|
+
dependencies:
|
|
2208
|
+
safe-buffer: 5.1.2
|
|
2209
|
+
|
|
2210
|
+
string_decoder@1.3.0:
|
|
2211
|
+
dependencies:
|
|
2212
|
+
safe-buffer: 5.2.1
|
|
2213
|
+
|
|
2214
|
+
strip-ansi@6.0.1:
|
|
2215
|
+
dependencies:
|
|
2216
|
+
ansi-regex: 5.0.1
|
|
2217
|
+
|
|
2218
|
+
strip-json-comments@2.0.1: {}
|
|
2219
|
+
|
|
2220
|
+
supports-preserve-symlinks-flag@1.0.0: {}
|
|
2221
|
+
|
|
2222
|
+
svix@1.84.1:
|
|
2223
|
+
dependencies:
|
|
2224
|
+
standardwebhooks: 1.0.0
|
|
2225
|
+
uuid: 10.0.0
|
|
2226
|
+
|
|
2227
|
+
tar-fs@2.1.4:
|
|
2228
|
+
dependencies:
|
|
2229
|
+
chownr: 1.1.4
|
|
2230
|
+
mkdirp-classic: 0.5.3
|
|
2231
|
+
pump: 3.0.4
|
|
2232
|
+
tar-stream: 2.2.0
|
|
2233
|
+
|
|
2234
|
+
tar-fs@3.1.2:
|
|
2235
|
+
dependencies:
|
|
2236
|
+
pump: 3.0.4
|
|
2237
|
+
tar-stream: 3.1.8
|
|
2238
|
+
optionalDependencies:
|
|
2239
|
+
bare-fs: 4.5.5
|
|
2240
|
+
bare-path: 3.0.0
|
|
2241
|
+
transitivePeerDependencies:
|
|
2242
|
+
- bare-abort-controller
|
|
2243
|
+
- bare-buffer
|
|
2244
|
+
- react-native-b4a
|
|
2245
|
+
|
|
2246
|
+
tar-stream@2.2.0:
|
|
2247
|
+
dependencies:
|
|
2248
|
+
bl: 4.1.0
|
|
2249
|
+
end-of-stream: 1.4.5
|
|
2250
|
+
fs-constants: 1.0.0
|
|
2251
|
+
inherits: 2.0.4
|
|
2252
|
+
readable-stream: 3.6.2
|
|
2253
|
+
|
|
2254
|
+
tar-stream@3.1.8:
|
|
2255
|
+
dependencies:
|
|
2256
|
+
b4a: 1.8.0
|
|
2257
|
+
bare-fs: 4.5.5
|
|
2258
|
+
fast-fifo: 1.3.2
|
|
2259
|
+
streamx: 2.23.0
|
|
2260
|
+
transitivePeerDependencies:
|
|
2261
|
+
- bare-abort-controller
|
|
2262
|
+
- bare-buffer
|
|
2263
|
+
- react-native-b4a
|
|
2264
|
+
|
|
2265
|
+
tar@7.5.11:
|
|
2266
|
+
dependencies:
|
|
2267
|
+
'@isaacs/fs-minipass': 4.0.1
|
|
2268
|
+
chownr: 3.0.0
|
|
2269
|
+
minipass: 7.1.3
|
|
2270
|
+
minizlib: 3.1.0
|
|
2271
|
+
yallist: 5.0.0
|
|
2272
|
+
|
|
2273
|
+
teex@1.0.1:
|
|
2274
|
+
dependencies:
|
|
2275
|
+
streamx: 2.23.0
|
|
2276
|
+
transitivePeerDependencies:
|
|
2277
|
+
- bare-abort-controller
|
|
2278
|
+
- react-native-b4a
|
|
2279
|
+
|
|
2280
|
+
text-decoder@1.2.7:
|
|
2281
|
+
dependencies:
|
|
2282
|
+
b4a: 1.8.0
|
|
2283
|
+
transitivePeerDependencies:
|
|
2284
|
+
- react-native-b4a
|
|
2285
|
+
|
|
2286
|
+
tinybench@2.9.0: {}
|
|
2287
|
+
|
|
2288
|
+
tinyexec@0.3.2: {}
|
|
2289
|
+
|
|
2290
|
+
tinyglobby@0.2.15:
|
|
2291
|
+
dependencies:
|
|
2292
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
2293
|
+
picomatch: 4.0.3
|
|
2294
|
+
|
|
2295
|
+
tinypool@1.1.1: {}
|
|
2296
|
+
|
|
2297
|
+
tinyrainbow@2.0.0: {}
|
|
2298
|
+
|
|
2299
|
+
tinyspy@3.0.2: {}
|
|
2300
|
+
|
|
2301
|
+
tr46@0.0.3: {}
|
|
2302
|
+
|
|
2303
|
+
tsx@4.19.4:
|
|
2304
|
+
dependencies:
|
|
2305
|
+
esbuild: 0.25.3
|
|
2306
|
+
get-tsconfig: 4.13.6
|
|
2307
|
+
optionalDependencies:
|
|
2308
|
+
fsevents: 2.3.3
|
|
2309
|
+
|
|
2310
|
+
tunnel-agent@0.6.0:
|
|
2311
|
+
dependencies:
|
|
2312
|
+
safe-buffer: 5.2.1
|
|
2313
|
+
|
|
2314
|
+
typescript@5.9.3: {}
|
|
2315
|
+
|
|
2316
|
+
undici-types@6.21.0: {}
|
|
2317
|
+
|
|
2318
|
+
universalify@2.0.1: {}
|
|
2319
|
+
|
|
2320
|
+
unzipper@0.12.3:
|
|
2321
|
+
dependencies:
|
|
2322
|
+
bluebird: 3.7.2
|
|
2323
|
+
duplexer2: 0.1.4
|
|
2324
|
+
fs-extra: 11.3.4
|
|
2325
|
+
graceful-fs: 4.2.11
|
|
2326
|
+
node-int64: 0.4.0
|
|
2327
|
+
|
|
2328
|
+
util-deprecate@1.0.2: {}
|
|
2329
|
+
|
|
2330
|
+
uuid@10.0.0: {}
|
|
2331
|
+
|
|
2332
|
+
vite-node@3.1.4(@types/node@22.19.15)(tsx@4.19.4):
|
|
2333
|
+
dependencies:
|
|
2334
|
+
cac: 6.7.14
|
|
2335
|
+
debug: 4.4.3
|
|
2336
|
+
es-module-lexer: 1.7.0
|
|
2337
|
+
pathe: 2.0.3
|
|
2338
|
+
vite: 6.4.1(@types/node@22.19.15)(tsx@4.19.4)
|
|
2339
|
+
transitivePeerDependencies:
|
|
2340
|
+
- '@types/node'
|
|
2341
|
+
- jiti
|
|
2342
|
+
- less
|
|
2343
|
+
- lightningcss
|
|
2344
|
+
- sass
|
|
2345
|
+
- sass-embedded
|
|
2346
|
+
- stylus
|
|
2347
|
+
- sugarss
|
|
2348
|
+
- supports-color
|
|
2349
|
+
- terser
|
|
2350
|
+
- tsx
|
|
2351
|
+
- yaml
|
|
2352
|
+
|
|
2353
|
+
vite@6.4.1(@types/node@22.19.15)(tsx@4.19.4):
|
|
2354
|
+
dependencies:
|
|
2355
|
+
esbuild: 0.25.3
|
|
2356
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
2357
|
+
picomatch: 4.0.3
|
|
2358
|
+
postcss: 8.5.8
|
|
2359
|
+
rollup: 4.59.0
|
|
2360
|
+
tinyglobby: 0.2.15
|
|
2361
|
+
optionalDependencies:
|
|
2362
|
+
'@types/node': 22.19.15
|
|
2363
|
+
fsevents: 2.3.3
|
|
2364
|
+
tsx: 4.19.4
|
|
2365
|
+
|
|
2366
|
+
vitest@3.1.4(@types/node@22.19.15)(tsx@4.19.4):
|
|
2367
|
+
dependencies:
|
|
2368
|
+
'@vitest/expect': 3.1.4
|
|
2369
|
+
'@vitest/mocker': 3.1.4(vite@6.4.1(@types/node@22.19.15)(tsx@4.19.4))
|
|
2370
|
+
'@vitest/pretty-format': 3.2.4
|
|
2371
|
+
'@vitest/runner': 3.1.4
|
|
2372
|
+
'@vitest/snapshot': 3.1.4
|
|
2373
|
+
'@vitest/spy': 3.1.4
|
|
2374
|
+
'@vitest/utils': 3.1.4
|
|
2375
|
+
chai: 5.3.3
|
|
2376
|
+
debug: 4.4.3
|
|
2377
|
+
expect-type: 1.3.0
|
|
2378
|
+
magic-string: 0.30.21
|
|
2379
|
+
pathe: 2.0.3
|
|
2380
|
+
std-env: 3.10.0
|
|
2381
|
+
tinybench: 2.9.0
|
|
2382
|
+
tinyexec: 0.3.2
|
|
2383
|
+
tinyglobby: 0.2.15
|
|
2384
|
+
tinypool: 1.1.1
|
|
2385
|
+
tinyrainbow: 2.0.0
|
|
2386
|
+
vite: 6.4.1(@types/node@22.19.15)(tsx@4.19.4)
|
|
2387
|
+
vite-node: 3.1.4(@types/node@22.19.15)(tsx@4.19.4)
|
|
2388
|
+
why-is-node-running: 2.3.0
|
|
2389
|
+
optionalDependencies:
|
|
2390
|
+
'@types/node': 22.19.15
|
|
2391
|
+
transitivePeerDependencies:
|
|
2392
|
+
- jiti
|
|
2393
|
+
- less
|
|
2394
|
+
- lightningcss
|
|
2395
|
+
- msw
|
|
2396
|
+
- sass
|
|
2397
|
+
- sass-embedded
|
|
2398
|
+
- stylus
|
|
2399
|
+
- sugarss
|
|
2400
|
+
- supports-color
|
|
2401
|
+
- terser
|
|
2402
|
+
- tsx
|
|
2403
|
+
- yaml
|
|
2404
|
+
|
|
2405
|
+
webidl-conversions@3.0.1: {}
|
|
2406
|
+
|
|
2407
|
+
whatwg-url@5.0.0:
|
|
2408
|
+
dependencies:
|
|
2409
|
+
tr46: 0.0.3
|
|
2410
|
+
webidl-conversions: 3.0.1
|
|
2411
|
+
|
|
2412
|
+
why-is-node-running@2.3.0:
|
|
2413
|
+
dependencies:
|
|
2414
|
+
siginfo: 2.0.0
|
|
2415
|
+
stackback: 0.0.2
|
|
2416
|
+
|
|
2417
|
+
wrap-ansi@7.0.0:
|
|
2418
|
+
dependencies:
|
|
2419
|
+
ansi-styles: 4.3.0
|
|
2420
|
+
string-width: 4.2.3
|
|
2421
|
+
strip-ansi: 6.0.1
|
|
2422
|
+
|
|
2423
|
+
wrappy@1.0.2: {}
|
|
2424
|
+
|
|
2425
|
+
y18n@5.0.8: {}
|
|
2426
|
+
|
|
2427
|
+
yallist@5.0.0: {}
|
|
2428
|
+
|
|
2429
|
+
yargs-parser@20.2.9: {}
|
|
2430
|
+
|
|
2431
|
+
yargs@16.2.0:
|
|
2432
|
+
dependencies:
|
|
2433
|
+
cliui: 7.0.4
|
|
2434
|
+
escalade: 3.2.0
|
|
2435
|
+
get-caller-file: 2.0.5
|
|
2436
|
+
require-directory: 2.1.1
|
|
2437
|
+
string-width: 4.2.3
|
|
2438
|
+
y18n: 5.0.8
|
|
2439
|
+
yargs-parser: 20.2.9
|