@keshavsoft/kschema-cli 1.13.2 → 1.13.5

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 (65) hide show
  1. package/bin/v13/commands/accounts/steps/announce.js +3 -0
  2. package/bin/v13/commands/accounts/steps/createProject.js +7 -0
  3. package/bin/v13/commands/accounts/steps/locateDestination.js +5 -0
  4. package/bin/v13/commands/accounts/steps/locateSource.js +16 -0
  5. package/bin/v13/commands/accounts/template/v6/.env +9 -0
  6. package/bin/v13/commands/accounts/template/v6/.env.local +7 -0
  7. package/bin/v13/commands/accounts/template/v6/.vscode/launch.json +12 -0
  8. package/bin/v13/commands/accounts/template/v6/Config/Schemas/BillsTable.json +165 -0
  9. package/bin/v13/commands/accounts/template/v6/Config/Schemas/ItemsTable.json +200 -0
  10. package/bin/v13/commands/accounts/template/v6/Config/Schemas/LedgerNames.json +60 -0
  11. package/bin/v13/commands/accounts/template/v6/Config/Schemas/StockItems.json +50 -0
  12. package/bin/v13/commands/accounts/template/v6/Config/api.json +8 -0
  13. package/bin/v13/commands/accounts/template/v6/Config/schema.json +8 -0
  14. package/bin/v13/commands/accounts/template/v6/Config/ui.json +8 -0
  15. package/bin/v13/commands/accounts/template/v6/Public/index.html +129 -0
  16. package/bin/v13/commands/accounts/template/v6/app.js +19 -0
  17. package/bin/v13/commands/accounts/template/v6/config.json +4 -0
  18. package/bin/v13/commands/accounts/template/v6/configLoader.js +6 -0
  19. package/bin/v13/commands/accounts/template/v6/package-lock.json +834 -0
  20. package/bin/v13/commands/accounts/template/v6/package.json +21 -0
  21. package/bin/v13/commands/accounts/template/v6/port.js +6 -0
  22. package/bin/v13/commands/accounts/template/v6/routes.js +5 -0
  23. package/bin/v13/commands/accounts/template/v6/server.js +13 -0
  24. package/bin/v13/commands/accounts/template/v7/.env +9 -0
  25. package/bin/v13/commands/accounts/template/v7/.env.local +7 -0
  26. package/bin/v13/commands/accounts/template/v7/.vscode/launch.json +12 -0
  27. package/bin/v13/commands/accounts/template/v7/Config/Schemas/journals.json +60 -0
  28. package/bin/v13/commands/accounts/template/v7/Config/api.json +8 -0
  29. package/bin/v13/commands/accounts/template/v7/Config/schema.json +8 -0
  30. package/bin/v13/commands/accounts/template/v7/Config/ui.json +8 -0
  31. package/bin/v13/commands/accounts/template/v7/Public/index.html +129 -0
  32. package/bin/v13/commands/accounts/template/v7/app.js +19 -0
  33. package/bin/v13/commands/accounts/template/v7/config.json +4 -0
  34. package/bin/v13/commands/accounts/template/v7/configLoader.js +6 -0
  35. package/bin/v13/commands/accounts/template/v7/package-lock.json +834 -0
  36. package/bin/v13/commands/accounts/template/v7/package.json +21 -0
  37. package/bin/v13/commands/accounts/template/v7/port.js +6 -0
  38. package/bin/v13/commands/accounts/template/v7/routes.js +5 -0
  39. package/bin/v13/commands/accounts/template/v7/server.js +13 -0
  40. package/bin/v13/commands/accounts.js +19 -0
  41. package/bin/v13/commands/express/steps/locateSource.js +1 -1
  42. package/bin/v13/commands/express/template/v6/.env +9 -0
  43. package/bin/v13/commands/express/template/v6/.env.local +7 -0
  44. package/bin/v13/commands/express/template/v6/.vscode/launch.json +12 -0
  45. package/bin/v13/commands/express/template/v6/Config/Schemas/BillsTable.json +165 -0
  46. package/bin/v13/commands/express/template/v6/Config/Schemas/ItemsTable.json +200 -0
  47. package/bin/v13/commands/express/template/v6/Config/Schemas/LedgerNames.json +60 -0
  48. package/bin/v13/commands/express/template/v6/Config/Schemas/StockItems.json +50 -0
  49. package/bin/v13/commands/express/template/v6/Config/api.json +8 -0
  50. package/bin/v13/commands/express/template/v6/Config/schema.json +8 -0
  51. package/bin/v13/commands/express/template/v6/Config/ui.json +8 -0
  52. package/bin/v13/commands/express/template/v6/Public/index.html +129 -0
  53. package/bin/v13/commands/express/template/v6/app.js +19 -0
  54. package/bin/v13/commands/express/template/v6/config.json +4 -0
  55. package/bin/v13/commands/express/template/v6/configLoader.js +6 -0
  56. package/bin/v13/commands/express/template/v6/package-lock.json +834 -0
  57. package/bin/v13/commands/express/template/v6/package.json +21 -0
  58. package/bin/v13/commands/express/template/v6/port.js +6 -0
  59. package/bin/v13/commands/express/template/v6/routes.js +5 -0
  60. package/bin/v13/commands/express/template/v6/server.js +13 -0
  61. package/bin/v13/core/resolveCommand.js +3 -1
  62. package/bin/v13/core/showUsage.js +2 -0
  63. package/index.js +2 -1
  64. package/package.json +1 -1
  65. package/bin/v13/core/showUsageV1.js +0 -42
