nitrostack 1.0.55 → 1.0.56
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/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +14 -9
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/widgets/hooks/index.d.ts +7 -0
- package/dist/widgets/hooks/index.d.ts.map +1 -0
- package/dist/widgets/hooks/index.js +7 -0
- package/dist/widgets/hooks/index.js.map +1 -0
- package/dist/widgets/hooks/use-display-mode.d.ts +11 -0
- package/dist/widgets/hooks/use-display-mode.d.ts.map +1 -0
- package/dist/widgets/hooks/use-display-mode.js +13 -0
- package/dist/widgets/hooks/use-display-mode.js.map +1 -0
- package/dist/widgets/hooks/use-max-height.d.ts +10 -0
- package/dist/widgets/hooks/use-max-height.d.ts.map +1 -0
- package/dist/widgets/hooks/use-max-height.js +13 -0
- package/dist/widgets/hooks/use-max-height.js.map +1 -0
- package/dist/widgets/hooks/use-openai-global.d.ts +12 -0
- package/dist/widgets/hooks/use-openai-global.d.ts.map +1 -0
- package/dist/widgets/hooks/use-openai-global.js +32 -0
- package/dist/widgets/hooks/use-openai-global.js.map +1 -0
- package/dist/widgets/hooks/use-theme.d.ts +10 -0
- package/dist/widgets/hooks/use-theme.d.ts.map +1 -0
- package/dist/widgets/hooks/use-theme.js +12 -0
- package/dist/widgets/hooks/use-theme.js.map +1 -0
- package/dist/widgets/hooks/use-widget-state.d.ts +18 -0
- package/dist/widgets/hooks/use-widget-state.d.ts.map +1 -0
- package/dist/widgets/hooks/use-widget-state.js +27 -0
- package/dist/widgets/hooks/use-widget-state.js.map +1 -0
- package/dist/widgets/hooks/useWidgetSDK.d.ts +47 -0
- package/dist/widgets/hooks/useWidgetSDK.d.ts.map +1 -0
- package/dist/widgets/hooks/useWidgetSDK.js +67 -0
- package/dist/widgets/hooks/useWidgetSDK.js.map +1 -0
- package/dist/widgets/index.d.ts +7 -1
- package/dist/widgets/index.d.ts.map +1 -1
- package/dist/widgets/index.js +11 -1
- package/dist/widgets/index.js.map +1 -1
- package/dist/widgets/runtime/WidgetLayout.d.ts +32 -0
- package/dist/widgets/runtime/WidgetLayout.d.ts.map +1 -0
- package/dist/widgets/runtime/WidgetLayout.js +143 -0
- package/dist/widgets/runtime/WidgetLayout.js.map +1 -0
- package/dist/widgets/runtime/widget-polyfill.d.ts +1 -0
- package/dist/widgets/runtime/widget-polyfill.d.ts.map +1 -0
- package/dist/widgets/runtime/widget-polyfill.js +28 -0
- package/dist/widgets/runtime/widget-polyfill.js.map +1 -0
- package/dist/widgets/sdk.d.ts +109 -0
- package/dist/widgets/sdk.d.ts.map +1 -0
- package/dist/widgets/sdk.js +221 -0
- package/dist/widgets/sdk.js.map +1 -0
- package/dist/widgets/types.d.ts +89 -0
- package/dist/widgets/types.d.ts.map +1 -0
- package/dist/widgets/types.js +8 -0
- package/dist/widgets/types.js.map +1 -0
- package/dist/widgets/utils/media-queries.d.ts +34 -0
- package/dist/widgets/utils/media-queries.d.ts.map +1 -0
- package/dist/widgets/utils/media-queries.js +42 -0
- package/dist/widgets/utils/media-queries.js.map +1 -0
- package/package.json +1 -1
- package/src/studio/app/chat/page.tsx +274 -137
- package/src/studio/app/globals.css +140 -64
- package/src/studio/branding.md +807 -0
- package/src/studio/components/WidgetRenderer.tsx +222 -16
- package/src/studio/lib/llm-service.ts +39 -39
- package/templates/typescript-oauth/{env.example → .env.example} +4 -10
- package/templates/typescript-oauth/README.md +226 -306
- package/templates/typescript-oauth/package-lock.json +4253 -0
- package/templates/typescript-oauth/package.json +10 -5
- package/templates/typescript-oauth/src/app.module.ts +39 -36
- package/templates/typescript-oauth/src/guards/oauth.guard.ts +0 -1
- package/templates/typescript-oauth/src/index.ts +22 -30
- package/templates/typescript-oauth/src/modules/flights/booking.tools.ts +323 -0
- package/templates/typescript-oauth/src/modules/flights/flights.module.ts +14 -0
- package/templates/typescript-oauth/src/modules/flights/flights.prompts.ts +231 -0
- package/templates/typescript-oauth/src/modules/flights/flights.resources.ts +215 -0
- package/templates/typescript-oauth/src/modules/flights/flights.tools.ts +457 -0
- package/templates/typescript-oauth/src/services/duffel.service.ts +285 -0
- package/templates/typescript-oauth/src/widgets/app/airport-search/page.tsx +270 -0
- package/templates/typescript-oauth/src/widgets/app/flight-details/page.tsx +261 -0
- package/templates/typescript-oauth/src/widgets/app/flight-search-results/page.tsx +378 -0
- package/templates/typescript-oauth/src/widgets/app/globals.css +167 -0
- package/templates/typescript-oauth/src/widgets/app/layout.tsx +6 -2
- package/templates/typescript-oauth/src/widgets/app/order-cancellation/page.tsx +207 -0
- package/templates/typescript-oauth/src/widgets/app/order-summary/page.tsx +245 -0
- package/templates/typescript-oauth/src/widgets/app/payment-confirmation/page.tsx +152 -0
- package/templates/typescript-oauth/src/widgets/app/seat-selection/page.tsx +486 -0
- package/templates/typescript-oauth/src/widgets/next-env.d.ts +5 -0
- package/templates/typescript-oauth/src/widgets/package-lock.json +155 -126
- package/templates/typescript-oauth/src/widgets/widget-manifest.json +374 -27
- package/templates/typescript-pizzaz/IMPLEMENTATION.md +98 -0
- package/templates/typescript-pizzaz/README.md +233 -0
- package/templates/typescript-pizzaz/package.json +31 -0
- package/templates/typescript-pizzaz/src/app.module.ts +28 -0
- package/templates/typescript-pizzaz/src/index.ts +30 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.data.ts +106 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.module.ts +11 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.service.ts +60 -0
- package/templates/typescript-pizzaz/src/modules/pizzaz/pizzaz.tools.ts +197 -0
- package/templates/typescript-pizzaz/src/widgets/app/layout.tsx +18 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-list/page.tsx +272 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-map/page.tsx +216 -0
- package/templates/typescript-pizzaz/src/widgets/app/pizza-shop/page.tsx +374 -0
- package/templates/typescript-pizzaz/src/widgets/components/CompactShopCard.tsx +144 -0
- package/templates/typescript-pizzaz/src/widgets/components/PizzaCard.tsx +191 -0
- package/templates/typescript-pizzaz/src/widgets/package.json +30 -0
- package/templates/typescript-pizzaz/src/widgets/widget-manifest.json +253 -0
- package/templates/typescript-pizzaz/tsconfig.json +30 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.resources.ts +0 -1
- package/templates/typescript-starter/src/widgets/app/calculator-result/page.tsx +102 -56
- package/templates/typescript-starter/src/widgets/app/layout.tsx +6 -2
- package/templates/typescript-auth/AI_AGENT_CLI_REFERENCE.md +0 -702
- package/templates/typescript-auth/AI_AGENT_SDK_REFERENCE.md +0 -1260
- package/templates/typescript-auth/README.md +0 -402
- package/templates/typescript-auth/env.example +0 -25
- package/templates/typescript-auth/package.json +0 -36
- package/templates/typescript-auth/src/app.module.ts +0 -103
- package/templates/typescript-auth/src/db/database.ts +0 -160
- package/templates/typescript-auth/src/db/seed.ts +0 -374
- package/templates/typescript-auth/src/db/setup.ts +0 -87
- package/templates/typescript-auth/src/events/analytics.service.ts +0 -52
- package/templates/typescript-auth/src/events/notification.service.ts +0 -40
- package/templates/typescript-auth/src/filters/global-exception.filter.ts +0 -28
- package/templates/typescript-auth/src/guards/README.md +0 -75
- package/templates/typescript-auth/src/guards/jwt.guard.ts +0 -105
- package/templates/typescript-auth/src/health/database.health.ts +0 -41
- package/templates/typescript-auth/src/index.ts +0 -29
- package/templates/typescript-auth/src/interceptors/transform.interceptor.ts +0 -24
- package/templates/typescript-auth/src/middleware/logging.middleware.ts +0 -42
- package/templates/typescript-auth/src/modules/addresses/addresses.module.ts +0 -16
- package/templates/typescript-auth/src/modules/addresses/addresses.prompts.ts +0 -114
- package/templates/typescript-auth/src/modules/addresses/addresses.resources.ts +0 -40
- package/templates/typescript-auth/src/modules/addresses/addresses.tools.ts +0 -284
- package/templates/typescript-auth/src/modules/auth/auth.module.ts +0 -16
- package/templates/typescript-auth/src/modules/auth/auth.prompts.ts +0 -147
- package/templates/typescript-auth/src/modules/auth/auth.resources.ts +0 -84
- package/templates/typescript-auth/src/modules/auth/auth.tools.ts +0 -139
- package/templates/typescript-auth/src/modules/cart/cart.module.ts +0 -16
- package/templates/typescript-auth/src/modules/cart/cart.prompts.ts +0 -95
- package/templates/typescript-auth/src/modules/cart/cart.resources.ts +0 -44
- package/templates/typescript-auth/src/modules/cart/cart.tools.ts +0 -277
- package/templates/typescript-auth/src/modules/orders/orders.module.ts +0 -16
- package/templates/typescript-auth/src/modules/orders/orders.prompts.ts +0 -88
- package/templates/typescript-auth/src/modules/orders/orders.resources.ts +0 -48
- package/templates/typescript-auth/src/modules/orders/orders.tools.ts +0 -303
- package/templates/typescript-auth/src/modules/products/products.module.ts +0 -16
- package/templates/typescript-auth/src/modules/products/products.prompts.ts +0 -146
- package/templates/typescript-auth/src/modules/products/products.resources.ts +0 -98
- package/templates/typescript-auth/src/modules/products/products.tools.ts +0 -266
- package/templates/typescript-auth/src/pipes/validation.pipe.ts +0 -42
- package/templates/typescript-auth/src/services/database.service.ts +0 -90
- package/templates/typescript-auth/src/widgets/app/add-to-cart/page.tsx +0 -122
- package/templates/typescript-auth/src/widgets/app/address-added/page.tsx +0 -116
- package/templates/typescript-auth/src/widgets/app/address-deleted/page.tsx +0 -105
- package/templates/typescript-auth/src/widgets/app/address-list/page.tsx +0 -139
- package/templates/typescript-auth/src/widgets/app/address-updated/page.tsx +0 -153
- package/templates/typescript-auth/src/widgets/app/cart-cleared/page.tsx +0 -86
- package/templates/typescript-auth/src/widgets/app/cart-updated/page.tsx +0 -116
- package/templates/typescript-auth/src/widgets/app/categories/page.tsx +0 -134
- package/templates/typescript-auth/src/widgets/app/layout.tsx +0 -21
- package/templates/typescript-auth/src/widgets/app/login-result/page.tsx +0 -129
- package/templates/typescript-auth/src/widgets/app/order-confirmation/page.tsx +0 -231
- package/templates/typescript-auth/src/widgets/app/order-details/page.tsx +0 -225
- package/templates/typescript-auth/src/widgets/app/order-history/page.tsx +0 -218
- package/templates/typescript-auth/src/widgets/app/product-card/page.tsx +0 -121
- package/templates/typescript-auth/src/widgets/app/products-grid/page.tsx +0 -198
- package/templates/typescript-auth/src/widgets/app/shopping-cart/page.tsx +0 -187
- package/templates/typescript-auth/src/widgets/app/whoami/page.tsx +0 -165
- package/templates/typescript-auth/src/widgets/next.config.js +0 -38
- package/templates/typescript-auth/src/widgets/package.json +0 -18
- package/templates/typescript-auth/src/widgets/styles/ecommerce.ts +0 -169
- package/templates/typescript-auth/src/widgets/tsconfig.json +0 -28
- package/templates/typescript-auth/src/widgets/types/tool-data.ts +0 -141
- package/templates/typescript-auth/src/widgets/widget-manifest.json +0 -464
- package/templates/typescript-auth/tsconfig.json +0 -27
- package/templates/typescript-auth-api-key/AI_AGENT_CLI_REFERENCE.md +0 -701
- package/templates/typescript-auth-api-key/AI_AGENT_SDK_REFERENCE.md +0 -1260
- package/templates/typescript-auth-api-key/README.md +0 -485
- package/templates/typescript-auth-api-key/env.example +0 -17
- package/templates/typescript-auth-api-key/package.json +0 -21
- package/templates/typescript-auth-api-key/src/app.module.ts +0 -38
- package/templates/typescript-auth-api-key/src/guards/apikey.guard.ts +0 -47
- package/templates/typescript-auth-api-key/src/guards/multi-auth.guard.ts +0 -157
- package/templates/typescript-auth-api-key/src/index.ts +0 -47
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.module.ts +0 -12
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.prompts.ts +0 -73
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.resources.ts +0 -60
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.tools.ts +0 -71
- package/templates/typescript-auth-api-key/src/modules/demo/demo.module.ts +0 -18
- package/templates/typescript-auth-api-key/src/modules/demo/demo.tools.ts +0 -155
- package/templates/typescript-auth-api-key/src/modules/demo/multi-auth.tools.ts +0 -123
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-operations/page.tsx +0 -133
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-result/page.tsx +0 -134
- package/templates/typescript-auth-api-key/src/widgets/app/layout.tsx +0 -14
- package/templates/typescript-auth-api-key/src/widgets/package.json +0 -24
- package/templates/typescript-auth-api-key/src/widgets/widget-manifest.json +0 -48
- package/templates/typescript-auth-api-key/tsconfig.json +0 -23
- package/templates/typescript-oauth/OAUTH_SETUP.md +0 -592
- package/templates/typescript-oauth/src/modules/demo/demo.module.ts +0 -16
- package/templates/typescript-oauth/src/modules/demo/demo.tools.ts +0 -190
- package/templates/typescript-oauth/src/widgets/app/calculator-operations/page.tsx +0 -133
- package/templates/typescript-oauth/src/widgets/app/calculator-result/page.tsx +0 -134
- package/templates/typescript-oauth/src/widgets/out/404.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/WU9THacVqL52RZbrZOLS1/_buildManifest.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/WU9THacVqL52RZbrZOLS1/_ssgManifest.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/117-eb57c7ef86f964a4.js +0 -2
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/_not-found/page-dcb83ba3e4d0aafd.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/calculator-operations/page-b8913a740073ea8a.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/calculator-result/page-ddaaab2fce95dea2.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/app/layout-cbd3ebdc4ecc5247.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/fd9d1056-749e5812300142af.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/framework-f66176bb897dc684.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/main-76df43fcef3db344.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/main-app-f9c40224d04023c5.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/pages/_app-72b849fbd24ac258.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/pages/_error-7ba65e1336b92748.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/_next/static/chunks/webpack-100b9e646d9c912e.js +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-operations.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-operations.txt +0 -7
- package/templates/typescript-oauth/src/widgets/out/calculator-result.html +0 -1
- package/templates/typescript-oauth/src/widgets/out/calculator-result.txt +0 -7
- package/templates/typescript-starter/src/widgets/app/calculator-operations/page.tsx +0 -133
- /package/templates/{typescript-auth-api-key → typescript-oauth}/src/health/system.health.ts +0 -0
- /package/templates/{typescript-auth-api-key → typescript-pizzaz}/src/widgets/next.config.js +0 -0
- /package/templates/{typescript-auth-api-key → typescript-pizzaz}/src/widgets/tsconfig.json +0 -0
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"node_modules/@esbuild/aix-ppc64": {
|
|
44
|
-
"version": "0.
|
|
45
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.
|
|
46
|
-
"integrity": "sha512-
|
|
44
|
+
"version": "0.27.0",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz",
|
|
46
|
+
"integrity": "sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==",
|
|
47
47
|
"cpu": [
|
|
48
48
|
"ppc64"
|
|
49
49
|
],
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
"node_modules/@esbuild/android-arm": {
|
|
60
|
-
"version": "0.
|
|
61
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.
|
|
62
|
-
"integrity": "sha512-
|
|
60
|
+
"version": "0.27.0",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.0.tgz",
|
|
62
|
+
"integrity": "sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==",
|
|
63
63
|
"cpu": [
|
|
64
64
|
"arm"
|
|
65
65
|
],
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"node_modules/@esbuild/android-arm64": {
|
|
76
|
-
"version": "0.
|
|
77
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.
|
|
78
|
-
"integrity": "sha512-
|
|
76
|
+
"version": "0.27.0",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.0.tgz",
|
|
78
|
+
"integrity": "sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==",
|
|
79
79
|
"cpu": [
|
|
80
80
|
"arm64"
|
|
81
81
|
],
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
91
|
"node_modules/@esbuild/android-x64": {
|
|
92
|
-
"version": "0.
|
|
93
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.
|
|
94
|
-
"integrity": "sha512-
|
|
92
|
+
"version": "0.27.0",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.0.tgz",
|
|
94
|
+
"integrity": "sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==",
|
|
95
95
|
"cpu": [
|
|
96
96
|
"x64"
|
|
97
97
|
],
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
107
|
"node_modules/@esbuild/darwin-arm64": {
|
|
108
|
-
"version": "0.
|
|
109
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.
|
|
110
|
-
"integrity": "sha512-
|
|
108
|
+
"version": "0.27.0",
|
|
109
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.0.tgz",
|
|
110
|
+
"integrity": "sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==",
|
|
111
111
|
"cpu": [
|
|
112
112
|
"arm64"
|
|
113
113
|
],
|
|
@@ -121,9 +121,9 @@
|
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"node_modules/@esbuild/darwin-x64": {
|
|
124
|
-
"version": "0.
|
|
125
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.
|
|
126
|
-
"integrity": "sha512-
|
|
124
|
+
"version": "0.27.0",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.0.tgz",
|
|
126
|
+
"integrity": "sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==",
|
|
127
127
|
"cpu": [
|
|
128
128
|
"x64"
|
|
129
129
|
],
|
|
@@ -137,9 +137,9 @@
|
|
|
137
137
|
}
|
|
138
138
|
},
|
|
139
139
|
"node_modules/@esbuild/freebsd-arm64": {
|
|
140
|
-
"version": "0.
|
|
141
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.
|
|
142
|
-
"integrity": "sha512-
|
|
140
|
+
"version": "0.27.0",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.0.tgz",
|
|
142
|
+
"integrity": "sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==",
|
|
143
143
|
"cpu": [
|
|
144
144
|
"arm64"
|
|
145
145
|
],
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
}
|
|
154
154
|
},
|
|
155
155
|
"node_modules/@esbuild/freebsd-x64": {
|
|
156
|
-
"version": "0.
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.
|
|
158
|
-
"integrity": "sha512-
|
|
156
|
+
"version": "0.27.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.0.tgz",
|
|
158
|
+
"integrity": "sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==",
|
|
159
159
|
"cpu": [
|
|
160
160
|
"x64"
|
|
161
161
|
],
|
|
@@ -169,9 +169,9 @@
|
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
"node_modules/@esbuild/linux-arm": {
|
|
172
|
-
"version": "0.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.
|
|
174
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "0.27.0",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.0.tgz",
|
|
174
|
+
"integrity": "sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==",
|
|
175
175
|
"cpu": [
|
|
176
176
|
"arm"
|
|
177
177
|
],
|
|
@@ -185,9 +185,9 @@
|
|
|
185
185
|
}
|
|
186
186
|
},
|
|
187
187
|
"node_modules/@esbuild/linux-arm64": {
|
|
188
|
-
"version": "0.
|
|
189
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.
|
|
190
|
-
"integrity": "sha512-
|
|
188
|
+
"version": "0.27.0",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.0.tgz",
|
|
190
|
+
"integrity": "sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==",
|
|
191
191
|
"cpu": [
|
|
192
192
|
"arm64"
|
|
193
193
|
],
|
|
@@ -201,9 +201,9 @@
|
|
|
201
201
|
}
|
|
202
202
|
},
|
|
203
203
|
"node_modules/@esbuild/linux-ia32": {
|
|
204
|
-
"version": "0.
|
|
205
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.
|
|
206
|
-
"integrity": "sha512-
|
|
204
|
+
"version": "0.27.0",
|
|
205
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.0.tgz",
|
|
206
|
+
"integrity": "sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==",
|
|
207
207
|
"cpu": [
|
|
208
208
|
"ia32"
|
|
209
209
|
],
|
|
@@ -217,9 +217,9 @@
|
|
|
217
217
|
}
|
|
218
218
|
},
|
|
219
219
|
"node_modules/@esbuild/linux-loong64": {
|
|
220
|
-
"version": "0.
|
|
221
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.
|
|
222
|
-
"integrity": "sha512-
|
|
220
|
+
"version": "0.27.0",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.0.tgz",
|
|
222
|
+
"integrity": "sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==",
|
|
223
223
|
"cpu": [
|
|
224
224
|
"loong64"
|
|
225
225
|
],
|
|
@@ -233,9 +233,9 @@
|
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
235
|
"node_modules/@esbuild/linux-mips64el": {
|
|
236
|
-
"version": "0.
|
|
237
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.
|
|
238
|
-
"integrity": "sha512-
|
|
236
|
+
"version": "0.27.0",
|
|
237
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.0.tgz",
|
|
238
|
+
"integrity": "sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==",
|
|
239
239
|
"cpu": [
|
|
240
240
|
"mips64el"
|
|
241
241
|
],
|
|
@@ -249,9 +249,9 @@
|
|
|
249
249
|
}
|
|
250
250
|
},
|
|
251
251
|
"node_modules/@esbuild/linux-ppc64": {
|
|
252
|
-
"version": "0.
|
|
253
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.
|
|
254
|
-
"integrity": "sha512-
|
|
252
|
+
"version": "0.27.0",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.0.tgz",
|
|
254
|
+
"integrity": "sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==",
|
|
255
255
|
"cpu": [
|
|
256
256
|
"ppc64"
|
|
257
257
|
],
|
|
@@ -265,9 +265,9 @@
|
|
|
265
265
|
}
|
|
266
266
|
},
|
|
267
267
|
"node_modules/@esbuild/linux-riscv64": {
|
|
268
|
-
"version": "0.
|
|
269
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.
|
|
270
|
-
"integrity": "sha512-
|
|
268
|
+
"version": "0.27.0",
|
|
269
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.0.tgz",
|
|
270
|
+
"integrity": "sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==",
|
|
271
271
|
"cpu": [
|
|
272
272
|
"riscv64"
|
|
273
273
|
],
|
|
@@ -281,9 +281,9 @@
|
|
|
281
281
|
}
|
|
282
282
|
},
|
|
283
283
|
"node_modules/@esbuild/linux-s390x": {
|
|
284
|
-
"version": "0.
|
|
285
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.
|
|
286
|
-
"integrity": "sha512-
|
|
284
|
+
"version": "0.27.0",
|
|
285
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.0.tgz",
|
|
286
|
+
"integrity": "sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==",
|
|
287
287
|
"cpu": [
|
|
288
288
|
"s390x"
|
|
289
289
|
],
|
|
@@ -297,9 +297,9 @@
|
|
|
297
297
|
}
|
|
298
298
|
},
|
|
299
299
|
"node_modules/@esbuild/linux-x64": {
|
|
300
|
-
"version": "0.
|
|
301
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.
|
|
302
|
-
"integrity": "sha512-
|
|
300
|
+
"version": "0.27.0",
|
|
301
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.0.tgz",
|
|
302
|
+
"integrity": "sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==",
|
|
303
303
|
"cpu": [
|
|
304
304
|
"x64"
|
|
305
305
|
],
|
|
@@ -313,9 +313,9 @@
|
|
|
313
313
|
}
|
|
314
314
|
},
|
|
315
315
|
"node_modules/@esbuild/netbsd-arm64": {
|
|
316
|
-
"version": "0.
|
|
317
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.
|
|
318
|
-
"integrity": "sha512-
|
|
316
|
+
"version": "0.27.0",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.0.tgz",
|
|
318
|
+
"integrity": "sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==",
|
|
319
319
|
"cpu": [
|
|
320
320
|
"arm64"
|
|
321
321
|
],
|
|
@@ -329,9 +329,9 @@
|
|
|
329
329
|
}
|
|
330
330
|
},
|
|
331
331
|
"node_modules/@esbuild/netbsd-x64": {
|
|
332
|
-
"version": "0.
|
|
333
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.
|
|
334
|
-
"integrity": "sha512-
|
|
332
|
+
"version": "0.27.0",
|
|
333
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.0.tgz",
|
|
334
|
+
"integrity": "sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==",
|
|
335
335
|
"cpu": [
|
|
336
336
|
"x64"
|
|
337
337
|
],
|
|
@@ -345,9 +345,9 @@
|
|
|
345
345
|
}
|
|
346
346
|
},
|
|
347
347
|
"node_modules/@esbuild/openbsd-arm64": {
|
|
348
|
-
"version": "0.
|
|
349
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.
|
|
350
|
-
"integrity": "sha512-
|
|
348
|
+
"version": "0.27.0",
|
|
349
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.0.tgz",
|
|
350
|
+
"integrity": "sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==",
|
|
351
351
|
"cpu": [
|
|
352
352
|
"arm64"
|
|
353
353
|
],
|
|
@@ -361,9 +361,9 @@
|
|
|
361
361
|
}
|
|
362
362
|
},
|
|
363
363
|
"node_modules/@esbuild/openbsd-x64": {
|
|
364
|
-
"version": "0.
|
|
365
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.
|
|
366
|
-
"integrity": "sha512
|
|
364
|
+
"version": "0.27.0",
|
|
365
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.0.tgz",
|
|
366
|
+
"integrity": "sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==",
|
|
367
367
|
"cpu": [
|
|
368
368
|
"x64"
|
|
369
369
|
],
|
|
@@ -376,10 +376,26 @@
|
|
|
376
376
|
"node": ">=18"
|
|
377
377
|
}
|
|
378
378
|
},
|
|
379
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
380
|
+
"version": "0.27.0",
|
|
381
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.0.tgz",
|
|
382
|
+
"integrity": "sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==",
|
|
383
|
+
"cpu": [
|
|
384
|
+
"arm64"
|
|
385
|
+
],
|
|
386
|
+
"license": "MIT",
|
|
387
|
+
"optional": true,
|
|
388
|
+
"os": [
|
|
389
|
+
"openharmony"
|
|
390
|
+
],
|
|
391
|
+
"engines": {
|
|
392
|
+
"node": ">=18"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
379
395
|
"node_modules/@esbuild/sunos-x64": {
|
|
380
|
-
"version": "0.
|
|
381
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.
|
|
382
|
-
"integrity": "sha512-
|
|
396
|
+
"version": "0.27.0",
|
|
397
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.0.tgz",
|
|
398
|
+
"integrity": "sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==",
|
|
383
399
|
"cpu": [
|
|
384
400
|
"x64"
|
|
385
401
|
],
|
|
@@ -393,9 +409,9 @@
|
|
|
393
409
|
}
|
|
394
410
|
},
|
|
395
411
|
"node_modules/@esbuild/win32-arm64": {
|
|
396
|
-
"version": "0.
|
|
397
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.
|
|
398
|
-
"integrity": "sha512-
|
|
412
|
+
"version": "0.27.0",
|
|
413
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.0.tgz",
|
|
414
|
+
"integrity": "sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==",
|
|
399
415
|
"cpu": [
|
|
400
416
|
"arm64"
|
|
401
417
|
],
|
|
@@ -409,9 +425,9 @@
|
|
|
409
425
|
}
|
|
410
426
|
},
|
|
411
427
|
"node_modules/@esbuild/win32-ia32": {
|
|
412
|
-
"version": "0.
|
|
413
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.
|
|
414
|
-
"integrity": "sha512-
|
|
428
|
+
"version": "0.27.0",
|
|
429
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.0.tgz",
|
|
430
|
+
"integrity": "sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==",
|
|
415
431
|
"cpu": [
|
|
416
432
|
"ia32"
|
|
417
433
|
],
|
|
@@ -425,9 +441,9 @@
|
|
|
425
441
|
}
|
|
426
442
|
},
|
|
427
443
|
"node_modules/@esbuild/win32-x64": {
|
|
428
|
-
"version": "0.
|
|
429
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.
|
|
430
|
-
"integrity": "sha512-
|
|
444
|
+
"version": "0.27.0",
|
|
445
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.0.tgz",
|
|
446
|
+
"integrity": "sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==",
|
|
431
447
|
"cpu": [
|
|
432
448
|
"x64"
|
|
433
449
|
],
|
|
@@ -496,9 +512,9 @@
|
|
|
496
512
|
}
|
|
497
513
|
},
|
|
498
514
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
499
|
-
"version": "1.
|
|
500
|
-
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.
|
|
501
|
-
"integrity": "sha512-
|
|
515
|
+
"version": "1.23.0",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.23.0.tgz",
|
|
517
|
+
"integrity": "sha512-MCGd4K9aZKvuSqdoBkdMvZNcYXCkZRYVs/Gh92mdV5IHbctX9H9uIvd4X93+9g8tBbXv08sxc/QHXTzf8y65bA==",
|
|
502
518
|
"license": "MIT",
|
|
503
519
|
"dependencies": {
|
|
504
520
|
"ajv": "^8.17.1",
|
|
@@ -512,18 +528,22 @@
|
|
|
512
528
|
"express-rate-limit": "^7.5.0",
|
|
513
529
|
"pkce-challenge": "^5.0.0",
|
|
514
530
|
"raw-body": "^3.0.0",
|
|
515
|
-
"zod": "^3.
|
|
516
|
-
"zod-to-json-schema": "^3.
|
|
531
|
+
"zod": "^3.25 || ^4.0",
|
|
532
|
+
"zod-to-json-schema": "^3.25.0"
|
|
517
533
|
},
|
|
518
534
|
"engines": {
|
|
519
535
|
"node": ">=18"
|
|
520
536
|
},
|
|
521
537
|
"peerDependencies": {
|
|
522
|
-
"@cfworker/json-schema": "^4.1.1"
|
|
538
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
539
|
+
"zod": "^3.25 || ^4.0"
|
|
523
540
|
},
|
|
524
541
|
"peerDependenciesMeta": {
|
|
525
542
|
"@cfworker/json-schema": {
|
|
526
543
|
"optional": true
|
|
544
|
+
},
|
|
545
|
+
"zod": {
|
|
546
|
+
"optional": false
|
|
527
547
|
}
|
|
528
548
|
}
|
|
529
549
|
},
|
|
@@ -541,23 +561,27 @@
|
|
|
541
561
|
}
|
|
542
562
|
},
|
|
543
563
|
"node_modules/@modelcontextprotocol/sdk/node_modules/body-parser": {
|
|
544
|
-
"version": "2.2.
|
|
545
|
-
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.
|
|
546
|
-
"integrity": "sha512-
|
|
564
|
+
"version": "2.2.1",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.1.tgz",
|
|
566
|
+
"integrity": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==",
|
|
547
567
|
"license": "MIT",
|
|
548
568
|
"dependencies": {
|
|
549
569
|
"bytes": "^3.1.2",
|
|
550
570
|
"content-type": "^1.0.5",
|
|
551
|
-
"debug": "^4.4.
|
|
571
|
+
"debug": "^4.4.3",
|
|
552
572
|
"http-errors": "^2.0.0",
|
|
553
|
-
"iconv-lite": "^0.
|
|
573
|
+
"iconv-lite": "^0.7.0",
|
|
554
574
|
"on-finished": "^2.4.1",
|
|
555
575
|
"qs": "^6.14.0",
|
|
556
|
-
"raw-body": "^3.0.
|
|
557
|
-
"type-is": "^2.0.
|
|
576
|
+
"raw-body": "^3.0.1",
|
|
577
|
+
"type-is": "^2.0.1"
|
|
558
578
|
},
|
|
559
579
|
"engines": {
|
|
560
580
|
"node": ">=18"
|
|
581
|
+
},
|
|
582
|
+
"funding": {
|
|
583
|
+
"type": "opencollective",
|
|
584
|
+
"url": "https://opencollective.com/express"
|
|
561
585
|
}
|
|
562
586
|
},
|
|
563
587
|
"node_modules/@modelcontextprotocol/sdk/node_modules/content-disposition": {
|
|
@@ -668,15 +692,19 @@
|
|
|
668
692
|
}
|
|
669
693
|
},
|
|
670
694
|
"node_modules/@modelcontextprotocol/sdk/node_modules/iconv-lite": {
|
|
671
|
-
"version": "0.
|
|
672
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.
|
|
673
|
-
"integrity": "sha512-
|
|
695
|
+
"version": "0.7.0",
|
|
696
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
|
|
697
|
+
"integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
|
|
674
698
|
"license": "MIT",
|
|
675
699
|
"dependencies": {
|
|
676
700
|
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
677
701
|
},
|
|
678
702
|
"engines": {
|
|
679
703
|
"node": ">=0.10.0"
|
|
704
|
+
},
|
|
705
|
+
"funding": {
|
|
706
|
+
"type": "opencollective",
|
|
707
|
+
"url": "https://opencollective.com/express"
|
|
680
708
|
}
|
|
681
709
|
},
|
|
682
710
|
"node_modules/@modelcontextprotocol/sdk/node_modules/media-typer": {
|
|
@@ -1377,9 +1405,9 @@
|
|
|
1377
1405
|
}
|
|
1378
1406
|
},
|
|
1379
1407
|
"node_modules/caniuse-lite": {
|
|
1380
|
-
"version": "1.0.
|
|
1381
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
1382
|
-
"integrity": "sha512-
|
|
1408
|
+
"version": "1.0.30001757",
|
|
1409
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz",
|
|
1410
|
+
"integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==",
|
|
1383
1411
|
"funding": [
|
|
1384
1412
|
{
|
|
1385
1413
|
"type": "opencollective",
|
|
@@ -1835,9 +1863,9 @@
|
|
|
1835
1863
|
}
|
|
1836
1864
|
},
|
|
1837
1865
|
"node_modules/esbuild": {
|
|
1838
|
-
"version": "0.
|
|
1839
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.
|
|
1840
|
-
"integrity": "sha512
|
|
1866
|
+
"version": "0.27.0",
|
|
1867
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.0.tgz",
|
|
1868
|
+
"integrity": "sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==",
|
|
1841
1869
|
"hasInstallScript": true,
|
|
1842
1870
|
"license": "MIT",
|
|
1843
1871
|
"bin": {
|
|
@@ -1847,31 +1875,32 @@
|
|
|
1847
1875
|
"node": ">=18"
|
|
1848
1876
|
},
|
|
1849
1877
|
"optionalDependencies": {
|
|
1850
|
-
"@esbuild/aix-ppc64": "0.
|
|
1851
|
-
"@esbuild/android-arm": "0.
|
|
1852
|
-
"@esbuild/android-arm64": "0.
|
|
1853
|
-
"@esbuild/android-x64": "0.
|
|
1854
|
-
"@esbuild/darwin-arm64": "0.
|
|
1855
|
-
"@esbuild/darwin-x64": "0.
|
|
1856
|
-
"@esbuild/freebsd-arm64": "0.
|
|
1857
|
-
"@esbuild/freebsd-x64": "0.
|
|
1858
|
-
"@esbuild/linux-arm": "0.
|
|
1859
|
-
"@esbuild/linux-arm64": "0.
|
|
1860
|
-
"@esbuild/linux-ia32": "0.
|
|
1861
|
-
"@esbuild/linux-loong64": "0.
|
|
1862
|
-
"@esbuild/linux-mips64el": "0.
|
|
1863
|
-
"@esbuild/linux-ppc64": "0.
|
|
1864
|
-
"@esbuild/linux-riscv64": "0.
|
|
1865
|
-
"@esbuild/linux-s390x": "0.
|
|
1866
|
-
"@esbuild/linux-x64": "0.
|
|
1867
|
-
"@esbuild/netbsd-arm64": "0.
|
|
1868
|
-
"@esbuild/netbsd-x64": "0.
|
|
1869
|
-
"@esbuild/openbsd-arm64": "0.
|
|
1870
|
-
"@esbuild/openbsd-x64": "0.
|
|
1871
|
-
"@esbuild/
|
|
1872
|
-
"@esbuild/
|
|
1873
|
-
"@esbuild/win32-
|
|
1874
|
-
"@esbuild/win32-
|
|
1878
|
+
"@esbuild/aix-ppc64": "0.27.0",
|
|
1879
|
+
"@esbuild/android-arm": "0.27.0",
|
|
1880
|
+
"@esbuild/android-arm64": "0.27.0",
|
|
1881
|
+
"@esbuild/android-x64": "0.27.0",
|
|
1882
|
+
"@esbuild/darwin-arm64": "0.27.0",
|
|
1883
|
+
"@esbuild/darwin-x64": "0.27.0",
|
|
1884
|
+
"@esbuild/freebsd-arm64": "0.27.0",
|
|
1885
|
+
"@esbuild/freebsd-x64": "0.27.0",
|
|
1886
|
+
"@esbuild/linux-arm": "0.27.0",
|
|
1887
|
+
"@esbuild/linux-arm64": "0.27.0",
|
|
1888
|
+
"@esbuild/linux-ia32": "0.27.0",
|
|
1889
|
+
"@esbuild/linux-loong64": "0.27.0",
|
|
1890
|
+
"@esbuild/linux-mips64el": "0.27.0",
|
|
1891
|
+
"@esbuild/linux-ppc64": "0.27.0",
|
|
1892
|
+
"@esbuild/linux-riscv64": "0.27.0",
|
|
1893
|
+
"@esbuild/linux-s390x": "0.27.0",
|
|
1894
|
+
"@esbuild/linux-x64": "0.27.0",
|
|
1895
|
+
"@esbuild/netbsd-arm64": "0.27.0",
|
|
1896
|
+
"@esbuild/netbsd-x64": "0.27.0",
|
|
1897
|
+
"@esbuild/openbsd-arm64": "0.27.0",
|
|
1898
|
+
"@esbuild/openbsd-x64": "0.27.0",
|
|
1899
|
+
"@esbuild/openharmony-arm64": "0.27.0",
|
|
1900
|
+
"@esbuild/sunos-x64": "0.27.0",
|
|
1901
|
+
"@esbuild/win32-arm64": "0.27.0",
|
|
1902
|
+
"@esbuild/win32-ia32": "0.27.0",
|
|
1903
|
+
"@esbuild/win32-x64": "0.27.0"
|
|
1875
1904
|
}
|
|
1876
1905
|
},
|
|
1877
1906
|
"node_modules/escape-html": {
|
|
@@ -3101,9 +3130,9 @@
|
|
|
3101
3130
|
}
|
|
3102
3131
|
},
|
|
3103
3132
|
"node_modules/nitrostack": {
|
|
3104
|
-
"version": "1.0.
|
|
3105
|
-
"resolved": "https://registry.npmjs.org/nitrostack/-/nitrostack-1.0.
|
|
3106
|
-
"integrity": "sha512-
|
|
3133
|
+
"version": "1.0.55",
|
|
3134
|
+
"resolved": "https://registry.npmjs.org/nitrostack/-/nitrostack-1.0.55.tgz",
|
|
3135
|
+
"integrity": "sha512-5iox/CylnGukObF8Um+8bJAX9ZR4MvffYr020vhKvteRscrC/Urq86qCiVJlBu/3K6IEF683Gl+5hDdcoHTu0Q==",
|
|
3107
3136
|
"license": "Apache-2.0",
|
|
3108
3137
|
"dependencies": {
|
|
3109
3138
|
"@google/generative-ai": "^0.24.1",
|
|
@@ -3114,7 +3143,7 @@
|
|
|
3114
3143
|
"commander": "^12.1.0",
|
|
3115
3144
|
"cors": "^2.8.5",
|
|
3116
3145
|
"dotenv": "^17.2.3",
|
|
3117
|
-
"esbuild": "^0.
|
|
3146
|
+
"esbuild": "^0.27.0",
|
|
3118
3147
|
"express": "^4.21.2",
|
|
3119
3148
|
"fs-extra": "^11.3.2",
|
|
3120
3149
|
"http-proxy-middleware": "^3.0.3",
|