nitrostack 1.0.0 → 1.0.2
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 +30 -0
- package/dist/cli/index.js +4 -1
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
- package/src/studio/README.md +140 -0
- package/src/studio/app/api/auth/fetch-metadata/route.ts +71 -0
- package/src/studio/app/api/auth/register-client/route.ts +67 -0
- package/src/studio/app/api/chat/route.ts +123 -0
- package/src/studio/app/api/health/checks/route.ts +42 -0
- package/src/studio/app/api/health/route.ts +13 -0
- package/src/studio/app/api/init/route.ts +85 -0
- package/src/studio/app/api/ping/route.ts +13 -0
- package/src/studio/app/api/prompts/[name]/route.ts +21 -0
- package/src/studio/app/api/prompts/route.ts +13 -0
- package/src/studio/app/api/resources/[...uri]/route.ts +18 -0
- package/src/studio/app/api/resources/route.ts +13 -0
- package/src/studio/app/api/roots/route.ts +13 -0
- package/src/studio/app/api/sampling/route.ts +14 -0
- package/src/studio/app/api/tools/[name]/call/route.ts +41 -0
- package/src/studio/app/api/tools/route.ts +23 -0
- package/src/studio/app/api/widget-examples/route.ts +44 -0
- package/src/studio/app/auth/callback/page.tsx +160 -0
- package/src/studio/app/auth/page.tsx +543 -0
- package/src/studio/app/chat/page.tsx +530 -0
- package/src/studio/app/chat/page.tsx.backup +390 -0
- package/src/studio/app/globals.css +410 -0
- package/src/studio/app/health/page.tsx +177 -0
- package/src/studio/app/layout.tsx +48 -0
- package/src/studio/app/page.tsx +337 -0
- package/src/studio/app/page.tsx.backup +346 -0
- package/src/studio/app/ping/page.tsx +204 -0
- package/src/studio/app/prompts/page.tsx +228 -0
- package/src/studio/app/resources/page.tsx +313 -0
- package/src/studio/components/EnlargeModal.tsx +116 -0
- package/src/studio/components/Sidebar.tsx +133 -0
- package/src/studio/components/ToolCard.tsx +108 -0
- package/src/studio/components/WidgetRenderer.tsx +99 -0
- package/src/studio/lib/api.ts +207 -0
- package/src/studio/lib/llm-service.ts +361 -0
- package/src/studio/lib/mcp-client.ts +168 -0
- package/src/studio/lib/store.ts +192 -0
- package/src/studio/lib/theme-provider.tsx +50 -0
- package/src/studio/lib/types.ts +107 -0
- package/src/studio/lib/widget-loader.ts +90 -0
- package/src/studio/middleware.ts +27 -0
- package/src/studio/next.config.js +16 -0
- package/src/studio/package-lock.json +2696 -0
- package/src/studio/package.json +34 -0
- package/src/studio/postcss.config.mjs +10 -0
- package/src/studio/tailwind.config.ts +67 -0
- package/src/studio/tsconfig.json +41 -0
- package/templates/typescript-auth/.env.example +23 -0
- package/templates/typescript-auth/src/app.module.ts +103 -0
- package/templates/typescript-auth/src/db/database.ts +163 -0
- package/templates/typescript-auth/src/db/seed.ts +374 -0
- package/templates/typescript-auth/src/db/setup.ts +87 -0
- package/templates/typescript-auth/src/events/analytics.service.ts +52 -0
- package/templates/typescript-auth/src/events/notification.service.ts +40 -0
- package/templates/typescript-auth/src/filters/global-exception.filter.ts +28 -0
- package/templates/typescript-auth/src/guards/README.md +75 -0
- package/templates/typescript-auth/src/guards/jwt.guard.ts +105 -0
- package/templates/typescript-auth/src/health/database.health.ts +41 -0
- package/templates/typescript-auth/src/index.ts +26 -0
- package/templates/typescript-auth/src/interceptors/transform.interceptor.ts +24 -0
- package/templates/typescript-auth/src/middleware/logging.middleware.ts +42 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.module.ts +16 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.prompts.ts +114 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.resources.ts +40 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.tools.ts +241 -0
- package/templates/typescript-auth/src/modules/auth/auth.module.ts +16 -0
- package/templates/typescript-auth/src/modules/auth/auth.prompts.ts +147 -0
- package/templates/typescript-auth/src/modules/auth/auth.resources.ts +84 -0
- package/templates/typescript-auth/src/modules/auth/auth.tools.ts +139 -0
- package/templates/typescript-auth/src/modules/cart/cart.module.ts +16 -0
- package/templates/typescript-auth/src/modules/cart/cart.prompts.ts +95 -0
- package/templates/typescript-auth/src/modules/cart/cart.resources.ts +44 -0
- package/templates/typescript-auth/src/modules/cart/cart.tools.ts +281 -0
- package/templates/typescript-auth/src/modules/orders/orders.module.ts +16 -0
- package/templates/typescript-auth/src/modules/orders/orders.prompts.ts +88 -0
- package/templates/typescript-auth/src/modules/orders/orders.resources.ts +48 -0
- package/templates/typescript-auth/src/modules/orders/orders.tools.ts +281 -0
- package/templates/typescript-auth/src/modules/products/products.module.ts +16 -0
- package/templates/typescript-auth/src/modules/products/products.prompts.ts +146 -0
- package/templates/typescript-auth/src/modules/products/products.resources.ts +98 -0
- package/templates/typescript-auth/src/modules/products/products.tools.ts +266 -0
- package/templates/typescript-auth/src/pipes/validation.pipe.ts +42 -0
- package/templates/typescript-auth/src/services/database.service.ts +90 -0
- package/templates/typescript-auth/src/widgets/app/add-to-cart/page.tsx +122 -0
- package/templates/typescript-auth/src/widgets/app/address-added/page.tsx +116 -0
- package/templates/typescript-auth/src/widgets/app/address-deleted/page.tsx +105 -0
- package/templates/typescript-auth/src/widgets/app/address-list/page.tsx +139 -0
- package/templates/typescript-auth/src/widgets/app/address-updated/page.tsx +153 -0
- package/templates/typescript-auth/src/widgets/app/cart-cleared/page.tsx +86 -0
- package/templates/typescript-auth/src/widgets/app/cart-updated/page.tsx +116 -0
- package/templates/typescript-auth/src/widgets/app/categories/page.tsx +134 -0
- package/templates/typescript-auth/src/widgets/app/layout.tsx +21 -0
- package/templates/typescript-auth/src/widgets/app/login-result/page.tsx +129 -0
- package/templates/typescript-auth/src/widgets/app/order-confirmation/page.tsx +206 -0
- package/templates/typescript-auth/src/widgets/app/order-details/page.tsx +225 -0
- package/templates/typescript-auth/src/widgets/app/order-history/page.tsx +218 -0
- package/templates/typescript-auth/src/widgets/app/product-card/page.tsx +121 -0
- package/templates/typescript-auth/src/widgets/app/products-grid/page.tsx +173 -0
- package/templates/typescript-auth/src/widgets/app/shopping-cart/page.tsx +187 -0
- package/templates/typescript-auth/src/widgets/app/whoami/page.tsx +165 -0
- package/templates/typescript-auth/src/widgets/next.config.js +38 -0
- package/templates/typescript-auth/src/widgets/package.json +18 -0
- package/templates/typescript-auth/src/widgets/styles/ecommerce.ts +169 -0
- package/templates/typescript-auth/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-auth/src/widgets/types/tool-data.ts +141 -0
- package/templates/typescript-auth/src/widgets/widget-manifest.json +464 -0
- package/templates/typescript-auth/tsconfig.json +27 -0
- package/templates/typescript-auth-api-key/.env +15 -0
- package/templates/typescript-auth-api-key/.env.example +4 -0
- package/templates/typescript-auth-api-key/src/app.module.ts +38 -0
- package/templates/typescript-auth-api-key/src/guards/apikey.guard.ts +47 -0
- package/templates/typescript-auth-api-key/src/guards/multi-auth.guard.ts +157 -0
- package/templates/typescript-auth-api-key/src/health/system.health.ts +55 -0
- package/templates/typescript-auth-api-key/src/index.ts +47 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.module.ts +12 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.prompts.ts +73 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.resources.ts +60 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.tools.ts +71 -0
- package/templates/typescript-auth-api-key/src/modules/demo/demo.module.ts +18 -0
- package/templates/typescript-auth-api-key/src/modules/demo/demo.tools.ts +155 -0
- package/templates/typescript-auth-api-key/src/modules/demo/multi-auth.tools.ts +123 -0
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-auth-api-key/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-auth-api-key/src/widgets/next.config.js +37 -0
- package/templates/typescript-auth-api-key/src/widgets/package.json +24 -0
- package/templates/typescript-auth-api-key/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-auth-api-key/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-auth-api-key/tsconfig.json +23 -0
- package/templates/typescript-oauth/.env.example +91 -0
- package/templates/typescript-oauth/src/app.module.ts +89 -0
- package/templates/typescript-oauth/src/guards/oauth.guard.ts +127 -0
- package/templates/typescript-oauth/src/index.ts +74 -0
- package/templates/typescript-oauth/src/modules/demo/demo.module.ts +16 -0
- package/templates/typescript-oauth/src/modules/demo/demo.tools.ts +190 -0
- package/templates/typescript-oauth/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-oauth/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-oauth/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-oauth/src/widgets/next.config.js +37 -0
- package/templates/typescript-oauth/src/widgets/package.json +24 -0
- package/templates/typescript-oauth/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-oauth/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-oauth/tsconfig.json +23 -0
- package/templates/typescript-starter/.env.example +4 -0
- package/templates/typescript-starter/src/app.module.ts +34 -0
- package/templates/typescript-starter/src/health/system.health.ts +55 -0
- package/templates/typescript-starter/src/index.ts +27 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.module.ts +12 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.prompts.ts +73 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.resources.ts +60 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.tools.ts +71 -0
- package/templates/typescript-starter/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-starter/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-starter/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-starter/src/widgets/next.config.js +37 -0
- package/templates/typescript-starter/src/widgets/package.json +24 -0
- package/templates/typescript-starter/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-starter/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-starter/tsconfig.json +23 -0
- package/LICENSE_URLS_UPDATE_COMPLETE.md +0 -388
|
@@ -0,0 +1,2696 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nitrostack/studio",
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@nitrostack/studio",
|
|
9
|
+
"version": "3.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@fontsource/inter": "^5.2.8",
|
|
12
|
+
"@fontsource/jetbrains-mono": "^5.2.8",
|
|
13
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
14
|
+
"clsx": "^2.1.0",
|
|
15
|
+
"lucide-react": "^0.546.0",
|
|
16
|
+
"next": "^14.2.5",
|
|
17
|
+
"react": "^18.3.1",
|
|
18
|
+
"react-dom": "^18.3.1",
|
|
19
|
+
"zustand": "^4.5.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/node": "^22.10.5",
|
|
23
|
+
"@types/react": "^18.3.3",
|
|
24
|
+
"@types/react-dom": "^18.3.0",
|
|
25
|
+
"autoprefixer": "^10.4.19",
|
|
26
|
+
"postcss": "^8.4.38",
|
|
27
|
+
"tailwindcss": "^3.4.4",
|
|
28
|
+
"typescript": "^5.3.3"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"../..": {
|
|
32
|
+
"version": "1.0.0",
|
|
33
|
+
"extraneous": true,
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@google/generative-ai": "^0.24.1",
|
|
37
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
38
|
+
"bcryptjs": "^2.4.3",
|
|
39
|
+
"better-sqlite3": "^11.8.1",
|
|
40
|
+
"chokidar": "^3.6.0",
|
|
41
|
+
"commander": "^12.1.0",
|
|
42
|
+
"cors": "^2.8.5",
|
|
43
|
+
"dotenv": "^17.2.3",
|
|
44
|
+
"express": "^4.21.2",
|
|
45
|
+
"fs-extra": "^11.3.2",
|
|
46
|
+
"http-proxy-middleware": "^3.0.3",
|
|
47
|
+
"inquirer": "^12.10.0",
|
|
48
|
+
"jose": "^6.1.0",
|
|
49
|
+
"jsonwebtoken": "^9.0.2",
|
|
50
|
+
"open": "^10.2.0",
|
|
51
|
+
"openai": "^6.5.0",
|
|
52
|
+
"ora": "^9.0.0",
|
|
53
|
+
"reflect-metadata": "^0.2.1",
|
|
54
|
+
"uuid": "^11.0.5",
|
|
55
|
+
"winston": "^3.17.0",
|
|
56
|
+
"ws": "^8.18.3",
|
|
57
|
+
"zod": "^3.24.1",
|
|
58
|
+
"zod-to-json-schema": "^3.24.6"
|
|
59
|
+
},
|
|
60
|
+
"bin": {
|
|
61
|
+
"nitrostack": "dist/cli/index.js"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@types/bcryptjs": "^2.4.6",
|
|
65
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
66
|
+
"@types/cors": "^2.8.19",
|
|
67
|
+
"@types/express": "^5.0.0",
|
|
68
|
+
"@types/fs-extra": "^11.0.4",
|
|
69
|
+
"@types/jest": "^29.5.14",
|
|
70
|
+
"@types/jsonwebtoken": "^9.0.7",
|
|
71
|
+
"@types/node": "^22.10.5",
|
|
72
|
+
"@types/react": "^19.2.2",
|
|
73
|
+
"@types/uuid": "^10.0.0",
|
|
74
|
+
"@types/ws": "^8.18.1",
|
|
75
|
+
"jest": "^29.7.0",
|
|
76
|
+
"ts-jest": "^29.2.5",
|
|
77
|
+
"typescript": "^5.7.2"
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=18.0.0"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"react": "^18.0.0 || ^19.0.0"
|
|
84
|
+
},
|
|
85
|
+
"peerDependenciesMeta": {
|
|
86
|
+
"react": {
|
|
87
|
+
"optional": true
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"node_modules/@alloc/quick-lru": {
|
|
92
|
+
"version": "5.2.0",
|
|
93
|
+
"dev": true,
|
|
94
|
+
"license": "MIT",
|
|
95
|
+
"engines": {
|
|
96
|
+
"node": ">=10"
|
|
97
|
+
},
|
|
98
|
+
"funding": {
|
|
99
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"node_modules/@fontsource/inter": {
|
|
103
|
+
"version": "5.2.8",
|
|
104
|
+
"license": "OFL-1.1",
|
|
105
|
+
"funding": {
|
|
106
|
+
"url": "https://github.com/sponsors/ayuhito"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"node_modules/@fontsource/jetbrains-mono": {
|
|
110
|
+
"version": "5.2.8",
|
|
111
|
+
"license": "OFL-1.1",
|
|
112
|
+
"funding": {
|
|
113
|
+
"url": "https://github.com/sponsors/ayuhito"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"node_modules/@isaacs/cliui": {
|
|
117
|
+
"version": "8.0.2",
|
|
118
|
+
"dev": true,
|
|
119
|
+
"license": "ISC",
|
|
120
|
+
"dependencies": {
|
|
121
|
+
"string-width": "^5.1.2",
|
|
122
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
123
|
+
"strip-ansi": "^7.0.1",
|
|
124
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
125
|
+
"wrap-ansi": "^8.1.0",
|
|
126
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
127
|
+
},
|
|
128
|
+
"engines": {
|
|
129
|
+
"node": ">=12"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
133
|
+
"version": "0.3.13",
|
|
134
|
+
"dev": true,
|
|
135
|
+
"license": "MIT",
|
|
136
|
+
"dependencies": {
|
|
137
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
138
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
142
|
+
"version": "3.1.2",
|
|
143
|
+
"dev": true,
|
|
144
|
+
"license": "MIT",
|
|
145
|
+
"engines": {
|
|
146
|
+
"node": ">=6.0.0"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
150
|
+
"version": "1.5.5",
|
|
151
|
+
"dev": true,
|
|
152
|
+
"license": "MIT"
|
|
153
|
+
},
|
|
154
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
155
|
+
"version": "0.3.31",
|
|
156
|
+
"dev": true,
|
|
157
|
+
"license": "MIT",
|
|
158
|
+
"dependencies": {
|
|
159
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
160
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"node_modules/@modelcontextprotocol/sdk": {
|
|
164
|
+
"version": "1.20.2",
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"dependencies": {
|
|
167
|
+
"ajv": "^6.12.6",
|
|
168
|
+
"content-type": "^1.0.5",
|
|
169
|
+
"cors": "^2.8.5",
|
|
170
|
+
"cross-spawn": "^7.0.5",
|
|
171
|
+
"eventsource": "^3.0.2",
|
|
172
|
+
"eventsource-parser": "^3.0.0",
|
|
173
|
+
"express": "^5.0.1",
|
|
174
|
+
"express-rate-limit": "^7.5.0",
|
|
175
|
+
"pkce-challenge": "^5.0.0",
|
|
176
|
+
"raw-body": "^3.0.0",
|
|
177
|
+
"zod": "^3.23.8",
|
|
178
|
+
"zod-to-json-schema": "^3.24.1"
|
|
179
|
+
},
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=18"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/@next/env": {
|
|
185
|
+
"version": "14.2.33",
|
|
186
|
+
"license": "MIT"
|
|
187
|
+
},
|
|
188
|
+
"node_modules/@next/swc-darwin-arm64": {
|
|
189
|
+
"version": "14.2.33",
|
|
190
|
+
"cpu": [
|
|
191
|
+
"arm64"
|
|
192
|
+
],
|
|
193
|
+
"license": "MIT",
|
|
194
|
+
"optional": true,
|
|
195
|
+
"os": [
|
|
196
|
+
"darwin"
|
|
197
|
+
],
|
|
198
|
+
"engines": {
|
|
199
|
+
"node": ">= 10"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
203
|
+
"version": "2.1.5",
|
|
204
|
+
"dev": true,
|
|
205
|
+
"license": "MIT",
|
|
206
|
+
"dependencies": {
|
|
207
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
208
|
+
"run-parallel": "^1.1.9"
|
|
209
|
+
},
|
|
210
|
+
"engines": {
|
|
211
|
+
"node": ">= 8"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"node_modules/@nodelib/fs.stat": {
|
|
215
|
+
"version": "2.0.5",
|
|
216
|
+
"dev": true,
|
|
217
|
+
"license": "MIT",
|
|
218
|
+
"engines": {
|
|
219
|
+
"node": ">= 8"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"node_modules/@nodelib/fs.walk": {
|
|
223
|
+
"version": "1.2.8",
|
|
224
|
+
"dev": true,
|
|
225
|
+
"license": "MIT",
|
|
226
|
+
"dependencies": {
|
|
227
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
228
|
+
"fastq": "^1.6.0"
|
|
229
|
+
},
|
|
230
|
+
"engines": {
|
|
231
|
+
"node": ">= 8"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"node_modules/@pkgjs/parseargs": {
|
|
235
|
+
"version": "0.11.0",
|
|
236
|
+
"dev": true,
|
|
237
|
+
"license": "MIT",
|
|
238
|
+
"optional": true,
|
|
239
|
+
"engines": {
|
|
240
|
+
"node": ">=14"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"node_modules/@swc/counter": {
|
|
244
|
+
"version": "0.1.3",
|
|
245
|
+
"license": "Apache-2.0"
|
|
246
|
+
},
|
|
247
|
+
"node_modules/@swc/helpers": {
|
|
248
|
+
"version": "0.5.5",
|
|
249
|
+
"license": "Apache-2.0",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"@swc/counter": "^0.1.3",
|
|
252
|
+
"tslib": "^2.4.0"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"node_modules/@types/node": {
|
|
256
|
+
"version": "22.18.12",
|
|
257
|
+
"dev": true,
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"undici-types": "~6.21.0"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"node_modules/@types/prop-types": {
|
|
264
|
+
"version": "15.7.15",
|
|
265
|
+
"devOptional": true,
|
|
266
|
+
"license": "MIT"
|
|
267
|
+
},
|
|
268
|
+
"node_modules/@types/react": {
|
|
269
|
+
"version": "18.3.26",
|
|
270
|
+
"devOptional": true,
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"dependencies": {
|
|
273
|
+
"@types/prop-types": "*",
|
|
274
|
+
"csstype": "^3.0.2"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"node_modules/@types/react-dom": {
|
|
278
|
+
"version": "18.3.7",
|
|
279
|
+
"dev": true,
|
|
280
|
+
"license": "MIT",
|
|
281
|
+
"peerDependencies": {
|
|
282
|
+
"@types/react": "^18.0.0"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"node_modules/accepts": {
|
|
286
|
+
"version": "2.0.0",
|
|
287
|
+
"license": "MIT",
|
|
288
|
+
"dependencies": {
|
|
289
|
+
"mime-types": "^3.0.0",
|
|
290
|
+
"negotiator": "^1.0.0"
|
|
291
|
+
},
|
|
292
|
+
"engines": {
|
|
293
|
+
"node": ">= 0.6"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"node_modules/ajv": {
|
|
297
|
+
"version": "6.12.6",
|
|
298
|
+
"license": "MIT",
|
|
299
|
+
"dependencies": {
|
|
300
|
+
"fast-deep-equal": "^3.1.1",
|
|
301
|
+
"fast-json-stable-stringify": "^2.0.0",
|
|
302
|
+
"json-schema-traverse": "^0.4.1",
|
|
303
|
+
"uri-js": "^4.2.2"
|
|
304
|
+
},
|
|
305
|
+
"funding": {
|
|
306
|
+
"type": "github",
|
|
307
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"node_modules/ansi-regex": {
|
|
311
|
+
"version": "6.2.2",
|
|
312
|
+
"dev": true,
|
|
313
|
+
"license": "MIT",
|
|
314
|
+
"engines": {
|
|
315
|
+
"node": ">=12"
|
|
316
|
+
},
|
|
317
|
+
"funding": {
|
|
318
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"node_modules/ansi-styles": {
|
|
322
|
+
"version": "6.2.3",
|
|
323
|
+
"dev": true,
|
|
324
|
+
"license": "MIT",
|
|
325
|
+
"engines": {
|
|
326
|
+
"node": ">=12"
|
|
327
|
+
},
|
|
328
|
+
"funding": {
|
|
329
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"node_modules/any-promise": {
|
|
333
|
+
"version": "1.3.0",
|
|
334
|
+
"dev": true,
|
|
335
|
+
"license": "MIT"
|
|
336
|
+
},
|
|
337
|
+
"node_modules/anymatch": {
|
|
338
|
+
"version": "3.1.3",
|
|
339
|
+
"dev": true,
|
|
340
|
+
"license": "ISC",
|
|
341
|
+
"dependencies": {
|
|
342
|
+
"normalize-path": "^3.0.0",
|
|
343
|
+
"picomatch": "^2.0.4"
|
|
344
|
+
},
|
|
345
|
+
"engines": {
|
|
346
|
+
"node": ">= 8"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"node_modules/arg": {
|
|
350
|
+
"version": "5.0.2",
|
|
351
|
+
"dev": true,
|
|
352
|
+
"license": "MIT"
|
|
353
|
+
},
|
|
354
|
+
"node_modules/autoprefixer": {
|
|
355
|
+
"version": "10.4.21",
|
|
356
|
+
"dev": true,
|
|
357
|
+
"funding": [
|
|
358
|
+
{
|
|
359
|
+
"type": "opencollective",
|
|
360
|
+
"url": "https://opencollective.com/postcss/"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"type": "tidelift",
|
|
364
|
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"type": "github",
|
|
368
|
+
"url": "https://github.com/sponsors/ai"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"license": "MIT",
|
|
372
|
+
"dependencies": {
|
|
373
|
+
"browserslist": "^4.24.4",
|
|
374
|
+
"caniuse-lite": "^1.0.30001702",
|
|
375
|
+
"fraction.js": "^4.3.7",
|
|
376
|
+
"normalize-range": "^0.1.2",
|
|
377
|
+
"picocolors": "^1.1.1",
|
|
378
|
+
"postcss-value-parser": "^4.2.0"
|
|
379
|
+
},
|
|
380
|
+
"bin": {
|
|
381
|
+
"autoprefixer": "bin/autoprefixer"
|
|
382
|
+
},
|
|
383
|
+
"engines": {
|
|
384
|
+
"node": "^10 || ^12 || >=14"
|
|
385
|
+
},
|
|
386
|
+
"peerDependencies": {
|
|
387
|
+
"postcss": "^8.1.0"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"node_modules/balanced-match": {
|
|
391
|
+
"version": "1.0.2",
|
|
392
|
+
"dev": true,
|
|
393
|
+
"license": "MIT"
|
|
394
|
+
},
|
|
395
|
+
"node_modules/baseline-browser-mapping": {
|
|
396
|
+
"version": "2.8.20",
|
|
397
|
+
"dev": true,
|
|
398
|
+
"license": "Apache-2.0",
|
|
399
|
+
"bin": {
|
|
400
|
+
"baseline-browser-mapping": "dist/cli.js"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"node_modules/binary-extensions": {
|
|
404
|
+
"version": "2.3.0",
|
|
405
|
+
"dev": true,
|
|
406
|
+
"license": "MIT",
|
|
407
|
+
"engines": {
|
|
408
|
+
"node": ">=8"
|
|
409
|
+
},
|
|
410
|
+
"funding": {
|
|
411
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"node_modules/body-parser": {
|
|
415
|
+
"version": "2.2.0",
|
|
416
|
+
"license": "MIT",
|
|
417
|
+
"dependencies": {
|
|
418
|
+
"bytes": "^3.1.2",
|
|
419
|
+
"content-type": "^1.0.5",
|
|
420
|
+
"debug": "^4.4.0",
|
|
421
|
+
"http-errors": "^2.0.0",
|
|
422
|
+
"iconv-lite": "^0.6.3",
|
|
423
|
+
"on-finished": "^2.4.1",
|
|
424
|
+
"qs": "^6.14.0",
|
|
425
|
+
"raw-body": "^3.0.0",
|
|
426
|
+
"type-is": "^2.0.0"
|
|
427
|
+
},
|
|
428
|
+
"engines": {
|
|
429
|
+
"node": ">=18"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"node_modules/brace-expansion": {
|
|
433
|
+
"version": "2.0.2",
|
|
434
|
+
"dev": true,
|
|
435
|
+
"license": "MIT",
|
|
436
|
+
"dependencies": {
|
|
437
|
+
"balanced-match": "^1.0.0"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"node_modules/braces": {
|
|
441
|
+
"version": "3.0.3",
|
|
442
|
+
"dev": true,
|
|
443
|
+
"license": "MIT",
|
|
444
|
+
"dependencies": {
|
|
445
|
+
"fill-range": "^7.1.1"
|
|
446
|
+
},
|
|
447
|
+
"engines": {
|
|
448
|
+
"node": ">=8"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"node_modules/browserslist": {
|
|
452
|
+
"version": "4.27.0",
|
|
453
|
+
"dev": true,
|
|
454
|
+
"funding": [
|
|
455
|
+
{
|
|
456
|
+
"type": "opencollective",
|
|
457
|
+
"url": "https://opencollective.com/browserslist"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"type": "tidelift",
|
|
461
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"type": "github",
|
|
465
|
+
"url": "https://github.com/sponsors/ai"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"license": "MIT",
|
|
469
|
+
"dependencies": {
|
|
470
|
+
"baseline-browser-mapping": "^2.8.19",
|
|
471
|
+
"caniuse-lite": "^1.0.30001751",
|
|
472
|
+
"electron-to-chromium": "^1.5.238",
|
|
473
|
+
"node-releases": "^2.0.26",
|
|
474
|
+
"update-browserslist-db": "^1.1.4"
|
|
475
|
+
},
|
|
476
|
+
"bin": {
|
|
477
|
+
"browserslist": "cli.js"
|
|
478
|
+
},
|
|
479
|
+
"engines": {
|
|
480
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"node_modules/busboy": {
|
|
484
|
+
"version": "1.6.0",
|
|
485
|
+
"dependencies": {
|
|
486
|
+
"streamsearch": "^1.1.0"
|
|
487
|
+
},
|
|
488
|
+
"engines": {
|
|
489
|
+
"node": ">=10.16.0"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"node_modules/bytes": {
|
|
493
|
+
"version": "3.1.2",
|
|
494
|
+
"license": "MIT",
|
|
495
|
+
"engines": {
|
|
496
|
+
"node": ">= 0.8"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"node_modules/call-bind-apply-helpers": {
|
|
500
|
+
"version": "1.0.2",
|
|
501
|
+
"license": "MIT",
|
|
502
|
+
"dependencies": {
|
|
503
|
+
"es-errors": "^1.3.0",
|
|
504
|
+
"function-bind": "^1.1.2"
|
|
505
|
+
},
|
|
506
|
+
"engines": {
|
|
507
|
+
"node": ">= 0.4"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"node_modules/call-bound": {
|
|
511
|
+
"version": "1.0.4",
|
|
512
|
+
"license": "MIT",
|
|
513
|
+
"dependencies": {
|
|
514
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
515
|
+
"get-intrinsic": "^1.3.0"
|
|
516
|
+
},
|
|
517
|
+
"engines": {
|
|
518
|
+
"node": ">= 0.4"
|
|
519
|
+
},
|
|
520
|
+
"funding": {
|
|
521
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/camelcase-css": {
|
|
525
|
+
"version": "2.0.1",
|
|
526
|
+
"dev": true,
|
|
527
|
+
"license": "MIT",
|
|
528
|
+
"engines": {
|
|
529
|
+
"node": ">= 6"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"node_modules/caniuse-lite": {
|
|
533
|
+
"version": "1.0.30001751",
|
|
534
|
+
"funding": [
|
|
535
|
+
{
|
|
536
|
+
"type": "opencollective",
|
|
537
|
+
"url": "https://opencollective.com/browserslist"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"type": "tidelift",
|
|
541
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "github",
|
|
545
|
+
"url": "https://github.com/sponsors/ai"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"license": "CC-BY-4.0"
|
|
549
|
+
},
|
|
550
|
+
"node_modules/chokidar": {
|
|
551
|
+
"version": "3.6.0",
|
|
552
|
+
"dev": true,
|
|
553
|
+
"license": "MIT",
|
|
554
|
+
"dependencies": {
|
|
555
|
+
"anymatch": "~3.1.2",
|
|
556
|
+
"braces": "~3.0.2",
|
|
557
|
+
"glob-parent": "~5.1.2",
|
|
558
|
+
"is-binary-path": "~2.1.0",
|
|
559
|
+
"is-glob": "~4.0.1",
|
|
560
|
+
"normalize-path": "~3.0.0",
|
|
561
|
+
"readdirp": "~3.6.0"
|
|
562
|
+
},
|
|
563
|
+
"engines": {
|
|
564
|
+
"node": ">= 8.10.0"
|
|
565
|
+
},
|
|
566
|
+
"funding": {
|
|
567
|
+
"url": "https://paulmillr.com/funding/"
|
|
568
|
+
},
|
|
569
|
+
"optionalDependencies": {
|
|
570
|
+
"fsevents": "~2.3.2"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"node_modules/chokidar/node_modules/glob-parent": {
|
|
574
|
+
"version": "5.1.2",
|
|
575
|
+
"dev": true,
|
|
576
|
+
"license": "ISC",
|
|
577
|
+
"dependencies": {
|
|
578
|
+
"is-glob": "^4.0.1"
|
|
579
|
+
},
|
|
580
|
+
"engines": {
|
|
581
|
+
"node": ">= 6"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"node_modules/client-only": {
|
|
585
|
+
"version": "0.0.1",
|
|
586
|
+
"license": "MIT"
|
|
587
|
+
},
|
|
588
|
+
"node_modules/clsx": {
|
|
589
|
+
"version": "2.1.1",
|
|
590
|
+
"license": "MIT",
|
|
591
|
+
"engines": {
|
|
592
|
+
"node": ">=6"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"node_modules/color-convert": {
|
|
596
|
+
"version": "2.0.1",
|
|
597
|
+
"dev": true,
|
|
598
|
+
"license": "MIT",
|
|
599
|
+
"dependencies": {
|
|
600
|
+
"color-name": "~1.1.4"
|
|
601
|
+
},
|
|
602
|
+
"engines": {
|
|
603
|
+
"node": ">=7.0.0"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"node_modules/color-name": {
|
|
607
|
+
"version": "1.1.4",
|
|
608
|
+
"dev": true,
|
|
609
|
+
"license": "MIT"
|
|
610
|
+
},
|
|
611
|
+
"node_modules/commander": {
|
|
612
|
+
"version": "4.1.1",
|
|
613
|
+
"dev": true,
|
|
614
|
+
"license": "MIT",
|
|
615
|
+
"engines": {
|
|
616
|
+
"node": ">= 6"
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"node_modules/content-disposition": {
|
|
620
|
+
"version": "1.0.0",
|
|
621
|
+
"license": "MIT",
|
|
622
|
+
"dependencies": {
|
|
623
|
+
"safe-buffer": "5.2.1"
|
|
624
|
+
},
|
|
625
|
+
"engines": {
|
|
626
|
+
"node": ">= 0.6"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"node_modules/content-type": {
|
|
630
|
+
"version": "1.0.5",
|
|
631
|
+
"license": "MIT",
|
|
632
|
+
"engines": {
|
|
633
|
+
"node": ">= 0.6"
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"node_modules/cookie": {
|
|
637
|
+
"version": "0.7.2",
|
|
638
|
+
"license": "MIT",
|
|
639
|
+
"engines": {
|
|
640
|
+
"node": ">= 0.6"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"node_modules/cookie-signature": {
|
|
644
|
+
"version": "1.2.2",
|
|
645
|
+
"license": "MIT",
|
|
646
|
+
"engines": {
|
|
647
|
+
"node": ">=6.6.0"
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
"node_modules/cors": {
|
|
651
|
+
"version": "2.8.5",
|
|
652
|
+
"license": "MIT",
|
|
653
|
+
"dependencies": {
|
|
654
|
+
"object-assign": "^4",
|
|
655
|
+
"vary": "^1"
|
|
656
|
+
},
|
|
657
|
+
"engines": {
|
|
658
|
+
"node": ">= 0.10"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"node_modules/cross-spawn": {
|
|
662
|
+
"version": "7.0.6",
|
|
663
|
+
"license": "MIT",
|
|
664
|
+
"dependencies": {
|
|
665
|
+
"path-key": "^3.1.0",
|
|
666
|
+
"shebang-command": "^2.0.0",
|
|
667
|
+
"which": "^2.0.1"
|
|
668
|
+
},
|
|
669
|
+
"engines": {
|
|
670
|
+
"node": ">= 8"
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
"node_modules/cssesc": {
|
|
674
|
+
"version": "3.0.0",
|
|
675
|
+
"dev": true,
|
|
676
|
+
"license": "MIT",
|
|
677
|
+
"bin": {
|
|
678
|
+
"cssesc": "bin/cssesc"
|
|
679
|
+
},
|
|
680
|
+
"engines": {
|
|
681
|
+
"node": ">=4"
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
"node_modules/csstype": {
|
|
685
|
+
"version": "3.1.3",
|
|
686
|
+
"devOptional": true,
|
|
687
|
+
"license": "MIT"
|
|
688
|
+
},
|
|
689
|
+
"node_modules/debug": {
|
|
690
|
+
"version": "4.4.3",
|
|
691
|
+
"license": "MIT",
|
|
692
|
+
"dependencies": {
|
|
693
|
+
"ms": "^2.1.3"
|
|
694
|
+
},
|
|
695
|
+
"engines": {
|
|
696
|
+
"node": ">=6.0"
|
|
697
|
+
},
|
|
698
|
+
"peerDependenciesMeta": {
|
|
699
|
+
"supports-color": {
|
|
700
|
+
"optional": true
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"node_modules/depd": {
|
|
705
|
+
"version": "2.0.0",
|
|
706
|
+
"license": "MIT",
|
|
707
|
+
"engines": {
|
|
708
|
+
"node": ">= 0.8"
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"node_modules/didyoumean": {
|
|
712
|
+
"version": "1.2.2",
|
|
713
|
+
"dev": true,
|
|
714
|
+
"license": "Apache-2.0"
|
|
715
|
+
},
|
|
716
|
+
"node_modules/dlv": {
|
|
717
|
+
"version": "1.1.3",
|
|
718
|
+
"dev": true,
|
|
719
|
+
"license": "MIT"
|
|
720
|
+
},
|
|
721
|
+
"node_modules/dunder-proto": {
|
|
722
|
+
"version": "1.0.1",
|
|
723
|
+
"license": "MIT",
|
|
724
|
+
"dependencies": {
|
|
725
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
726
|
+
"es-errors": "^1.3.0",
|
|
727
|
+
"gopd": "^1.2.0"
|
|
728
|
+
},
|
|
729
|
+
"engines": {
|
|
730
|
+
"node": ">= 0.4"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
"node_modules/eastasianwidth": {
|
|
734
|
+
"version": "0.2.0",
|
|
735
|
+
"dev": true,
|
|
736
|
+
"license": "MIT"
|
|
737
|
+
},
|
|
738
|
+
"node_modules/ee-first": {
|
|
739
|
+
"version": "1.1.1",
|
|
740
|
+
"license": "MIT"
|
|
741
|
+
},
|
|
742
|
+
"node_modules/electron-to-chromium": {
|
|
743
|
+
"version": "1.5.240",
|
|
744
|
+
"dev": true,
|
|
745
|
+
"license": "ISC"
|
|
746
|
+
},
|
|
747
|
+
"node_modules/emoji-regex": {
|
|
748
|
+
"version": "9.2.2",
|
|
749
|
+
"dev": true,
|
|
750
|
+
"license": "MIT"
|
|
751
|
+
},
|
|
752
|
+
"node_modules/encodeurl": {
|
|
753
|
+
"version": "2.0.0",
|
|
754
|
+
"license": "MIT",
|
|
755
|
+
"engines": {
|
|
756
|
+
"node": ">= 0.8"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
"node_modules/es-define-property": {
|
|
760
|
+
"version": "1.0.1",
|
|
761
|
+
"license": "MIT",
|
|
762
|
+
"engines": {
|
|
763
|
+
"node": ">= 0.4"
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
"node_modules/es-errors": {
|
|
767
|
+
"version": "1.3.0",
|
|
768
|
+
"license": "MIT",
|
|
769
|
+
"engines": {
|
|
770
|
+
"node": ">= 0.4"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"node_modules/es-object-atoms": {
|
|
774
|
+
"version": "1.1.1",
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"dependencies": {
|
|
777
|
+
"es-errors": "^1.3.0"
|
|
778
|
+
},
|
|
779
|
+
"engines": {
|
|
780
|
+
"node": ">= 0.4"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"node_modules/escalade": {
|
|
784
|
+
"version": "3.2.0",
|
|
785
|
+
"dev": true,
|
|
786
|
+
"license": "MIT",
|
|
787
|
+
"engines": {
|
|
788
|
+
"node": ">=6"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"node_modules/escape-html": {
|
|
792
|
+
"version": "1.0.3",
|
|
793
|
+
"license": "MIT"
|
|
794
|
+
},
|
|
795
|
+
"node_modules/etag": {
|
|
796
|
+
"version": "1.8.1",
|
|
797
|
+
"license": "MIT",
|
|
798
|
+
"engines": {
|
|
799
|
+
"node": ">= 0.6"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
"node_modules/eventsource": {
|
|
803
|
+
"version": "3.0.7",
|
|
804
|
+
"license": "MIT",
|
|
805
|
+
"dependencies": {
|
|
806
|
+
"eventsource-parser": "^3.0.1"
|
|
807
|
+
},
|
|
808
|
+
"engines": {
|
|
809
|
+
"node": ">=18.0.0"
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"node_modules/eventsource-parser": {
|
|
813
|
+
"version": "3.0.6",
|
|
814
|
+
"license": "MIT",
|
|
815
|
+
"engines": {
|
|
816
|
+
"node": ">=18.0.0"
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
"node_modules/express": {
|
|
820
|
+
"version": "5.1.0",
|
|
821
|
+
"license": "MIT",
|
|
822
|
+
"dependencies": {
|
|
823
|
+
"accepts": "^2.0.0",
|
|
824
|
+
"body-parser": "^2.2.0",
|
|
825
|
+
"content-disposition": "^1.0.0",
|
|
826
|
+
"content-type": "^1.0.5",
|
|
827
|
+
"cookie": "^0.7.1",
|
|
828
|
+
"cookie-signature": "^1.2.1",
|
|
829
|
+
"debug": "^4.4.0",
|
|
830
|
+
"encodeurl": "^2.0.0",
|
|
831
|
+
"escape-html": "^1.0.3",
|
|
832
|
+
"etag": "^1.8.1",
|
|
833
|
+
"finalhandler": "^2.1.0",
|
|
834
|
+
"fresh": "^2.0.0",
|
|
835
|
+
"http-errors": "^2.0.0",
|
|
836
|
+
"merge-descriptors": "^2.0.0",
|
|
837
|
+
"mime-types": "^3.0.0",
|
|
838
|
+
"on-finished": "^2.4.1",
|
|
839
|
+
"once": "^1.4.0",
|
|
840
|
+
"parseurl": "^1.3.3",
|
|
841
|
+
"proxy-addr": "^2.0.7",
|
|
842
|
+
"qs": "^6.14.0",
|
|
843
|
+
"range-parser": "^1.2.1",
|
|
844
|
+
"router": "^2.2.0",
|
|
845
|
+
"send": "^1.1.0",
|
|
846
|
+
"serve-static": "^2.2.0",
|
|
847
|
+
"statuses": "^2.0.1",
|
|
848
|
+
"type-is": "^2.0.1",
|
|
849
|
+
"vary": "^1.1.2"
|
|
850
|
+
},
|
|
851
|
+
"engines": {
|
|
852
|
+
"node": ">= 18"
|
|
853
|
+
},
|
|
854
|
+
"funding": {
|
|
855
|
+
"type": "opencollective",
|
|
856
|
+
"url": "https://opencollective.com/express"
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"node_modules/express-rate-limit": {
|
|
860
|
+
"version": "7.5.1",
|
|
861
|
+
"license": "MIT",
|
|
862
|
+
"engines": {
|
|
863
|
+
"node": ">= 16"
|
|
864
|
+
},
|
|
865
|
+
"funding": {
|
|
866
|
+
"url": "https://github.com/sponsors/express-rate-limit"
|
|
867
|
+
},
|
|
868
|
+
"peerDependencies": {
|
|
869
|
+
"express": ">= 4.11"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"node_modules/fast-deep-equal": {
|
|
873
|
+
"version": "3.1.3",
|
|
874
|
+
"license": "MIT"
|
|
875
|
+
},
|
|
876
|
+
"node_modules/fast-glob": {
|
|
877
|
+
"version": "3.3.3",
|
|
878
|
+
"dev": true,
|
|
879
|
+
"license": "MIT",
|
|
880
|
+
"dependencies": {
|
|
881
|
+
"@nodelib/fs.stat": "^2.0.2",
|
|
882
|
+
"@nodelib/fs.walk": "^1.2.3",
|
|
883
|
+
"glob-parent": "^5.1.2",
|
|
884
|
+
"merge2": "^1.3.0",
|
|
885
|
+
"micromatch": "^4.0.8"
|
|
886
|
+
},
|
|
887
|
+
"engines": {
|
|
888
|
+
"node": ">=8.6.0"
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"node_modules/fast-glob/node_modules/glob-parent": {
|
|
892
|
+
"version": "5.1.2",
|
|
893
|
+
"dev": true,
|
|
894
|
+
"license": "ISC",
|
|
895
|
+
"dependencies": {
|
|
896
|
+
"is-glob": "^4.0.1"
|
|
897
|
+
},
|
|
898
|
+
"engines": {
|
|
899
|
+
"node": ">= 6"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"node_modules/fast-json-stable-stringify": {
|
|
903
|
+
"version": "2.1.0",
|
|
904
|
+
"license": "MIT"
|
|
905
|
+
},
|
|
906
|
+
"node_modules/fastq": {
|
|
907
|
+
"version": "1.19.1",
|
|
908
|
+
"dev": true,
|
|
909
|
+
"license": "ISC",
|
|
910
|
+
"dependencies": {
|
|
911
|
+
"reusify": "^1.0.4"
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
"node_modules/fill-range": {
|
|
915
|
+
"version": "7.1.1",
|
|
916
|
+
"dev": true,
|
|
917
|
+
"license": "MIT",
|
|
918
|
+
"dependencies": {
|
|
919
|
+
"to-regex-range": "^5.0.1"
|
|
920
|
+
},
|
|
921
|
+
"engines": {
|
|
922
|
+
"node": ">=8"
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
"node_modules/finalhandler": {
|
|
926
|
+
"version": "2.1.0",
|
|
927
|
+
"license": "MIT",
|
|
928
|
+
"dependencies": {
|
|
929
|
+
"debug": "^4.4.0",
|
|
930
|
+
"encodeurl": "^2.0.0",
|
|
931
|
+
"escape-html": "^1.0.3",
|
|
932
|
+
"on-finished": "^2.4.1",
|
|
933
|
+
"parseurl": "^1.3.3",
|
|
934
|
+
"statuses": "^2.0.1"
|
|
935
|
+
},
|
|
936
|
+
"engines": {
|
|
937
|
+
"node": ">= 0.8"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"node_modules/foreground-child": {
|
|
941
|
+
"version": "3.3.1",
|
|
942
|
+
"dev": true,
|
|
943
|
+
"license": "ISC",
|
|
944
|
+
"dependencies": {
|
|
945
|
+
"cross-spawn": "^7.0.6",
|
|
946
|
+
"signal-exit": "^4.0.1"
|
|
947
|
+
},
|
|
948
|
+
"engines": {
|
|
949
|
+
"node": ">=14"
|
|
950
|
+
},
|
|
951
|
+
"funding": {
|
|
952
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"node_modules/forwarded": {
|
|
956
|
+
"version": "0.2.0",
|
|
957
|
+
"license": "MIT",
|
|
958
|
+
"engines": {
|
|
959
|
+
"node": ">= 0.6"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
"node_modules/fraction.js": {
|
|
963
|
+
"version": "4.3.7",
|
|
964
|
+
"dev": true,
|
|
965
|
+
"license": "MIT",
|
|
966
|
+
"engines": {
|
|
967
|
+
"node": "*"
|
|
968
|
+
},
|
|
969
|
+
"funding": {
|
|
970
|
+
"type": "patreon",
|
|
971
|
+
"url": "https://github.com/sponsors/rawify"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"node_modules/fresh": {
|
|
975
|
+
"version": "2.0.0",
|
|
976
|
+
"license": "MIT",
|
|
977
|
+
"engines": {
|
|
978
|
+
"node": ">= 0.8"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
"node_modules/function-bind": {
|
|
982
|
+
"version": "1.1.2",
|
|
983
|
+
"license": "MIT",
|
|
984
|
+
"funding": {
|
|
985
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
"node_modules/get-intrinsic": {
|
|
989
|
+
"version": "1.3.0",
|
|
990
|
+
"license": "MIT",
|
|
991
|
+
"dependencies": {
|
|
992
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
993
|
+
"es-define-property": "^1.0.1",
|
|
994
|
+
"es-errors": "^1.3.0",
|
|
995
|
+
"es-object-atoms": "^1.1.1",
|
|
996
|
+
"function-bind": "^1.1.2",
|
|
997
|
+
"get-proto": "^1.0.1",
|
|
998
|
+
"gopd": "^1.2.0",
|
|
999
|
+
"has-symbols": "^1.1.0",
|
|
1000
|
+
"hasown": "^2.0.2",
|
|
1001
|
+
"math-intrinsics": "^1.1.0"
|
|
1002
|
+
},
|
|
1003
|
+
"engines": {
|
|
1004
|
+
"node": ">= 0.4"
|
|
1005
|
+
},
|
|
1006
|
+
"funding": {
|
|
1007
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
"node_modules/get-proto": {
|
|
1011
|
+
"version": "1.0.1",
|
|
1012
|
+
"license": "MIT",
|
|
1013
|
+
"dependencies": {
|
|
1014
|
+
"dunder-proto": "^1.0.1",
|
|
1015
|
+
"es-object-atoms": "^1.0.0"
|
|
1016
|
+
},
|
|
1017
|
+
"engines": {
|
|
1018
|
+
"node": ">= 0.4"
|
|
1019
|
+
}
|
|
1020
|
+
},
|
|
1021
|
+
"node_modules/glob": {
|
|
1022
|
+
"version": "10.4.5",
|
|
1023
|
+
"dev": true,
|
|
1024
|
+
"license": "ISC",
|
|
1025
|
+
"dependencies": {
|
|
1026
|
+
"foreground-child": "^3.1.0",
|
|
1027
|
+
"jackspeak": "^3.1.2",
|
|
1028
|
+
"minimatch": "^9.0.4",
|
|
1029
|
+
"minipass": "^7.1.2",
|
|
1030
|
+
"package-json-from-dist": "^1.0.0",
|
|
1031
|
+
"path-scurry": "^1.11.1"
|
|
1032
|
+
},
|
|
1033
|
+
"bin": {
|
|
1034
|
+
"glob": "dist/esm/bin.mjs"
|
|
1035
|
+
},
|
|
1036
|
+
"funding": {
|
|
1037
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
"node_modules/glob-parent": {
|
|
1041
|
+
"version": "6.0.2",
|
|
1042
|
+
"dev": true,
|
|
1043
|
+
"license": "ISC",
|
|
1044
|
+
"dependencies": {
|
|
1045
|
+
"is-glob": "^4.0.3"
|
|
1046
|
+
},
|
|
1047
|
+
"engines": {
|
|
1048
|
+
"node": ">=10.13.0"
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"node_modules/gopd": {
|
|
1052
|
+
"version": "1.2.0",
|
|
1053
|
+
"license": "MIT",
|
|
1054
|
+
"engines": {
|
|
1055
|
+
"node": ">= 0.4"
|
|
1056
|
+
},
|
|
1057
|
+
"funding": {
|
|
1058
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"node_modules/graceful-fs": {
|
|
1062
|
+
"version": "4.2.11",
|
|
1063
|
+
"license": "ISC"
|
|
1064
|
+
},
|
|
1065
|
+
"node_modules/has-symbols": {
|
|
1066
|
+
"version": "1.1.0",
|
|
1067
|
+
"license": "MIT",
|
|
1068
|
+
"engines": {
|
|
1069
|
+
"node": ">= 0.4"
|
|
1070
|
+
},
|
|
1071
|
+
"funding": {
|
|
1072
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"node_modules/hasown": {
|
|
1076
|
+
"version": "2.0.2",
|
|
1077
|
+
"license": "MIT",
|
|
1078
|
+
"dependencies": {
|
|
1079
|
+
"function-bind": "^1.1.2"
|
|
1080
|
+
},
|
|
1081
|
+
"engines": {
|
|
1082
|
+
"node": ">= 0.4"
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"node_modules/http-errors": {
|
|
1086
|
+
"version": "2.0.0",
|
|
1087
|
+
"license": "MIT",
|
|
1088
|
+
"dependencies": {
|
|
1089
|
+
"depd": "2.0.0",
|
|
1090
|
+
"inherits": "2.0.4",
|
|
1091
|
+
"setprototypeof": "1.2.0",
|
|
1092
|
+
"statuses": "2.0.1",
|
|
1093
|
+
"toidentifier": "1.0.1"
|
|
1094
|
+
},
|
|
1095
|
+
"engines": {
|
|
1096
|
+
"node": ">= 0.8"
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"node_modules/http-errors/node_modules/statuses": {
|
|
1100
|
+
"version": "2.0.1",
|
|
1101
|
+
"license": "MIT",
|
|
1102
|
+
"engines": {
|
|
1103
|
+
"node": ">= 0.8"
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
"node_modules/iconv-lite": {
|
|
1107
|
+
"version": "0.6.3",
|
|
1108
|
+
"license": "MIT",
|
|
1109
|
+
"dependencies": {
|
|
1110
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1111
|
+
},
|
|
1112
|
+
"engines": {
|
|
1113
|
+
"node": ">=0.10.0"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/inherits": {
|
|
1117
|
+
"version": "2.0.4",
|
|
1118
|
+
"license": "ISC"
|
|
1119
|
+
},
|
|
1120
|
+
"node_modules/ipaddr.js": {
|
|
1121
|
+
"version": "1.9.1",
|
|
1122
|
+
"license": "MIT",
|
|
1123
|
+
"engines": {
|
|
1124
|
+
"node": ">= 0.10"
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
"node_modules/is-binary-path": {
|
|
1128
|
+
"version": "2.1.0",
|
|
1129
|
+
"dev": true,
|
|
1130
|
+
"license": "MIT",
|
|
1131
|
+
"dependencies": {
|
|
1132
|
+
"binary-extensions": "^2.0.0"
|
|
1133
|
+
},
|
|
1134
|
+
"engines": {
|
|
1135
|
+
"node": ">=8"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"node_modules/is-core-module": {
|
|
1139
|
+
"version": "2.16.1",
|
|
1140
|
+
"dev": true,
|
|
1141
|
+
"license": "MIT",
|
|
1142
|
+
"dependencies": {
|
|
1143
|
+
"hasown": "^2.0.2"
|
|
1144
|
+
},
|
|
1145
|
+
"engines": {
|
|
1146
|
+
"node": ">= 0.4"
|
|
1147
|
+
},
|
|
1148
|
+
"funding": {
|
|
1149
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"node_modules/is-extglob": {
|
|
1153
|
+
"version": "2.1.1",
|
|
1154
|
+
"dev": true,
|
|
1155
|
+
"license": "MIT",
|
|
1156
|
+
"engines": {
|
|
1157
|
+
"node": ">=0.10.0"
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
"node_modules/is-fullwidth-code-point": {
|
|
1161
|
+
"version": "3.0.0",
|
|
1162
|
+
"dev": true,
|
|
1163
|
+
"license": "MIT",
|
|
1164
|
+
"engines": {
|
|
1165
|
+
"node": ">=8"
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
"node_modules/is-glob": {
|
|
1169
|
+
"version": "4.0.3",
|
|
1170
|
+
"dev": true,
|
|
1171
|
+
"license": "MIT",
|
|
1172
|
+
"dependencies": {
|
|
1173
|
+
"is-extglob": "^2.1.1"
|
|
1174
|
+
},
|
|
1175
|
+
"engines": {
|
|
1176
|
+
"node": ">=0.10.0"
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
"node_modules/is-number": {
|
|
1180
|
+
"version": "7.0.0",
|
|
1181
|
+
"dev": true,
|
|
1182
|
+
"license": "MIT",
|
|
1183
|
+
"engines": {
|
|
1184
|
+
"node": ">=0.12.0"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"node_modules/is-promise": {
|
|
1188
|
+
"version": "4.0.0",
|
|
1189
|
+
"license": "MIT"
|
|
1190
|
+
},
|
|
1191
|
+
"node_modules/isexe": {
|
|
1192
|
+
"version": "2.0.0",
|
|
1193
|
+
"license": "ISC"
|
|
1194
|
+
},
|
|
1195
|
+
"node_modules/jackspeak": {
|
|
1196
|
+
"version": "3.4.3",
|
|
1197
|
+
"dev": true,
|
|
1198
|
+
"license": "BlueOak-1.0.0",
|
|
1199
|
+
"dependencies": {
|
|
1200
|
+
"@isaacs/cliui": "^8.0.2"
|
|
1201
|
+
},
|
|
1202
|
+
"funding": {
|
|
1203
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1204
|
+
},
|
|
1205
|
+
"optionalDependencies": {
|
|
1206
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"node_modules/jiti": {
|
|
1210
|
+
"version": "1.21.7",
|
|
1211
|
+
"dev": true,
|
|
1212
|
+
"license": "MIT",
|
|
1213
|
+
"bin": {
|
|
1214
|
+
"jiti": "bin/jiti.js"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"node_modules/js-tokens": {
|
|
1218
|
+
"version": "4.0.0",
|
|
1219
|
+
"license": "MIT"
|
|
1220
|
+
},
|
|
1221
|
+
"node_modules/json-schema-traverse": {
|
|
1222
|
+
"version": "0.4.1",
|
|
1223
|
+
"license": "MIT"
|
|
1224
|
+
},
|
|
1225
|
+
"node_modules/lilconfig": {
|
|
1226
|
+
"version": "3.1.3",
|
|
1227
|
+
"dev": true,
|
|
1228
|
+
"license": "MIT",
|
|
1229
|
+
"engines": {
|
|
1230
|
+
"node": ">=14"
|
|
1231
|
+
},
|
|
1232
|
+
"funding": {
|
|
1233
|
+
"url": "https://github.com/sponsors/antonk52"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"node_modules/lines-and-columns": {
|
|
1237
|
+
"version": "1.2.4",
|
|
1238
|
+
"dev": true,
|
|
1239
|
+
"license": "MIT"
|
|
1240
|
+
},
|
|
1241
|
+
"node_modules/loose-envify": {
|
|
1242
|
+
"version": "1.4.0",
|
|
1243
|
+
"license": "MIT",
|
|
1244
|
+
"dependencies": {
|
|
1245
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
1246
|
+
},
|
|
1247
|
+
"bin": {
|
|
1248
|
+
"loose-envify": "cli.js"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"node_modules/lru-cache": {
|
|
1252
|
+
"version": "10.4.3",
|
|
1253
|
+
"dev": true,
|
|
1254
|
+
"license": "ISC"
|
|
1255
|
+
},
|
|
1256
|
+
"node_modules/lucide-react": {
|
|
1257
|
+
"version": "0.546.0",
|
|
1258
|
+
"license": "ISC",
|
|
1259
|
+
"peerDependencies": {
|
|
1260
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
"node_modules/math-intrinsics": {
|
|
1264
|
+
"version": "1.1.0",
|
|
1265
|
+
"license": "MIT",
|
|
1266
|
+
"engines": {
|
|
1267
|
+
"node": ">= 0.4"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/media-typer": {
|
|
1271
|
+
"version": "1.1.0",
|
|
1272
|
+
"license": "MIT",
|
|
1273
|
+
"engines": {
|
|
1274
|
+
"node": ">= 0.8"
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
"node_modules/merge-descriptors": {
|
|
1278
|
+
"version": "2.0.0",
|
|
1279
|
+
"license": "MIT",
|
|
1280
|
+
"engines": {
|
|
1281
|
+
"node": ">=18"
|
|
1282
|
+
},
|
|
1283
|
+
"funding": {
|
|
1284
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
"node_modules/merge2": {
|
|
1288
|
+
"version": "1.4.1",
|
|
1289
|
+
"dev": true,
|
|
1290
|
+
"license": "MIT",
|
|
1291
|
+
"engines": {
|
|
1292
|
+
"node": ">= 8"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"node_modules/micromatch": {
|
|
1296
|
+
"version": "4.0.8",
|
|
1297
|
+
"dev": true,
|
|
1298
|
+
"license": "MIT",
|
|
1299
|
+
"dependencies": {
|
|
1300
|
+
"braces": "^3.0.3",
|
|
1301
|
+
"picomatch": "^2.3.1"
|
|
1302
|
+
},
|
|
1303
|
+
"engines": {
|
|
1304
|
+
"node": ">=8.6"
|
|
1305
|
+
}
|
|
1306
|
+
},
|
|
1307
|
+
"node_modules/mime-db": {
|
|
1308
|
+
"version": "1.54.0",
|
|
1309
|
+
"license": "MIT",
|
|
1310
|
+
"engines": {
|
|
1311
|
+
"node": ">= 0.6"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"node_modules/mime-types": {
|
|
1315
|
+
"version": "3.0.1",
|
|
1316
|
+
"license": "MIT",
|
|
1317
|
+
"dependencies": {
|
|
1318
|
+
"mime-db": "^1.54.0"
|
|
1319
|
+
},
|
|
1320
|
+
"engines": {
|
|
1321
|
+
"node": ">= 0.6"
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"node_modules/minimatch": {
|
|
1325
|
+
"version": "9.0.5",
|
|
1326
|
+
"dev": true,
|
|
1327
|
+
"license": "ISC",
|
|
1328
|
+
"dependencies": {
|
|
1329
|
+
"brace-expansion": "^2.0.1"
|
|
1330
|
+
},
|
|
1331
|
+
"engines": {
|
|
1332
|
+
"node": ">=16 || 14 >=14.17"
|
|
1333
|
+
},
|
|
1334
|
+
"funding": {
|
|
1335
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"node_modules/minipass": {
|
|
1339
|
+
"version": "7.1.2",
|
|
1340
|
+
"dev": true,
|
|
1341
|
+
"license": "ISC",
|
|
1342
|
+
"engines": {
|
|
1343
|
+
"node": ">=16 || 14 >=14.17"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/ms": {
|
|
1347
|
+
"version": "2.1.3",
|
|
1348
|
+
"license": "MIT"
|
|
1349
|
+
},
|
|
1350
|
+
"node_modules/mz": {
|
|
1351
|
+
"version": "2.7.0",
|
|
1352
|
+
"dev": true,
|
|
1353
|
+
"license": "MIT",
|
|
1354
|
+
"dependencies": {
|
|
1355
|
+
"any-promise": "^1.0.0",
|
|
1356
|
+
"object-assign": "^4.0.1",
|
|
1357
|
+
"thenify-all": "^1.0.0"
|
|
1358
|
+
}
|
|
1359
|
+
},
|
|
1360
|
+
"node_modules/nanoid": {
|
|
1361
|
+
"version": "3.3.11",
|
|
1362
|
+
"funding": [
|
|
1363
|
+
{
|
|
1364
|
+
"type": "github",
|
|
1365
|
+
"url": "https://github.com/sponsors/ai"
|
|
1366
|
+
}
|
|
1367
|
+
],
|
|
1368
|
+
"license": "MIT",
|
|
1369
|
+
"bin": {
|
|
1370
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1371
|
+
},
|
|
1372
|
+
"engines": {
|
|
1373
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1374
|
+
}
|
|
1375
|
+
},
|
|
1376
|
+
"node_modules/negotiator": {
|
|
1377
|
+
"version": "1.0.0",
|
|
1378
|
+
"license": "MIT",
|
|
1379
|
+
"engines": {
|
|
1380
|
+
"node": ">= 0.6"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"node_modules/next": {
|
|
1384
|
+
"version": "14.2.33",
|
|
1385
|
+
"license": "MIT",
|
|
1386
|
+
"dependencies": {
|
|
1387
|
+
"@next/env": "14.2.33",
|
|
1388
|
+
"@swc/helpers": "0.5.5",
|
|
1389
|
+
"busboy": "1.6.0",
|
|
1390
|
+
"caniuse-lite": "^1.0.30001579",
|
|
1391
|
+
"graceful-fs": "^4.2.11",
|
|
1392
|
+
"postcss": "8.4.31",
|
|
1393
|
+
"styled-jsx": "5.1.1"
|
|
1394
|
+
},
|
|
1395
|
+
"bin": {
|
|
1396
|
+
"next": "dist/bin/next"
|
|
1397
|
+
},
|
|
1398
|
+
"engines": {
|
|
1399
|
+
"node": ">=18.17.0"
|
|
1400
|
+
},
|
|
1401
|
+
"optionalDependencies": {
|
|
1402
|
+
"@next/swc-darwin-arm64": "14.2.33",
|
|
1403
|
+
"@next/swc-darwin-x64": "14.2.33",
|
|
1404
|
+
"@next/swc-linux-arm64-gnu": "14.2.33",
|
|
1405
|
+
"@next/swc-linux-arm64-musl": "14.2.33",
|
|
1406
|
+
"@next/swc-linux-x64-gnu": "14.2.33",
|
|
1407
|
+
"@next/swc-linux-x64-musl": "14.2.33",
|
|
1408
|
+
"@next/swc-win32-arm64-msvc": "14.2.33",
|
|
1409
|
+
"@next/swc-win32-ia32-msvc": "14.2.33",
|
|
1410
|
+
"@next/swc-win32-x64-msvc": "14.2.33"
|
|
1411
|
+
},
|
|
1412
|
+
"peerDependencies": {
|
|
1413
|
+
"@opentelemetry/api": "^1.1.0",
|
|
1414
|
+
"@playwright/test": "^1.41.2",
|
|
1415
|
+
"react": "^18.2.0",
|
|
1416
|
+
"react-dom": "^18.2.0",
|
|
1417
|
+
"sass": "^1.3.0"
|
|
1418
|
+
},
|
|
1419
|
+
"peerDependenciesMeta": {
|
|
1420
|
+
"@opentelemetry/api": {
|
|
1421
|
+
"optional": true
|
|
1422
|
+
},
|
|
1423
|
+
"@playwright/test": {
|
|
1424
|
+
"optional": true
|
|
1425
|
+
},
|
|
1426
|
+
"sass": {
|
|
1427
|
+
"optional": true
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1431
|
+
"node_modules/next/node_modules/postcss": {
|
|
1432
|
+
"version": "8.4.31",
|
|
1433
|
+
"funding": [
|
|
1434
|
+
{
|
|
1435
|
+
"type": "opencollective",
|
|
1436
|
+
"url": "https://opencollective.com/postcss/"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"type": "tidelift",
|
|
1440
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"type": "github",
|
|
1444
|
+
"url": "https://github.com/sponsors/ai"
|
|
1445
|
+
}
|
|
1446
|
+
],
|
|
1447
|
+
"license": "MIT",
|
|
1448
|
+
"dependencies": {
|
|
1449
|
+
"nanoid": "^3.3.6",
|
|
1450
|
+
"picocolors": "^1.0.0",
|
|
1451
|
+
"source-map-js": "^1.0.2"
|
|
1452
|
+
},
|
|
1453
|
+
"engines": {
|
|
1454
|
+
"node": "^10 || ^12 || >=14"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"node_modules/node-releases": {
|
|
1458
|
+
"version": "2.0.26",
|
|
1459
|
+
"dev": true,
|
|
1460
|
+
"license": "MIT"
|
|
1461
|
+
},
|
|
1462
|
+
"node_modules/normalize-path": {
|
|
1463
|
+
"version": "3.0.0",
|
|
1464
|
+
"dev": true,
|
|
1465
|
+
"license": "MIT",
|
|
1466
|
+
"engines": {
|
|
1467
|
+
"node": ">=0.10.0"
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1470
|
+
"node_modules/normalize-range": {
|
|
1471
|
+
"version": "0.1.2",
|
|
1472
|
+
"dev": true,
|
|
1473
|
+
"license": "MIT",
|
|
1474
|
+
"engines": {
|
|
1475
|
+
"node": ">=0.10.0"
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/object-assign": {
|
|
1479
|
+
"version": "4.1.1",
|
|
1480
|
+
"license": "MIT",
|
|
1481
|
+
"engines": {
|
|
1482
|
+
"node": ">=0.10.0"
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
"node_modules/object-hash": {
|
|
1486
|
+
"version": "3.0.0",
|
|
1487
|
+
"dev": true,
|
|
1488
|
+
"license": "MIT",
|
|
1489
|
+
"engines": {
|
|
1490
|
+
"node": ">= 6"
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
"node_modules/object-inspect": {
|
|
1494
|
+
"version": "1.13.4",
|
|
1495
|
+
"license": "MIT",
|
|
1496
|
+
"engines": {
|
|
1497
|
+
"node": ">= 0.4"
|
|
1498
|
+
},
|
|
1499
|
+
"funding": {
|
|
1500
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"node_modules/on-finished": {
|
|
1504
|
+
"version": "2.4.1",
|
|
1505
|
+
"license": "MIT",
|
|
1506
|
+
"dependencies": {
|
|
1507
|
+
"ee-first": "1.1.1"
|
|
1508
|
+
},
|
|
1509
|
+
"engines": {
|
|
1510
|
+
"node": ">= 0.8"
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"node_modules/once": {
|
|
1514
|
+
"version": "1.4.0",
|
|
1515
|
+
"license": "ISC",
|
|
1516
|
+
"dependencies": {
|
|
1517
|
+
"wrappy": "1"
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
"node_modules/package-json-from-dist": {
|
|
1521
|
+
"version": "1.0.1",
|
|
1522
|
+
"dev": true,
|
|
1523
|
+
"license": "BlueOak-1.0.0"
|
|
1524
|
+
},
|
|
1525
|
+
"node_modules/parseurl": {
|
|
1526
|
+
"version": "1.3.3",
|
|
1527
|
+
"license": "MIT",
|
|
1528
|
+
"engines": {
|
|
1529
|
+
"node": ">= 0.8"
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
"node_modules/path-key": {
|
|
1533
|
+
"version": "3.1.1",
|
|
1534
|
+
"license": "MIT",
|
|
1535
|
+
"engines": {
|
|
1536
|
+
"node": ">=8"
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"node_modules/path-parse": {
|
|
1540
|
+
"version": "1.0.7",
|
|
1541
|
+
"dev": true,
|
|
1542
|
+
"license": "MIT"
|
|
1543
|
+
},
|
|
1544
|
+
"node_modules/path-scurry": {
|
|
1545
|
+
"version": "1.11.1",
|
|
1546
|
+
"dev": true,
|
|
1547
|
+
"license": "BlueOak-1.0.0",
|
|
1548
|
+
"dependencies": {
|
|
1549
|
+
"lru-cache": "^10.2.0",
|
|
1550
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
1551
|
+
},
|
|
1552
|
+
"engines": {
|
|
1553
|
+
"node": ">=16 || 14 >=14.18"
|
|
1554
|
+
},
|
|
1555
|
+
"funding": {
|
|
1556
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
"node_modules/path-to-regexp": {
|
|
1560
|
+
"version": "8.3.0",
|
|
1561
|
+
"license": "MIT",
|
|
1562
|
+
"funding": {
|
|
1563
|
+
"type": "opencollective",
|
|
1564
|
+
"url": "https://opencollective.com/express"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"node_modules/picocolors": {
|
|
1568
|
+
"version": "1.1.1",
|
|
1569
|
+
"license": "ISC"
|
|
1570
|
+
},
|
|
1571
|
+
"node_modules/picomatch": {
|
|
1572
|
+
"version": "2.3.1",
|
|
1573
|
+
"dev": true,
|
|
1574
|
+
"license": "MIT",
|
|
1575
|
+
"engines": {
|
|
1576
|
+
"node": ">=8.6"
|
|
1577
|
+
},
|
|
1578
|
+
"funding": {
|
|
1579
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"node_modules/pify": {
|
|
1583
|
+
"version": "2.3.0",
|
|
1584
|
+
"dev": true,
|
|
1585
|
+
"license": "MIT",
|
|
1586
|
+
"engines": {
|
|
1587
|
+
"node": ">=0.10.0"
|
|
1588
|
+
}
|
|
1589
|
+
},
|
|
1590
|
+
"node_modules/pirates": {
|
|
1591
|
+
"version": "4.0.7",
|
|
1592
|
+
"dev": true,
|
|
1593
|
+
"license": "MIT",
|
|
1594
|
+
"engines": {
|
|
1595
|
+
"node": ">= 6"
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
"node_modules/pkce-challenge": {
|
|
1599
|
+
"version": "5.0.0",
|
|
1600
|
+
"license": "MIT",
|
|
1601
|
+
"engines": {
|
|
1602
|
+
"node": ">=16.20.0"
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
"node_modules/postcss": {
|
|
1606
|
+
"version": "8.5.6",
|
|
1607
|
+
"dev": true,
|
|
1608
|
+
"funding": [
|
|
1609
|
+
{
|
|
1610
|
+
"type": "opencollective",
|
|
1611
|
+
"url": "https://opencollective.com/postcss/"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"type": "tidelift",
|
|
1615
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"type": "github",
|
|
1619
|
+
"url": "https://github.com/sponsors/ai"
|
|
1620
|
+
}
|
|
1621
|
+
],
|
|
1622
|
+
"license": "MIT",
|
|
1623
|
+
"dependencies": {
|
|
1624
|
+
"nanoid": "^3.3.11",
|
|
1625
|
+
"picocolors": "^1.1.1",
|
|
1626
|
+
"source-map-js": "^1.2.1"
|
|
1627
|
+
},
|
|
1628
|
+
"engines": {
|
|
1629
|
+
"node": "^10 || ^12 || >=14"
|
|
1630
|
+
}
|
|
1631
|
+
},
|
|
1632
|
+
"node_modules/postcss-import": {
|
|
1633
|
+
"version": "15.1.0",
|
|
1634
|
+
"dev": true,
|
|
1635
|
+
"license": "MIT",
|
|
1636
|
+
"dependencies": {
|
|
1637
|
+
"postcss-value-parser": "^4.0.0",
|
|
1638
|
+
"read-cache": "^1.0.0",
|
|
1639
|
+
"resolve": "^1.1.7"
|
|
1640
|
+
},
|
|
1641
|
+
"engines": {
|
|
1642
|
+
"node": ">=14.0.0"
|
|
1643
|
+
},
|
|
1644
|
+
"peerDependencies": {
|
|
1645
|
+
"postcss": "^8.0.0"
|
|
1646
|
+
}
|
|
1647
|
+
},
|
|
1648
|
+
"node_modules/postcss-js": {
|
|
1649
|
+
"version": "4.1.0",
|
|
1650
|
+
"dev": true,
|
|
1651
|
+
"funding": [
|
|
1652
|
+
{
|
|
1653
|
+
"type": "opencollective",
|
|
1654
|
+
"url": "https://opencollective.com/postcss/"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"type": "github",
|
|
1658
|
+
"url": "https://github.com/sponsors/ai"
|
|
1659
|
+
}
|
|
1660
|
+
],
|
|
1661
|
+
"license": "MIT",
|
|
1662
|
+
"dependencies": {
|
|
1663
|
+
"camelcase-css": "^2.0.1"
|
|
1664
|
+
},
|
|
1665
|
+
"engines": {
|
|
1666
|
+
"node": "^12 || ^14 || >= 16"
|
|
1667
|
+
},
|
|
1668
|
+
"peerDependencies": {
|
|
1669
|
+
"postcss": "^8.4.21"
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
"node_modules/postcss-load-config": {
|
|
1673
|
+
"version": "6.0.1",
|
|
1674
|
+
"dev": true,
|
|
1675
|
+
"funding": [
|
|
1676
|
+
{
|
|
1677
|
+
"type": "opencollective",
|
|
1678
|
+
"url": "https://opencollective.com/postcss/"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"type": "github",
|
|
1682
|
+
"url": "https://github.com/sponsors/ai"
|
|
1683
|
+
}
|
|
1684
|
+
],
|
|
1685
|
+
"license": "MIT",
|
|
1686
|
+
"dependencies": {
|
|
1687
|
+
"lilconfig": "^3.1.1"
|
|
1688
|
+
},
|
|
1689
|
+
"engines": {
|
|
1690
|
+
"node": ">= 18"
|
|
1691
|
+
},
|
|
1692
|
+
"peerDependencies": {
|
|
1693
|
+
"jiti": ">=1.21.0",
|
|
1694
|
+
"postcss": ">=8.0.9",
|
|
1695
|
+
"tsx": "^4.8.1",
|
|
1696
|
+
"yaml": "^2.4.2"
|
|
1697
|
+
},
|
|
1698
|
+
"peerDependenciesMeta": {
|
|
1699
|
+
"jiti": {
|
|
1700
|
+
"optional": true
|
|
1701
|
+
},
|
|
1702
|
+
"postcss": {
|
|
1703
|
+
"optional": true
|
|
1704
|
+
},
|
|
1705
|
+
"tsx": {
|
|
1706
|
+
"optional": true
|
|
1707
|
+
},
|
|
1708
|
+
"yaml": {
|
|
1709
|
+
"optional": true
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
1713
|
+
"node_modules/postcss-nested": {
|
|
1714
|
+
"version": "6.2.0",
|
|
1715
|
+
"dev": true,
|
|
1716
|
+
"funding": [
|
|
1717
|
+
{
|
|
1718
|
+
"type": "opencollective",
|
|
1719
|
+
"url": "https://opencollective.com/postcss/"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"type": "github",
|
|
1723
|
+
"url": "https://github.com/sponsors/ai"
|
|
1724
|
+
}
|
|
1725
|
+
],
|
|
1726
|
+
"license": "MIT",
|
|
1727
|
+
"dependencies": {
|
|
1728
|
+
"postcss-selector-parser": "^6.1.1"
|
|
1729
|
+
},
|
|
1730
|
+
"engines": {
|
|
1731
|
+
"node": ">=12.0"
|
|
1732
|
+
},
|
|
1733
|
+
"peerDependencies": {
|
|
1734
|
+
"postcss": "^8.2.14"
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"node_modules/postcss-selector-parser": {
|
|
1738
|
+
"version": "6.1.2",
|
|
1739
|
+
"dev": true,
|
|
1740
|
+
"license": "MIT",
|
|
1741
|
+
"dependencies": {
|
|
1742
|
+
"cssesc": "^3.0.0",
|
|
1743
|
+
"util-deprecate": "^1.0.2"
|
|
1744
|
+
},
|
|
1745
|
+
"engines": {
|
|
1746
|
+
"node": ">=4"
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"node_modules/postcss-value-parser": {
|
|
1750
|
+
"version": "4.2.0",
|
|
1751
|
+
"dev": true,
|
|
1752
|
+
"license": "MIT"
|
|
1753
|
+
},
|
|
1754
|
+
"node_modules/proxy-addr": {
|
|
1755
|
+
"version": "2.0.7",
|
|
1756
|
+
"license": "MIT",
|
|
1757
|
+
"dependencies": {
|
|
1758
|
+
"forwarded": "0.2.0",
|
|
1759
|
+
"ipaddr.js": "1.9.1"
|
|
1760
|
+
},
|
|
1761
|
+
"engines": {
|
|
1762
|
+
"node": ">= 0.10"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"node_modules/punycode": {
|
|
1766
|
+
"version": "2.3.1",
|
|
1767
|
+
"license": "MIT",
|
|
1768
|
+
"engines": {
|
|
1769
|
+
"node": ">=6"
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1772
|
+
"node_modules/qs": {
|
|
1773
|
+
"version": "6.14.0",
|
|
1774
|
+
"license": "BSD-3-Clause",
|
|
1775
|
+
"dependencies": {
|
|
1776
|
+
"side-channel": "^1.1.0"
|
|
1777
|
+
},
|
|
1778
|
+
"engines": {
|
|
1779
|
+
"node": ">=0.6"
|
|
1780
|
+
},
|
|
1781
|
+
"funding": {
|
|
1782
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1783
|
+
}
|
|
1784
|
+
},
|
|
1785
|
+
"node_modules/queue-microtask": {
|
|
1786
|
+
"version": "1.2.3",
|
|
1787
|
+
"dev": true,
|
|
1788
|
+
"funding": [
|
|
1789
|
+
{
|
|
1790
|
+
"type": "github",
|
|
1791
|
+
"url": "https://github.com/sponsors/feross"
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
"type": "patreon",
|
|
1795
|
+
"url": "https://www.patreon.com/feross"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"type": "consulting",
|
|
1799
|
+
"url": "https://feross.org/support"
|
|
1800
|
+
}
|
|
1801
|
+
],
|
|
1802
|
+
"license": "MIT"
|
|
1803
|
+
},
|
|
1804
|
+
"node_modules/range-parser": {
|
|
1805
|
+
"version": "1.2.1",
|
|
1806
|
+
"license": "MIT",
|
|
1807
|
+
"engines": {
|
|
1808
|
+
"node": ">= 0.6"
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"node_modules/raw-body": {
|
|
1812
|
+
"version": "3.0.1",
|
|
1813
|
+
"license": "MIT",
|
|
1814
|
+
"dependencies": {
|
|
1815
|
+
"bytes": "3.1.2",
|
|
1816
|
+
"http-errors": "2.0.0",
|
|
1817
|
+
"iconv-lite": "0.7.0",
|
|
1818
|
+
"unpipe": "1.0.0"
|
|
1819
|
+
},
|
|
1820
|
+
"engines": {
|
|
1821
|
+
"node": ">= 0.10"
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"node_modules/raw-body/node_modules/iconv-lite": {
|
|
1825
|
+
"version": "0.7.0",
|
|
1826
|
+
"license": "MIT",
|
|
1827
|
+
"dependencies": {
|
|
1828
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1829
|
+
},
|
|
1830
|
+
"engines": {
|
|
1831
|
+
"node": ">=0.10.0"
|
|
1832
|
+
},
|
|
1833
|
+
"funding": {
|
|
1834
|
+
"type": "opencollective",
|
|
1835
|
+
"url": "https://opencollective.com/express"
|
|
1836
|
+
}
|
|
1837
|
+
},
|
|
1838
|
+
"node_modules/react": {
|
|
1839
|
+
"version": "18.3.1",
|
|
1840
|
+
"license": "MIT",
|
|
1841
|
+
"dependencies": {
|
|
1842
|
+
"loose-envify": "^1.1.0"
|
|
1843
|
+
},
|
|
1844
|
+
"engines": {
|
|
1845
|
+
"node": ">=0.10.0"
|
|
1846
|
+
}
|
|
1847
|
+
},
|
|
1848
|
+
"node_modules/react-dom": {
|
|
1849
|
+
"version": "18.3.1",
|
|
1850
|
+
"license": "MIT",
|
|
1851
|
+
"dependencies": {
|
|
1852
|
+
"loose-envify": "^1.1.0",
|
|
1853
|
+
"scheduler": "^0.23.2"
|
|
1854
|
+
},
|
|
1855
|
+
"peerDependencies": {
|
|
1856
|
+
"react": "^18.3.1"
|
|
1857
|
+
}
|
|
1858
|
+
},
|
|
1859
|
+
"node_modules/read-cache": {
|
|
1860
|
+
"version": "1.0.0",
|
|
1861
|
+
"dev": true,
|
|
1862
|
+
"license": "MIT",
|
|
1863
|
+
"dependencies": {
|
|
1864
|
+
"pify": "^2.3.0"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
"node_modules/readdirp": {
|
|
1868
|
+
"version": "3.6.0",
|
|
1869
|
+
"dev": true,
|
|
1870
|
+
"license": "MIT",
|
|
1871
|
+
"dependencies": {
|
|
1872
|
+
"picomatch": "^2.2.1"
|
|
1873
|
+
},
|
|
1874
|
+
"engines": {
|
|
1875
|
+
"node": ">=8.10.0"
|
|
1876
|
+
}
|
|
1877
|
+
},
|
|
1878
|
+
"node_modules/resolve": {
|
|
1879
|
+
"version": "1.22.11",
|
|
1880
|
+
"dev": true,
|
|
1881
|
+
"license": "MIT",
|
|
1882
|
+
"dependencies": {
|
|
1883
|
+
"is-core-module": "^2.16.1",
|
|
1884
|
+
"path-parse": "^1.0.7",
|
|
1885
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
1886
|
+
},
|
|
1887
|
+
"bin": {
|
|
1888
|
+
"resolve": "bin/resolve"
|
|
1889
|
+
},
|
|
1890
|
+
"engines": {
|
|
1891
|
+
"node": ">= 0.4"
|
|
1892
|
+
},
|
|
1893
|
+
"funding": {
|
|
1894
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1895
|
+
}
|
|
1896
|
+
},
|
|
1897
|
+
"node_modules/reusify": {
|
|
1898
|
+
"version": "1.1.0",
|
|
1899
|
+
"dev": true,
|
|
1900
|
+
"license": "MIT",
|
|
1901
|
+
"engines": {
|
|
1902
|
+
"iojs": ">=1.0.0",
|
|
1903
|
+
"node": ">=0.10.0"
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"node_modules/router": {
|
|
1907
|
+
"version": "2.2.0",
|
|
1908
|
+
"license": "MIT",
|
|
1909
|
+
"dependencies": {
|
|
1910
|
+
"debug": "^4.4.0",
|
|
1911
|
+
"depd": "^2.0.0",
|
|
1912
|
+
"is-promise": "^4.0.0",
|
|
1913
|
+
"parseurl": "^1.3.3",
|
|
1914
|
+
"path-to-regexp": "^8.0.0"
|
|
1915
|
+
},
|
|
1916
|
+
"engines": {
|
|
1917
|
+
"node": ">= 18"
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
"node_modules/run-parallel": {
|
|
1921
|
+
"version": "1.2.0",
|
|
1922
|
+
"dev": true,
|
|
1923
|
+
"funding": [
|
|
1924
|
+
{
|
|
1925
|
+
"type": "github",
|
|
1926
|
+
"url": "https://github.com/sponsors/feross"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"type": "patreon",
|
|
1930
|
+
"url": "https://www.patreon.com/feross"
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
"type": "consulting",
|
|
1934
|
+
"url": "https://feross.org/support"
|
|
1935
|
+
}
|
|
1936
|
+
],
|
|
1937
|
+
"license": "MIT",
|
|
1938
|
+
"dependencies": {
|
|
1939
|
+
"queue-microtask": "^1.2.2"
|
|
1940
|
+
}
|
|
1941
|
+
},
|
|
1942
|
+
"node_modules/safe-buffer": {
|
|
1943
|
+
"version": "5.2.1",
|
|
1944
|
+
"funding": [
|
|
1945
|
+
{
|
|
1946
|
+
"type": "github",
|
|
1947
|
+
"url": "https://github.com/sponsors/feross"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"type": "patreon",
|
|
1951
|
+
"url": "https://www.patreon.com/feross"
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"type": "consulting",
|
|
1955
|
+
"url": "https://feross.org/support"
|
|
1956
|
+
}
|
|
1957
|
+
],
|
|
1958
|
+
"license": "MIT"
|
|
1959
|
+
},
|
|
1960
|
+
"node_modules/safer-buffer": {
|
|
1961
|
+
"version": "2.1.2",
|
|
1962
|
+
"license": "MIT"
|
|
1963
|
+
},
|
|
1964
|
+
"node_modules/scheduler": {
|
|
1965
|
+
"version": "0.23.2",
|
|
1966
|
+
"license": "MIT",
|
|
1967
|
+
"dependencies": {
|
|
1968
|
+
"loose-envify": "^1.1.0"
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1971
|
+
"node_modules/send": {
|
|
1972
|
+
"version": "1.2.0",
|
|
1973
|
+
"license": "MIT",
|
|
1974
|
+
"dependencies": {
|
|
1975
|
+
"debug": "^4.3.5",
|
|
1976
|
+
"encodeurl": "^2.0.0",
|
|
1977
|
+
"escape-html": "^1.0.3",
|
|
1978
|
+
"etag": "^1.8.1",
|
|
1979
|
+
"fresh": "^2.0.0",
|
|
1980
|
+
"http-errors": "^2.0.0",
|
|
1981
|
+
"mime-types": "^3.0.1",
|
|
1982
|
+
"ms": "^2.1.3",
|
|
1983
|
+
"on-finished": "^2.4.1",
|
|
1984
|
+
"range-parser": "^1.2.1",
|
|
1985
|
+
"statuses": "^2.0.1"
|
|
1986
|
+
},
|
|
1987
|
+
"engines": {
|
|
1988
|
+
"node": ">= 18"
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1991
|
+
"node_modules/serve-static": {
|
|
1992
|
+
"version": "2.2.0",
|
|
1993
|
+
"license": "MIT",
|
|
1994
|
+
"dependencies": {
|
|
1995
|
+
"encodeurl": "^2.0.0",
|
|
1996
|
+
"escape-html": "^1.0.3",
|
|
1997
|
+
"parseurl": "^1.3.3",
|
|
1998
|
+
"send": "^1.2.0"
|
|
1999
|
+
},
|
|
2000
|
+
"engines": {
|
|
2001
|
+
"node": ">= 18"
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
"node_modules/setprototypeof": {
|
|
2005
|
+
"version": "1.2.0",
|
|
2006
|
+
"license": "ISC"
|
|
2007
|
+
},
|
|
2008
|
+
"node_modules/shebang-command": {
|
|
2009
|
+
"version": "2.0.0",
|
|
2010
|
+
"license": "MIT",
|
|
2011
|
+
"dependencies": {
|
|
2012
|
+
"shebang-regex": "^3.0.0"
|
|
2013
|
+
},
|
|
2014
|
+
"engines": {
|
|
2015
|
+
"node": ">=8"
|
|
2016
|
+
}
|
|
2017
|
+
},
|
|
2018
|
+
"node_modules/shebang-regex": {
|
|
2019
|
+
"version": "3.0.0",
|
|
2020
|
+
"license": "MIT",
|
|
2021
|
+
"engines": {
|
|
2022
|
+
"node": ">=8"
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
2025
|
+
"node_modules/side-channel": {
|
|
2026
|
+
"version": "1.1.0",
|
|
2027
|
+
"license": "MIT",
|
|
2028
|
+
"dependencies": {
|
|
2029
|
+
"es-errors": "^1.3.0",
|
|
2030
|
+
"object-inspect": "^1.13.3",
|
|
2031
|
+
"side-channel-list": "^1.0.0",
|
|
2032
|
+
"side-channel-map": "^1.0.1",
|
|
2033
|
+
"side-channel-weakmap": "^1.0.2"
|
|
2034
|
+
},
|
|
2035
|
+
"engines": {
|
|
2036
|
+
"node": ">= 0.4"
|
|
2037
|
+
},
|
|
2038
|
+
"funding": {
|
|
2039
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2040
|
+
}
|
|
2041
|
+
},
|
|
2042
|
+
"node_modules/side-channel-list": {
|
|
2043
|
+
"version": "1.0.0",
|
|
2044
|
+
"license": "MIT",
|
|
2045
|
+
"dependencies": {
|
|
2046
|
+
"es-errors": "^1.3.0",
|
|
2047
|
+
"object-inspect": "^1.13.3"
|
|
2048
|
+
},
|
|
2049
|
+
"engines": {
|
|
2050
|
+
"node": ">= 0.4"
|
|
2051
|
+
},
|
|
2052
|
+
"funding": {
|
|
2053
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"node_modules/side-channel-map": {
|
|
2057
|
+
"version": "1.0.1",
|
|
2058
|
+
"license": "MIT",
|
|
2059
|
+
"dependencies": {
|
|
2060
|
+
"call-bound": "^1.0.2",
|
|
2061
|
+
"es-errors": "^1.3.0",
|
|
2062
|
+
"get-intrinsic": "^1.2.5",
|
|
2063
|
+
"object-inspect": "^1.13.3"
|
|
2064
|
+
},
|
|
2065
|
+
"engines": {
|
|
2066
|
+
"node": ">= 0.4"
|
|
2067
|
+
},
|
|
2068
|
+
"funding": {
|
|
2069
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"node_modules/side-channel-weakmap": {
|
|
2073
|
+
"version": "1.0.2",
|
|
2074
|
+
"license": "MIT",
|
|
2075
|
+
"dependencies": {
|
|
2076
|
+
"call-bound": "^1.0.2",
|
|
2077
|
+
"es-errors": "^1.3.0",
|
|
2078
|
+
"get-intrinsic": "^1.2.5",
|
|
2079
|
+
"object-inspect": "^1.13.3",
|
|
2080
|
+
"side-channel-map": "^1.0.1"
|
|
2081
|
+
},
|
|
2082
|
+
"engines": {
|
|
2083
|
+
"node": ">= 0.4"
|
|
2084
|
+
},
|
|
2085
|
+
"funding": {
|
|
2086
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/signal-exit": {
|
|
2090
|
+
"version": "4.1.0",
|
|
2091
|
+
"dev": true,
|
|
2092
|
+
"license": "ISC",
|
|
2093
|
+
"engines": {
|
|
2094
|
+
"node": ">=14"
|
|
2095
|
+
},
|
|
2096
|
+
"funding": {
|
|
2097
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"node_modules/source-map-js": {
|
|
2101
|
+
"version": "1.2.1",
|
|
2102
|
+
"license": "BSD-3-Clause",
|
|
2103
|
+
"engines": {
|
|
2104
|
+
"node": ">=0.10.0"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
"node_modules/statuses": {
|
|
2108
|
+
"version": "2.0.2",
|
|
2109
|
+
"license": "MIT",
|
|
2110
|
+
"engines": {
|
|
2111
|
+
"node": ">= 0.8"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
"node_modules/streamsearch": {
|
|
2115
|
+
"version": "1.1.0",
|
|
2116
|
+
"engines": {
|
|
2117
|
+
"node": ">=10.0.0"
|
|
2118
|
+
}
|
|
2119
|
+
},
|
|
2120
|
+
"node_modules/string-width": {
|
|
2121
|
+
"version": "5.1.2",
|
|
2122
|
+
"dev": true,
|
|
2123
|
+
"license": "MIT",
|
|
2124
|
+
"dependencies": {
|
|
2125
|
+
"eastasianwidth": "^0.2.0",
|
|
2126
|
+
"emoji-regex": "^9.2.2",
|
|
2127
|
+
"strip-ansi": "^7.0.1"
|
|
2128
|
+
},
|
|
2129
|
+
"engines": {
|
|
2130
|
+
"node": ">=12"
|
|
2131
|
+
},
|
|
2132
|
+
"funding": {
|
|
2133
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"node_modules/string-width-cjs": {
|
|
2137
|
+
"name": "string-width",
|
|
2138
|
+
"version": "4.2.3",
|
|
2139
|
+
"dev": true,
|
|
2140
|
+
"license": "MIT",
|
|
2141
|
+
"dependencies": {
|
|
2142
|
+
"emoji-regex": "^8.0.0",
|
|
2143
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
2144
|
+
"strip-ansi": "^6.0.1"
|
|
2145
|
+
},
|
|
2146
|
+
"engines": {
|
|
2147
|
+
"node": ">=8"
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
2150
|
+
"node_modules/string-width-cjs/node_modules/ansi-regex": {
|
|
2151
|
+
"version": "5.0.1",
|
|
2152
|
+
"dev": true,
|
|
2153
|
+
"license": "MIT",
|
|
2154
|
+
"engines": {
|
|
2155
|
+
"node": ">=8"
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
2159
|
+
"version": "8.0.0",
|
|
2160
|
+
"dev": true,
|
|
2161
|
+
"license": "MIT"
|
|
2162
|
+
},
|
|
2163
|
+
"node_modules/string-width-cjs/node_modules/strip-ansi": {
|
|
2164
|
+
"version": "6.0.1",
|
|
2165
|
+
"dev": true,
|
|
2166
|
+
"license": "MIT",
|
|
2167
|
+
"dependencies": {
|
|
2168
|
+
"ansi-regex": "^5.0.1"
|
|
2169
|
+
},
|
|
2170
|
+
"engines": {
|
|
2171
|
+
"node": ">=8"
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
2174
|
+
"node_modules/strip-ansi": {
|
|
2175
|
+
"version": "7.1.2",
|
|
2176
|
+
"dev": true,
|
|
2177
|
+
"license": "MIT",
|
|
2178
|
+
"dependencies": {
|
|
2179
|
+
"ansi-regex": "^6.0.1"
|
|
2180
|
+
},
|
|
2181
|
+
"engines": {
|
|
2182
|
+
"node": ">=12"
|
|
2183
|
+
},
|
|
2184
|
+
"funding": {
|
|
2185
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
2186
|
+
}
|
|
2187
|
+
},
|
|
2188
|
+
"node_modules/strip-ansi-cjs": {
|
|
2189
|
+
"name": "strip-ansi",
|
|
2190
|
+
"version": "6.0.1",
|
|
2191
|
+
"dev": true,
|
|
2192
|
+
"license": "MIT",
|
|
2193
|
+
"dependencies": {
|
|
2194
|
+
"ansi-regex": "^5.0.1"
|
|
2195
|
+
},
|
|
2196
|
+
"engines": {
|
|
2197
|
+
"node": ">=8"
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
2201
|
+
"version": "5.0.1",
|
|
2202
|
+
"dev": true,
|
|
2203
|
+
"license": "MIT",
|
|
2204
|
+
"engines": {
|
|
2205
|
+
"node": ">=8"
|
|
2206
|
+
}
|
|
2207
|
+
},
|
|
2208
|
+
"node_modules/styled-jsx": {
|
|
2209
|
+
"version": "5.1.1",
|
|
2210
|
+
"license": "MIT",
|
|
2211
|
+
"dependencies": {
|
|
2212
|
+
"client-only": "0.0.1"
|
|
2213
|
+
},
|
|
2214
|
+
"engines": {
|
|
2215
|
+
"node": ">= 12.0.0"
|
|
2216
|
+
},
|
|
2217
|
+
"peerDependencies": {
|
|
2218
|
+
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
|
|
2219
|
+
},
|
|
2220
|
+
"peerDependenciesMeta": {
|
|
2221
|
+
"@babel/core": {
|
|
2222
|
+
"optional": true
|
|
2223
|
+
},
|
|
2224
|
+
"babel-plugin-macros": {
|
|
2225
|
+
"optional": true
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
},
|
|
2229
|
+
"node_modules/sucrase": {
|
|
2230
|
+
"version": "3.35.0",
|
|
2231
|
+
"dev": true,
|
|
2232
|
+
"license": "MIT",
|
|
2233
|
+
"dependencies": {
|
|
2234
|
+
"@jridgewell/gen-mapping": "^0.3.2",
|
|
2235
|
+
"commander": "^4.0.0",
|
|
2236
|
+
"glob": "^10.3.10",
|
|
2237
|
+
"lines-and-columns": "^1.1.6",
|
|
2238
|
+
"mz": "^2.7.0",
|
|
2239
|
+
"pirates": "^4.0.1",
|
|
2240
|
+
"ts-interface-checker": "^0.1.9"
|
|
2241
|
+
},
|
|
2242
|
+
"bin": {
|
|
2243
|
+
"sucrase": "bin/sucrase",
|
|
2244
|
+
"sucrase-node": "bin/sucrase-node"
|
|
2245
|
+
},
|
|
2246
|
+
"engines": {
|
|
2247
|
+
"node": ">=16 || 14 >=14.17"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
2251
|
+
"version": "1.0.0",
|
|
2252
|
+
"dev": true,
|
|
2253
|
+
"license": "MIT",
|
|
2254
|
+
"engines": {
|
|
2255
|
+
"node": ">= 0.4"
|
|
2256
|
+
},
|
|
2257
|
+
"funding": {
|
|
2258
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/tailwindcss": {
|
|
2262
|
+
"version": "3.4.18",
|
|
2263
|
+
"dev": true,
|
|
2264
|
+
"license": "MIT",
|
|
2265
|
+
"dependencies": {
|
|
2266
|
+
"@alloc/quick-lru": "^5.2.0",
|
|
2267
|
+
"arg": "^5.0.2",
|
|
2268
|
+
"chokidar": "^3.6.0",
|
|
2269
|
+
"didyoumean": "^1.2.2",
|
|
2270
|
+
"dlv": "^1.1.3",
|
|
2271
|
+
"fast-glob": "^3.3.2",
|
|
2272
|
+
"glob-parent": "^6.0.2",
|
|
2273
|
+
"is-glob": "^4.0.3",
|
|
2274
|
+
"jiti": "^1.21.7",
|
|
2275
|
+
"lilconfig": "^3.1.3",
|
|
2276
|
+
"micromatch": "^4.0.8",
|
|
2277
|
+
"normalize-path": "^3.0.0",
|
|
2278
|
+
"object-hash": "^3.0.0",
|
|
2279
|
+
"picocolors": "^1.1.1",
|
|
2280
|
+
"postcss": "^8.4.47",
|
|
2281
|
+
"postcss-import": "^15.1.0",
|
|
2282
|
+
"postcss-js": "^4.0.1",
|
|
2283
|
+
"postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
|
|
2284
|
+
"postcss-nested": "^6.2.0",
|
|
2285
|
+
"postcss-selector-parser": "^6.1.2",
|
|
2286
|
+
"resolve": "^1.22.8",
|
|
2287
|
+
"sucrase": "^3.35.0"
|
|
2288
|
+
},
|
|
2289
|
+
"bin": {
|
|
2290
|
+
"tailwind": "lib/cli.js",
|
|
2291
|
+
"tailwindcss": "lib/cli.js"
|
|
2292
|
+
},
|
|
2293
|
+
"engines": {
|
|
2294
|
+
"node": ">=14.0.0"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/thenify": {
|
|
2298
|
+
"version": "3.3.1",
|
|
2299
|
+
"dev": true,
|
|
2300
|
+
"license": "MIT",
|
|
2301
|
+
"dependencies": {
|
|
2302
|
+
"any-promise": "^1.0.0"
|
|
2303
|
+
}
|
|
2304
|
+
},
|
|
2305
|
+
"node_modules/thenify-all": {
|
|
2306
|
+
"version": "1.6.0",
|
|
2307
|
+
"dev": true,
|
|
2308
|
+
"license": "MIT",
|
|
2309
|
+
"dependencies": {
|
|
2310
|
+
"thenify": ">= 3.1.0 < 4"
|
|
2311
|
+
},
|
|
2312
|
+
"engines": {
|
|
2313
|
+
"node": ">=0.8"
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
"node_modules/to-regex-range": {
|
|
2317
|
+
"version": "5.0.1",
|
|
2318
|
+
"dev": true,
|
|
2319
|
+
"license": "MIT",
|
|
2320
|
+
"dependencies": {
|
|
2321
|
+
"is-number": "^7.0.0"
|
|
2322
|
+
},
|
|
2323
|
+
"engines": {
|
|
2324
|
+
"node": ">=8.0"
|
|
2325
|
+
}
|
|
2326
|
+
},
|
|
2327
|
+
"node_modules/toidentifier": {
|
|
2328
|
+
"version": "1.0.1",
|
|
2329
|
+
"license": "MIT",
|
|
2330
|
+
"engines": {
|
|
2331
|
+
"node": ">=0.6"
|
|
2332
|
+
}
|
|
2333
|
+
},
|
|
2334
|
+
"node_modules/ts-interface-checker": {
|
|
2335
|
+
"version": "0.1.13",
|
|
2336
|
+
"dev": true,
|
|
2337
|
+
"license": "Apache-2.0"
|
|
2338
|
+
},
|
|
2339
|
+
"node_modules/tslib": {
|
|
2340
|
+
"version": "2.8.1",
|
|
2341
|
+
"license": "0BSD"
|
|
2342
|
+
},
|
|
2343
|
+
"node_modules/type-is": {
|
|
2344
|
+
"version": "2.0.1",
|
|
2345
|
+
"license": "MIT",
|
|
2346
|
+
"dependencies": {
|
|
2347
|
+
"content-type": "^1.0.5",
|
|
2348
|
+
"media-typer": "^1.1.0",
|
|
2349
|
+
"mime-types": "^3.0.0"
|
|
2350
|
+
},
|
|
2351
|
+
"engines": {
|
|
2352
|
+
"node": ">= 0.6"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
"node_modules/typescript": {
|
|
2356
|
+
"version": "5.9.3",
|
|
2357
|
+
"dev": true,
|
|
2358
|
+
"license": "Apache-2.0",
|
|
2359
|
+
"bin": {
|
|
2360
|
+
"tsc": "bin/tsc",
|
|
2361
|
+
"tsserver": "bin/tsserver"
|
|
2362
|
+
},
|
|
2363
|
+
"engines": {
|
|
2364
|
+
"node": ">=14.17"
|
|
2365
|
+
}
|
|
2366
|
+
},
|
|
2367
|
+
"node_modules/undici-types": {
|
|
2368
|
+
"version": "6.21.0",
|
|
2369
|
+
"dev": true,
|
|
2370
|
+
"license": "MIT"
|
|
2371
|
+
},
|
|
2372
|
+
"node_modules/unpipe": {
|
|
2373
|
+
"version": "1.0.0",
|
|
2374
|
+
"license": "MIT",
|
|
2375
|
+
"engines": {
|
|
2376
|
+
"node": ">= 0.8"
|
|
2377
|
+
}
|
|
2378
|
+
},
|
|
2379
|
+
"node_modules/update-browserslist-db": {
|
|
2380
|
+
"version": "1.1.4",
|
|
2381
|
+
"dev": true,
|
|
2382
|
+
"funding": [
|
|
2383
|
+
{
|
|
2384
|
+
"type": "opencollective",
|
|
2385
|
+
"url": "https://opencollective.com/browserslist"
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
"type": "tidelift",
|
|
2389
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"type": "github",
|
|
2393
|
+
"url": "https://github.com/sponsors/ai"
|
|
2394
|
+
}
|
|
2395
|
+
],
|
|
2396
|
+
"license": "MIT",
|
|
2397
|
+
"dependencies": {
|
|
2398
|
+
"escalade": "^3.2.0",
|
|
2399
|
+
"picocolors": "^1.1.1"
|
|
2400
|
+
},
|
|
2401
|
+
"bin": {
|
|
2402
|
+
"update-browserslist-db": "cli.js"
|
|
2403
|
+
},
|
|
2404
|
+
"peerDependencies": {
|
|
2405
|
+
"browserslist": ">= 4.21.0"
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
2408
|
+
"node_modules/uri-js": {
|
|
2409
|
+
"version": "4.4.1",
|
|
2410
|
+
"license": "BSD-2-Clause",
|
|
2411
|
+
"dependencies": {
|
|
2412
|
+
"punycode": "^2.1.0"
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"node_modules/use-sync-external-store": {
|
|
2416
|
+
"version": "1.6.0",
|
|
2417
|
+
"license": "MIT",
|
|
2418
|
+
"peerDependencies": {
|
|
2419
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
2420
|
+
}
|
|
2421
|
+
},
|
|
2422
|
+
"node_modules/util-deprecate": {
|
|
2423
|
+
"version": "1.0.2",
|
|
2424
|
+
"dev": true,
|
|
2425
|
+
"license": "MIT"
|
|
2426
|
+
},
|
|
2427
|
+
"node_modules/vary": {
|
|
2428
|
+
"version": "1.1.2",
|
|
2429
|
+
"license": "MIT",
|
|
2430
|
+
"engines": {
|
|
2431
|
+
"node": ">= 0.8"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
"node_modules/which": {
|
|
2435
|
+
"version": "2.0.2",
|
|
2436
|
+
"license": "ISC",
|
|
2437
|
+
"dependencies": {
|
|
2438
|
+
"isexe": "^2.0.0"
|
|
2439
|
+
},
|
|
2440
|
+
"bin": {
|
|
2441
|
+
"node-which": "bin/node-which"
|
|
2442
|
+
},
|
|
2443
|
+
"engines": {
|
|
2444
|
+
"node": ">= 8"
|
|
2445
|
+
}
|
|
2446
|
+
},
|
|
2447
|
+
"node_modules/wrap-ansi": {
|
|
2448
|
+
"version": "8.1.0",
|
|
2449
|
+
"dev": true,
|
|
2450
|
+
"license": "MIT",
|
|
2451
|
+
"dependencies": {
|
|
2452
|
+
"ansi-styles": "^6.1.0",
|
|
2453
|
+
"string-width": "^5.0.1",
|
|
2454
|
+
"strip-ansi": "^7.0.1"
|
|
2455
|
+
},
|
|
2456
|
+
"engines": {
|
|
2457
|
+
"node": ">=12"
|
|
2458
|
+
},
|
|
2459
|
+
"funding": {
|
|
2460
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2461
|
+
}
|
|
2462
|
+
},
|
|
2463
|
+
"node_modules/wrap-ansi-cjs": {
|
|
2464
|
+
"name": "wrap-ansi",
|
|
2465
|
+
"version": "7.0.0",
|
|
2466
|
+
"dev": true,
|
|
2467
|
+
"license": "MIT",
|
|
2468
|
+
"dependencies": {
|
|
2469
|
+
"ansi-styles": "^4.0.0",
|
|
2470
|
+
"string-width": "^4.1.0",
|
|
2471
|
+
"strip-ansi": "^6.0.0"
|
|
2472
|
+
},
|
|
2473
|
+
"engines": {
|
|
2474
|
+
"node": ">=10"
|
|
2475
|
+
},
|
|
2476
|
+
"funding": {
|
|
2477
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
|
|
2481
|
+
"version": "5.0.1",
|
|
2482
|
+
"dev": true,
|
|
2483
|
+
"license": "MIT",
|
|
2484
|
+
"engines": {
|
|
2485
|
+
"node": ">=8"
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
2489
|
+
"version": "4.3.0",
|
|
2490
|
+
"dev": true,
|
|
2491
|
+
"license": "MIT",
|
|
2492
|
+
"dependencies": {
|
|
2493
|
+
"color-convert": "^2.0.1"
|
|
2494
|
+
},
|
|
2495
|
+
"engines": {
|
|
2496
|
+
"node": ">=8"
|
|
2497
|
+
},
|
|
2498
|
+
"funding": {
|
|
2499
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
2500
|
+
}
|
|
2501
|
+
},
|
|
2502
|
+
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
|
|
2503
|
+
"version": "8.0.0",
|
|
2504
|
+
"dev": true,
|
|
2505
|
+
"license": "MIT"
|
|
2506
|
+
},
|
|
2507
|
+
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
2508
|
+
"version": "4.2.3",
|
|
2509
|
+
"dev": true,
|
|
2510
|
+
"license": "MIT",
|
|
2511
|
+
"dependencies": {
|
|
2512
|
+
"emoji-regex": "^8.0.0",
|
|
2513
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
2514
|
+
"strip-ansi": "^6.0.1"
|
|
2515
|
+
},
|
|
2516
|
+
"engines": {
|
|
2517
|
+
"node": ">=8"
|
|
2518
|
+
}
|
|
2519
|
+
},
|
|
2520
|
+
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
|
|
2521
|
+
"version": "6.0.1",
|
|
2522
|
+
"dev": true,
|
|
2523
|
+
"license": "MIT",
|
|
2524
|
+
"dependencies": {
|
|
2525
|
+
"ansi-regex": "^5.0.1"
|
|
2526
|
+
},
|
|
2527
|
+
"engines": {
|
|
2528
|
+
"node": ">=8"
|
|
2529
|
+
}
|
|
2530
|
+
},
|
|
2531
|
+
"node_modules/wrappy": {
|
|
2532
|
+
"version": "1.0.2",
|
|
2533
|
+
"license": "ISC"
|
|
2534
|
+
},
|
|
2535
|
+
"node_modules/zod": {
|
|
2536
|
+
"version": "3.25.76",
|
|
2537
|
+
"license": "MIT",
|
|
2538
|
+
"funding": {
|
|
2539
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"node_modules/zod-to-json-schema": {
|
|
2543
|
+
"version": "3.24.6",
|
|
2544
|
+
"license": "ISC",
|
|
2545
|
+
"peerDependencies": {
|
|
2546
|
+
"zod": "^3.24.1"
|
|
2547
|
+
}
|
|
2548
|
+
},
|
|
2549
|
+
"node_modules/zustand": {
|
|
2550
|
+
"version": "4.5.7",
|
|
2551
|
+
"license": "MIT",
|
|
2552
|
+
"dependencies": {
|
|
2553
|
+
"use-sync-external-store": "^1.2.2"
|
|
2554
|
+
},
|
|
2555
|
+
"engines": {
|
|
2556
|
+
"node": ">=12.7.0"
|
|
2557
|
+
},
|
|
2558
|
+
"peerDependencies": {
|
|
2559
|
+
"@types/react": ">=16.8",
|
|
2560
|
+
"immer": ">=9.0.6",
|
|
2561
|
+
"react": ">=16.8"
|
|
2562
|
+
},
|
|
2563
|
+
"peerDependenciesMeta": {
|
|
2564
|
+
"@types/react": {
|
|
2565
|
+
"optional": true
|
|
2566
|
+
},
|
|
2567
|
+
"immer": {
|
|
2568
|
+
"optional": true
|
|
2569
|
+
},
|
|
2570
|
+
"react": {
|
|
2571
|
+
"optional": true
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
"node_modules/@next/swc-darwin-x64": {
|
|
2576
|
+
"version": "14.2.33",
|
|
2577
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.33.tgz",
|
|
2578
|
+
"integrity": "sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==",
|
|
2579
|
+
"cpu": [
|
|
2580
|
+
"x64"
|
|
2581
|
+
],
|
|
2582
|
+
"optional": true,
|
|
2583
|
+
"os": [
|
|
2584
|
+
"darwin"
|
|
2585
|
+
],
|
|
2586
|
+
"engines": {
|
|
2587
|
+
"node": ">= 10"
|
|
2588
|
+
}
|
|
2589
|
+
},
|
|
2590
|
+
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
2591
|
+
"version": "14.2.33",
|
|
2592
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.33.tgz",
|
|
2593
|
+
"integrity": "sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==",
|
|
2594
|
+
"cpu": [
|
|
2595
|
+
"arm64"
|
|
2596
|
+
],
|
|
2597
|
+
"optional": true,
|
|
2598
|
+
"os": [
|
|
2599
|
+
"linux"
|
|
2600
|
+
],
|
|
2601
|
+
"engines": {
|
|
2602
|
+
"node": ">= 10"
|
|
2603
|
+
}
|
|
2604
|
+
},
|
|
2605
|
+
"node_modules/@next/swc-linux-arm64-musl": {
|
|
2606
|
+
"version": "14.2.33",
|
|
2607
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.33.tgz",
|
|
2608
|
+
"integrity": "sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==",
|
|
2609
|
+
"cpu": [
|
|
2610
|
+
"arm64"
|
|
2611
|
+
],
|
|
2612
|
+
"optional": true,
|
|
2613
|
+
"os": [
|
|
2614
|
+
"linux"
|
|
2615
|
+
],
|
|
2616
|
+
"engines": {
|
|
2617
|
+
"node": ">= 10"
|
|
2618
|
+
}
|
|
2619
|
+
},
|
|
2620
|
+
"node_modules/@next/swc-linux-x64-gnu": {
|
|
2621
|
+
"version": "14.2.33",
|
|
2622
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.33.tgz",
|
|
2623
|
+
"integrity": "sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==",
|
|
2624
|
+
"cpu": [
|
|
2625
|
+
"x64"
|
|
2626
|
+
],
|
|
2627
|
+
"optional": true,
|
|
2628
|
+
"os": [
|
|
2629
|
+
"linux"
|
|
2630
|
+
],
|
|
2631
|
+
"engines": {
|
|
2632
|
+
"node": ">= 10"
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2635
|
+
"node_modules/@next/swc-linux-x64-musl": {
|
|
2636
|
+
"version": "14.2.33",
|
|
2637
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.33.tgz",
|
|
2638
|
+
"integrity": "sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==",
|
|
2639
|
+
"cpu": [
|
|
2640
|
+
"x64"
|
|
2641
|
+
],
|
|
2642
|
+
"optional": true,
|
|
2643
|
+
"os": [
|
|
2644
|
+
"linux"
|
|
2645
|
+
],
|
|
2646
|
+
"engines": {
|
|
2647
|
+
"node": ">= 10"
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
2651
|
+
"version": "14.2.33",
|
|
2652
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.33.tgz",
|
|
2653
|
+
"integrity": "sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==",
|
|
2654
|
+
"cpu": [
|
|
2655
|
+
"arm64"
|
|
2656
|
+
],
|
|
2657
|
+
"optional": true,
|
|
2658
|
+
"os": [
|
|
2659
|
+
"win32"
|
|
2660
|
+
],
|
|
2661
|
+
"engines": {
|
|
2662
|
+
"node": ">= 10"
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2665
|
+
"node_modules/@next/swc-win32-ia32-msvc": {
|
|
2666
|
+
"version": "14.2.33",
|
|
2667
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.33.tgz",
|
|
2668
|
+
"integrity": "sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==",
|
|
2669
|
+
"cpu": [
|
|
2670
|
+
"ia32"
|
|
2671
|
+
],
|
|
2672
|
+
"optional": true,
|
|
2673
|
+
"os": [
|
|
2674
|
+
"win32"
|
|
2675
|
+
],
|
|
2676
|
+
"engines": {
|
|
2677
|
+
"node": ">= 10"
|
|
2678
|
+
}
|
|
2679
|
+
},
|
|
2680
|
+
"node_modules/@next/swc-win32-x64-msvc": {
|
|
2681
|
+
"version": "14.2.33",
|
|
2682
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.33.tgz",
|
|
2683
|
+
"integrity": "sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==",
|
|
2684
|
+
"cpu": [
|
|
2685
|
+
"x64"
|
|
2686
|
+
],
|
|
2687
|
+
"optional": true,
|
|
2688
|
+
"os": [
|
|
2689
|
+
"win32"
|
|
2690
|
+
],
|
|
2691
|
+
"engines": {
|
|
2692
|
+
"node": ">= 10"
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
}
|
|
2696
|
+
}
|