react-doctor-cli-dev 1.0.0

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.
Files changed (82) hide show
  1. package/backend/.env +3 -0
  2. package/backend/dist/index.js +43 -0
  3. package/backend/dist/middleware/auth.js +16 -0
  4. package/backend/dist/routes/reports.js +93 -0
  5. package/backend/package-lock.json +2000 -0
  6. package/backend/package.json +30 -0
  7. package/backend/src/db.ts +24 -0
  8. package/backend/src/index.ts +49 -0
  9. package/backend/src/middleware/auth.ts +21 -0
  10. package/backend/src/routes/reports.ts +110 -0
  11. package/backend/tsconfig.json +12 -0
  12. package/cli/bin/react-doctor.js +29 -0
  13. package/cli/dist/commands/analyze.js +125 -0
  14. package/cli/dist/commands/full.js +366 -0
  15. package/cli/dist/commands/install.js +138 -0
  16. package/cli/dist/commands/profile.js +166 -0
  17. package/cli/dist/index.js +78 -0
  18. package/cli/dist/ui.js +113 -0
  19. package/cli/package-lock.json +936 -0
  20. package/cli/package.json +34 -0
  21. package/cli/src/commands/analyze.ts +162 -0
  22. package/cli/src/commands/full.ts +574 -0
  23. package/cli/src/commands/install.ts +163 -0
  24. package/cli/src/commands/profile.ts +246 -0
  25. package/cli/src/index.ts +84 -0
  26. package/cli/src/ui.ts +120 -0
  27. package/cli/tsconfig.json +16 -0
  28. package/core/report-compiler/index.ts +359 -0
  29. package/core/report-compiler/test-report-compiler.ts +126 -0
  30. package/core/rule-engine/context-builder.ts +146 -0
  31. package/core/rule-engine/evaluator.ts +131 -0
  32. package/core/rule-engine/index.ts +222 -0
  33. package/core/rule-engine/rules.json +304 -0
  34. package/core/rule-engine/suggestion-builder.ts +209 -0
  35. package/core/rule-engine/test-rule-engine.ts +144 -0
  36. package/core/rule-engine/types.ts +202 -0
  37. package/core/runtime/profiler/browser.ts +121 -0
  38. package/core/runtime/profiler/collectors.ts +216 -0
  39. package/core/runtime/profiler/index.ts +311 -0
  40. package/core/runtime/profiler/porfiler.ts +967 -0
  41. package/core/runtime/profiler/route-scanner.ts +76 -0
  42. package/core/runtime/profiler/score.ts +59 -0
  43. package/core/runtime/profiler/server.ts +115 -0
  44. package/core/runtime/profiler/types.ts +65 -0
  45. package/core/runtime/test-runtime-profiler.ts +226 -0
  46. package/core/static-ana/static/analyzer.ts +145 -0
  47. package/core/static-ana/static/ast-parser.ts +31 -0
  48. package/core/static-ana/static/detectors/console-log.ts +49 -0
  49. package/core/static-ana/static/detectors/dead-code.ts +51 -0
  50. package/core/static-ana/static/detectors/effect-loop.ts +45 -0
  51. package/core/static-ana/static/detectors/index.ts +16 -0
  52. package/core/static-ana/static/detectors/inline-function.ts +59 -0
  53. package/core/static-ana/static/detectors/inline-style.ts +52 -0
  54. package/core/static-ana/static/detectors/large-component.ts +79 -0
  55. package/core/static-ana/static/detectors/missing-key.ts +56 -0
  56. package/core/static-ana/static/detectors/missing-memo.ts +59 -0
  57. package/core/static-ana/static/detectors/prop-drilling.ts +66 -0
  58. package/core/static-ana/static/helpers.ts +81 -0
  59. package/core/static-ana/static/scanner.ts +93 -0
  60. package/core/static-ana/test-analyzer.ts +115 -0
  61. package/core/static-ana/types.ts +25 -0
  62. package/core/tests/mock-react-project/src/app.tsx +22 -0
  63. package/core/tests/mock-react-project/src/components/Button.tsx +9 -0
  64. package/core/tests/mock-react-project/src/components/Header.tsx +3 -0
  65. package/core/tests/mock-react-project/src/components/ListTesting.tsx +51 -0
  66. package/core/tests/mock-react-project/src/components/UserDashboard.tsx +66 -0
  67. package/core/tests/mock-react-project/src/utils.ts +4 -0
  68. package/package.json +55 -0
  69. package/react-doctor-cli-dev-1.0.0.tgz +0 -0
  70. package/shared/dist/index.d.ts +2 -0
  71. package/shared/dist/index.js +19 -0
  72. package/shared/dist/schemas.d.ts +91 -0
  73. package/shared/dist/schemas.js +82 -0
  74. package/shared/dist/types.d.ts +44 -0
  75. package/shared/dist/types.js +2 -0
  76. package/shared/package-lock.json +47 -0
  77. package/shared/package.json +21 -0
  78. package/shared/src/index.ts +4 -0
  79. package/shared/src/schemas.ts +136 -0
  80. package/shared/src/types.ts +137 -0
  81. package/shared/tsconfig.json +15 -0
  82. package/tsconfig.json +25 -0