@@ -0,0 +1,834 @@
1
+ {
2
+ "name": "KeshavSoft",
3
+ "version": "1.7.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "KeshavSoft",
9
+ "version": "1.7.1",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@keshavsoft/kschema": "^1.17.8",
13
+ "body-parser": "^2.2.0",
14
+ "express": "^5.1.0"
15
+ }
16
+ },
17
+ "node_modules/@keshavsoft/kschema": {
18
+ "version": "1.17.9",
19
+ "resolved": "https://registry.npmjs.org/@keshavsoft/kschema/-/kschema-1.17.9.tgz",
20
+ "integrity": "sha512-Q5+c/T9ciO9mD/fH+mroFaVgiYpMyU8sZsdRZcRw6rWtuY5nc2U5PfnRFjwJ8iKtFaTK7QpRqDz8b7/1rUqZOw=="
21
+ },
22
+ "node_modules/accepts": {
23
+ "version": "2.0.0",
24
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
25
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
26
+ "license": "MIT",
27
+ "dependencies": {
28
+ "mime-types": "^3.0.0",
29
+ "negotiator": "^1.0.0"
30
+ },
31
+ "engines": {
32
+ "node": ">= 0.6"
33
+ }
34
+ },
35
+ "node_modules/body-parser": {
36
+ "version": "2.2.2",
37
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
38
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
39
+ "license": "MIT",
40
+ "dependencies": {
41
+ "bytes": "^3.1.2",
42
+ "content-type": "^1.0.5",
43
+ "debug": "^4.4.3",
44
+ "http-errors": "^2.0.0",
45
+ "iconv-lite": "^0.7.0",
46
+ "on-finished": "^2.4.1",
47
+ "qs": "^6.14.1",
48
+ "raw-body": "^3.0.1",
49
+ "type-is": "^2.0.1"
50
+ },
51
+ "engines": {
52
+ "node": ">=18"
53
+ },
54
+ "funding": {
55
+ "type": "opencollective",
56
+ "url": "https://opencollective.com/express"
57
+ }
58
+ },
59
+ "node_modules/bytes": {
60
+ "version": "3.1.2",
61
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
62
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
63
+ "license": "MIT",
64
+ "engines": {
65
+ "node": ">= 0.8"
66
+ }
67
+ },
68
+ "node_modules/call-bind-apply-helpers": {
69
+ "version": "1.0.2",
70
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
71
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
72
+ "license": "MIT",
73
+ "dependencies": {
74
+ "es-errors": "^1.3.0",
75
+ "function-bind": "^1.1.2"
76
+ },
77
+ "engines": {
78
+ "node": ">= 0.4"
79
+ }
80
+ },
81
+ "node_modules/call-bound": {
82
+ "version": "1.0.4",
83
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
84
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
85
+ "license": "MIT",
86
+ "dependencies": {
87
+ "call-bind-apply-helpers": "^1.0.2",
88
+ "get-intrinsic": "^1.3.0"
89
+ },
90
+ "engines": {
91
+ "node": ">= 0.4"
92
+ },
93
+ "funding": {
94
+ "url": "https://github.com/sponsors/ljharb"
95
+ }
96
+ },
97
+ "node_modules/content-disposition": {
98
+ "version": "1.1.0",
99
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
100
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
101
+ "license": "MIT",
102
+ "engines": {
103
+ "node": ">=18"
104
+ },
105
+ "funding": {
106
+ "type": "opencollective",
107
+ "url": "https://opencollective.com/express"
108
+ }
109
+ },
110
+ "node_modules/content-type": {
111
+ "version": "1.0.5",
112
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
113
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
114
+ "license": "MIT",
115
+ "engines": {
116
+ "node": ">= 0.6"
117
+ }
118
+ },
119
+ "node_modules/cookie": {
120
+ "version": "0.7.2",
121
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
122
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
123
+ "license": "MIT",
124
+ "engines": {
125
+ "node": ">= 0.6"
126
+ }
127
+ },
128
+ "node_modules/cookie-signature": {
129
+ "version": "1.2.2",
130
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
131
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
132
+ "license": "MIT",
133
+ "engines": {
134
+ "node": ">=6.6.0"
135
+ }
136
+ },
137
+ "node_modules/debug": {
138
+ "version": "4.4.3",
139
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
140
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
141
+ "license": "MIT",
142
+ "dependencies": {
143
+ "ms": "^2.1.3"
144
+ },
145
+ "engines": {
146
+ "node": ">=6.0"
147
+ },
148
+ "peerDependenciesMeta": {
149
+ "supports-color": {
150
+ "optional": true
151
+ }
152
+ }
153
+ },
154
+ "node_modules/depd": {
155
+ "version": "2.0.0",
156
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
157
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
158
+ "license": "MIT",
159
+ "engines": {
160
+ "node": ">= 0.8"
161
+ }
162
+ },
163
+ "node_modules/dunder-proto": {
164
+ "version": "1.0.1",
165
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
166
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
167
+ "license": "MIT",
168
+ "dependencies": {
169
+ "call-bind-apply-helpers": "^1.0.1",
170
+ "es-errors": "^1.3.0",
171
+ "gopd": "^1.2.0"
172
+ },
173
+ "engines": {
174
+ "node": ">= 0.4"
175
+ }
176
+ },
177
+ "node_modules/ee-first": {
178
+ "version": "1.1.1",
179
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
180
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
181
+ "license": "MIT"
182
+ },
183
+ "node_modules/encodeurl": {
184
+ "version": "2.0.0",
185
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
186
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
187
+ "license": "MIT",
188
+ "engines": {
189
+ "node": ">= 0.8"
190
+ }
191
+ },
192
+ "node_modules/es-define-property": {
193
+ "version": "1.0.1",
194
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
195
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
196
+ "license": "MIT",
197
+ "engines": {
198
+ "node": ">= 0.4"
199
+ }
200
+ },
201
+ "node_modules/es-errors": {
202
+ "version": "1.3.0",
203
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
204
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
205
+ "license": "MIT",
206
+ "engines": {
207
+ "node": ">= 0.4"
208
+ }
209
+ },
210
+ "node_modules/es-object-atoms": {
211
+ "version": "1.1.1",
212
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
213
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
214
+ "license": "MIT",
215
+ "dependencies": {
216
+ "es-errors": "^1.3.0"
217
+ },
218
+ "engines": {
219
+ "node": ">= 0.4"
220
+ }
221
+ },
222
+ "node_modules/escape-html": {
223
+ "version": "1.0.3",
224
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
225
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
226
+ "license": "MIT"
227
+ },
228
+ "node_modules/etag": {
229
+ "version": "1.8.1",
230
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
231
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
232
+ "license": "MIT",
233
+ "engines": {
234
+ "node": ">= 0.6"
235
+ }
236
+ },
237
+ "node_modules/express": {
238
+ "version": "5.2.1",
239
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
240
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
241
+ "license": "MIT",
242
+ "dependencies": {
243
+ "accepts": "^2.0.0",
244
+ "body-parser": "^2.2.1",
245
+ "content-disposition": "^1.0.0",
246
+ "content-type": "^1.0.5",
247
+ "cookie": "^0.7.1",
248
+ "cookie-signature": "^1.2.1",
249
+ "debug": "^4.4.0",
250
+ "depd": "^2.0.0",
251
+ "encodeurl": "^2.0.0",
252
+ "escape-html": "^1.0.3",
253
+ "etag": "^1.8.1",
254
+ "finalhandler": "^2.1.0",
255
+ "fresh": "^2.0.0",
256
+ "http-errors": "^2.0.0",
257
+ "merge-descriptors": "^2.0.0",
258
+ "mime-types": "^3.0.0",
259
+ "on-finished": "^2.4.1",
260
+ "once": "^1.4.0",
261
+ "parseurl": "^1.3.3",
262
+ "proxy-addr": "^2.0.7",
263
+ "qs": "^6.14.0",
264
+ "range-parser": "^1.2.1",
265
+ "router": "^2.2.0",
266
+ "send": "^1.1.0",
267
+ "serve-static": "^2.2.0",
268
+ "statuses": "^2.0.1",
269
+ "type-is": "^2.0.1",
270
+ "vary": "^1.1.2"
271
+ },
272
+ "engines": {
273
+ "node": ">= 18"
274
+ },
275
+ "funding": {
276
+ "type": "opencollective",
277
+ "url": "https://opencollective.com/express"
278
+ }
279
+ },
280
+ "node_modules/finalhandler": {
281
+ "version": "2.1.1",
282
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
283
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
284
+ "license": "MIT",
285
+ "dependencies": {
286
+ "debug": "^4.4.0",
287
+ "encodeurl": "^2.0.0",
288
+ "escape-html": "^1.0.3",
289
+ "on-finished": "^2.4.1",
290
+ "parseurl": "^1.3.3",
291
+ "statuses": "^2.0.1"
292
+ },
293
+ "engines": {
294
+ "node": ">= 18.0.0"
295
+ },
296
+ "funding": {
297
+ "type": "opencollective",
298
+ "url": "https://opencollective.com/express"
299
+ }
300
+ },
301
+ "node_modules/forwarded": {
302
+ "version": "0.2.0",
303
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
304
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
305
+ "license": "MIT",
306
+ "engines": {
307
+ "node": ">= 0.6"
308
+ }
309
+ },
310
+ "node_modules/fresh": {
311
+ "version": "2.0.0",
312
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
313
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
314
+ "license": "MIT",
315
+ "engines": {
316
+ "node": ">= 0.8"
317
+ }
318
+ },
319
+ "node_modules/function-bind": {
320
+ "version": "1.1.2",
321
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
322
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
323
+ "license": "MIT",
324
+ "funding": {
325
+ "url": "https://github.com/sponsors/ljharb"
326
+ }
327
+ },
328
+ "node_modules/get-intrinsic": {
329
+ "version": "1.3.0",
330
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
331
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
332
+ "license": "MIT",
333
+ "dependencies": {
334
+ "call-bind-apply-helpers": "^1.0.2",
335
+ "es-define-property": "^1.0.1",
336
+ "es-errors": "^1.3.0",
337
+ "es-object-atoms": "^1.1.1",
338
+ "function-bind": "^1.1.2",
339
+ "get-proto": "^1.0.1",
340
+ "gopd": "^1.2.0",
341
+ "has-symbols": "^1.1.0",
342
+ "hasown": "^2.0.2",
343
+ "math-intrinsics": "^1.1.0"
344
+ },
345
+ "engines": {
346
+ "node": ">= 0.4"
347
+ },
348
+ "funding": {
349
+ "url": "https://github.com/sponsors/ljharb"
350
+ }
351
+ },
352
+ "node_modules/get-proto": {
353
+ "version": "1.0.1",
354
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
355
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
356
+ "license": "MIT",
357
+ "dependencies": {
358
+ "dunder-proto": "^1.0.1",
359
+ "es-object-atoms": "^1.0.0"
360
+ },
361
+ "engines": {
362
+ "node": ">= 0.4"
363
+ }
364
+ },
365
+ "node_modules/gopd": {
366
+ "version": "1.2.0",
367
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
368
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
369
+ "license": "MIT",
370
+ "engines": {
371
+ "node": ">= 0.4"
372
+ },
373
+ "funding": {
374
+ "url": "https://github.com/sponsors/ljharb"
375
+ }
376
+ },
377
+ "node_modules/has-symbols": {
378
+ "version": "1.1.0",
379
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
380
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
381
+ "license": "MIT",
382
+ "engines": {
383
+ "node": ">= 0.4"
384
+ },
385
+ "funding": {
386
+ "url": "https://github.com/sponsors/ljharb"
387
+ }
388
+ },
389
+ "node_modules/hasown": {
390
+ "version": "2.0.3",
391
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
392
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
393
+ "license": "MIT",
394
+ "dependencies": {
395
+ "function-bind": "^1.1.2"
396
+ },
397
+ "engines": {
398
+ "node": ">= 0.4"
399
+ }
400
+ },
401
+ "node_modules/http-errors": {
402
+ "version": "2.0.1",
403
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
404
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
405
+ "license": "MIT",
406
+ "dependencies": {
407
+ "depd": "~2.0.0",
408
+ "inherits": "~2.0.4",
409
+ "setprototypeof": "~1.2.0",
410
+ "statuses": "~2.0.2",
411
+ "toidentifier": "~1.0.1"
412
+ },
413
+ "engines": {
414
+ "node": ">= 0.8"
415
+ },
416
+ "funding": {
417
+ "type": "opencollective",
418
+ "url": "https://opencollective.com/express"
419
+ }
420
+ },
421
+ "node_modules/iconv-lite": {
422
+ "version": "0.7.2",
423
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
424
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
425
+ "license": "MIT",
426
+ "dependencies": {
427
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
428
+ },
429
+ "engines": {
430
+ "node": ">=0.10.0"
431
+ },
432
+ "funding": {
433
+ "type": "opencollective",
434
+ "url": "https://opencollective.com/express"
435
+ }
436
+ },
437
+ "node_modules/inherits": {
438
+ "version": "2.0.4",
439
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
440
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
441
+ "license": "ISC"
442
+ },
443
+ "node_modules/ipaddr.js": {
444
+ "version": "1.9.1",
445
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
446
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
447
+ "license": "MIT",
448
+ "engines": {
449
+ "node": ">= 0.10"
450
+ }
451
+ },
452
+ "node_modules/is-promise": {
453
+ "version": "4.0.0",
454
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
455
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
456
+ "license": "MIT"
457
+ },
458
+ "node_modules/math-intrinsics": {
459
+ "version": "1.1.0",
460
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
461
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
462
+ "license": "MIT",
463
+ "engines": {
464
+ "node": ">= 0.4"
465
+ }
466
+ },
467
+ "node_modules/media-typer": {
468
+ "version": "1.1.0",
469
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
470
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
471
+ "license": "MIT",
472
+ "engines": {
473
+ "node": ">= 0.8"
474
+ }
475
+ },
476
+ "node_modules/merge-descriptors": {
477
+ "version": "2.0.0",
478
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
479
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
480
+ "license": "MIT",
481
+ "engines": {
482
+ "node": ">=18"
483
+ },
484
+ "funding": {
485
+ "url": "https://github.com/sponsors/sindresorhus"
486
+ }
487
+ },
488
+ "node_modules/mime-db": {
489
+ "version": "1.54.0",
490
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
491
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
492
+ "license": "MIT",
493
+ "engines": {
494
+ "node": ">= 0.6"
495
+ }
496
+ },
497
+ "node_modules/mime-types": {
498
+ "version": "3.0.2",
499
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
500
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
501
+ "license": "MIT",
502
+ "dependencies": {
503
+ "mime-db": "^1.54.0"
504
+ },
505
+ "engines": {
506
+ "node": ">=18"
507
+ },
508
+ "funding": {
509
+ "type": "opencollective",
510
+ "url": "https://opencollective.com/express"
511
+ }
512
+ },
513
+ "node_modules/ms": {
514
+ "version": "2.1.3",
515
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
516
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
517
+ "license": "MIT"
518
+ },
519
+ "node_modules/negotiator": {
520
+ "version": "1.0.0",
521
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
522
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
523
+ "license": "MIT",
524
+ "engines": {
525
+ "node": ">= 0.6"
526
+ }
527
+ },
528
+ "node_modules/object-inspect": {
529
+ "version": "1.13.4",
530
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
531
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
532
+ "license": "MIT",
533
+ "engines": {
534
+ "node": ">= 0.4"
535
+ },
536
+ "funding": {
537
+ "url": "https://github.com/sponsors/ljharb"
538
+ }
539
+ },
540
+ "node_modules/on-finished": {
541
+ "version": "2.4.1",
542
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
543
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
544
+ "license": "MIT",
545
+ "dependencies": {
546
+ "ee-first": "1.1.1"
547
+ },
548
+ "engines": {
549
+ "node": ">= 0.8"
550
+ }
551
+ },
552
+ "node_modules/once": {
553
+ "version": "1.4.0",
554
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
555
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
556
+ "license": "ISC",
557
+ "dependencies": {
558
+ "wrappy": "1"
559
+ }
560
+ },
561
+ "node_modules/parseurl": {
562
+ "version": "1.3.3",
563
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
564
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
565
+ "license": "MIT",
566
+ "engines": {
567
+ "node": ">= 0.8"
568
+ }
569
+ },
570
+ "node_modules/path-to-regexp": {
571
+ "version": "8.4.2",
572
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
573
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
574
+ "license": "MIT",
575
+ "funding": {
576
+ "type": "opencollective",
577
+ "url": "https://opencollective.com/express"
578
+ }
579
+ },
580
+ "node_modules/proxy-addr": {
581
+ "version": "2.0.7",
582
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
583
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
584
+ "license": "MIT",
585
+ "dependencies": {
586
+ "forwarded": "0.2.0",
587
+ "ipaddr.js": "1.9.1"
588
+ },
589
+ "engines": {
590
+ "node": ">= 0.10"
591
+ }
592
+ },
593
+ "node_modules/qs": {
594
+ "version": "6.15.1",
595
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
596
+ "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
597
+ "license": "BSD-3-Clause",
598
+ "dependencies": {
599
+ "side-channel": "^1.1.0"
600
+ },
601
+ "engines": {
602
+ "node": ">=0.6"
603
+ },
604
+ "funding": {
605
+ "url": "https://github.com/sponsors/ljharb"
606
+ }
607
+ },
608
+ "node_modules/range-parser": {
609
+ "version": "1.2.1",
610
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
611
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
612
+ "license": "MIT",
613
+ "engines": {
614
+ "node": ">= 0.6"
615
+ }
616
+ },
617
+ "node_modules/raw-body": {
618
+ "version": "3.0.2",
619
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
620
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
621
+ "license": "MIT",
622
+ "dependencies": {
623
+ "bytes": "~3.1.2",
624
+ "http-errors": "~2.0.1",
625
+ "iconv-lite": "~0.7.0",
626
+ "unpipe": "~1.0.0"
627
+ },
628
+ "engines": {
629
+ "node": ">= 0.10"
630
+ }
631
+ },
632
+ "node_modules/router": {
633
+ "version": "2.2.0",
634
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
635
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
636
+ "license": "MIT",
637
+ "dependencies": {
638
+ "debug": "^4.4.0",
639
+ "depd": "^2.0.0",
640
+ "is-promise": "^4.0.0",
641
+ "parseurl": "^1.3.3",
642
+ "path-to-regexp": "^8.0.0"
643
+ },
644
+ "engines": {
645
+ "node": ">= 18"
646
+ }
647
+ },
648
+ "node_modules/safer-buffer": {
649
+ "version": "2.1.2",
650
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
651
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
652
+ "license": "MIT"
653
+ },
654
+ "node_modules/send": {
655
+ "version": "1.2.1",
656
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
657
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
658
+ "license": "MIT",
659
+ "dependencies": {
660
+ "debug": "^4.4.3",
661
+ "encodeurl": "^2.0.0",
662
+ "escape-html": "^1.0.3",
663
+ "etag": "^1.8.1",
664
+ "fresh": "^2.0.0",
665
+ "http-errors": "^2.0.1",
666
+ "mime-types": "^3.0.2",
667
+ "ms": "^2.1.3",
668
+ "on-finished": "^2.4.1",
669
+ "range-parser": "^1.2.1",
670
+ "statuses": "^2.0.2"
671
+ },
672
+ "engines": {
673
+ "node": ">= 18"
674
+ },
675
+ "funding": {
676
+ "type": "opencollective",
677
+ "url": "https://opencollective.com/express"
678
+ }
679
+ },
680
+ "node_modules/serve-static": {
681
+ "version": "2.2.1",
682
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
683
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
684
+ "license": "MIT",
685
+ "dependencies": {
686
+ "encodeurl": "^2.0.0",
687
+ "escape-html": "^1.0.3",
688
+ "parseurl": "^1.3.3",
689
+ "send": "^1.2.0"
690
+ },
691
+ "engines": {
692
+ "node": ">= 18"
693
+ },
694
+ "funding": {
695
+ "type": "opencollective",
696
+ "url": "https://opencollective.com/express"
697
+ }
698
+ },
699
+ "node_modules/setprototypeof": {
700
+ "version": "1.2.0",
701
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
702
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
703
+ "license": "ISC"
704
+ },
705
+ "node_modules/side-channel": {
706
+ "version": "1.1.0",
707
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
708
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
709
+ "license": "MIT",
710
+ "dependencies": {
711
+ "es-errors": "^1.3.0",
712
+ "object-inspect": "^1.13.3",
713
+ "side-channel-list": "^1.0.0",
714
+ "side-channel-map": "^1.0.1",
715
+ "side-channel-weakmap": "^1.0.2"
716
+ },
717
+ "engines": {
718
+ "node": ">= 0.4"
719
+ },
720
+ "funding": {
721
+ "url": "https://github.com/sponsors/ljharb"
722
+ }
723
+ },
724
+ "node_modules/side-channel-list": {
725
+ "version": "1.0.1",
726
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
727
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
728
+ "license": "MIT",
729
+ "dependencies": {
730
+ "es-errors": "^1.3.0",
731
+ "object-inspect": "^1.13.4"
732
+ },
733
+ "engines": {
734
+ "node": ">= 0.4"
735
+ },
736
+ "funding": {
737
+ "url": "https://github.com/sponsors/ljharb"
738
+ }
739
+ },
740
+ "node_modules/side-channel-map": {
741
+ "version": "1.0.1",
742
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
743
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
744
+ "license": "MIT",
745
+ "dependencies": {
746
+ "call-bound": "^1.0.2",
747
+ "es-errors": "^1.3.0",
748
+ "get-intrinsic": "^1.2.5",
749
+ "object-inspect": "^1.13.3"
750
+ },
751
+ "engines": {
752
+ "node": ">= 0.4"
753
+ },
754
+ "funding": {
755
+ "url": "https://github.com/sponsors/ljharb"
756
+ }
757
+ },
758
+ "node_modules/side-channel-weakmap": {
759
+ "version": "1.0.2",
760
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
761
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
762
+ "license": "MIT",
763
+ "dependencies": {
764
+ "call-bound": "^1.0.2",
765
+ "es-errors": "^1.3.0",
766
+ "get-intrinsic": "^1.2.5",
767
+ "object-inspect": "^1.13.3",
768
+ "side-channel-map": "^1.0.1"
769
+ },
770
+ "engines": {
771
+ "node": ">= 0.4"
772
+ },
773
+ "funding": {
774
+ "url": "https://github.com/sponsors/ljharb"
775
+ }
776
+ },
777
+ "node_modules/statuses": {
778
+ "version": "2.0.2",
779
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
780
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
781
+ "license": "MIT",
782
+ "engines": {
783
+ "node": ">= 0.8"
784
+ }
785
+ },
786
+ "node_modules/toidentifier": {
787
+ "version": "1.0.1",
788
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
789
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
790
+ "license": "MIT",
791
+ "engines": {
792
+ "node": ">=0.6"
793
+ }
794
+ },
795
+ "node_modules/type-is": {
796
+ "version": "2.0.1",
797
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
798
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
799
+ "license": "MIT",
800
+ "dependencies": {
801
+ "content-type": "^1.0.5",
802
+ "media-typer": "^1.1.0",
803
+ "mime-types": "^3.0.0"
804
+ },
805
+ "engines": {
806
+ "node": ">= 0.6"
807
+ }
808
+ },
809
+ "node_modules/unpipe": {
810
+ "version": "1.0.0",
811
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
812
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
813
+ "license": "MIT",
814
+ "engines": {
815
+ "node": ">= 0.8"
816
+ }
817
+ },
818
+ "node_modules/vary": {
819
+ "version": "1.1.2",
820
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
821
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
822
+ "license": "MIT",
823
+ "engines": {
824
+ "node": ">= 0.8"
825
+ }
826
+ },
827
+ "node_modules/wrappy": {
828
+ "version": "1.0.2",
829
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
830
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
831
+ "license": "ISC"
832
+ }
833
+ }
834
+ }