aigetwey 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +84 -0
- package/LICENSE +21 -0
- package/README.md +302 -0
- package/assets/logo.svg +8 -0
- package/assets/screenshot.png +0 -0
- package/assets/wordmark.svg +9 -0
- package/config.example.yaml +56 -0
- package/dashboard/.env.example +12 -0
- package/dashboard/next-env.d.ts +6 -0
- package/dashboard/next.config.ts +12 -0
- package/dashboard/package-lock.json +1771 -0
- package/dashboard/package.json +29 -0
- package/dashboard/postcss.config.mjs +5 -0
- package/dashboard/src/app/(console)/combos/page.tsx +10 -0
- package/dashboard/src/app/(console)/config/page.tsx +5 -0
- package/dashboard/src/app/(console)/console/page.tsx +92 -0
- package/dashboard/src/app/(console)/endpoint/page.tsx +5 -0
- package/dashboard/src/app/(console)/layout.tsx +17 -0
- package/dashboard/src/app/(console)/page.tsx +8 -0
- package/dashboard/src/app/(console)/providers/[id]/page.tsx +6 -0
- package/dashboard/src/app/(console)/providers/page.tsx +5 -0
- package/dashboard/src/app/(console)/quota/page.tsx +5 -0
- package/dashboard/src/app/(console)/tools/[id]/page.tsx +6 -0
- package/dashboard/src/app/(console)/tools/page.tsx +5 -0
- package/dashboard/src/app/(console)/usage/page.tsx +24 -0
- package/dashboard/src/app/api/cli-detect/[tool]/route.ts +253 -0
- package/dashboard/src/app/api/gw/[...path]/route.ts +89 -0
- package/dashboard/src/app/api/login/route.ts +30 -0
- package/dashboard/src/app/api/logout/route.ts +9 -0
- package/dashboard/src/app/api/password/route.ts +34 -0
- package/dashboard/src/app/globals.css +340 -0
- package/dashboard/src/app/icon.svg +8 -0
- package/dashboard/src/app/layout.tsx +28 -0
- package/dashboard/src/app/login/page.tsx +60 -0
- package/dashboard/src/components/AreaChart.tsx +115 -0
- package/dashboard/src/components/Badge.tsx +32 -0
- package/dashboard/src/components/Button.tsx +60 -0
- package/dashboard/src/components/CapacityBadges.tsx +40 -0
- package/dashboard/src/components/Checkbox.tsx +40 -0
- package/dashboard/src/components/CliToolConfig.tsx +63 -0
- package/dashboard/src/components/ConfigEditor.tsx +199 -0
- package/dashboard/src/components/ConfirmModal.tsx +36 -0
- package/dashboard/src/components/CooldownTimer.tsx +42 -0
- package/dashboard/src/components/EndpointView.tsx +439 -0
- package/dashboard/src/components/Icon.tsx +25 -0
- package/dashboard/src/components/KeyReveal.tsx +78 -0
- package/dashboard/src/components/Lamp.tsx +8 -0
- package/dashboard/src/components/LogTable.tsx +223 -0
- package/dashboard/src/components/LogoutButton.tsx +20 -0
- package/dashboard/src/components/ModelPicker.tsx +121 -0
- package/dashboard/src/components/ModelSelectModal.tsx +126 -0
- package/dashboard/src/components/PasswordEditor.tsx +86 -0
- package/dashboard/src/components/PricingEditor.tsx +171 -0
- package/dashboard/src/components/ProviderDetail.tsx +566 -0
- package/dashboard/src/components/ProviderManager.tsx +311 -0
- package/dashboard/src/components/QuotaView.tsx +78 -0
- package/dashboard/src/components/Rail.tsx +82 -0
- package/dashboard/src/components/RichCard.tsx +46 -0
- package/dashboard/src/components/RoutingView.tsx +329 -0
- package/dashboard/src/components/ThemeProvider.tsx +36 -0
- package/dashboard/src/components/ToastProvider.tsx +58 -0
- package/dashboard/src/components/ToolDetail.tsx +475 -0
- package/dashboard/src/components/TopBar.tsx +128 -0
- package/dashboard/src/components/UsageView.tsx +151 -0
- package/dashboard/src/components/ui.tsx +54 -0
- package/dashboard/src/lib/capabilities.ts +318 -0
- package/dashboard/src/lib/cliTools.ts +120 -0
- package/dashboard/src/lib/client.ts +190 -0
- package/dashboard/src/lib/gateway.ts +269 -0
- package/dashboard/src/lib/session.ts +71 -0
- package/dashboard/src/middleware.ts +37 -0
- package/dashboard/tsconfig.json +21 -0
- package/dist/adapters/anthropic.js +289 -0
- package/dist/adapters/anthropic.js.map +1 -0
- package/dist/adapters/gemini.js +268 -0
- package/dist/adapters/gemini.js.map +1 -0
- package/dist/adapters/index.js +8 -0
- package/dist/adapters/index.js.map +1 -0
- package/dist/adapters/openai.js +13 -0
- package/dist/adapters/openai.js.map +1 -0
- package/dist/cli/tray/autostart.js +152 -0
- package/dist/cli/tray/autostart.js.map +1 -0
- package/dist/cli/tray/icon.js +4 -0
- package/dist/cli/tray/icon.js.map +1 -0
- package/dist/cli/tray/tray.js +141 -0
- package/dist/cli/tray/tray.js.map +1 -0
- package/dist/cli/tray/trayRuntime.js +91 -0
- package/dist/cli/tray/trayRuntime.js.map +1 -0
- package/dist/cli.js +361 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.js +728 -0
- package/dist/config.js.map +1 -0
- package/dist/core/authStore.js +78 -0
- package/dist/core/authStore.js.map +1 -0
- package/dist/core/canonical.js +9 -0
- package/dist/core/canonical.js.map +1 -0
- package/dist/core/console-buffer.js +25 -0
- package/dist/core/console-buffer.js.map +1 -0
- package/dist/core/fallback.js +62 -0
- package/dist/core/fallback.js.map +1 -0
- package/dist/core/handler.js +174 -0
- package/dist/core/handler.js.map +1 -0
- package/dist/core/keypool.js +105 -0
- package/dist/core/keypool.js.map +1 -0
- package/dist/core/quota.js +165 -0
- package/dist/core/quota.js.map +1 -0
- package/dist/core/state.js +52 -0
- package/dist/core/state.js.map +1 -0
- package/dist/db.js +193 -0
- package/dist/db.js.map +1 -0
- package/dist/headroom/compress.js +44 -0
- package/dist/headroom/compress.js.map +1 -0
- package/dist/headroom/detect.js +108 -0
- package/dist/headroom/detect.js.map +1 -0
- package/dist/headroom/process.js +158 -0
- package/dist/headroom/process.js.map +1 -0
- package/dist/inject/caveman.js +30 -0
- package/dist/inject/caveman.js.map +1 -0
- package/dist/inject/index.js +24 -0
- package/dist/inject/index.js.map +1 -0
- package/dist/inject/ponytail.js +19 -0
- package/dist/inject/ponytail.js.map +1 -0
- package/dist/middleware/auth.js +66 -0
- package/dist/middleware/auth.js.map +1 -0
- package/dist/providers/capabilities.js +246 -0
- package/dist/providers/capabilities.js.map +1 -0
- package/dist/providers/free.js +43 -0
- package/dist/providers/free.js.map +1 -0
- package/dist/providers/pricing.js +224 -0
- package/dist/providers/pricing.js.map +1 -0
- package/dist/providers/vertex.js +97 -0
- package/dist/providers/vertex.js.map +1 -0
- package/dist/routes/admin.js +622 -0
- package/dist/routes/admin.js.map +1 -0
- package/dist/routes/health.js +4 -0
- package/dist/routes/health.js.map +1 -0
- package/dist/routes/index.js +12 -0
- package/dist/routes/index.js.map +1 -0
- package/dist/routes/v1.js +75 -0
- package/dist/routes/v1.js.map +1 -0
- package/dist/rtk/detect.js +50 -0
- package/dist/rtk/detect.js.map +1 -0
- package/dist/rtk/filters.js +85 -0
- package/dist/rtk/filters.js.map +1 -0
- package/dist/rtk/index.js +39 -0
- package/dist/rtk/index.js.map +1 -0
- package/dist/server.js +100 -0
- package/dist/server.js.map +1 -0
- package/dist/stream/anthropic-stream.js +239 -0
- package/dist/stream/anthropic-stream.js.map +1 -0
- package/dist/stream/chunk.js +7 -0
- package/dist/stream/chunk.js.map +1 -0
- package/dist/stream/gemini-stream.js +135 -0
- package/dist/stream/gemini-stream.js.map +1 -0
- package/dist/stream/index.js +12 -0
- package/dist/stream/index.js.map +1 -0
- package/dist/stream/openai-stream.js +34 -0
- package/dist/stream/openai-stream.js.map +1 -0
- package/dist/stream/sse.js +64 -0
- package/dist/stream/sse.js.map +1 -0
- package/dist/translator/thinking.js +70 -0
- package/dist/translator/thinking.js.map +1 -0
- package/dist/translator/thinkingUnified.js +322 -0
- package/dist/translator/thinkingUnified.js.map +1 -0
- package/dist/upstream/client.js +120 -0
- package/dist/upstream/client.js.map +1 -0
- package/package.json +76 -0
- package/run.sh +27 -0
- package/src/adapters/anthropic.ts +377 -0
- package/src/adapters/gemini.ts +341 -0
- package/src/adapters/index.ts +17 -0
- package/src/adapters/openai.ts +22 -0
- package/src/cli/tray/autostart.ts +133 -0
- package/src/cli/tray/icon.ts +4 -0
- package/src/cli/tray/tray.ts +156 -0
- package/src/cli/tray/trayRuntime.ts +90 -0
- package/src/cli.ts +379 -0
- package/src/config.ts +777 -0
- package/src/core/authStore.ts +86 -0
- package/src/core/canonical.ts +93 -0
- package/src/core/console-buffer.ts +39 -0
- package/src/core/fallback.ts +116 -0
- package/src/core/handler.ts +236 -0
- package/src/core/keypool.ts +152 -0
- package/src/core/quota.ts +214 -0
- package/src/core/state.ts +65 -0
- package/src/db.ts +280 -0
- package/src/headroom/compress.ts +78 -0
- package/src/headroom/detect.ts +119 -0
- package/src/headroom/process.ts +166 -0
- package/src/inject/caveman.ts +35 -0
- package/src/inject/index.ts +46 -0
- package/src/inject/ponytail.ts +31 -0
- package/src/middleware/auth.ts +76 -0
- package/src/providers/capabilities.ts +297 -0
- package/src/providers/free.ts +53 -0
- package/src/providers/pricing.ts +261 -0
- package/src/providers/vertex.ts +117 -0
- package/src/routes/admin.ts +716 -0
- package/src/routes/health.ts +5 -0
- package/src/routes/index.ts +24 -0
- package/src/routes/v1.ts +87 -0
- package/src/rtk/detect.ts +55 -0
- package/src/rtk/filters.ts +94 -0
- package/src/rtk/index.ts +58 -0
- package/src/server.ts +108 -0
- package/src/stream/anthropic-stream.ts +310 -0
- package/src/stream/chunk.ts +46 -0
- package/src/stream/gemini-stream.ts +158 -0
- package/src/stream/index.ts +23 -0
- package/src/stream/openai-stream.ts +41 -0
- package/src/stream/sse.ts +72 -0
- package/src/translator/thinking.ts +64 -0
- package/src/translator/thinkingUnified.ts +319 -0
- package/src/upstream/client.ts +155 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,1771 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aigetwey-dashboard",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "aigetwey-dashboard",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"next": "^16.2.9",
|
|
12
|
+
"react": "^19.0.0",
|
|
13
|
+
"react-dom": "^19.0.0",
|
|
14
|
+
"server-only": "^0.0.1",
|
|
15
|
+
"yaml": "^2.9.0"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@tailwindcss/postcss": "^4.0.0",
|
|
19
|
+
"@types/node": "^22.10.0",
|
|
20
|
+
"@types/react": "^19.0.0",
|
|
21
|
+
"@types/react-dom": "^19.0.0",
|
|
22
|
+
"tailwindcss": "^4.0.0",
|
|
23
|
+
"typescript": "^5.7.2"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"node_modules/@alloc/quick-lru": {
|
|
27
|
+
"version": "5.2.0",
|
|
28
|
+
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
29
|
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
|
30
|
+
"dev": true,
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=10"
|
|
34
|
+
},
|
|
35
|
+
"funding": {
|
|
36
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"node_modules/@emnapi/runtime": {
|
|
40
|
+
"version": "1.11.1",
|
|
41
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
|
|
42
|
+
"integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"optional": true,
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"tslib": "^2.4.0"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"node_modules/@img/colour": {
|
|
50
|
+
"version": "1.1.0",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
|
|
52
|
+
"integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"optional": true,
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
60
|
+
"version": "0.34.5",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
|
|
62
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
63
|
+
"cpu": [
|
|
64
|
+
"arm64"
|
|
65
|
+
],
|
|
66
|
+
"license": "Apache-2.0",
|
|
67
|
+
"optional": true,
|
|
68
|
+
"os": [
|
|
69
|
+
"darwin"
|
|
70
|
+
],
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
73
|
+
},
|
|
74
|
+
"funding": {
|
|
75
|
+
"url": "https://opencollective.com/libvips"
|
|
76
|
+
},
|
|
77
|
+
"optionalDependencies": {
|
|
78
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
82
|
+
"version": "0.34.5",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
|
|
84
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
85
|
+
"cpu": [
|
|
86
|
+
"x64"
|
|
87
|
+
],
|
|
88
|
+
"license": "Apache-2.0",
|
|
89
|
+
"optional": true,
|
|
90
|
+
"os": [
|
|
91
|
+
"darwin"
|
|
92
|
+
],
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
95
|
+
},
|
|
96
|
+
"funding": {
|
|
97
|
+
"url": "https://opencollective.com/libvips"
|
|
98
|
+
},
|
|
99
|
+
"optionalDependencies": {
|
|
100
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
104
|
+
"version": "1.2.4",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
|
|
106
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
107
|
+
"cpu": [
|
|
108
|
+
"arm64"
|
|
109
|
+
],
|
|
110
|
+
"license": "LGPL-3.0-or-later",
|
|
111
|
+
"optional": true,
|
|
112
|
+
"os": [
|
|
113
|
+
"darwin"
|
|
114
|
+
],
|
|
115
|
+
"funding": {
|
|
116
|
+
"url": "https://opencollective.com/libvips"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
120
|
+
"version": "1.2.4",
|
|
121
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
|
|
122
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
123
|
+
"cpu": [
|
|
124
|
+
"x64"
|
|
125
|
+
],
|
|
126
|
+
"license": "LGPL-3.0-or-later",
|
|
127
|
+
"optional": true,
|
|
128
|
+
"os": [
|
|
129
|
+
"darwin"
|
|
130
|
+
],
|
|
131
|
+
"funding": {
|
|
132
|
+
"url": "https://opencollective.com/libvips"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
136
|
+
"version": "1.2.4",
|
|
137
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
|
|
138
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
139
|
+
"cpu": [
|
|
140
|
+
"arm"
|
|
141
|
+
],
|
|
142
|
+
"libc": [
|
|
143
|
+
"glibc"
|
|
144
|
+
],
|
|
145
|
+
"license": "LGPL-3.0-or-later",
|
|
146
|
+
"optional": true,
|
|
147
|
+
"os": [
|
|
148
|
+
"linux"
|
|
149
|
+
],
|
|
150
|
+
"funding": {
|
|
151
|
+
"url": "https://opencollective.com/libvips"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
155
|
+
"version": "1.2.4",
|
|
156
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
|
|
157
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
158
|
+
"cpu": [
|
|
159
|
+
"arm64"
|
|
160
|
+
],
|
|
161
|
+
"libc": [
|
|
162
|
+
"glibc"
|
|
163
|
+
],
|
|
164
|
+
"license": "LGPL-3.0-or-later",
|
|
165
|
+
"optional": true,
|
|
166
|
+
"os": [
|
|
167
|
+
"linux"
|
|
168
|
+
],
|
|
169
|
+
"funding": {
|
|
170
|
+
"url": "https://opencollective.com/libvips"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
174
|
+
"version": "1.2.4",
|
|
175
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
|
|
176
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
177
|
+
"cpu": [
|
|
178
|
+
"ppc64"
|
|
179
|
+
],
|
|
180
|
+
"libc": [
|
|
181
|
+
"glibc"
|
|
182
|
+
],
|
|
183
|
+
"license": "LGPL-3.0-or-later",
|
|
184
|
+
"optional": true,
|
|
185
|
+
"os": [
|
|
186
|
+
"linux"
|
|
187
|
+
],
|
|
188
|
+
"funding": {
|
|
189
|
+
"url": "https://opencollective.com/libvips"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"node_modules/@img/sharp-libvips-linux-riscv64": {
|
|
193
|
+
"version": "1.2.4",
|
|
194
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
|
|
195
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
196
|
+
"cpu": [
|
|
197
|
+
"riscv64"
|
|
198
|
+
],
|
|
199
|
+
"libc": [
|
|
200
|
+
"glibc"
|
|
201
|
+
],
|
|
202
|
+
"license": "LGPL-3.0-or-later",
|
|
203
|
+
"optional": true,
|
|
204
|
+
"os": [
|
|
205
|
+
"linux"
|
|
206
|
+
],
|
|
207
|
+
"funding": {
|
|
208
|
+
"url": "https://opencollective.com/libvips"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
212
|
+
"version": "1.2.4",
|
|
213
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
|
|
214
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
215
|
+
"cpu": [
|
|
216
|
+
"s390x"
|
|
217
|
+
],
|
|
218
|
+
"libc": [
|
|
219
|
+
"glibc"
|
|
220
|
+
],
|
|
221
|
+
"license": "LGPL-3.0-or-later",
|
|
222
|
+
"optional": true,
|
|
223
|
+
"os": [
|
|
224
|
+
"linux"
|
|
225
|
+
],
|
|
226
|
+
"funding": {
|
|
227
|
+
"url": "https://opencollective.com/libvips"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
231
|
+
"version": "1.2.4",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
|
|
233
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
234
|
+
"cpu": [
|
|
235
|
+
"x64"
|
|
236
|
+
],
|
|
237
|
+
"libc": [
|
|
238
|
+
"glibc"
|
|
239
|
+
],
|
|
240
|
+
"license": "LGPL-3.0-or-later",
|
|
241
|
+
"optional": true,
|
|
242
|
+
"os": [
|
|
243
|
+
"linux"
|
|
244
|
+
],
|
|
245
|
+
"funding": {
|
|
246
|
+
"url": "https://opencollective.com/libvips"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
250
|
+
"version": "1.2.4",
|
|
251
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
|
|
252
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
253
|
+
"cpu": [
|
|
254
|
+
"arm64"
|
|
255
|
+
],
|
|
256
|
+
"libc": [
|
|
257
|
+
"musl"
|
|
258
|
+
],
|
|
259
|
+
"license": "LGPL-3.0-or-later",
|
|
260
|
+
"optional": true,
|
|
261
|
+
"os": [
|
|
262
|
+
"linux"
|
|
263
|
+
],
|
|
264
|
+
"funding": {
|
|
265
|
+
"url": "https://opencollective.com/libvips"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
269
|
+
"version": "1.2.4",
|
|
270
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
|
|
271
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
272
|
+
"cpu": [
|
|
273
|
+
"x64"
|
|
274
|
+
],
|
|
275
|
+
"libc": [
|
|
276
|
+
"musl"
|
|
277
|
+
],
|
|
278
|
+
"license": "LGPL-3.0-or-later",
|
|
279
|
+
"optional": true,
|
|
280
|
+
"os": [
|
|
281
|
+
"linux"
|
|
282
|
+
],
|
|
283
|
+
"funding": {
|
|
284
|
+
"url": "https://opencollective.com/libvips"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
288
|
+
"version": "0.34.5",
|
|
289
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
|
|
290
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
291
|
+
"cpu": [
|
|
292
|
+
"arm"
|
|
293
|
+
],
|
|
294
|
+
"libc": [
|
|
295
|
+
"glibc"
|
|
296
|
+
],
|
|
297
|
+
"license": "Apache-2.0",
|
|
298
|
+
"optional": true,
|
|
299
|
+
"os": [
|
|
300
|
+
"linux"
|
|
301
|
+
],
|
|
302
|
+
"engines": {
|
|
303
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
304
|
+
},
|
|
305
|
+
"funding": {
|
|
306
|
+
"url": "https://opencollective.com/libvips"
|
|
307
|
+
},
|
|
308
|
+
"optionalDependencies": {
|
|
309
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
313
|
+
"version": "0.34.5",
|
|
314
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
|
|
315
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
316
|
+
"cpu": [
|
|
317
|
+
"arm64"
|
|
318
|
+
],
|
|
319
|
+
"libc": [
|
|
320
|
+
"glibc"
|
|
321
|
+
],
|
|
322
|
+
"license": "Apache-2.0",
|
|
323
|
+
"optional": true,
|
|
324
|
+
"os": [
|
|
325
|
+
"linux"
|
|
326
|
+
],
|
|
327
|
+
"engines": {
|
|
328
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
329
|
+
},
|
|
330
|
+
"funding": {
|
|
331
|
+
"url": "https://opencollective.com/libvips"
|
|
332
|
+
},
|
|
333
|
+
"optionalDependencies": {
|
|
334
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
338
|
+
"version": "0.34.5",
|
|
339
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
|
|
340
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
341
|
+
"cpu": [
|
|
342
|
+
"ppc64"
|
|
343
|
+
],
|
|
344
|
+
"libc": [
|
|
345
|
+
"glibc"
|
|
346
|
+
],
|
|
347
|
+
"license": "Apache-2.0",
|
|
348
|
+
"optional": true,
|
|
349
|
+
"os": [
|
|
350
|
+
"linux"
|
|
351
|
+
],
|
|
352
|
+
"engines": {
|
|
353
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
354
|
+
},
|
|
355
|
+
"funding": {
|
|
356
|
+
"url": "https://opencollective.com/libvips"
|
|
357
|
+
},
|
|
358
|
+
"optionalDependencies": {
|
|
359
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
363
|
+
"version": "0.34.5",
|
|
364
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
|
|
365
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
366
|
+
"cpu": [
|
|
367
|
+
"riscv64"
|
|
368
|
+
],
|
|
369
|
+
"libc": [
|
|
370
|
+
"glibc"
|
|
371
|
+
],
|
|
372
|
+
"license": "Apache-2.0",
|
|
373
|
+
"optional": true,
|
|
374
|
+
"os": [
|
|
375
|
+
"linux"
|
|
376
|
+
],
|
|
377
|
+
"engines": {
|
|
378
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
379
|
+
},
|
|
380
|
+
"funding": {
|
|
381
|
+
"url": "https://opencollective.com/libvips"
|
|
382
|
+
},
|
|
383
|
+
"optionalDependencies": {
|
|
384
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
388
|
+
"version": "0.34.5",
|
|
389
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
|
|
390
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
391
|
+
"cpu": [
|
|
392
|
+
"s390x"
|
|
393
|
+
],
|
|
394
|
+
"libc": [
|
|
395
|
+
"glibc"
|
|
396
|
+
],
|
|
397
|
+
"license": "Apache-2.0",
|
|
398
|
+
"optional": true,
|
|
399
|
+
"os": [
|
|
400
|
+
"linux"
|
|
401
|
+
],
|
|
402
|
+
"engines": {
|
|
403
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
404
|
+
},
|
|
405
|
+
"funding": {
|
|
406
|
+
"url": "https://opencollective.com/libvips"
|
|
407
|
+
},
|
|
408
|
+
"optionalDependencies": {
|
|
409
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
413
|
+
"version": "0.34.5",
|
|
414
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
|
|
415
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
416
|
+
"cpu": [
|
|
417
|
+
"x64"
|
|
418
|
+
],
|
|
419
|
+
"libc": [
|
|
420
|
+
"glibc"
|
|
421
|
+
],
|
|
422
|
+
"license": "Apache-2.0",
|
|
423
|
+
"optional": true,
|
|
424
|
+
"os": [
|
|
425
|
+
"linux"
|
|
426
|
+
],
|
|
427
|
+
"engines": {
|
|
428
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
429
|
+
},
|
|
430
|
+
"funding": {
|
|
431
|
+
"url": "https://opencollective.com/libvips"
|
|
432
|
+
},
|
|
433
|
+
"optionalDependencies": {
|
|
434
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
438
|
+
"version": "0.34.5",
|
|
439
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
|
|
440
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
441
|
+
"cpu": [
|
|
442
|
+
"arm64"
|
|
443
|
+
],
|
|
444
|
+
"libc": [
|
|
445
|
+
"musl"
|
|
446
|
+
],
|
|
447
|
+
"license": "Apache-2.0",
|
|
448
|
+
"optional": true,
|
|
449
|
+
"os": [
|
|
450
|
+
"linux"
|
|
451
|
+
],
|
|
452
|
+
"engines": {
|
|
453
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
454
|
+
},
|
|
455
|
+
"funding": {
|
|
456
|
+
"url": "https://opencollective.com/libvips"
|
|
457
|
+
},
|
|
458
|
+
"optionalDependencies": {
|
|
459
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
463
|
+
"version": "0.34.5",
|
|
464
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
|
|
465
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
466
|
+
"cpu": [
|
|
467
|
+
"x64"
|
|
468
|
+
],
|
|
469
|
+
"libc": [
|
|
470
|
+
"musl"
|
|
471
|
+
],
|
|
472
|
+
"license": "Apache-2.0",
|
|
473
|
+
"optional": true,
|
|
474
|
+
"os": [
|
|
475
|
+
"linux"
|
|
476
|
+
],
|
|
477
|
+
"engines": {
|
|
478
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
479
|
+
},
|
|
480
|
+
"funding": {
|
|
481
|
+
"url": "https://opencollective.com/libvips"
|
|
482
|
+
},
|
|
483
|
+
"optionalDependencies": {
|
|
484
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"node_modules/@img/sharp-wasm32": {
|
|
488
|
+
"version": "0.34.5",
|
|
489
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
|
|
490
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
491
|
+
"cpu": [
|
|
492
|
+
"wasm32"
|
|
493
|
+
],
|
|
494
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
495
|
+
"optional": true,
|
|
496
|
+
"dependencies": {
|
|
497
|
+
"@emnapi/runtime": "^1.7.0"
|
|
498
|
+
},
|
|
499
|
+
"engines": {
|
|
500
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
501
|
+
},
|
|
502
|
+
"funding": {
|
|
503
|
+
"url": "https://opencollective.com/libvips"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
507
|
+
"version": "0.34.5",
|
|
508
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
|
|
509
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
510
|
+
"cpu": [
|
|
511
|
+
"arm64"
|
|
512
|
+
],
|
|
513
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
514
|
+
"optional": true,
|
|
515
|
+
"os": [
|
|
516
|
+
"win32"
|
|
517
|
+
],
|
|
518
|
+
"engines": {
|
|
519
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
520
|
+
},
|
|
521
|
+
"funding": {
|
|
522
|
+
"url": "https://opencollective.com/libvips"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
526
|
+
"version": "0.34.5",
|
|
527
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
|
|
528
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
529
|
+
"cpu": [
|
|
530
|
+
"ia32"
|
|
531
|
+
],
|
|
532
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
533
|
+
"optional": true,
|
|
534
|
+
"os": [
|
|
535
|
+
"win32"
|
|
536
|
+
],
|
|
537
|
+
"engines": {
|
|
538
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
539
|
+
},
|
|
540
|
+
"funding": {
|
|
541
|
+
"url": "https://opencollective.com/libvips"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
545
|
+
"version": "0.34.5",
|
|
546
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
|
|
547
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
548
|
+
"cpu": [
|
|
549
|
+
"x64"
|
|
550
|
+
],
|
|
551
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
552
|
+
"optional": true,
|
|
553
|
+
"os": [
|
|
554
|
+
"win32"
|
|
555
|
+
],
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
558
|
+
},
|
|
559
|
+
"funding": {
|
|
560
|
+
"url": "https://opencollective.com/libvips"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
564
|
+
"version": "0.3.13",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
566
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
567
|
+
"dev": true,
|
|
568
|
+
"license": "MIT",
|
|
569
|
+
"dependencies": {
|
|
570
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
571
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"node_modules/@jridgewell/remapping": {
|
|
575
|
+
"version": "2.3.5",
|
|
576
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
577
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
578
|
+
"dev": true,
|
|
579
|
+
"license": "MIT",
|
|
580
|
+
"dependencies": {
|
|
581
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
582
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
586
|
+
"version": "3.1.2",
|
|
587
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
588
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
589
|
+
"dev": true,
|
|
590
|
+
"license": "MIT",
|
|
591
|
+
"engines": {
|
|
592
|
+
"node": ">=6.0.0"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
596
|
+
"version": "1.5.5",
|
|
597
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
598
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
599
|
+
"dev": true,
|
|
600
|
+
"license": "MIT"
|
|
601
|
+
},
|
|
602
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
603
|
+
"version": "0.3.31",
|
|
604
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
605
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
606
|
+
"dev": true,
|
|
607
|
+
"license": "MIT",
|
|
608
|
+
"dependencies": {
|
|
609
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
610
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"node_modules/@next/env": {
|
|
614
|
+
"version": "16.2.9",
|
|
615
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.9.tgz",
|
|
616
|
+
"integrity": "sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==",
|
|
617
|
+
"license": "MIT"
|
|
618
|
+
},
|
|
619
|
+
"node_modules/@next/swc-darwin-arm64": {
|
|
620
|
+
"version": "16.2.9",
|
|
621
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.9.tgz",
|
|
622
|
+
"integrity": "sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==",
|
|
623
|
+
"cpu": [
|
|
624
|
+
"arm64"
|
|
625
|
+
],
|
|
626
|
+
"license": "MIT",
|
|
627
|
+
"optional": true,
|
|
628
|
+
"os": [
|
|
629
|
+
"darwin"
|
|
630
|
+
],
|
|
631
|
+
"engines": {
|
|
632
|
+
"node": ">= 10"
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
"node_modules/@next/swc-darwin-x64": {
|
|
636
|
+
"version": "16.2.9",
|
|
637
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.9.tgz",
|
|
638
|
+
"integrity": "sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==",
|
|
639
|
+
"cpu": [
|
|
640
|
+
"x64"
|
|
641
|
+
],
|
|
642
|
+
"license": "MIT",
|
|
643
|
+
"optional": true,
|
|
644
|
+
"os": [
|
|
645
|
+
"darwin"
|
|
646
|
+
],
|
|
647
|
+
"engines": {
|
|
648
|
+
"node": ">= 10"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
652
|
+
"version": "16.2.9",
|
|
653
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.9.tgz",
|
|
654
|
+
"integrity": "sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==",
|
|
655
|
+
"cpu": [
|
|
656
|
+
"arm64"
|
|
657
|
+
],
|
|
658
|
+
"libc": [
|
|
659
|
+
"glibc"
|
|
660
|
+
],
|
|
661
|
+
"license": "MIT",
|
|
662
|
+
"optional": true,
|
|
663
|
+
"os": [
|
|
664
|
+
"linux"
|
|
665
|
+
],
|
|
666
|
+
"engines": {
|
|
667
|
+
"node": ">= 10"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
"node_modules/@next/swc-linux-arm64-musl": {
|
|
671
|
+
"version": "16.2.9",
|
|
672
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.9.tgz",
|
|
673
|
+
"integrity": "sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==",
|
|
674
|
+
"cpu": [
|
|
675
|
+
"arm64"
|
|
676
|
+
],
|
|
677
|
+
"libc": [
|
|
678
|
+
"musl"
|
|
679
|
+
],
|
|
680
|
+
"license": "MIT",
|
|
681
|
+
"optional": true,
|
|
682
|
+
"os": [
|
|
683
|
+
"linux"
|
|
684
|
+
],
|
|
685
|
+
"engines": {
|
|
686
|
+
"node": ">= 10"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
"node_modules/@next/swc-linux-x64-gnu": {
|
|
690
|
+
"version": "16.2.9",
|
|
691
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.9.tgz",
|
|
692
|
+
"integrity": "sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==",
|
|
693
|
+
"cpu": [
|
|
694
|
+
"x64"
|
|
695
|
+
],
|
|
696
|
+
"libc": [
|
|
697
|
+
"glibc"
|
|
698
|
+
],
|
|
699
|
+
"license": "MIT",
|
|
700
|
+
"optional": true,
|
|
701
|
+
"os": [
|
|
702
|
+
"linux"
|
|
703
|
+
],
|
|
704
|
+
"engines": {
|
|
705
|
+
"node": ">= 10"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"node_modules/@next/swc-linux-x64-musl": {
|
|
709
|
+
"version": "16.2.9",
|
|
710
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.9.tgz",
|
|
711
|
+
"integrity": "sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==",
|
|
712
|
+
"cpu": [
|
|
713
|
+
"x64"
|
|
714
|
+
],
|
|
715
|
+
"libc": [
|
|
716
|
+
"musl"
|
|
717
|
+
],
|
|
718
|
+
"license": "MIT",
|
|
719
|
+
"optional": true,
|
|
720
|
+
"os": [
|
|
721
|
+
"linux"
|
|
722
|
+
],
|
|
723
|
+
"engines": {
|
|
724
|
+
"node": ">= 10"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
728
|
+
"version": "16.2.9",
|
|
729
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.9.tgz",
|
|
730
|
+
"integrity": "sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==",
|
|
731
|
+
"cpu": [
|
|
732
|
+
"arm64"
|
|
733
|
+
],
|
|
734
|
+
"license": "MIT",
|
|
735
|
+
"optional": true,
|
|
736
|
+
"os": [
|
|
737
|
+
"win32"
|
|
738
|
+
],
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">= 10"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"node_modules/@next/swc-win32-x64-msvc": {
|
|
744
|
+
"version": "16.2.9",
|
|
745
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.9.tgz",
|
|
746
|
+
"integrity": "sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==",
|
|
747
|
+
"cpu": [
|
|
748
|
+
"x64"
|
|
749
|
+
],
|
|
750
|
+
"license": "MIT",
|
|
751
|
+
"optional": true,
|
|
752
|
+
"os": [
|
|
753
|
+
"win32"
|
|
754
|
+
],
|
|
755
|
+
"engines": {
|
|
756
|
+
"node": ">= 10"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
"node_modules/@swc/helpers": {
|
|
760
|
+
"version": "0.5.15",
|
|
761
|
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
|
|
762
|
+
"integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
|
|
763
|
+
"license": "Apache-2.0",
|
|
764
|
+
"dependencies": {
|
|
765
|
+
"tslib": "^2.8.0"
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
"node_modules/@tailwindcss/node": {
|
|
769
|
+
"version": "4.3.1",
|
|
770
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
|
|
771
|
+
"integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
|
|
772
|
+
"dev": true,
|
|
773
|
+
"license": "MIT",
|
|
774
|
+
"dependencies": {
|
|
775
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
776
|
+
"enhanced-resolve": "5.21.6",
|
|
777
|
+
"jiti": "^2.7.0",
|
|
778
|
+
"lightningcss": "1.32.0",
|
|
779
|
+
"magic-string": "^0.30.21",
|
|
780
|
+
"source-map-js": "^1.2.1",
|
|
781
|
+
"tailwindcss": "4.3.1"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"node_modules/@tailwindcss/oxide": {
|
|
785
|
+
"version": "4.3.1",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
|
|
787
|
+
"integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
|
|
788
|
+
"dev": true,
|
|
789
|
+
"license": "MIT",
|
|
790
|
+
"engines": {
|
|
791
|
+
"node": ">= 20"
|
|
792
|
+
},
|
|
793
|
+
"optionalDependencies": {
|
|
794
|
+
"@tailwindcss/oxide-android-arm64": "4.3.1",
|
|
795
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.1",
|
|
796
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.1",
|
|
797
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.1",
|
|
798
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
|
|
799
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
|
|
800
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
|
|
801
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
|
|
802
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.1",
|
|
803
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.1",
|
|
804
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
|
|
805
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
809
|
+
"version": "4.3.1",
|
|
810
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
|
|
811
|
+
"integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
|
|
812
|
+
"cpu": [
|
|
813
|
+
"arm64"
|
|
814
|
+
],
|
|
815
|
+
"dev": true,
|
|
816
|
+
"license": "MIT",
|
|
817
|
+
"optional": true,
|
|
818
|
+
"os": [
|
|
819
|
+
"android"
|
|
820
|
+
],
|
|
821
|
+
"engines": {
|
|
822
|
+
"node": ">= 20"
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
826
|
+
"version": "4.3.1",
|
|
827
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
|
|
828
|
+
"integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
|
|
829
|
+
"cpu": [
|
|
830
|
+
"arm64"
|
|
831
|
+
],
|
|
832
|
+
"dev": true,
|
|
833
|
+
"license": "MIT",
|
|
834
|
+
"optional": true,
|
|
835
|
+
"os": [
|
|
836
|
+
"darwin"
|
|
837
|
+
],
|
|
838
|
+
"engines": {
|
|
839
|
+
"node": ">= 20"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
843
|
+
"version": "4.3.1",
|
|
844
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
|
|
845
|
+
"integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
|
|
846
|
+
"cpu": [
|
|
847
|
+
"x64"
|
|
848
|
+
],
|
|
849
|
+
"dev": true,
|
|
850
|
+
"license": "MIT",
|
|
851
|
+
"optional": true,
|
|
852
|
+
"os": [
|
|
853
|
+
"darwin"
|
|
854
|
+
],
|
|
855
|
+
"engines": {
|
|
856
|
+
"node": ">= 20"
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
860
|
+
"version": "4.3.1",
|
|
861
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
|
|
862
|
+
"integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
|
|
863
|
+
"cpu": [
|
|
864
|
+
"x64"
|
|
865
|
+
],
|
|
866
|
+
"dev": true,
|
|
867
|
+
"license": "MIT",
|
|
868
|
+
"optional": true,
|
|
869
|
+
"os": [
|
|
870
|
+
"freebsd"
|
|
871
|
+
],
|
|
872
|
+
"engines": {
|
|
873
|
+
"node": ">= 20"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
877
|
+
"version": "4.3.1",
|
|
878
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
|
|
879
|
+
"integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
|
|
880
|
+
"cpu": [
|
|
881
|
+
"arm"
|
|
882
|
+
],
|
|
883
|
+
"dev": true,
|
|
884
|
+
"license": "MIT",
|
|
885
|
+
"optional": true,
|
|
886
|
+
"os": [
|
|
887
|
+
"linux"
|
|
888
|
+
],
|
|
889
|
+
"engines": {
|
|
890
|
+
"node": ">= 20"
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
894
|
+
"version": "4.3.1",
|
|
895
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
|
|
896
|
+
"integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
|
|
897
|
+
"cpu": [
|
|
898
|
+
"arm64"
|
|
899
|
+
],
|
|
900
|
+
"dev": true,
|
|
901
|
+
"libc": [
|
|
902
|
+
"glibc"
|
|
903
|
+
],
|
|
904
|
+
"license": "MIT",
|
|
905
|
+
"optional": true,
|
|
906
|
+
"os": [
|
|
907
|
+
"linux"
|
|
908
|
+
],
|
|
909
|
+
"engines": {
|
|
910
|
+
"node": ">= 20"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
914
|
+
"version": "4.3.1",
|
|
915
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
|
|
916
|
+
"integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
|
|
917
|
+
"cpu": [
|
|
918
|
+
"arm64"
|
|
919
|
+
],
|
|
920
|
+
"dev": true,
|
|
921
|
+
"libc": [
|
|
922
|
+
"musl"
|
|
923
|
+
],
|
|
924
|
+
"license": "MIT",
|
|
925
|
+
"optional": true,
|
|
926
|
+
"os": [
|
|
927
|
+
"linux"
|
|
928
|
+
],
|
|
929
|
+
"engines": {
|
|
930
|
+
"node": ">= 20"
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
934
|
+
"version": "4.3.1",
|
|
935
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
|
|
936
|
+
"integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
|
|
937
|
+
"cpu": [
|
|
938
|
+
"x64"
|
|
939
|
+
],
|
|
940
|
+
"dev": true,
|
|
941
|
+
"libc": [
|
|
942
|
+
"glibc"
|
|
943
|
+
],
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"optional": true,
|
|
946
|
+
"os": [
|
|
947
|
+
"linux"
|
|
948
|
+
],
|
|
949
|
+
"engines": {
|
|
950
|
+
"node": ">= 20"
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
954
|
+
"version": "4.3.1",
|
|
955
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
|
|
956
|
+
"integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
|
|
957
|
+
"cpu": [
|
|
958
|
+
"x64"
|
|
959
|
+
],
|
|
960
|
+
"dev": true,
|
|
961
|
+
"libc": [
|
|
962
|
+
"musl"
|
|
963
|
+
],
|
|
964
|
+
"license": "MIT",
|
|
965
|
+
"optional": true,
|
|
966
|
+
"os": [
|
|
967
|
+
"linux"
|
|
968
|
+
],
|
|
969
|
+
"engines": {
|
|
970
|
+
"node": ">= 20"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
974
|
+
"version": "4.3.1",
|
|
975
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
|
|
976
|
+
"integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
|
|
977
|
+
"bundleDependencies": [
|
|
978
|
+
"@napi-rs/wasm-runtime",
|
|
979
|
+
"@emnapi/core",
|
|
980
|
+
"@emnapi/runtime",
|
|
981
|
+
"@tybys/wasm-util",
|
|
982
|
+
"@emnapi/wasi-threads",
|
|
983
|
+
"tslib"
|
|
984
|
+
],
|
|
985
|
+
"cpu": [
|
|
986
|
+
"wasm32"
|
|
987
|
+
],
|
|
988
|
+
"dev": true,
|
|
989
|
+
"license": "MIT",
|
|
990
|
+
"optional": true,
|
|
991
|
+
"dependencies": {
|
|
992
|
+
"@emnapi/core": "^1.10.0",
|
|
993
|
+
"@emnapi/runtime": "^1.10.0",
|
|
994
|
+
"@emnapi/wasi-threads": "^1.2.1",
|
|
995
|
+
"@napi-rs/wasm-runtime": "^1.1.4",
|
|
996
|
+
"@tybys/wasm-util": "^0.10.2",
|
|
997
|
+
"tslib": "^2.8.1"
|
|
998
|
+
},
|
|
999
|
+
"engines": {
|
|
1000
|
+
"node": ">=14.0.0"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
1004
|
+
"version": "4.3.1",
|
|
1005
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
|
|
1006
|
+
"integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
|
|
1007
|
+
"cpu": [
|
|
1008
|
+
"arm64"
|
|
1009
|
+
],
|
|
1010
|
+
"dev": true,
|
|
1011
|
+
"license": "MIT",
|
|
1012
|
+
"optional": true,
|
|
1013
|
+
"os": [
|
|
1014
|
+
"win32"
|
|
1015
|
+
],
|
|
1016
|
+
"engines": {
|
|
1017
|
+
"node": ">= 20"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
1021
|
+
"version": "4.3.1",
|
|
1022
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
|
|
1023
|
+
"integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
|
|
1024
|
+
"cpu": [
|
|
1025
|
+
"x64"
|
|
1026
|
+
],
|
|
1027
|
+
"dev": true,
|
|
1028
|
+
"license": "MIT",
|
|
1029
|
+
"optional": true,
|
|
1030
|
+
"os": [
|
|
1031
|
+
"win32"
|
|
1032
|
+
],
|
|
1033
|
+
"engines": {
|
|
1034
|
+
"node": ">= 20"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
"node_modules/@tailwindcss/postcss": {
|
|
1038
|
+
"version": "4.3.1",
|
|
1039
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.1.tgz",
|
|
1040
|
+
"integrity": "sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==",
|
|
1041
|
+
"dev": true,
|
|
1042
|
+
"license": "MIT",
|
|
1043
|
+
"dependencies": {
|
|
1044
|
+
"@alloc/quick-lru": "^5.2.0",
|
|
1045
|
+
"@tailwindcss/node": "4.3.1",
|
|
1046
|
+
"@tailwindcss/oxide": "4.3.1",
|
|
1047
|
+
"postcss": "8.5.15",
|
|
1048
|
+
"tailwindcss": "4.3.1"
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"node_modules/@types/node": {
|
|
1052
|
+
"version": "22.20.0",
|
|
1053
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
|
|
1054
|
+
"integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
|
|
1055
|
+
"dev": true,
|
|
1056
|
+
"license": "MIT",
|
|
1057
|
+
"dependencies": {
|
|
1058
|
+
"undici-types": "~6.21.0"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"node_modules/@types/react": {
|
|
1062
|
+
"version": "19.2.17",
|
|
1063
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
|
|
1064
|
+
"integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
|
|
1065
|
+
"dev": true,
|
|
1066
|
+
"license": "MIT",
|
|
1067
|
+
"dependencies": {
|
|
1068
|
+
"csstype": "^3.2.2"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
"node_modules/@types/react-dom": {
|
|
1072
|
+
"version": "19.2.3",
|
|
1073
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
1074
|
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
1075
|
+
"dev": true,
|
|
1076
|
+
"license": "MIT",
|
|
1077
|
+
"peerDependencies": {
|
|
1078
|
+
"@types/react": "^19.2.0"
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
"node_modules/baseline-browser-mapping": {
|
|
1082
|
+
"version": "2.10.38",
|
|
1083
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.38.tgz",
|
|
1084
|
+
"integrity": "sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw==",
|
|
1085
|
+
"license": "Apache-2.0",
|
|
1086
|
+
"bin": {
|
|
1087
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
1088
|
+
},
|
|
1089
|
+
"engines": {
|
|
1090
|
+
"node": ">=6.0.0"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"node_modules/caniuse-lite": {
|
|
1094
|
+
"version": "1.0.30001799",
|
|
1095
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
|
|
1096
|
+
"integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
|
|
1097
|
+
"funding": [
|
|
1098
|
+
{
|
|
1099
|
+
"type": "opencollective",
|
|
1100
|
+
"url": "https://opencollective.com/browserslist"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"type": "tidelift",
|
|
1104
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"type": "github",
|
|
1108
|
+
"url": "https://github.com/sponsors/ai"
|
|
1109
|
+
}
|
|
1110
|
+
],
|
|
1111
|
+
"license": "CC-BY-4.0"
|
|
1112
|
+
},
|
|
1113
|
+
"node_modules/client-only": {
|
|
1114
|
+
"version": "0.0.1",
|
|
1115
|
+
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
|
|
1116
|
+
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
|
1117
|
+
"license": "MIT"
|
|
1118
|
+
},
|
|
1119
|
+
"node_modules/csstype": {
|
|
1120
|
+
"version": "3.2.3",
|
|
1121
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
1122
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1123
|
+
"dev": true,
|
|
1124
|
+
"license": "MIT"
|
|
1125
|
+
},
|
|
1126
|
+
"node_modules/detect-libc": {
|
|
1127
|
+
"version": "2.1.2",
|
|
1128
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1129
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1130
|
+
"devOptional": true,
|
|
1131
|
+
"license": "Apache-2.0",
|
|
1132
|
+
"engines": {
|
|
1133
|
+
"node": ">=8"
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
"node_modules/enhanced-resolve": {
|
|
1137
|
+
"version": "5.21.6",
|
|
1138
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz",
|
|
1139
|
+
"integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==",
|
|
1140
|
+
"dev": true,
|
|
1141
|
+
"license": "MIT",
|
|
1142
|
+
"dependencies": {
|
|
1143
|
+
"graceful-fs": "^4.2.4",
|
|
1144
|
+
"tapable": "^2.3.3"
|
|
1145
|
+
},
|
|
1146
|
+
"engines": {
|
|
1147
|
+
"node": ">=10.13.0"
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
"node_modules/graceful-fs": {
|
|
1151
|
+
"version": "4.2.11",
|
|
1152
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
1153
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
1154
|
+
"dev": true,
|
|
1155
|
+
"license": "ISC"
|
|
1156
|
+
},
|
|
1157
|
+
"node_modules/jiti": {
|
|
1158
|
+
"version": "2.7.0",
|
|
1159
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
|
|
1160
|
+
"integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
|
|
1161
|
+
"dev": true,
|
|
1162
|
+
"license": "MIT",
|
|
1163
|
+
"bin": {
|
|
1164
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
"node_modules/lightningcss": {
|
|
1168
|
+
"version": "1.32.0",
|
|
1169
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
1170
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
1171
|
+
"dev": true,
|
|
1172
|
+
"license": "MPL-2.0",
|
|
1173
|
+
"dependencies": {
|
|
1174
|
+
"detect-libc": "^2.0.3"
|
|
1175
|
+
},
|
|
1176
|
+
"engines": {
|
|
1177
|
+
"node": ">= 12.0.0"
|
|
1178
|
+
},
|
|
1179
|
+
"funding": {
|
|
1180
|
+
"type": "opencollective",
|
|
1181
|
+
"url": "https://opencollective.com/parcel"
|
|
1182
|
+
},
|
|
1183
|
+
"optionalDependencies": {
|
|
1184
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
1185
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
1186
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
1187
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
1188
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
1189
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
1190
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
1191
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
1192
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
1193
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
1194
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"node_modules/lightningcss-android-arm64": {
|
|
1198
|
+
"version": "1.32.0",
|
|
1199
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
1200
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
1201
|
+
"cpu": [
|
|
1202
|
+
"arm64"
|
|
1203
|
+
],
|
|
1204
|
+
"dev": true,
|
|
1205
|
+
"license": "MPL-2.0",
|
|
1206
|
+
"optional": true,
|
|
1207
|
+
"os": [
|
|
1208
|
+
"android"
|
|
1209
|
+
],
|
|
1210
|
+
"engines": {
|
|
1211
|
+
"node": ">= 12.0.0"
|
|
1212
|
+
},
|
|
1213
|
+
"funding": {
|
|
1214
|
+
"type": "opencollective",
|
|
1215
|
+
"url": "https://opencollective.com/parcel"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
1219
|
+
"version": "1.32.0",
|
|
1220
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
1221
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
1222
|
+
"cpu": [
|
|
1223
|
+
"arm64"
|
|
1224
|
+
],
|
|
1225
|
+
"dev": true,
|
|
1226
|
+
"license": "MPL-2.0",
|
|
1227
|
+
"optional": true,
|
|
1228
|
+
"os": [
|
|
1229
|
+
"darwin"
|
|
1230
|
+
],
|
|
1231
|
+
"engines": {
|
|
1232
|
+
"node": ">= 12.0.0"
|
|
1233
|
+
},
|
|
1234
|
+
"funding": {
|
|
1235
|
+
"type": "opencollective",
|
|
1236
|
+
"url": "https://opencollective.com/parcel"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
1240
|
+
"version": "1.32.0",
|
|
1241
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
1242
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
1243
|
+
"cpu": [
|
|
1244
|
+
"x64"
|
|
1245
|
+
],
|
|
1246
|
+
"dev": true,
|
|
1247
|
+
"license": "MPL-2.0",
|
|
1248
|
+
"optional": true,
|
|
1249
|
+
"os": [
|
|
1250
|
+
"darwin"
|
|
1251
|
+
],
|
|
1252
|
+
"engines": {
|
|
1253
|
+
"node": ">= 12.0.0"
|
|
1254
|
+
},
|
|
1255
|
+
"funding": {
|
|
1256
|
+
"type": "opencollective",
|
|
1257
|
+
"url": "https://opencollective.com/parcel"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
1261
|
+
"version": "1.32.0",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
1263
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
1264
|
+
"cpu": [
|
|
1265
|
+
"x64"
|
|
1266
|
+
],
|
|
1267
|
+
"dev": true,
|
|
1268
|
+
"license": "MPL-2.0",
|
|
1269
|
+
"optional": true,
|
|
1270
|
+
"os": [
|
|
1271
|
+
"freebsd"
|
|
1272
|
+
],
|
|
1273
|
+
"engines": {
|
|
1274
|
+
"node": ">= 12.0.0"
|
|
1275
|
+
},
|
|
1276
|
+
"funding": {
|
|
1277
|
+
"type": "opencollective",
|
|
1278
|
+
"url": "https://opencollective.com/parcel"
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
1282
|
+
"version": "1.32.0",
|
|
1283
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
1284
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
1285
|
+
"cpu": [
|
|
1286
|
+
"arm"
|
|
1287
|
+
],
|
|
1288
|
+
"dev": true,
|
|
1289
|
+
"license": "MPL-2.0",
|
|
1290
|
+
"optional": true,
|
|
1291
|
+
"os": [
|
|
1292
|
+
"linux"
|
|
1293
|
+
],
|
|
1294
|
+
"engines": {
|
|
1295
|
+
"node": ">= 12.0.0"
|
|
1296
|
+
},
|
|
1297
|
+
"funding": {
|
|
1298
|
+
"type": "opencollective",
|
|
1299
|
+
"url": "https://opencollective.com/parcel"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
1303
|
+
"version": "1.32.0",
|
|
1304
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
1305
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
1306
|
+
"cpu": [
|
|
1307
|
+
"arm64"
|
|
1308
|
+
],
|
|
1309
|
+
"dev": true,
|
|
1310
|
+
"libc": [
|
|
1311
|
+
"glibc"
|
|
1312
|
+
],
|
|
1313
|
+
"license": "MPL-2.0",
|
|
1314
|
+
"optional": true,
|
|
1315
|
+
"os": [
|
|
1316
|
+
"linux"
|
|
1317
|
+
],
|
|
1318
|
+
"engines": {
|
|
1319
|
+
"node": ">= 12.0.0"
|
|
1320
|
+
},
|
|
1321
|
+
"funding": {
|
|
1322
|
+
"type": "opencollective",
|
|
1323
|
+
"url": "https://opencollective.com/parcel"
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
1327
|
+
"version": "1.32.0",
|
|
1328
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
1329
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
1330
|
+
"cpu": [
|
|
1331
|
+
"arm64"
|
|
1332
|
+
],
|
|
1333
|
+
"dev": true,
|
|
1334
|
+
"libc": [
|
|
1335
|
+
"musl"
|
|
1336
|
+
],
|
|
1337
|
+
"license": "MPL-2.0",
|
|
1338
|
+
"optional": true,
|
|
1339
|
+
"os": [
|
|
1340
|
+
"linux"
|
|
1341
|
+
],
|
|
1342
|
+
"engines": {
|
|
1343
|
+
"node": ">= 12.0.0"
|
|
1344
|
+
},
|
|
1345
|
+
"funding": {
|
|
1346
|
+
"type": "opencollective",
|
|
1347
|
+
"url": "https://opencollective.com/parcel"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
1351
|
+
"version": "1.32.0",
|
|
1352
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
1353
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
1354
|
+
"cpu": [
|
|
1355
|
+
"x64"
|
|
1356
|
+
],
|
|
1357
|
+
"dev": true,
|
|
1358
|
+
"libc": [
|
|
1359
|
+
"glibc"
|
|
1360
|
+
],
|
|
1361
|
+
"license": "MPL-2.0",
|
|
1362
|
+
"optional": true,
|
|
1363
|
+
"os": [
|
|
1364
|
+
"linux"
|
|
1365
|
+
],
|
|
1366
|
+
"engines": {
|
|
1367
|
+
"node": ">= 12.0.0"
|
|
1368
|
+
},
|
|
1369
|
+
"funding": {
|
|
1370
|
+
"type": "opencollective",
|
|
1371
|
+
"url": "https://opencollective.com/parcel"
|
|
1372
|
+
}
|
|
1373
|
+
},
|
|
1374
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
1375
|
+
"version": "1.32.0",
|
|
1376
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
1377
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
1378
|
+
"cpu": [
|
|
1379
|
+
"x64"
|
|
1380
|
+
],
|
|
1381
|
+
"dev": true,
|
|
1382
|
+
"libc": [
|
|
1383
|
+
"musl"
|
|
1384
|
+
],
|
|
1385
|
+
"license": "MPL-2.0",
|
|
1386
|
+
"optional": true,
|
|
1387
|
+
"os": [
|
|
1388
|
+
"linux"
|
|
1389
|
+
],
|
|
1390
|
+
"engines": {
|
|
1391
|
+
"node": ">= 12.0.0"
|
|
1392
|
+
},
|
|
1393
|
+
"funding": {
|
|
1394
|
+
"type": "opencollective",
|
|
1395
|
+
"url": "https://opencollective.com/parcel"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
1399
|
+
"version": "1.32.0",
|
|
1400
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
1401
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
1402
|
+
"cpu": [
|
|
1403
|
+
"arm64"
|
|
1404
|
+
],
|
|
1405
|
+
"dev": true,
|
|
1406
|
+
"license": "MPL-2.0",
|
|
1407
|
+
"optional": true,
|
|
1408
|
+
"os": [
|
|
1409
|
+
"win32"
|
|
1410
|
+
],
|
|
1411
|
+
"engines": {
|
|
1412
|
+
"node": ">= 12.0.0"
|
|
1413
|
+
},
|
|
1414
|
+
"funding": {
|
|
1415
|
+
"type": "opencollective",
|
|
1416
|
+
"url": "https://opencollective.com/parcel"
|
|
1417
|
+
}
|
|
1418
|
+
},
|
|
1419
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
1420
|
+
"version": "1.32.0",
|
|
1421
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
1422
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
1423
|
+
"cpu": [
|
|
1424
|
+
"x64"
|
|
1425
|
+
],
|
|
1426
|
+
"dev": true,
|
|
1427
|
+
"license": "MPL-2.0",
|
|
1428
|
+
"optional": true,
|
|
1429
|
+
"os": [
|
|
1430
|
+
"win32"
|
|
1431
|
+
],
|
|
1432
|
+
"engines": {
|
|
1433
|
+
"node": ">= 12.0.0"
|
|
1434
|
+
},
|
|
1435
|
+
"funding": {
|
|
1436
|
+
"type": "opencollective",
|
|
1437
|
+
"url": "https://opencollective.com/parcel"
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"node_modules/magic-string": {
|
|
1441
|
+
"version": "0.30.21",
|
|
1442
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
1443
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
1444
|
+
"dev": true,
|
|
1445
|
+
"license": "MIT",
|
|
1446
|
+
"dependencies": {
|
|
1447
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
"node_modules/nanoid": {
|
|
1451
|
+
"version": "3.3.14",
|
|
1452
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.14.tgz",
|
|
1453
|
+
"integrity": "sha512-U9kYi5bpVMEI31yC8iw4bJJp0avcHXA0W8/wNfLfnvJYzihQo2ZRPYPvpAAd570HAcCBjCTN7vnr+v4StKl1IQ==",
|
|
1454
|
+
"funding": [
|
|
1455
|
+
{
|
|
1456
|
+
"type": "github",
|
|
1457
|
+
"url": "https://github.com/sponsors/ai"
|
|
1458
|
+
}
|
|
1459
|
+
],
|
|
1460
|
+
"license": "MIT",
|
|
1461
|
+
"bin": {
|
|
1462
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1463
|
+
},
|
|
1464
|
+
"engines": {
|
|
1465
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1466
|
+
}
|
|
1467
|
+
},
|
|
1468
|
+
"node_modules/next": {
|
|
1469
|
+
"version": "16.2.9",
|
|
1470
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.2.9.tgz",
|
|
1471
|
+
"integrity": "sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==",
|
|
1472
|
+
"license": "MIT",
|
|
1473
|
+
"dependencies": {
|
|
1474
|
+
"@next/env": "16.2.9",
|
|
1475
|
+
"@swc/helpers": "0.5.15",
|
|
1476
|
+
"baseline-browser-mapping": "^2.9.19",
|
|
1477
|
+
"caniuse-lite": "^1.0.30001579",
|
|
1478
|
+
"postcss": "8.4.31",
|
|
1479
|
+
"styled-jsx": "5.1.6"
|
|
1480
|
+
},
|
|
1481
|
+
"bin": {
|
|
1482
|
+
"next": "dist/bin/next"
|
|
1483
|
+
},
|
|
1484
|
+
"engines": {
|
|
1485
|
+
"node": ">=20.9.0"
|
|
1486
|
+
},
|
|
1487
|
+
"optionalDependencies": {
|
|
1488
|
+
"@next/swc-darwin-arm64": "16.2.9",
|
|
1489
|
+
"@next/swc-darwin-x64": "16.2.9",
|
|
1490
|
+
"@next/swc-linux-arm64-gnu": "16.2.9",
|
|
1491
|
+
"@next/swc-linux-arm64-musl": "16.2.9",
|
|
1492
|
+
"@next/swc-linux-x64-gnu": "16.2.9",
|
|
1493
|
+
"@next/swc-linux-x64-musl": "16.2.9",
|
|
1494
|
+
"@next/swc-win32-arm64-msvc": "16.2.9",
|
|
1495
|
+
"@next/swc-win32-x64-msvc": "16.2.9",
|
|
1496
|
+
"sharp": "^0.34.5"
|
|
1497
|
+
},
|
|
1498
|
+
"peerDependencies": {
|
|
1499
|
+
"@opentelemetry/api": "^1.1.0",
|
|
1500
|
+
"@playwright/test": "^1.51.1",
|
|
1501
|
+
"babel-plugin-react-compiler": "*",
|
|
1502
|
+
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
1503
|
+
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
1504
|
+
"sass": "^1.3.0"
|
|
1505
|
+
},
|
|
1506
|
+
"peerDependenciesMeta": {
|
|
1507
|
+
"@opentelemetry/api": {
|
|
1508
|
+
"optional": true
|
|
1509
|
+
},
|
|
1510
|
+
"@playwright/test": {
|
|
1511
|
+
"optional": true
|
|
1512
|
+
},
|
|
1513
|
+
"babel-plugin-react-compiler": {
|
|
1514
|
+
"optional": true
|
|
1515
|
+
},
|
|
1516
|
+
"sass": {
|
|
1517
|
+
"optional": true
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"node_modules/next/node_modules/postcss": {
|
|
1522
|
+
"version": "8.4.31",
|
|
1523
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
1524
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
1525
|
+
"funding": [
|
|
1526
|
+
{
|
|
1527
|
+
"type": "opencollective",
|
|
1528
|
+
"url": "https://opencollective.com/postcss/"
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"type": "tidelift",
|
|
1532
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"type": "github",
|
|
1536
|
+
"url": "https://github.com/sponsors/ai"
|
|
1537
|
+
}
|
|
1538
|
+
],
|
|
1539
|
+
"license": "MIT",
|
|
1540
|
+
"dependencies": {
|
|
1541
|
+
"nanoid": "^3.3.6",
|
|
1542
|
+
"picocolors": "^1.0.0",
|
|
1543
|
+
"source-map-js": "^1.0.2"
|
|
1544
|
+
},
|
|
1545
|
+
"engines": {
|
|
1546
|
+
"node": "^10 || ^12 || >=14"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"node_modules/picocolors": {
|
|
1550
|
+
"version": "1.1.1",
|
|
1551
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1552
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1553
|
+
"license": "ISC"
|
|
1554
|
+
},
|
|
1555
|
+
"node_modules/postcss": {
|
|
1556
|
+
"version": "8.5.15",
|
|
1557
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
|
|
1558
|
+
"integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
|
|
1559
|
+
"dev": true,
|
|
1560
|
+
"funding": [
|
|
1561
|
+
{
|
|
1562
|
+
"type": "opencollective",
|
|
1563
|
+
"url": "https://opencollective.com/postcss/"
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"type": "tidelift",
|
|
1567
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"type": "github",
|
|
1571
|
+
"url": "https://github.com/sponsors/ai"
|
|
1572
|
+
}
|
|
1573
|
+
],
|
|
1574
|
+
"license": "MIT",
|
|
1575
|
+
"dependencies": {
|
|
1576
|
+
"nanoid": "^3.3.12",
|
|
1577
|
+
"picocolors": "^1.1.1",
|
|
1578
|
+
"source-map-js": "^1.2.1"
|
|
1579
|
+
},
|
|
1580
|
+
"engines": {
|
|
1581
|
+
"node": "^10 || ^12 || >=14"
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"node_modules/react": {
|
|
1585
|
+
"version": "19.2.7",
|
|
1586
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
|
|
1587
|
+
"integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
|
|
1588
|
+
"license": "MIT",
|
|
1589
|
+
"engines": {
|
|
1590
|
+
"node": ">=0.10.0"
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
"node_modules/react-dom": {
|
|
1594
|
+
"version": "19.2.7",
|
|
1595
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
|
|
1596
|
+
"integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
|
|
1597
|
+
"license": "MIT",
|
|
1598
|
+
"dependencies": {
|
|
1599
|
+
"scheduler": "^0.27.0"
|
|
1600
|
+
},
|
|
1601
|
+
"peerDependencies": {
|
|
1602
|
+
"react": "^19.2.7"
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
"node_modules/scheduler": {
|
|
1606
|
+
"version": "0.27.0",
|
|
1607
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
1608
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
1609
|
+
"license": "MIT"
|
|
1610
|
+
},
|
|
1611
|
+
"node_modules/semver": {
|
|
1612
|
+
"version": "7.8.5",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
1614
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
1615
|
+
"license": "ISC",
|
|
1616
|
+
"optional": true,
|
|
1617
|
+
"bin": {
|
|
1618
|
+
"semver": "bin/semver.js"
|
|
1619
|
+
},
|
|
1620
|
+
"engines": {
|
|
1621
|
+
"node": ">=10"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
"node_modules/server-only": {
|
|
1625
|
+
"version": "0.0.1",
|
|
1626
|
+
"resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz",
|
|
1627
|
+
"integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==",
|
|
1628
|
+
"license": "MIT"
|
|
1629
|
+
},
|
|
1630
|
+
"node_modules/sharp": {
|
|
1631
|
+
"version": "0.34.5",
|
|
1632
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
|
|
1633
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
1634
|
+
"hasInstallScript": true,
|
|
1635
|
+
"license": "Apache-2.0",
|
|
1636
|
+
"optional": true,
|
|
1637
|
+
"dependencies": {
|
|
1638
|
+
"@img/colour": "^1.0.0",
|
|
1639
|
+
"detect-libc": "^2.1.2",
|
|
1640
|
+
"semver": "^7.7.3"
|
|
1641
|
+
},
|
|
1642
|
+
"engines": {
|
|
1643
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1644
|
+
},
|
|
1645
|
+
"funding": {
|
|
1646
|
+
"url": "https://opencollective.com/libvips"
|
|
1647
|
+
},
|
|
1648
|
+
"optionalDependencies": {
|
|
1649
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
1650
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
1651
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
1652
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
1653
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
1654
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
1655
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
1656
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
1657
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
1658
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
1659
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
1660
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
1661
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
1662
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
1663
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
1664
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
1665
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
1666
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
1667
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
1668
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
1669
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
1670
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
1671
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
1672
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
"node_modules/source-map-js": {
|
|
1676
|
+
"version": "1.2.1",
|
|
1677
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1678
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1679
|
+
"license": "BSD-3-Clause",
|
|
1680
|
+
"engines": {
|
|
1681
|
+
"node": ">=0.10.0"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"node_modules/styled-jsx": {
|
|
1685
|
+
"version": "5.1.6",
|
|
1686
|
+
"resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
|
|
1687
|
+
"integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
|
|
1688
|
+
"license": "MIT",
|
|
1689
|
+
"dependencies": {
|
|
1690
|
+
"client-only": "0.0.1"
|
|
1691
|
+
},
|
|
1692
|
+
"engines": {
|
|
1693
|
+
"node": ">= 12.0.0"
|
|
1694
|
+
},
|
|
1695
|
+
"peerDependencies": {
|
|
1696
|
+
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
|
|
1697
|
+
},
|
|
1698
|
+
"peerDependenciesMeta": {
|
|
1699
|
+
"@babel/core": {
|
|
1700
|
+
"optional": true
|
|
1701
|
+
},
|
|
1702
|
+
"babel-plugin-macros": {
|
|
1703
|
+
"optional": true
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"node_modules/tailwindcss": {
|
|
1708
|
+
"version": "4.3.1",
|
|
1709
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
|
|
1710
|
+
"integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
|
|
1711
|
+
"dev": true,
|
|
1712
|
+
"license": "MIT"
|
|
1713
|
+
},
|
|
1714
|
+
"node_modules/tapable": {
|
|
1715
|
+
"version": "2.3.3",
|
|
1716
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
|
|
1717
|
+
"integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
|
|
1718
|
+
"dev": true,
|
|
1719
|
+
"license": "MIT",
|
|
1720
|
+
"engines": {
|
|
1721
|
+
"node": ">=6"
|
|
1722
|
+
},
|
|
1723
|
+
"funding": {
|
|
1724
|
+
"type": "opencollective",
|
|
1725
|
+
"url": "https://opencollective.com/webpack"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"node_modules/tslib": {
|
|
1729
|
+
"version": "2.8.1",
|
|
1730
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
1731
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1732
|
+
"license": "0BSD"
|
|
1733
|
+
},
|
|
1734
|
+
"node_modules/typescript": {
|
|
1735
|
+
"version": "5.9.3",
|
|
1736
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
1737
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
1738
|
+
"dev": true,
|
|
1739
|
+
"license": "Apache-2.0",
|
|
1740
|
+
"bin": {
|
|
1741
|
+
"tsc": "bin/tsc",
|
|
1742
|
+
"tsserver": "bin/tsserver"
|
|
1743
|
+
},
|
|
1744
|
+
"engines": {
|
|
1745
|
+
"node": ">=14.17"
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"node_modules/undici-types": {
|
|
1749
|
+
"version": "6.21.0",
|
|
1750
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
1751
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
1752
|
+
"dev": true,
|
|
1753
|
+
"license": "MIT"
|
|
1754
|
+
},
|
|
1755
|
+
"node_modules/yaml": {
|
|
1756
|
+
"version": "2.9.0",
|
|
1757
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
|
|
1758
|
+
"integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
|
|
1759
|
+
"license": "ISC",
|
|
1760
|
+
"bin": {
|
|
1761
|
+
"yaml": "bin.mjs"
|
|
1762
|
+
},
|
|
1763
|
+
"engines": {
|
|
1764
|
+
"node": ">= 14.6"
|
|
1765
|
+
},
|
|
1766
|
+
"funding": {
|
|
1767
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1771
|
+
}
|