@@ -0,0 +1,2000 @@
1
+ {
2
+ "name": "backend",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "backend",
9
+ "version": "1.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "better-sqlite3": "^12.10.0",
13
+ "cors": "^2.8.6",
14
+ "dotenv": "^17.4.2",
15
+ "express": "^5.2.1",
16
+ "helmet": "^8.2.0"
17
+ },
18
+ "devDependencies": {
19
+ "@types/better-sqlite3": "^7.6.13",
20
+ "@types/cors": "^2.8.19",
21
+ "@types/express": "^5.0.6",
22
+ "@types/node": "^25.9.1",
23
+ "nodemon": "^3.1.14",
24
+ "ts-node": "^10.9.2",
25
+ "typescript": "^6.0.3"
26
+ }
27
+ },
28
+ "node_modules/@cspotcode/source-map-support": {
29
+ "version": "0.8.1",
30
+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
31
+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
32
+ "dev": true,
33
+ "license": "MIT",
34
+ "dependencies": {
35
+ "@jridgewell/trace-mapping": "0.3.9"
36
+ },
37
+ "engines": {
38
+ "node": ">=12"
39
+ }
40
+ },
41
+ "node_modules/@jridgewell/resolve-uri": {
42
+ "version": "3.1.2",
43
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
44
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
45
+ "dev": true,
46
+ "license": "MIT",
47
+ "engines": {
48
+ "node": ">=6.0.0"
49
+ }
50
+ },
51
+ "node_modules/@jridgewell/sourcemap-codec": {
52
+ "version": "1.5.5",
53
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
54
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
55
+ "dev": true,
56
+ "license": "MIT"
57
+ },
58
+ "node_modules/@jridgewell/trace-mapping": {
59
+ "version": "0.3.9",
60
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
61
+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
62
+ "dev": true,
63
+ "license": "MIT",
64
+ "dependencies": {
65
+ "@jridgewell/resolve-uri": "^3.0.3",
66
+ "@jridgewell/sourcemap-codec": "^1.4.10"
67
+ }
68
+ },
69
+ "node_modules/@tsconfig/node10": {
70
+ "version": "1.0.12",
71
+ "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.12.tgz",
72
+ "integrity": "sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==",
73
+ "dev": true,
74
+ "license": "MIT"
75
+ },
76
+ "node_modules/@tsconfig/node12": {
77
+ "version": "1.0.11",
78
+ "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
79
+ "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
80
+ "dev": true,
81
+ "license": "MIT"
82
+ },
83
+ "node_modules/@tsconfig/node14": {
84
+ "version": "1.0.3",
85
+ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
86
+ "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
87
+ "dev": true,
88
+ "license": "MIT"
89
+ },
90
+ "node_modules/@tsconfig/node16": {
91
+ "version": "1.0.4",
92
+ "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
93
+ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
94
+ "dev": true,
95
+ "license": "MIT"
96
+ },
97
+ "node_modules/@types/better-sqlite3": {
98
+ "version": "7.6.13",
99
+ "resolved": "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.6.13.tgz",
100
+ "integrity": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==",
101
+ "dev": true,
102
+ "license": "MIT",
103
+ "dependencies": {
104
+ "@types/node": "*"
105
+ }
106
+ },
107
+ "node_modules/@types/body-parser": {
108
+ "version": "1.19.6",
109
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz",
110
+ "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==",
111
+ "dev": true,
112
+ "license": "MIT",
113
+ "dependencies": {
114
+ "@types/connect": "*",
115
+ "@types/node": "*"
116
+ }
117
+ },
118
+ "node_modules/@types/connect": {
119
+ "version": "3.4.38",
120
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
121
+ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
122
+ "dev": true,
123
+ "license": "MIT",
124
+ "dependencies": {
125
+ "@types/node": "*"
126
+ }
127
+ },
128
+ "node_modules/@types/cors": {
129
+ "version": "2.8.19",
130
+ "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz",
131
+ "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==",
132
+ "dev": true,
133
+ "license": "MIT",
134
+ "dependencies": {
135
+ "@types/node": "*"
136
+ }
137
+ },
138
+ "node_modules/@types/express": {
139
+ "version": "5.0.6",
140
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.6.tgz",
141
+ "integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==",
142
+ "dev": true,
143
+ "license": "MIT",
144
+ "dependencies": {
145
+ "@types/body-parser": "*",
146
+ "@types/express-serve-static-core": "^5.0.0",
147
+ "@types/serve-static": "^2"
148
+ }
149
+ },
150
+ "node_modules/@types/express-serve-static-core": {
151
+ "version": "5.1.1",
152
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz",
153
+ "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==",
154
+ "dev": true,
155
+ "license": "MIT",
156
+ "dependencies": {
157
+ "@types/node": "*",
158
+ "@types/qs": "*",
159
+ "@types/range-parser": "*",
160
+ "@types/send": "*"
161
+ }
162
+ },
163
+ "node_modules/@types/http-errors": {
164
+ "version": "2.0.5",
165
+ "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz",
166
+ "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==",
167
+ "dev": true,
168
+ "license": "MIT"
169
+ },
170
+ "node_modules/@types/node": {
171
+ "version": "25.9.1",
172
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz",
173
+ "integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
174
+ "dev": true,
175
+ "license": "MIT",
176
+ "dependencies": {
177
+ "undici-types": ">=7.24.0 <7.24.7"
178
+ }
179
+ },
180
+ "node_modules/@types/qs": {
181
+ "version": "6.15.1",
182
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz",
183
+ "integrity": "sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==",
184
+ "dev": true,
185
+ "license": "MIT"
186
+ },
187
+ "node_modules/@types/range-parser": {
188
+ "version": "1.2.7",
189
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
190
+ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
191
+ "dev": true,
192
+ "license": "MIT"
193
+ },
194
+ "node_modules/@types/send": {
195
+ "version": "1.2.1",
196
+ "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz",
197
+ "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==",
198
+ "dev": true,
199
+ "license": "MIT",
200
+ "dependencies": {
201
+ "@types/node": "*"
202
+ }
203
+ },
204
+ "node_modules/@types/serve-static": {
205
+ "version": "2.2.0",
206
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz",
207
+ "integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==",
208
+ "dev": true,
209
+ "license": "MIT",
210
+ "dependencies": {
211
+ "@types/http-errors": "*",
212
+ "@types/node": "*"
213
+ }
214
+ },
215
+ "node_modules/accepts": {
216
+ "version": "2.0.0",
217
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
218
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
219
+ "license": "MIT",
220
+ "dependencies": {
221
+ "mime-types": "^3.0.0",
222
+ "negotiator": "^1.0.0"
223
+ },
224
+ "engines": {
225
+ "node": ">= 0.6"
226
+ }
227
+ },
228
+ "node_modules/acorn": {
229
+ "version": "8.16.0",
230
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
231
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
232
+ "dev": true,
233
+ "license": "MIT",
234
+ "bin": {
235
+ "acorn": "bin/acorn"
236
+ },
237
+ "engines": {
238
+ "node": ">=0.4.0"
239
+ }
240
+ },
241
+ "node_modules/acorn-walk": {
242
+ "version": "8.3.5",
243
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz",
244
+ "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==",
245
+ "dev": true,
246
+ "license": "MIT",
247
+ "dependencies": {
248
+ "acorn": "^8.11.0"
249
+ },
250
+ "engines": {
251
+ "node": ">=0.4.0"
252
+ }
253
+ },
254
+ "node_modules/anymatch": {
255
+ "version": "3.1.3",
256
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
257
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
258
+ "dev": true,
259
+ "license": "ISC",
260
+ "dependencies": {
261
+ "normalize-path": "^3.0.0",
262
+ "picomatch": "^2.0.4"
263
+ },
264
+ "engines": {
265
+ "node": ">= 8"
266
+ }
267
+ },
268
+ "node_modules/arg": {
269
+ "version": "4.1.3",
270
+ "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
271
+ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
272
+ "dev": true,
273
+ "license": "MIT"
274
+ },
275
+ "node_modules/balanced-match": {
276
+ "version": "4.0.4",
277
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
278
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
279
+ "dev": true,
280
+ "license": "MIT",
281
+ "engines": {
282
+ "node": "18 || 20 || >=22"
283
+ }
284
+ },
285
+ "node_modules/base64-js": {
286
+ "version": "1.5.1",
287
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
288
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
289
+ "funding": [
290
+ {
291
+ "type": "github",
292
+ "url": "https://github.com/sponsors/feross"
293
+ },
294
+ {
295
+ "type": "patreon",
296
+ "url": "https://www.patreon.com/feross"
297
+ },
298
+ {
299
+ "type": "consulting",
300
+ "url": "https://feross.org/support"
301
+ }
302
+ ],
303
+ "license": "MIT"
304
+ },
305
+ "node_modules/better-sqlite3": {
306
+ "version": "12.10.0",
307
+ "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.10.0.tgz",
308
+ "integrity": "sha512-CyzaZRQKyHkB2ZInfTTl2nvT33EbDpjkLEbE8/Zck3Ll6O0qqvuGdrJ45HgtH+HykRg88ITY3AdreBGN70aBSQ==",
309
+ "hasInstallScript": true,
310
+ "license": "MIT",
311
+ "dependencies": {
312
+ "bindings": "^1.5.0",
313
+ "prebuild-install": "^7.1.1"
314
+ },
315
+ "engines": {
316
+ "node": "20.x || 22.x || 23.x || 24.x || 25.x || 26.x"
317
+ }
318
+ },
319
+ "node_modules/binary-extensions": {
320
+ "version": "2.3.0",
321
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
322
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
323
+ "dev": true,
324
+ "license": "MIT",
325
+ "engines": {
326
+ "node": ">=8"
327
+ },
328
+ "funding": {
329
+ "url": "https://github.com/sponsors/sindresorhus"
330
+ }
331
+ },
332
+ "node_modules/bindings": {
333
+ "version": "1.5.0",
334
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
335
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
336
+ "license": "MIT",
337
+ "dependencies": {
338
+ "file-uri-to-path": "1.0.0"
339
+ }
340
+ },
341
+ "node_modules/bl": {
342
+ "version": "4.1.0",
343
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
344
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
345
+ "license": "MIT",
346
+ "dependencies": {
347
+ "buffer": "^5.5.0",
348
+ "inherits": "^2.0.4",
349
+ "readable-stream": "^3.4.0"
350
+ }
351
+ },
352
+ "node_modules/body-parser": {
353
+ "version": "2.2.2",
354
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
355
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
356
+ "license": "MIT",
357
+ "dependencies": {
358
+ "bytes": "^3.1.2",
359
+ "content-type": "^1.0.5",
360
+ "debug": "^4.4.3",
361
+ "http-errors": "^2.0.0",
362
+ "iconv-lite": "^0.7.0",
363
+ "on-finished": "^2.4.1",
364
+ "qs": "^6.14.1",
365
+ "raw-body": "^3.0.1",
366
+ "type-is": "^2.0.1"
367
+ },
368
+ "engines": {
369
+ "node": ">=18"
370
+ },
371
+ "funding": {
372
+ "type": "opencollective",
373
+ "url": "https://opencollective.com/express"
374
+ }
375
+ },
376
+ "node_modules/brace-expansion": {
377
+ "version": "5.0.6",
378
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
379
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
380
+ "dev": true,
381
+ "license": "MIT",
382
+ "dependencies": {
383
+ "balanced-match": "^4.0.2"
384
+ },
385
+ "engines": {
386
+ "node": "18 || 20 || >=22"
387
+ }
388
+ },
389
+ "node_modules/braces": {
390
+ "version": "3.0.3",
391
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
392
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
393
+ "dev": true,
394
+ "license": "MIT",
395
+ "dependencies": {
396
+ "fill-range": "^7.1.1"
397
+ },
398
+ "engines": {
399
+ "node": ">=8"
400
+ }
401
+ },
402
+ "node_modules/buffer": {
403
+ "version": "5.7.1",
404
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
405
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
406
+ "funding": [
407
+ {
408
+ "type": "github",
409
+ "url": "https://github.com/sponsors/feross"
410
+ },
411
+ {
412
+ "type": "patreon",
413
+ "url": "https://www.patreon.com/feross"
414
+ },
415
+ {
416
+ "type": "consulting",
417
+ "url": "https://feross.org/support"
418
+ }
419
+ ],
420
+ "license": "MIT",
421
+ "dependencies": {
422
+ "base64-js": "^1.3.1",
423
+ "ieee754": "^1.1.13"
424
+ }
425
+ },
426
+ "node_modules/bytes": {
427
+ "version": "3.1.2",
428
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
429
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
430
+ "license": "MIT",
431
+ "engines": {
432
+ "node": ">= 0.8"
433
+ }
434
+ },
435
+ "node_modules/call-bind-apply-helpers": {
436
+ "version": "1.0.2",
437
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
438
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
439
+ "license": "MIT",
440
+ "dependencies": {
441
+ "es-errors": "^1.3.0",
442
+ "function-bind": "^1.1.2"
443
+ },
444
+ "engines": {
445
+ "node": ">= 0.4"
446
+ }
447
+ },
448
+ "node_modules/call-bound": {
449
+ "version": "1.0.4",
450
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
451
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
452
+ "license": "MIT",
453
+ "dependencies": {
454
+ "call-bind-apply-helpers": "^1.0.2",
455
+ "get-intrinsic": "^1.3.0"
456
+ },
457
+ "engines": {
458
+ "node": ">= 0.4"
459
+ },
460
+ "funding": {
461
+ "url": "https://github.com/sponsors/ljharb"
462
+ }
463
+ },
464
+ "node_modules/chokidar": {
465
+ "version": "3.6.0",
466
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
467
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
468
+ "dev": true,
469
+ "license": "MIT",
470
+ "dependencies": {
471
+ "anymatch": "~3.1.2",
472
+ "braces": "~3.0.2",
473
+ "glob-parent": "~5.1.2",
474
+ "is-binary-path": "~2.1.0",
475
+ "is-glob": "~4.0.1",
476
+ "normalize-path": "~3.0.0",
477
+ "readdirp": "~3.6.0"
478
+ },
479
+ "engines": {
480
+ "node": ">= 8.10.0"
481
+ },
482
+ "funding": {
483
+ "url": "https://paulmillr.com/funding/"
484
+ },
485
+ "optionalDependencies": {
486
+ "fsevents": "~2.3.2"
487
+ }
488
+ },
489
+ "node_modules/chownr": {
490
+ "version": "1.1.4",
491
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
492
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
493
+ "license": "ISC"
494
+ },
495
+ "node_modules/content-disposition": {
496
+ "version": "1.1.0",
497
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
498
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
499
+ "license": "MIT",
500
+ "engines": {
501
+ "node": ">=18"
502
+ },
503
+ "funding": {
504
+ "type": "opencollective",
505
+ "url": "https://opencollective.com/express"
506
+ }
507
+ },
508
+ "node_modules/content-type": {
509
+ "version": "1.0.5",
510
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
511
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
512
+ "license": "MIT",
513
+ "engines": {
514
+ "node": ">= 0.6"
515
+ }
516
+ },
517
+ "node_modules/cookie": {
518
+ "version": "0.7.2",
519
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
520
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
521
+ "license": "MIT",
522
+ "engines": {
523
+ "node": ">= 0.6"
524
+ }
525
+ },
526
+ "node_modules/cookie-signature": {
527
+ "version": "1.2.2",
528
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
529
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
530
+ "license": "MIT",
531
+ "engines": {
532
+ "node": ">=6.6.0"
533
+ }
534
+ },
535
+ "node_modules/cors": {
536
+ "version": "2.8.6",
537
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
538
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
539
+ "license": "MIT",
540
+ "dependencies": {
541
+ "object-assign": "^4",
542
+ "vary": "^1"
543
+ },
544
+ "engines": {
545
+ "node": ">= 0.10"
546
+ },
547
+ "funding": {
548
+ "type": "opencollective",
549
+ "url": "https://opencollective.com/express"
550
+ }
551
+ },
552
+ "node_modules/create-require": {
553
+ "version": "1.1.1",
554
+ "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
555
+ "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
556
+ "dev": true,
557
+ "license": "MIT"
558
+ },
559
+ "node_modules/debug": {
560
+ "version": "4.4.3",
561
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
562
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
563
+ "license": "MIT",
564
+ "dependencies": {
565
+ "ms": "^2.1.3"
566
+ },
567
+ "engines": {
568
+ "node": ">=6.0"
569
+ },
570
+ "peerDependenciesMeta": {
571
+ "supports-color": {
572
+ "optional": true
573
+ }
574
+ }
575
+ },
576
+ "node_modules/decompress-response": {
577
+ "version": "6.0.0",
578
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
579
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
580
+ "license": "MIT",
581
+ "dependencies": {
582
+ "mimic-response": "^3.1.0"
583
+ },
584
+ "engines": {
585
+ "node": ">=10"
586
+ },
587
+ "funding": {
588
+ "url": "https://github.com/sponsors/sindresorhus"
589
+ }
590
+ },
591
+ "node_modules/deep-extend": {
592
+ "version": "0.6.0",
593
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
594
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
595
+ "license": "MIT",
596
+ "engines": {
597
+ "node": ">=4.0.0"
598
+ }
599
+ },
600
+ "node_modules/depd": {
601
+ "version": "2.0.0",
602
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
603
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
604
+ "license": "MIT",
605
+ "engines": {
606
+ "node": ">= 0.8"
607
+ }
608
+ },
609
+ "node_modules/detect-libc": {
610
+ "version": "2.1.2",
611
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
612
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
613
+ "license": "Apache-2.0",
614
+ "engines": {
615
+ "node": ">=8"
616
+ }
617
+ },
618
+ "node_modules/diff": {
619
+ "version": "4.0.4",
620
+ "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz",
621
+ "integrity": "sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==",
622
+ "dev": true,
623
+ "license": "BSD-3-Clause",
624
+ "engines": {
625
+ "node": ">=0.3.1"
626
+ }
627
+ },
628
+ "node_modules/dotenv": {
629
+ "version": "17.4.2",
630
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
631
+ "integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
632
+ "license": "BSD-2-Clause",
633
+ "engines": {
634
+ "node": ">=12"
635
+ },
636
+ "funding": {
637
+ "url": "https://dotenvx.com"
638
+ }
639
+ },
640
+ "node_modules/dunder-proto": {
641
+ "version": "1.0.1",
642
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
643
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
644
+ "license": "MIT",
645
+ "dependencies": {
646
+ "call-bind-apply-helpers": "^1.0.1",
647
+ "es-errors": "^1.3.0",
648
+ "gopd": "^1.2.0"
649
+ },
650
+ "engines": {
651
+ "node": ">= 0.4"
652
+ }
653
+ },
654
+ "node_modules/ee-first": {
655
+ "version": "1.1.1",
656
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
657
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
658
+ "license": "MIT"
659
+ },
660
+ "node_modules/encodeurl": {
661
+ "version": "2.0.0",
662
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
663
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
664
+ "license": "MIT",
665
+ "engines": {
666
+ "node": ">= 0.8"
667
+ }
668
+ },
669
+ "node_modules/end-of-stream": {
670
+ "version": "1.4.5",
671
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
672
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
673
+ "license": "MIT",
674
+ "dependencies": {
675
+ "once": "^1.4.0"
676
+ }
677
+ },
678
+ "node_modules/es-define-property": {
679
+ "version": "1.0.1",
680
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
681
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
682
+ "license": "MIT",
683
+ "engines": {
684
+ "node": ">= 0.4"
685
+ }
686
+ },
687
+ "node_modules/es-errors": {
688
+ "version": "1.3.0",
689
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
690
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
691
+ "license": "MIT",
692
+ "engines": {
693
+ "node": ">= 0.4"
694
+ }
695
+ },
696
+ "node_modules/es-object-atoms": {
697
+ "version": "1.1.2",
698
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
699
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
700
+ "license": "MIT",
701
+ "dependencies": {
702
+ "es-errors": "^1.3.0"
703
+ },
704
+ "engines": {
705
+ "node": ">= 0.4"
706
+ }
707
+ },
708
+ "node_modules/escape-html": {
709
+ "version": "1.0.3",
710
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
711
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
712
+ "license": "MIT"
713
+ },
714
+ "node_modules/etag": {
715
+ "version": "1.8.1",
716
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
717
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
718
+ "license": "MIT",
719
+ "engines": {
720
+ "node": ">= 0.6"
721
+ }
722
+ },
723
+ "node_modules/expand-template": {
724
+ "version": "2.0.3",
725
+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
726
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
727
+ "license": "(MIT OR WTFPL)",
728
+ "engines": {
729
+ "node": ">=6"
730
+ }
731
+ },
732
+ "node_modules/express": {
733
+ "version": "5.2.1",
734
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
735
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
736
+ "license": "MIT",
737
+ "dependencies": {
738
+ "accepts": "^2.0.0",
739
+ "body-parser": "^2.2.1",
740
+ "content-disposition": "^1.0.0",
741
+ "content-type": "^1.0.5",
742
+ "cookie": "^0.7.1",
743
+ "cookie-signature": "^1.2.1",
744
+ "debug": "^4.4.0",
745
+ "depd": "^2.0.0",
746
+ "encodeurl": "^2.0.0",
747
+ "escape-html": "^1.0.3",
748
+ "etag": "^1.8.1",
749
+ "finalhandler": "^2.1.0",
750
+ "fresh": "^2.0.0",
751
+ "http-errors": "^2.0.0",
752
+ "merge-descriptors": "^2.0.0",
753
+ "mime-types": "^3.0.0",
754
+ "on-finished": "^2.4.1",
755
+ "once": "^1.4.0",
756
+ "parseurl": "^1.3.3",
757
+ "proxy-addr": "^2.0.7",
758
+ "qs": "^6.14.0",
759
+ "range-parser": "^1.2.1",
760
+ "router": "^2.2.0",
761
+ "send": "^1.1.0",
762
+ "serve-static": "^2.2.0",
763
+ "statuses": "^2.0.1",
764
+ "type-is": "^2.0.1",
765
+ "vary": "^1.1.2"
766
+ },
767
+ "engines": {
768
+ "node": ">= 18"
769
+ },
770
+ "funding": {
771
+ "type": "opencollective",
772
+ "url": "https://opencollective.com/express"
773
+ }
774
+ },
775
+ "node_modules/file-uri-to-path": {
776
+ "version": "1.0.0",
777
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
778
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
779
+ "license": "MIT"
780
+ },
781
+ "node_modules/fill-range": {
782
+ "version": "7.1.1",
783
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
784
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
785
+ "dev": true,
786
+ "license": "MIT",
787
+ "dependencies": {
788
+ "to-regex-range": "^5.0.1"
789
+ },
790
+ "engines": {
791
+ "node": ">=8"
792
+ }
793
+ },
794
+ "node_modules/finalhandler": {
795
+ "version": "2.1.1",
796
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
797
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
798
+ "license": "MIT",
799
+ "dependencies": {
800
+ "debug": "^4.4.0",
801
+ "encodeurl": "^2.0.0",
802
+ "escape-html": "^1.0.3",
803
+ "on-finished": "^2.4.1",
804
+ "parseurl": "^1.3.3",
805
+ "statuses": "^2.0.1"
806
+ },
807
+ "engines": {
808
+ "node": ">= 18.0.0"
809
+ },
810
+ "funding": {
811
+ "type": "opencollective",
812
+ "url": "https://opencollective.com/express"
813
+ }
814
+ },
815
+ "node_modules/forwarded": {
816
+ "version": "0.2.0",
817
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
818
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
819
+ "license": "MIT",
820
+ "engines": {
821
+ "node": ">= 0.6"
822
+ }
823
+ },
824
+ "node_modules/fresh": {
825
+ "version": "2.0.0",
826
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
827
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
828
+ "license": "MIT",
829
+ "engines": {
830
+ "node": ">= 0.8"
831
+ }
832
+ },
833
+ "node_modules/fs-constants": {
834
+ "version": "1.0.0",
835
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
836
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
837
+ "license": "MIT"
838
+ },
839
+ "node_modules/fsevents": {
840
+ "version": "2.3.3",
841
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
842
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
843
+ "dev": true,
844
+ "hasInstallScript": true,
845
+ "license": "MIT",
846
+ "optional": true,
847
+ "os": [
848
+ "darwin"
849
+ ],
850
+ "engines": {
851
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
852
+ }
853
+ },
854
+ "node_modules/function-bind": {
855
+ "version": "1.1.2",
856
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
857
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
858
+ "license": "MIT",
859
+ "funding": {
860
+ "url": "https://github.com/sponsors/ljharb"
861
+ }
862
+ },
863
+ "node_modules/get-intrinsic": {
864
+ "version": "1.3.0",
865
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
866
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
867
+ "license": "MIT",
868
+ "dependencies": {
869
+ "call-bind-apply-helpers": "^1.0.2",
870
+ "es-define-property": "^1.0.1",
871
+ "es-errors": "^1.3.0",
872
+ "es-object-atoms": "^1.1.1",
873
+ "function-bind": "^1.1.2",
874
+ "get-proto": "^1.0.1",
875
+ "gopd": "^1.2.0",
876
+ "has-symbols": "^1.1.0",
877
+ "hasown": "^2.0.2",
878
+ "math-intrinsics": "^1.1.0"
879
+ },
880
+ "engines": {
881
+ "node": ">= 0.4"
882
+ },
883
+ "funding": {
884
+ "url": "https://github.com/sponsors/ljharb"
885
+ }
886
+ },
887
+ "node_modules/get-proto": {
888
+ "version": "1.0.1",
889
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
890
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
891
+ "license": "MIT",
892
+ "dependencies": {
893
+ "dunder-proto": "^1.0.1",
894
+ "es-object-atoms": "^1.0.0"
895
+ },
896
+ "engines": {
897
+ "node": ">= 0.4"
898
+ }
899
+ },
900
+ "node_modules/github-from-package": {
901
+ "version": "0.0.0",
902
+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
903
+ "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
904
+ "license": "MIT"
905
+ },
906
+ "node_modules/glob-parent": {
907
+ "version": "5.1.2",
908
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
909
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
910
+ "dev": true,
911
+ "license": "ISC",
912
+ "dependencies": {
913
+ "is-glob": "^4.0.1"
914
+ },
915
+ "engines": {
916
+ "node": ">= 6"
917
+ }
918
+ },
919
+ "node_modules/gopd": {
920
+ "version": "1.2.0",
921
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
922
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
923
+ "license": "MIT",
924
+ "engines": {
925
+ "node": ">= 0.4"
926
+ },
927
+ "funding": {
928
+ "url": "https://github.com/sponsors/ljharb"
929
+ }
930
+ },
931
+ "node_modules/has-flag": {
932
+ "version": "3.0.0",
933
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
934
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
935
+ "dev": true,
936
+ "license": "MIT",
937
+ "engines": {
938
+ "node": ">=4"
939
+ }
940
+ },
941
+ "node_modules/has-symbols": {
942
+ "version": "1.1.0",
943
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
944
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
945
+ "license": "MIT",
946
+ "engines": {
947
+ "node": ">= 0.4"
948
+ },
949
+ "funding": {
950
+ "url": "https://github.com/sponsors/ljharb"
951
+ }
952
+ },
953
+ "node_modules/hasown": {
954
+ "version": "2.0.3",
955
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
956
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
957
+ "license": "MIT",
958
+ "dependencies": {
959
+ "function-bind": "^1.1.2"
960
+ },
961
+ "engines": {
962
+ "node": ">= 0.4"
963
+ }
964
+ },
965
+ "node_modules/helmet": {
966
+ "version": "8.2.0",
967
+ "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.2.0.tgz",
968
+ "integrity": "sha512-DRgTIUgnWcJ62KyarxxziuqYxKGnR6Rgg19BlbucN/dpmJbl1XOit6qvoOX0ZT+HhWe5OUVhU/a1zpGyc1xA0Q==",
969
+ "license": "MIT",
970
+ "engines": {
971
+ "node": ">=18.0.0"
972
+ },
973
+ "funding": {
974
+ "url": "https://github.com/sponsors/EvanHahn"
975
+ }
976
+ },
977
+ "node_modules/http-errors": {
978
+ "version": "2.0.1",
979
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
980
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
981
+ "license": "MIT",
982
+ "dependencies": {
983
+ "depd": "~2.0.0",
984
+ "inherits": "~2.0.4",
985
+ "setprototypeof": "~1.2.0",
986
+ "statuses": "~2.0.2",
987
+ "toidentifier": "~1.0.1"
988
+ },
989
+ "engines": {
990
+ "node": ">= 0.8"
991
+ },
992
+ "funding": {
993
+ "type": "opencollective",
994
+ "url": "https://opencollective.com/express"
995
+ }
996
+ },
997
+ "node_modules/iconv-lite": {
998
+ "version": "0.7.2",
999
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
1000
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
1001
+ "license": "MIT",
1002
+ "dependencies": {
1003
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1004
+ },
1005
+ "engines": {
1006
+ "node": ">=0.10.0"
1007
+ },
1008
+ "funding": {
1009
+ "type": "opencollective",
1010
+ "url": "https://opencollective.com/express"
1011
+ }
1012
+ },
1013
+ "node_modules/ieee754": {
1014
+ "version": "1.2.1",
1015
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
1016
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
1017
+ "funding": [
1018
+ {
1019
+ "type": "github",
1020
+ "url": "https://github.com/sponsors/feross"
1021
+ },
1022
+ {
1023
+ "type": "patreon",
1024
+ "url": "https://www.patreon.com/feross"
1025
+ },
1026
+ {
1027
+ "type": "consulting",
1028
+ "url": "https://feross.org/support"
1029
+ }
1030
+ ],
1031
+ "license": "BSD-3-Clause"
1032
+ },
1033
+ "node_modules/ignore-by-default": {
1034
+ "version": "1.0.1",
1035
+ "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
1036
+ "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
1037
+ "dev": true,
1038
+ "license": "ISC"
1039
+ },
1040
+ "node_modules/inherits": {
1041
+ "version": "2.0.4",
1042
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1043
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1044
+ "license": "ISC"
1045
+ },
1046
+ "node_modules/ini": {
1047
+ "version": "1.3.8",
1048
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
1049
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
1050
+ "license": "ISC"
1051
+ },
1052
+ "node_modules/ipaddr.js": {
1053
+ "version": "1.9.1",
1054
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1055
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
1056
+ "license": "MIT",
1057
+ "engines": {
1058
+ "node": ">= 0.10"
1059
+ }
1060
+ },
1061
+ "node_modules/is-binary-path": {
1062
+ "version": "2.1.0",
1063
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1064
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1065
+ "dev": true,
1066
+ "license": "MIT",
1067
+ "dependencies": {
1068
+ "binary-extensions": "^2.0.0"
1069
+ },
1070
+ "engines": {
1071
+ "node": ">=8"
1072
+ }
1073
+ },
1074
+ "node_modules/is-extglob": {
1075
+ "version": "2.1.1",
1076
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1077
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1078
+ "dev": true,
1079
+ "license": "MIT",
1080
+ "engines": {
1081
+ "node": ">=0.10.0"
1082
+ }
1083
+ },
1084
+ "node_modules/is-glob": {
1085
+ "version": "4.0.3",
1086
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1087
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1088
+ "dev": true,
1089
+ "license": "MIT",
1090
+ "dependencies": {
1091
+ "is-extglob": "^2.1.1"
1092
+ },
1093
+ "engines": {
1094
+ "node": ">=0.10.0"
1095
+ }
1096
+ },
1097
+ "node_modules/is-number": {
1098
+ "version": "7.0.0",
1099
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1100
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1101
+ "dev": true,
1102
+ "license": "MIT",
1103
+ "engines": {
1104
+ "node": ">=0.12.0"
1105
+ }
1106
+ },
1107
+ "node_modules/is-promise": {
1108
+ "version": "4.0.0",
1109
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
1110
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
1111
+ "license": "MIT"
1112
+ },
1113
+ "node_modules/make-error": {
1114
+ "version": "1.3.6",
1115
+ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
1116
+ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
1117
+ "dev": true,
1118
+ "license": "ISC"
1119
+ },
1120
+ "node_modules/math-intrinsics": {
1121
+ "version": "1.1.0",
1122
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1123
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1124
+ "license": "MIT",
1125
+ "engines": {
1126
+ "node": ">= 0.4"
1127
+ }
1128
+ },
1129
+ "node_modules/media-typer": {
1130
+ "version": "1.1.0",
1131
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
1132
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
1133
+ "license": "MIT",
1134
+ "engines": {
1135
+ "node": ">= 0.8"
1136
+ }
1137
+ },
1138
+ "node_modules/merge-descriptors": {
1139
+ "version": "2.0.0",
1140
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
1141
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
1142
+ "license": "MIT",
1143
+ "engines": {
1144
+ "node": ">=18"
1145
+ },
1146
+ "funding": {
1147
+ "url": "https://github.com/sponsors/sindresorhus"
1148
+ }
1149
+ },
1150
+ "node_modules/mime-db": {
1151
+ "version": "1.54.0",
1152
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
1153
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
1154
+ "license": "MIT",
1155
+ "engines": {
1156
+ "node": ">= 0.6"
1157
+ }
1158
+ },
1159
+ "node_modules/mime-types": {
1160
+ "version": "3.0.2",
1161
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
1162
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
1163
+ "license": "MIT",
1164
+ "dependencies": {
1165
+ "mime-db": "^1.54.0"
1166
+ },
1167
+ "engines": {
1168
+ "node": ">=18"
1169
+ },
1170
+ "funding": {
1171
+ "type": "opencollective",
1172
+ "url": "https://opencollective.com/express"
1173
+ }
1174
+ },
1175
+ "node_modules/mimic-response": {
1176
+ "version": "3.1.0",
1177
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
1178
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
1179
+ "license": "MIT",
1180
+ "engines": {
1181
+ "node": ">=10"
1182
+ },
1183
+ "funding": {
1184
+ "url": "https://github.com/sponsors/sindresorhus"
1185
+ }
1186
+ },
1187
+ "node_modules/minimatch": {
1188
+ "version": "10.2.5",
1189
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
1190
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
1191
+ "dev": true,
1192
+ "license": "BlueOak-1.0.0",
1193
+ "dependencies": {
1194
+ "brace-expansion": "^5.0.5"
1195
+ },
1196
+ "engines": {
1197
+ "node": "18 || 20 || >=22"
1198
+ },
1199
+ "funding": {
1200
+ "url": "https://github.com/sponsors/isaacs"
1201
+ }
1202
+ },
1203
+ "node_modules/minimist": {
1204
+ "version": "1.2.8",
1205
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
1206
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
1207
+ "license": "MIT",
1208
+ "funding": {
1209
+ "url": "https://github.com/sponsors/ljharb"
1210
+ }
1211
+ },
1212
+ "node_modules/mkdirp-classic": {
1213
+ "version": "0.5.3",
1214
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
1215
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
1216
+ "license": "MIT"
1217
+ },
1218
+ "node_modules/ms": {
1219
+ "version": "2.1.3",
1220
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1221
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1222
+ "license": "MIT"
1223
+ },
1224
+ "node_modules/napi-build-utils": {
1225
+ "version": "2.0.0",
1226
+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
1227
+ "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
1228
+ "license": "MIT"
1229
+ },
1230
+ "node_modules/negotiator": {
1231
+ "version": "1.0.0",
1232
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
1233
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
1234
+ "license": "MIT",
1235
+ "engines": {
1236
+ "node": ">= 0.6"
1237
+ }
1238
+ },
1239
+ "node_modules/node-abi": {
1240
+ "version": "3.92.0",
1241
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.92.0.tgz",
1242
+ "integrity": "sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ==",
1243
+ "license": "MIT",
1244
+ "dependencies": {
1245
+ "semver": "^7.3.5"
1246
+ },
1247
+ "engines": {
1248
+ "node": ">=10"
1249
+ }
1250
+ },
1251
+ "node_modules/nodemon": {
1252
+ "version": "3.1.14",
1253
+ "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.14.tgz",
1254
+ "integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==",
1255
+ "dev": true,
1256
+ "license": "MIT",
1257
+ "dependencies": {
1258
+ "chokidar": "^3.5.2",
1259
+ "debug": "^4",
1260
+ "ignore-by-default": "^1.0.1",
1261
+ "minimatch": "^10.2.1",
1262
+ "pstree.remy": "^1.1.8",
1263
+ "semver": "^7.5.3",
1264
+ "simple-update-notifier": "^2.0.0",
1265
+ "supports-color": "^5.5.0",
1266
+ "touch": "^3.1.0",
1267
+ "undefsafe": "^2.0.5"
1268
+ },
1269
+ "bin": {
1270
+ "nodemon": "bin/nodemon.js"
1271
+ },
1272
+ "engines": {
1273
+ "node": ">=10"
1274
+ },
1275
+ "funding": {
1276
+ "type": "opencollective",
1277
+ "url": "https://opencollective.com/nodemon"
1278
+ }
1279
+ },
1280
+ "node_modules/normalize-path": {
1281
+ "version": "3.0.0",
1282
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1283
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1284
+ "dev": true,
1285
+ "license": "MIT",
1286
+ "engines": {
1287
+ "node": ">=0.10.0"
1288
+ }
1289
+ },
1290
+ "node_modules/object-assign": {
1291
+ "version": "4.1.1",
1292
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1293
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1294
+ "license": "MIT",
1295
+ "engines": {
1296
+ "node": ">=0.10.0"
1297
+ }
1298
+ },
1299
+ "node_modules/object-inspect": {
1300
+ "version": "1.13.4",
1301
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
1302
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
1303
+ "license": "MIT",
1304
+ "engines": {
1305
+ "node": ">= 0.4"
1306
+ },
1307
+ "funding": {
1308
+ "url": "https://github.com/sponsors/ljharb"
1309
+ }
1310
+ },
1311
+ "node_modules/on-finished": {
1312
+ "version": "2.4.1",
1313
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1314
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1315
+ "license": "MIT",
1316
+ "dependencies": {
1317
+ "ee-first": "1.1.1"
1318
+ },
1319
+ "engines": {
1320
+ "node": ">= 0.8"
1321
+ }
1322
+ },
1323
+ "node_modules/once": {
1324
+ "version": "1.4.0",
1325
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1326
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1327
+ "license": "ISC",
1328
+ "dependencies": {
1329
+ "wrappy": "1"
1330
+ }
1331
+ },
1332
+ "node_modules/parseurl": {
1333
+ "version": "1.3.3",
1334
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1335
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1336
+ "license": "MIT",
1337
+ "engines": {
1338
+ "node": ">= 0.8"
1339
+ }
1340
+ },
1341
+ "node_modules/path-to-regexp": {
1342
+ "version": "8.4.2",
1343
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
1344
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
1345
+ "license": "MIT",
1346
+ "funding": {
1347
+ "type": "opencollective",
1348
+ "url": "https://opencollective.com/express"
1349
+ }
1350
+ },
1351
+ "node_modules/picomatch": {
1352
+ "version": "2.3.2",
1353
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
1354
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
1355
+ "dev": true,
1356
+ "license": "MIT",
1357
+ "engines": {
1358
+ "node": ">=8.6"
1359
+ },
1360
+ "funding": {
1361
+ "url": "https://github.com/sponsors/jonschlinkert"
1362
+ }
1363
+ },
1364
+ "node_modules/prebuild-install": {
1365
+ "version": "7.1.3",
1366
+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
1367
+ "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
1368
+ "deprecated": "No longer maintained. Please contact the author of the relevant native addon; alternatives are available.",
1369
+ "license": "MIT",
1370
+ "dependencies": {
1371
+ "detect-libc": "^2.0.0",
1372
+ "expand-template": "^2.0.3",
1373
+ "github-from-package": "0.0.0",
1374
+ "minimist": "^1.2.3",
1375
+ "mkdirp-classic": "^0.5.3",
1376
+ "napi-build-utils": "^2.0.0",
1377
+ "node-abi": "^3.3.0",
1378
+ "pump": "^3.0.0",
1379
+ "rc": "^1.2.7",
1380
+ "simple-get": "^4.0.0",
1381
+ "tar-fs": "^2.0.0",
1382
+ "tunnel-agent": "^0.6.0"
1383
+ },
1384
+ "bin": {
1385
+ "prebuild-install": "bin.js"
1386
+ },
1387
+ "engines": {
1388
+ "node": ">=10"
1389
+ }
1390
+ },
1391
+ "node_modules/proxy-addr": {
1392
+ "version": "2.0.7",
1393
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1394
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1395
+ "license": "MIT",
1396
+ "dependencies": {
1397
+ "forwarded": "0.2.0",
1398
+ "ipaddr.js": "1.9.1"
1399
+ },
1400
+ "engines": {
1401
+ "node": ">= 0.10"
1402
+ }
1403
+ },
1404
+ "node_modules/pstree.remy": {
1405
+ "version": "1.1.8",
1406
+ "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
1407
+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1408
+ "dev": true,
1409
+ "license": "MIT"
1410
+ },
1411
+ "node_modules/pump": {
1412
+ "version": "3.0.4",
1413
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
1414
+ "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
1415
+ "license": "MIT",
1416
+ "dependencies": {
1417
+ "end-of-stream": "^1.1.0",
1418
+ "once": "^1.3.1"
1419
+ }
1420
+ },
1421
+ "node_modules/qs": {
1422
+ "version": "6.15.2",
1423
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
1424
+ "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
1425
+ "license": "BSD-3-Clause",
1426
+ "dependencies": {
1427
+ "side-channel": "^1.1.0"
1428
+ },
1429
+ "engines": {
1430
+ "node": ">=0.6"
1431
+ },
1432
+ "funding": {
1433
+ "url": "https://github.com/sponsors/ljharb"
1434
+ }
1435
+ },
1436
+ "node_modules/range-parser": {
1437
+ "version": "1.2.1",
1438
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1439
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1440
+ "license": "MIT",
1441
+ "engines": {
1442
+ "node": ">= 0.6"
1443
+ }
1444
+ },
1445
+ "node_modules/raw-body": {
1446
+ "version": "3.0.2",
1447
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
1448
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
1449
+ "license": "MIT",
1450
+ "dependencies": {
1451
+ "bytes": "~3.1.2",
1452
+ "http-errors": "~2.0.1",
1453
+ "iconv-lite": "~0.7.0",
1454
+ "unpipe": "~1.0.0"
1455
+ },
1456
+ "engines": {
1457
+ "node": ">= 0.10"
1458
+ }
1459
+ },
1460
+ "node_modules/rc": {
1461
+ "version": "1.2.8",
1462
+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
1463
+ "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
1464
+ "license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
1465
+ "dependencies": {
1466
+ "deep-extend": "^0.6.0",
1467
+ "ini": "~1.3.0",
1468
+ "minimist": "^1.2.0",
1469
+ "strip-json-comments": "~2.0.1"
1470
+ },
1471
+ "bin": {
1472
+ "rc": "cli.js"
1473
+ }
1474
+ },
1475
+ "node_modules/readable-stream": {
1476
+ "version": "3.6.2",
1477
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1478
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1479
+ "license": "MIT",
1480
+ "dependencies": {
1481
+ "inherits": "^2.0.3",
1482
+ "string_decoder": "^1.1.1",
1483
+ "util-deprecate": "^1.0.1"
1484
+ },
1485
+ "engines": {
1486
+ "node": ">= 6"
1487
+ }
1488
+ },
1489
+ "node_modules/readdirp": {
1490
+ "version": "3.6.0",
1491
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1492
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1493
+ "dev": true,
1494
+ "license": "MIT",
1495
+ "dependencies": {
1496
+ "picomatch": "^2.2.1"
1497
+ },
1498
+ "engines": {
1499
+ "node": ">=8.10.0"
1500
+ }
1501
+ },
1502
+ "node_modules/router": {
1503
+ "version": "2.2.0",
1504
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
1505
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
1506
+ "license": "MIT",
1507
+ "dependencies": {
1508
+ "debug": "^4.4.0",
1509
+ "depd": "^2.0.0",
1510
+ "is-promise": "^4.0.0",
1511
+ "parseurl": "^1.3.3",
1512
+ "path-to-regexp": "^8.0.0"
1513
+ },
1514
+ "engines": {
1515
+ "node": ">= 18"
1516
+ }
1517
+ },
1518
+ "node_modules/safe-buffer": {
1519
+ "version": "5.2.1",
1520
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1521
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1522
+ "funding": [
1523
+ {
1524
+ "type": "github",
1525
+ "url": "https://github.com/sponsors/feross"
1526
+ },
1527
+ {
1528
+ "type": "patreon",
1529
+ "url": "https://www.patreon.com/feross"
1530
+ },
1531
+ {
1532
+ "type": "consulting",
1533
+ "url": "https://feross.org/support"
1534
+ }
1535
+ ],
1536
+ "license": "MIT"
1537
+ },
1538
+ "node_modules/safer-buffer": {
1539
+ "version": "2.1.2",
1540
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1541
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1542
+ "license": "MIT"
1543
+ },
1544
+ "node_modules/semver": {
1545
+ "version": "7.8.1",
1546
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz",
1547
+ "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==",
1548
+ "license": "ISC",
1549
+ "bin": {
1550
+ "semver": "bin/semver.js"
1551
+ },
1552
+ "engines": {
1553
+ "node": ">=10"
1554
+ }
1555
+ },
1556
+ "node_modules/send": {
1557
+ "version": "1.2.1",
1558
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
1559
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
1560
+ "license": "MIT",
1561
+ "dependencies": {
1562
+ "debug": "^4.4.3",
1563
+ "encodeurl": "^2.0.0",
1564
+ "escape-html": "^1.0.3",
1565
+ "etag": "^1.8.1",
1566
+ "fresh": "^2.0.0",
1567
+ "http-errors": "^2.0.1",
1568
+ "mime-types": "^3.0.2",
1569
+ "ms": "^2.1.3",
1570
+ "on-finished": "^2.4.1",
1571
+ "range-parser": "^1.2.1",
1572
+ "statuses": "^2.0.2"
1573
+ },
1574
+ "engines": {
1575
+ "node": ">= 18"
1576
+ },
1577
+ "funding": {
1578
+ "type": "opencollective",
1579
+ "url": "https://opencollective.com/express"
1580
+ }
1581
+ },
1582
+ "node_modules/serve-static": {
1583
+ "version": "2.2.1",
1584
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
1585
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
1586
+ "license": "MIT",
1587
+ "dependencies": {
1588
+ "encodeurl": "^2.0.0",
1589
+ "escape-html": "^1.0.3",
1590
+ "parseurl": "^1.3.3",
1591
+ "send": "^1.2.0"
1592
+ },
1593
+ "engines": {
1594
+ "node": ">= 18"
1595
+ },
1596
+ "funding": {
1597
+ "type": "opencollective",
1598
+ "url": "https://opencollective.com/express"
1599
+ }
1600
+ },
1601
+ "node_modules/setprototypeof": {
1602
+ "version": "1.2.0",
1603
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1604
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1605
+ "license": "ISC"
1606
+ },
1607
+ "node_modules/side-channel": {
1608
+ "version": "1.1.0",
1609
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1610
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1611
+ "license": "MIT",
1612
+ "dependencies": {
1613
+ "es-errors": "^1.3.0",
1614
+ "object-inspect": "^1.13.3",
1615
+ "side-channel-list": "^1.0.0",
1616
+ "side-channel-map": "^1.0.1",
1617
+ "side-channel-weakmap": "^1.0.2"
1618
+ },
1619
+ "engines": {
1620
+ "node": ">= 0.4"
1621
+ },
1622
+ "funding": {
1623
+ "url": "https://github.com/sponsors/ljharb"
1624
+ }
1625
+ },
1626
+ "node_modules/side-channel-list": {
1627
+ "version": "1.0.1",
1628
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
1629
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
1630
+ "license": "MIT",
1631
+ "dependencies": {
1632
+ "es-errors": "^1.3.0",
1633
+ "object-inspect": "^1.13.4"
1634
+ },
1635
+ "engines": {
1636
+ "node": ">= 0.4"
1637
+ },
1638
+ "funding": {
1639
+ "url": "https://github.com/sponsors/ljharb"
1640
+ }
1641
+ },
1642
+ "node_modules/side-channel-map": {
1643
+ "version": "1.0.1",
1644
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1645
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1646
+ "license": "MIT",
1647
+ "dependencies": {
1648
+ "call-bound": "^1.0.2",
1649
+ "es-errors": "^1.3.0",
1650
+ "get-intrinsic": "^1.2.5",
1651
+ "object-inspect": "^1.13.3"
1652
+ },
1653
+ "engines": {
1654
+ "node": ">= 0.4"
1655
+ },
1656
+ "funding": {
1657
+ "url": "https://github.com/sponsors/ljharb"
1658
+ }
1659
+ },
1660
+ "node_modules/side-channel-weakmap": {
1661
+ "version": "1.0.2",
1662
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1663
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1664
+ "license": "MIT",
1665
+ "dependencies": {
1666
+ "call-bound": "^1.0.2",
1667
+ "es-errors": "^1.3.0",
1668
+ "get-intrinsic": "^1.2.5",
1669
+ "object-inspect": "^1.13.3",
1670
+ "side-channel-map": "^1.0.1"
1671
+ },
1672
+ "engines": {
1673
+ "node": ">= 0.4"
1674
+ },
1675
+ "funding": {
1676
+ "url": "https://github.com/sponsors/ljharb"
1677
+ }
1678
+ },
1679
+ "node_modules/simple-concat": {
1680
+ "version": "1.0.1",
1681
+ "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
1682
+ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
1683
+ "funding": [
1684
+ {
1685
+ "type": "github",
1686
+ "url": "https://github.com/sponsors/feross"
1687
+ },
1688
+ {
1689
+ "type": "patreon",
1690
+ "url": "https://www.patreon.com/feross"
1691
+ },
1692
+ {
1693
+ "type": "consulting",
1694
+ "url": "https://feross.org/support"
1695
+ }
1696
+ ],
1697
+ "license": "MIT"
1698
+ },
1699
+ "node_modules/simple-get": {
1700
+ "version": "4.0.1",
1701
+ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
1702
+ "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
1703
+ "funding": [
1704
+ {
1705
+ "type": "github",
1706
+ "url": "https://github.com/sponsors/feross"
1707
+ },
1708
+ {
1709
+ "type": "patreon",
1710
+ "url": "https://www.patreon.com/feross"
1711
+ },
1712
+ {
1713
+ "type": "consulting",
1714
+ "url": "https://feross.org/support"
1715
+ }
1716
+ ],
1717
+ "license": "MIT",
1718
+ "dependencies": {
1719
+ "decompress-response": "^6.0.0",
1720
+ "once": "^1.3.1",
1721
+ "simple-concat": "^1.0.0"
1722
+ }
1723
+ },
1724
+ "node_modules/simple-update-notifier": {
1725
+ "version": "2.0.0",
1726
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
1727
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
1728
+ "dev": true,
1729
+ "license": "MIT",
1730
+ "dependencies": {
1731
+ "semver": "^7.5.3"
1732
+ },
1733
+ "engines": {
1734
+ "node": ">=10"
1735
+ }
1736
+ },
1737
+ "node_modules/statuses": {
1738
+ "version": "2.0.2",
1739
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
1740
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1741
+ "license": "MIT",
1742
+ "engines": {
1743
+ "node": ">= 0.8"
1744
+ }
1745
+ },
1746
+ "node_modules/string_decoder": {
1747
+ "version": "1.3.0",
1748
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
1749
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1750
+ "license": "MIT",
1751
+ "dependencies": {
1752
+ "safe-buffer": "~5.2.0"
1753
+ }
1754
+ },
1755
+ "node_modules/strip-json-comments": {
1756
+ "version": "2.0.1",
1757
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
1758
+ "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
1759
+ "license": "MIT",
1760
+ "engines": {
1761
+ "node": ">=0.10.0"
1762
+ }
1763
+ },
1764
+ "node_modules/supports-color": {
1765
+ "version": "5.5.0",
1766
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
1767
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1768
+ "dev": true,
1769
+ "license": "MIT",
1770
+ "dependencies": {
1771
+ "has-flag": "^3.0.0"
1772
+ },
1773
+ "engines": {
1774
+ "node": ">=4"
1775
+ }
1776
+ },
1777
+ "node_modules/tar-fs": {
1778
+ "version": "2.1.4",
1779
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
1780
+ "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
1781
+ "license": "MIT",
1782
+ "dependencies": {
1783
+ "chownr": "^1.1.1",
1784
+ "mkdirp-classic": "^0.5.2",
1785
+ "pump": "^3.0.0",
1786
+ "tar-stream": "^2.1.4"
1787
+ }
1788
+ },
1789
+ "node_modules/tar-stream": {
1790
+ "version": "2.2.0",
1791
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
1792
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
1793
+ "license": "MIT",
1794
+ "dependencies": {
1795
+ "bl": "^4.0.3",
1796
+ "end-of-stream": "^1.4.1",
1797
+ "fs-constants": "^1.0.0",
1798
+ "inherits": "^2.0.3",
1799
+ "readable-stream": "^3.1.1"
1800
+ },
1801
+ "engines": {
1802
+ "node": ">=6"
1803
+ }
1804
+ },
1805
+ "node_modules/to-regex-range": {
1806
+ "version": "5.0.1",
1807
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1808
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1809
+ "dev": true,
1810
+ "license": "MIT",
1811
+ "dependencies": {
1812
+ "is-number": "^7.0.0"
1813
+ },
1814
+ "engines": {
1815
+ "node": ">=8.0"
1816
+ }
1817
+ },
1818
+ "node_modules/toidentifier": {
1819
+ "version": "1.0.1",
1820
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1821
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1822
+ "license": "MIT",
1823
+ "engines": {
1824
+ "node": ">=0.6"
1825
+ }
1826
+ },
1827
+ "node_modules/touch": {
1828
+ "version": "3.1.1",
1829
+ "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
1830
+ "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
1831
+ "dev": true,
1832
+ "license": "ISC",
1833
+ "bin": {
1834
+ "nodetouch": "bin/nodetouch.js"
1835
+ }
1836
+ },
1837
+ "node_modules/ts-node": {
1838
+ "version": "10.9.2",
1839
+ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
1840
+ "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
1841
+ "dev": true,
1842
+ "license": "MIT",
1843
+ "dependencies": {
1844
+ "@cspotcode/source-map-support": "^0.8.0",
1845
+ "@tsconfig/node10": "^1.0.7",
1846
+ "@tsconfig/node12": "^1.0.7",
1847
+ "@tsconfig/node14": "^1.0.0",
1848
+ "@tsconfig/node16": "^1.0.2",
1849
+ "acorn": "^8.4.1",
1850
+ "acorn-walk": "^8.1.1",
1851
+ "arg": "^4.1.0",
1852
+ "create-require": "^1.1.0",
1853
+ "diff": "^4.0.1",
1854
+ "make-error": "^1.1.1",
1855
+ "v8-compile-cache-lib": "^3.0.1",
1856
+ "yn": "3.1.1"
1857
+ },
1858
+ "bin": {
1859
+ "ts-node": "dist/bin.js",
1860
+ "ts-node-cwd": "dist/bin-cwd.js",
1861
+ "ts-node-esm": "dist/bin-esm.js",
1862
+ "ts-node-script": "dist/bin-script.js",
1863
+ "ts-node-transpile-only": "dist/bin-transpile.js",
1864
+ "ts-script": "dist/bin-script-deprecated.js"
1865
+ },
1866
+ "peerDependencies": {
1867
+ "@swc/core": ">=1.2.50",
1868
+ "@swc/wasm": ">=1.2.50",
1869
+ "@types/node": "*",
1870
+ "typescript": ">=2.7"
1871
+ },
1872
+ "peerDependenciesMeta": {
1873
+ "@swc/core": {
1874
+ "optional": true
1875
+ },
1876
+ "@swc/wasm": {
1877
+ "optional": true
1878
+ }
1879
+ }
1880
+ },
1881
+ "node_modules/tunnel-agent": {
1882
+ "version": "0.6.0",
1883
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
1884
+ "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
1885
+ "license": "Apache-2.0",
1886
+ "dependencies": {
1887
+ "safe-buffer": "^5.0.1"
1888
+ },
1889
+ "engines": {
1890
+ "node": "*"
1891
+ }
1892
+ },
1893
+ "node_modules/type-is": {
1894
+ "version": "2.1.0",
1895
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
1896
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
1897
+ "license": "MIT",
1898
+ "dependencies": {
1899
+ "content-type": "^2.0.0",
1900
+ "media-typer": "^1.1.0",
1901
+ "mime-types": "^3.0.0"
1902
+ },
1903
+ "engines": {
1904
+ "node": ">= 18"
1905
+ },
1906
+ "funding": {
1907
+ "type": "opencollective",
1908
+ "url": "https://opencollective.com/express"
1909
+ }
1910
+ },
1911
+ "node_modules/type-is/node_modules/content-type": {
1912
+ "version": "2.0.0",
1913
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
1914
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
1915
+ "license": "MIT",
1916
+ "engines": {
1917
+ "node": ">=18"
1918
+ },
1919
+ "funding": {
1920
+ "type": "opencollective",
1921
+ "url": "https://opencollective.com/express"
1922
+ }
1923
+ },
1924
+ "node_modules/typescript": {
1925
+ "version": "6.0.3",
1926
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
1927
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
1928
+ "dev": true,
1929
+ "license": "Apache-2.0",
1930
+ "bin": {
1931
+ "tsc": "bin/tsc",
1932
+ "tsserver": "bin/tsserver"
1933
+ },
1934
+ "engines": {
1935
+ "node": ">=14.17"
1936
+ }
1937
+ },
1938
+ "node_modules/undefsafe": {
1939
+ "version": "2.0.5",
1940
+ "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
1941
+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
1942
+ "dev": true,
1943
+ "license": "MIT"
1944
+ },
1945
+ "node_modules/undici-types": {
1946
+ "version": "7.24.6",
1947
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
1948
+ "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
1949
+ "dev": true,
1950
+ "license": "MIT"
1951
+ },
1952
+ "node_modules/unpipe": {
1953
+ "version": "1.0.0",
1954
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1955
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1956
+ "license": "MIT",
1957
+ "engines": {
1958
+ "node": ">= 0.8"
1959
+ }
1960
+ },
1961
+ "node_modules/util-deprecate": {
1962
+ "version": "1.0.2",
1963
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1964
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1965
+ "license": "MIT"
1966
+ },
1967
+ "node_modules/v8-compile-cache-lib": {
1968
+ "version": "3.0.1",
1969
+ "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
1970
+ "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
1971
+ "dev": true,
1972
+ "license": "MIT"
1973
+ },
1974
+ "node_modules/vary": {
1975
+ "version": "1.1.2",
1976
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1977
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1978
+ "license": "MIT",
1979
+ "engines": {
1980
+ "node": ">= 0.8"
1981
+ }
1982
+ },
1983
+ "node_modules/wrappy": {
1984
+ "version": "1.0.2",
1985
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1986
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1987
+ "license": "ISC"
1988
+ },
1989
+ "node_modules/yn": {
1990
+ "version": "3.1.1",
1991
+ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
1992
+ "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
1993
+ "dev": true,
1994
+ "license": "MIT",
1995
+ "engines": {
1996
+ "node": ">=6"
1997
+ }
1998
+ }
1999
+ }
2000
+ }