zt-admin-template 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 (80) hide show
  1. package/package.json +11 -0
  2. package/template/.env.development +2 -0
  3. package/template/.env.production +2 -0
  4. package/template/.env.test +2 -0
  5. package/template/.kiro/specs/course-backend-integration/.config.kiro +1 -0
  6. package/template/.kiro/specs/course-backend-integration/design.md +234 -0
  7. package/template/.kiro/specs/course-backend-integration/requirements.md +116 -0
  8. package/template/.kiro/specs/course-backend-integration/tasks.md +0 -0
  9. package/template/COMPLETION_CHECKLIST.md +305 -0
  10. package/template/DEPLOYMENT_GUIDE.md +391 -0
  11. package/template/FINAL_SUMMARY.md +428 -0
  12. package/template/IMPLEMENTATION_SUMMARY.md +382 -0
  13. package/template/INTEGRATION_GUIDE.md +458 -0
  14. package/template/PROJECT_OVERVIEW.md +343 -0
  15. package/template/QUICK_START.md +273 -0
  16. package/template/RBAC_Tutorial.md +424 -0
  17. package/template/README.md +16 -0
  18. package/template/React_Antd_TS_Tutorial.md +279 -0
  19. package/template/START_ALL.md +163 -0
  20. package/template/SYSTEM_MANAGEMENT.md +247 -0
  21. package/template/eslint.config.js +29 -0
  22. package/template/index.html +13 -0
  23. package/template/koa-server/README.md +65 -0
  24. package/template/koa-server/app.js +625 -0
  25. package/template/koa-server/package-lock.json +1547 -0
  26. package/template/koa-server/package.json +26 -0
  27. package/template/koa-server/public/assets/index-B1Cj4mG9.css +1 -0
  28. package/template/koa-server/public/assets/index-Mgxg-xqT.js +503 -0
  29. package/template/koa-server/public/favicon.svg +1 -0
  30. package/template/koa-server/public/icons.svg +24 -0
  31. package/template/koa-server/public/index.html +14 -0
  32. package/template/koa-server/uploads/1774265088480-962006467.png +0 -0
  33. package/template/koa-server/uploads/file-1774346891704-610962013.png +0 -0
  34. package/template/koa-server/uploads/file-1774346898887-58636533.png +0 -0
  35. package/template/koa-server/uploads/file-1774346912676-771862547.png +0 -0
  36. package/template/koa-server/uploads/file-1774347025308-130037894.png +0 -0
  37. package/template/koa-server/uploads/file-1774347031104-766499773.png +0 -0
  38. package/template/koa-server/uploads/file-1774347094969-731402203.png +0 -0
  39. package/template/koa-server/uploads/file-1774347101948-330296656.png +0 -0
  40. package/template/koa-server/uploads/file-1774351682377-932868720.png +0 -0
  41. package/template/koa-server/uploads/file-1774352037654-877426905.png +0 -0
  42. package/template/koa-server/uploads/file-1774352175463-386248997.png +0 -0
  43. package/template/koa-server/uploads/file-1774361446433-405859961.png +0 -0
  44. package/template/koa-server/uploads/file-1774361512207-465806267.png +0 -0
  45. package/template/lianxi.html +15 -0
  46. package/template/package-lock.json +6307 -0
  47. package/template/package.json +36 -0
  48. package/template/public/favicon.svg +1 -0
  49. package/template/public/icons.svg +24 -0
  50. package/template/src/App.css +184 -0
  51. package/template/src/App.tsx +44 -0
  52. package/template/src/api/course.ts +86 -0
  53. package/template/src/api/menu.ts +55 -0
  54. package/template/src/api/role.ts +58 -0
  55. package/template/src/api/user.ts +58 -0
  56. package/template/src/assets/hero.png +0 -0
  57. package/template/src/assets/react.svg +1 -0
  58. package/template/src/assets/vite.svg +1 -0
  59. package/template/src/components/Child.tsx +10 -0
  60. package/template/src/components/MainLayout.tsx +169 -0
  61. package/template/src/components/SunZi.tsx +13 -0
  62. package/template/src/contexts/ThemeContext.tsx +33 -0
  63. package/template/src/hooks/usePermission.tsx +62 -0
  64. package/template/src/index.css +111 -0
  65. package/template/src/main.tsx +13 -0
  66. package/template/src/pages/Dashboard.tsx +39 -0
  67. package/template/src/pages/Users.tsx +95 -0
  68. package/template/src/pages/banner/BannerList.tsx +182 -0
  69. package/template/src/pages/course/Course.tsx +586 -0
  70. package/template/src/pages/course/CourseList.tsx +168 -0
  71. package/template/src/pages/system/menu/Menu.tsx +501 -0
  72. package/template/src/pages/system/role/Role.tsx +458 -0
  73. package/template/src/pages/system/user/User.tsx +364 -0
  74. package/template/src/types/permission.ts +21 -0
  75. package/template/src/utils/request.tsx +94 -0
  76. package/template/src/vite-env.d.ts +1 -0
  77. package/template/tsconfig.app.json +32 -0
  78. package/template/tsconfig.json +7 -0
  79. package/template/tsconfig.node.json +13 -0
  80. package/template/vite.config.ts +30 -0
@@ -0,0 +1,1547 @@
1
+ {
2
+ "name": "admin-system-server",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "admin-system-server",
9
+ "version": "1.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@koa/multer": "^4.0.0",
13
+ "koa": "^2.14.2",
14
+ "koa-bodyparser": "^4.4.1",
15
+ "koa-cors": "^0.0.16",
16
+ "koa-mount": "^4.2.0",
17
+ "koa-router": "^12.0.0",
18
+ "koa-static": "^5.0.0",
19
+ "multer": "^2.1.1"
20
+ },
21
+ "devDependencies": {
22
+ "nodemon": "^3.0.1"
23
+ }
24
+ },
25
+ "node_modules/@hapi/bourne": {
26
+ "version": "3.0.0",
27
+ "resolved": "https://registry.npmmirror.com/@hapi/bourne/-/bourne-3.0.0.tgz",
28
+ "integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==",
29
+ "license": "BSD-3-Clause"
30
+ },
31
+ "node_modules/@koa/multer": {
32
+ "version": "4.0.0",
33
+ "resolved": "https://registry.npmmirror.com/@koa/multer/-/multer-4.0.0.tgz",
34
+ "integrity": "sha512-BY6hys3WVX1yL/gcfKWu94z1fJ6ayG1DEEw/s82DnulkaTbumwjF6XqSfNLKFcs8lnJb2QfMJ4DyK4bmF1NDZw==",
35
+ "license": "MIT",
36
+ "engines": {
37
+ "node": ">= 18"
38
+ },
39
+ "peerDependencies": {
40
+ "koa": ">=2",
41
+ "multer": "*"
42
+ }
43
+ },
44
+ "node_modules/accepts": {
45
+ "version": "1.3.8",
46
+ "resolved": "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz",
47
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "mime-types": "~2.1.34",
51
+ "negotiator": "0.6.3"
52
+ },
53
+ "engines": {
54
+ "node": ">= 0.6"
55
+ }
56
+ },
57
+ "node_modules/anymatch": {
58
+ "version": "3.1.3",
59
+ "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz",
60
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
61
+ "dev": true,
62
+ "license": "ISC",
63
+ "dependencies": {
64
+ "normalize-path": "^3.0.0",
65
+ "picomatch": "^2.0.4"
66
+ },
67
+ "engines": {
68
+ "node": ">= 8"
69
+ }
70
+ },
71
+ "node_modules/append-field": {
72
+ "version": "1.0.0",
73
+ "resolved": "https://registry.npmmirror.com/append-field/-/append-field-1.0.0.tgz",
74
+ "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==",
75
+ "license": "MIT"
76
+ },
77
+ "node_modules/balanced-match": {
78
+ "version": "4.0.4",
79
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz",
80
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
81
+ "dev": true,
82
+ "license": "MIT",
83
+ "engines": {
84
+ "node": "18 || 20 || >=22"
85
+ }
86
+ },
87
+ "node_modules/binary-extensions": {
88
+ "version": "2.3.0",
89
+ "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz",
90
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
91
+ "dev": true,
92
+ "license": "MIT",
93
+ "engines": {
94
+ "node": ">=8"
95
+ },
96
+ "funding": {
97
+ "url": "https://github.com/sponsors/sindresorhus"
98
+ }
99
+ },
100
+ "node_modules/brace-expansion": {
101
+ "version": "5.0.4",
102
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.4.tgz",
103
+ "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
104
+ "dev": true,
105
+ "license": "MIT",
106
+ "dependencies": {
107
+ "balanced-match": "^4.0.2"
108
+ },
109
+ "engines": {
110
+ "node": "18 || 20 || >=22"
111
+ }
112
+ },
113
+ "node_modules/braces": {
114
+ "version": "3.0.3",
115
+ "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz",
116
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
117
+ "dev": true,
118
+ "license": "MIT",
119
+ "dependencies": {
120
+ "fill-range": "^7.1.1"
121
+ },
122
+ "engines": {
123
+ "node": ">=8"
124
+ }
125
+ },
126
+ "node_modules/buffer-from": {
127
+ "version": "1.1.2",
128
+ "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz",
129
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
130
+ "license": "MIT"
131
+ },
132
+ "node_modules/busboy": {
133
+ "version": "1.6.0",
134
+ "resolved": "https://registry.npmmirror.com/busboy/-/busboy-1.6.0.tgz",
135
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
136
+ "dependencies": {
137
+ "streamsearch": "^1.1.0"
138
+ },
139
+ "engines": {
140
+ "node": ">=10.16.0"
141
+ }
142
+ },
143
+ "node_modules/bytes": {
144
+ "version": "3.1.2",
145
+ "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz",
146
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
147
+ "license": "MIT",
148
+ "engines": {
149
+ "node": ">= 0.8"
150
+ }
151
+ },
152
+ "node_modules/cache-content-type": {
153
+ "version": "1.0.1",
154
+ "resolved": "https://registry.npmmirror.com/cache-content-type/-/cache-content-type-1.0.1.tgz",
155
+ "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==",
156
+ "license": "MIT",
157
+ "dependencies": {
158
+ "mime-types": "^2.1.18",
159
+ "ylru": "^1.2.0"
160
+ },
161
+ "engines": {
162
+ "node": ">= 6.0.0"
163
+ }
164
+ },
165
+ "node_modules/call-bind-apply-helpers": {
166
+ "version": "1.0.2",
167
+ "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
168
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
169
+ "license": "MIT",
170
+ "dependencies": {
171
+ "es-errors": "^1.3.0",
172
+ "function-bind": "^1.1.2"
173
+ },
174
+ "engines": {
175
+ "node": ">= 0.4"
176
+ }
177
+ },
178
+ "node_modules/call-bound": {
179
+ "version": "1.0.4",
180
+ "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
181
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
182
+ "license": "MIT",
183
+ "dependencies": {
184
+ "call-bind-apply-helpers": "^1.0.2",
185
+ "get-intrinsic": "^1.3.0"
186
+ },
187
+ "engines": {
188
+ "node": ">= 0.4"
189
+ },
190
+ "funding": {
191
+ "url": "https://github.com/sponsors/ljharb"
192
+ }
193
+ },
194
+ "node_modules/chokidar": {
195
+ "version": "3.6.0",
196
+ "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
197
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
198
+ "dev": true,
199
+ "license": "MIT",
200
+ "dependencies": {
201
+ "anymatch": "~3.1.2",
202
+ "braces": "~3.0.2",
203
+ "glob-parent": "~5.1.2",
204
+ "is-binary-path": "~2.1.0",
205
+ "is-glob": "~4.0.1",
206
+ "normalize-path": "~3.0.0",
207
+ "readdirp": "~3.6.0"
208
+ },
209
+ "engines": {
210
+ "node": ">= 8.10.0"
211
+ },
212
+ "funding": {
213
+ "url": "https://paulmillr.com/funding/"
214
+ },
215
+ "optionalDependencies": {
216
+ "fsevents": "~2.3.2"
217
+ }
218
+ },
219
+ "node_modules/co": {
220
+ "version": "4.6.0",
221
+ "resolved": "https://registry.npmmirror.com/co/-/co-4.6.0.tgz",
222
+ "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
223
+ "license": "MIT",
224
+ "engines": {
225
+ "iojs": ">= 1.0.0",
226
+ "node": ">= 0.12.0"
227
+ }
228
+ },
229
+ "node_modules/co-body": {
230
+ "version": "6.2.0",
231
+ "resolved": "https://registry.npmmirror.com/co-body/-/co-body-6.2.0.tgz",
232
+ "integrity": "sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==",
233
+ "license": "MIT",
234
+ "dependencies": {
235
+ "@hapi/bourne": "^3.0.0",
236
+ "inflation": "^2.0.0",
237
+ "qs": "^6.5.2",
238
+ "raw-body": "^2.3.3",
239
+ "type-is": "^1.6.16"
240
+ },
241
+ "engines": {
242
+ "node": ">=8.0.0"
243
+ }
244
+ },
245
+ "node_modules/concat-stream": {
246
+ "version": "2.0.0",
247
+ "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz",
248
+ "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
249
+ "engines": [
250
+ "node >= 6.0"
251
+ ],
252
+ "license": "MIT",
253
+ "dependencies": {
254
+ "buffer-from": "^1.0.0",
255
+ "inherits": "^2.0.3",
256
+ "readable-stream": "^3.0.2",
257
+ "typedarray": "^0.0.6"
258
+ }
259
+ },
260
+ "node_modules/content-disposition": {
261
+ "version": "0.5.4",
262
+ "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz",
263
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
264
+ "license": "MIT",
265
+ "dependencies": {
266
+ "safe-buffer": "5.2.1"
267
+ },
268
+ "engines": {
269
+ "node": ">= 0.6"
270
+ }
271
+ },
272
+ "node_modules/content-type": {
273
+ "version": "1.0.5",
274
+ "resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz",
275
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
276
+ "license": "MIT",
277
+ "engines": {
278
+ "node": ">= 0.6"
279
+ }
280
+ },
281
+ "node_modules/cookies": {
282
+ "version": "0.9.1",
283
+ "resolved": "https://registry.npmmirror.com/cookies/-/cookies-0.9.1.tgz",
284
+ "integrity": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==",
285
+ "license": "MIT",
286
+ "dependencies": {
287
+ "depd": "~2.0.0",
288
+ "keygrip": "~1.1.0"
289
+ },
290
+ "engines": {
291
+ "node": ">= 0.8"
292
+ }
293
+ },
294
+ "node_modules/copy-to": {
295
+ "version": "2.0.1",
296
+ "resolved": "https://registry.npmmirror.com/copy-to/-/copy-to-2.0.1.tgz",
297
+ "integrity": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==",
298
+ "license": "MIT"
299
+ },
300
+ "node_modules/debug": {
301
+ "version": "4.4.3",
302
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
303
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
304
+ "license": "MIT",
305
+ "dependencies": {
306
+ "ms": "^2.1.3"
307
+ },
308
+ "engines": {
309
+ "node": ">=6.0"
310
+ },
311
+ "peerDependenciesMeta": {
312
+ "supports-color": {
313
+ "optional": true
314
+ }
315
+ }
316
+ },
317
+ "node_modules/deep-equal": {
318
+ "version": "1.0.1",
319
+ "resolved": "https://registry.npmmirror.com/deep-equal/-/deep-equal-1.0.1.tgz",
320
+ "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==",
321
+ "license": "MIT"
322
+ },
323
+ "node_modules/delegates": {
324
+ "version": "1.0.0",
325
+ "resolved": "https://registry.npmmirror.com/delegates/-/delegates-1.0.0.tgz",
326
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
327
+ "license": "MIT"
328
+ },
329
+ "node_modules/depd": {
330
+ "version": "2.0.0",
331
+ "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
332
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
333
+ "license": "MIT",
334
+ "engines": {
335
+ "node": ">= 0.8"
336
+ }
337
+ },
338
+ "node_modules/destroy": {
339
+ "version": "1.2.0",
340
+ "resolved": "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz",
341
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
342
+ "license": "MIT",
343
+ "engines": {
344
+ "node": ">= 0.8",
345
+ "npm": "1.2.8000 || >= 1.4.16"
346
+ }
347
+ },
348
+ "node_modules/dunder-proto": {
349
+ "version": "1.0.1",
350
+ "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
351
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
352
+ "license": "MIT",
353
+ "dependencies": {
354
+ "call-bind-apply-helpers": "^1.0.1",
355
+ "es-errors": "^1.3.0",
356
+ "gopd": "^1.2.0"
357
+ },
358
+ "engines": {
359
+ "node": ">= 0.4"
360
+ }
361
+ },
362
+ "node_modules/ee-first": {
363
+ "version": "1.1.1",
364
+ "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz",
365
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
366
+ "license": "MIT"
367
+ },
368
+ "node_modules/encodeurl": {
369
+ "version": "1.0.2",
370
+ "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz",
371
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
372
+ "license": "MIT",
373
+ "engines": {
374
+ "node": ">= 0.8"
375
+ }
376
+ },
377
+ "node_modules/es-define-property": {
378
+ "version": "1.0.1",
379
+ "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
380
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
381
+ "license": "MIT",
382
+ "engines": {
383
+ "node": ">= 0.4"
384
+ }
385
+ },
386
+ "node_modules/es-errors": {
387
+ "version": "1.3.0",
388
+ "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
389
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
390
+ "license": "MIT",
391
+ "engines": {
392
+ "node": ">= 0.4"
393
+ }
394
+ },
395
+ "node_modules/es-object-atoms": {
396
+ "version": "1.1.1",
397
+ "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
398
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
399
+ "license": "MIT",
400
+ "dependencies": {
401
+ "es-errors": "^1.3.0"
402
+ },
403
+ "engines": {
404
+ "node": ">= 0.4"
405
+ }
406
+ },
407
+ "node_modules/escape-html": {
408
+ "version": "1.0.3",
409
+ "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
410
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
411
+ "license": "MIT"
412
+ },
413
+ "node_modules/fill-range": {
414
+ "version": "7.1.1",
415
+ "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
416
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
417
+ "dev": true,
418
+ "license": "MIT",
419
+ "dependencies": {
420
+ "to-regex-range": "^5.0.1"
421
+ },
422
+ "engines": {
423
+ "node": ">=8"
424
+ }
425
+ },
426
+ "node_modules/fresh": {
427
+ "version": "0.5.2",
428
+ "resolved": "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz",
429
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
430
+ "license": "MIT",
431
+ "engines": {
432
+ "node": ">= 0.6"
433
+ }
434
+ },
435
+ "node_modules/fsevents": {
436
+ "version": "2.3.3",
437
+ "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
438
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
439
+ "dev": true,
440
+ "hasInstallScript": true,
441
+ "license": "MIT",
442
+ "optional": true,
443
+ "os": [
444
+ "darwin"
445
+ ],
446
+ "engines": {
447
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
448
+ }
449
+ },
450
+ "node_modules/function-bind": {
451
+ "version": "1.1.2",
452
+ "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
453
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
454
+ "license": "MIT",
455
+ "funding": {
456
+ "url": "https://github.com/sponsors/ljharb"
457
+ }
458
+ },
459
+ "node_modules/generator-function": {
460
+ "version": "2.0.1",
461
+ "resolved": "https://registry.npmmirror.com/generator-function/-/generator-function-2.0.1.tgz",
462
+ "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==",
463
+ "license": "MIT",
464
+ "engines": {
465
+ "node": ">= 0.4"
466
+ }
467
+ },
468
+ "node_modules/get-intrinsic": {
469
+ "version": "1.3.0",
470
+ "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
471
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
472
+ "license": "MIT",
473
+ "dependencies": {
474
+ "call-bind-apply-helpers": "^1.0.2",
475
+ "es-define-property": "^1.0.1",
476
+ "es-errors": "^1.3.0",
477
+ "es-object-atoms": "^1.1.1",
478
+ "function-bind": "^1.1.2",
479
+ "get-proto": "^1.0.1",
480
+ "gopd": "^1.2.0",
481
+ "has-symbols": "^1.1.0",
482
+ "hasown": "^2.0.2",
483
+ "math-intrinsics": "^1.1.0"
484
+ },
485
+ "engines": {
486
+ "node": ">= 0.4"
487
+ },
488
+ "funding": {
489
+ "url": "https://github.com/sponsors/ljharb"
490
+ }
491
+ },
492
+ "node_modules/get-proto": {
493
+ "version": "1.0.1",
494
+ "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
495
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
496
+ "license": "MIT",
497
+ "dependencies": {
498
+ "dunder-proto": "^1.0.1",
499
+ "es-object-atoms": "^1.0.0"
500
+ },
501
+ "engines": {
502
+ "node": ">= 0.4"
503
+ }
504
+ },
505
+ "node_modules/glob-parent": {
506
+ "version": "5.1.2",
507
+ "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz",
508
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
509
+ "dev": true,
510
+ "license": "ISC",
511
+ "dependencies": {
512
+ "is-glob": "^4.0.1"
513
+ },
514
+ "engines": {
515
+ "node": ">= 6"
516
+ }
517
+ },
518
+ "node_modules/gopd": {
519
+ "version": "1.2.0",
520
+ "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
521
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
522
+ "license": "MIT",
523
+ "engines": {
524
+ "node": ">= 0.4"
525
+ },
526
+ "funding": {
527
+ "url": "https://github.com/sponsors/ljharb"
528
+ }
529
+ },
530
+ "node_modules/has-flag": {
531
+ "version": "3.0.0",
532
+ "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz",
533
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
534
+ "dev": true,
535
+ "license": "MIT",
536
+ "engines": {
537
+ "node": ">=4"
538
+ }
539
+ },
540
+ "node_modules/has-symbols": {
541
+ "version": "1.1.0",
542
+ "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
543
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
544
+ "license": "MIT",
545
+ "engines": {
546
+ "node": ">= 0.4"
547
+ },
548
+ "funding": {
549
+ "url": "https://github.com/sponsors/ljharb"
550
+ }
551
+ },
552
+ "node_modules/has-tostringtag": {
553
+ "version": "1.0.2",
554
+ "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
555
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "has-symbols": "^1.0.3"
559
+ },
560
+ "engines": {
561
+ "node": ">= 0.4"
562
+ },
563
+ "funding": {
564
+ "url": "https://github.com/sponsors/ljharb"
565
+ }
566
+ },
567
+ "node_modules/hasown": {
568
+ "version": "2.0.2",
569
+ "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
570
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
571
+ "license": "MIT",
572
+ "dependencies": {
573
+ "function-bind": "^1.1.2"
574
+ },
575
+ "engines": {
576
+ "node": ">= 0.4"
577
+ }
578
+ },
579
+ "node_modules/http-assert": {
580
+ "version": "1.5.0",
581
+ "resolved": "https://registry.npmmirror.com/http-assert/-/http-assert-1.5.0.tgz",
582
+ "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==",
583
+ "license": "MIT",
584
+ "dependencies": {
585
+ "deep-equal": "~1.0.1",
586
+ "http-errors": "~1.8.0"
587
+ },
588
+ "engines": {
589
+ "node": ">= 0.8"
590
+ }
591
+ },
592
+ "node_modules/http-errors": {
593
+ "version": "1.8.1",
594
+ "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-1.8.1.tgz",
595
+ "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==",
596
+ "license": "MIT",
597
+ "dependencies": {
598
+ "depd": "~1.1.2",
599
+ "inherits": "2.0.4",
600
+ "setprototypeof": "1.2.0",
601
+ "statuses": ">= 1.5.0 < 2",
602
+ "toidentifier": "1.0.1"
603
+ },
604
+ "engines": {
605
+ "node": ">= 0.6"
606
+ }
607
+ },
608
+ "node_modules/http-errors/node_modules/depd": {
609
+ "version": "1.1.2",
610
+ "resolved": "https://registry.npmmirror.com/depd/-/depd-1.1.2.tgz",
611
+ "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
612
+ "license": "MIT",
613
+ "engines": {
614
+ "node": ">= 0.6"
615
+ }
616
+ },
617
+ "node_modules/iconv-lite": {
618
+ "version": "0.4.24",
619
+ "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz",
620
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
621
+ "license": "MIT",
622
+ "dependencies": {
623
+ "safer-buffer": ">= 2.1.2 < 3"
624
+ },
625
+ "engines": {
626
+ "node": ">=0.10.0"
627
+ }
628
+ },
629
+ "node_modules/ignore-by-default": {
630
+ "version": "1.0.1",
631
+ "resolved": "https://registry.npmmirror.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
632
+ "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
633
+ "dev": true,
634
+ "license": "ISC"
635
+ },
636
+ "node_modules/inflation": {
637
+ "version": "2.1.0",
638
+ "resolved": "https://registry.npmmirror.com/inflation/-/inflation-2.1.0.tgz",
639
+ "integrity": "sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==",
640
+ "license": "MIT",
641
+ "engines": {
642
+ "node": ">= 0.8.0"
643
+ }
644
+ },
645
+ "node_modules/inherits": {
646
+ "version": "2.0.4",
647
+ "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
648
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
649
+ "license": "ISC"
650
+ },
651
+ "node_modules/is-binary-path": {
652
+ "version": "2.1.0",
653
+ "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz",
654
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
655
+ "dev": true,
656
+ "license": "MIT",
657
+ "dependencies": {
658
+ "binary-extensions": "^2.0.0"
659
+ },
660
+ "engines": {
661
+ "node": ">=8"
662
+ }
663
+ },
664
+ "node_modules/is-extglob": {
665
+ "version": "2.1.1",
666
+ "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
667
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
668
+ "dev": true,
669
+ "license": "MIT",
670
+ "engines": {
671
+ "node": ">=0.10.0"
672
+ }
673
+ },
674
+ "node_modules/is-generator-function": {
675
+ "version": "1.1.2",
676
+ "resolved": "https://registry.npmmirror.com/is-generator-function/-/is-generator-function-1.1.2.tgz",
677
+ "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==",
678
+ "license": "MIT",
679
+ "dependencies": {
680
+ "call-bound": "^1.0.4",
681
+ "generator-function": "^2.0.0",
682
+ "get-proto": "^1.0.1",
683
+ "has-tostringtag": "^1.0.2",
684
+ "safe-regex-test": "^1.1.0"
685
+ },
686
+ "engines": {
687
+ "node": ">= 0.4"
688
+ },
689
+ "funding": {
690
+ "url": "https://github.com/sponsors/ljharb"
691
+ }
692
+ },
693
+ "node_modules/is-glob": {
694
+ "version": "4.0.3",
695
+ "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
696
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
697
+ "dev": true,
698
+ "license": "MIT",
699
+ "dependencies": {
700
+ "is-extglob": "^2.1.1"
701
+ },
702
+ "engines": {
703
+ "node": ">=0.10.0"
704
+ }
705
+ },
706
+ "node_modules/is-number": {
707
+ "version": "7.0.0",
708
+ "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
709
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
710
+ "dev": true,
711
+ "license": "MIT",
712
+ "engines": {
713
+ "node": ">=0.12.0"
714
+ }
715
+ },
716
+ "node_modules/is-regex": {
717
+ "version": "1.2.1",
718
+ "resolved": "https://registry.npmmirror.com/is-regex/-/is-regex-1.2.1.tgz",
719
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
720
+ "license": "MIT",
721
+ "dependencies": {
722
+ "call-bound": "^1.0.2",
723
+ "gopd": "^1.2.0",
724
+ "has-tostringtag": "^1.0.2",
725
+ "hasown": "^2.0.2"
726
+ },
727
+ "engines": {
728
+ "node": ">= 0.4"
729
+ },
730
+ "funding": {
731
+ "url": "https://github.com/sponsors/ljharb"
732
+ }
733
+ },
734
+ "node_modules/keygrip": {
735
+ "version": "1.1.0",
736
+ "resolved": "https://registry.npmmirror.com/keygrip/-/keygrip-1.1.0.tgz",
737
+ "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==",
738
+ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
739
+ "license": "MIT",
740
+ "dependencies": {
741
+ "tsscmp": "1.0.6"
742
+ },
743
+ "engines": {
744
+ "node": ">= 0.6"
745
+ }
746
+ },
747
+ "node_modules/koa": {
748
+ "version": "2.16.4",
749
+ "resolved": "https://registry.npmmirror.com/koa/-/koa-2.16.4.tgz",
750
+ "integrity": "sha512-3An0GCLDSR34tsCO4H8Tef8Pp2ngtaZDAZnsWJYelqXUK5wyiHvGItgK/xcSkmHLSTn1Jcho1mRQs2ehRzvKKw==",
751
+ "license": "MIT",
752
+ "dependencies": {
753
+ "accepts": "^1.3.5",
754
+ "cache-content-type": "^1.0.0",
755
+ "content-disposition": "~0.5.2",
756
+ "content-type": "^1.0.4",
757
+ "cookies": "~0.9.0",
758
+ "debug": "^4.3.2",
759
+ "delegates": "^1.0.0",
760
+ "depd": "^2.0.0",
761
+ "destroy": "^1.0.4",
762
+ "encodeurl": "^1.0.2",
763
+ "escape-html": "^1.0.3",
764
+ "fresh": "~0.5.2",
765
+ "http-assert": "^1.3.0",
766
+ "http-errors": "^1.6.3",
767
+ "is-generator-function": "^1.0.7",
768
+ "koa-compose": "^4.1.0",
769
+ "koa-convert": "^2.0.0",
770
+ "on-finished": "^2.3.0",
771
+ "only": "~0.0.2",
772
+ "parseurl": "^1.3.2",
773
+ "statuses": "^1.5.0",
774
+ "type-is": "^1.6.16",
775
+ "vary": "^1.1.2"
776
+ },
777
+ "engines": {
778
+ "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4"
779
+ }
780
+ },
781
+ "node_modules/koa-bodyparser": {
782
+ "version": "4.4.1",
783
+ "resolved": "https://registry.npmmirror.com/koa-bodyparser/-/koa-bodyparser-4.4.1.tgz",
784
+ "integrity": "sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==",
785
+ "license": "MIT",
786
+ "dependencies": {
787
+ "co-body": "^6.0.0",
788
+ "copy-to": "^2.0.1",
789
+ "type-is": "^1.6.18"
790
+ },
791
+ "engines": {
792
+ "node": ">=8.0.0"
793
+ }
794
+ },
795
+ "node_modules/koa-compose": {
796
+ "version": "4.1.0",
797
+ "resolved": "https://registry.npmmirror.com/koa-compose/-/koa-compose-4.1.0.tgz",
798
+ "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==",
799
+ "license": "MIT"
800
+ },
801
+ "node_modules/koa-convert": {
802
+ "version": "2.0.0",
803
+ "resolved": "https://registry.npmmirror.com/koa-convert/-/koa-convert-2.0.0.tgz",
804
+ "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==",
805
+ "license": "MIT",
806
+ "dependencies": {
807
+ "co": "^4.6.0",
808
+ "koa-compose": "^4.1.0"
809
+ },
810
+ "engines": {
811
+ "node": ">= 10"
812
+ }
813
+ },
814
+ "node_modules/koa-cors": {
815
+ "version": "0.0.16",
816
+ "resolved": "https://registry.npmmirror.com/koa-cors/-/koa-cors-0.0.16.tgz",
817
+ "integrity": "sha512-s15knPxe3AJBi2I/ZMPL0pSqU+PLYLO6k5tI0AqClkzavowvocPlSdFUwaHNqtjHMhsGmiq2tiX/25iILJx9YA==",
818
+ "license": "MIT"
819
+ },
820
+ "node_modules/koa-mount": {
821
+ "version": "4.2.0",
822
+ "resolved": "https://registry.npmmirror.com/koa-mount/-/koa-mount-4.2.0.tgz",
823
+ "integrity": "sha512-2iHQc7vbA9qLeVq5gKAYh3m5DOMMlMfIKjW/REPAS18Mf63daCJHHVXY9nbu7ivrnYn5PiPC4CE523Tf5qvjeQ==",
824
+ "license": "MIT",
825
+ "dependencies": {
826
+ "debug": "^4.0.1",
827
+ "koa-compose": "^4.1.0"
828
+ },
829
+ "engines": {
830
+ "node": ">= 7.6.0"
831
+ }
832
+ },
833
+ "node_modules/koa-router": {
834
+ "version": "12.0.1",
835
+ "resolved": "https://registry.npmmirror.com/koa-router/-/koa-router-12.0.1.tgz",
836
+ "integrity": "sha512-gaDdj3GtzoLoeosacd50kBBTnnh3B9AYxDThQUo4sfUyXdOhY6ku1qyZKW88tQCRgc3Sw6ChXYXWZwwgjOxE0w==",
837
+ "deprecated": "Please use @koa/router instead, starting from v9! ",
838
+ "license": "MIT",
839
+ "dependencies": {
840
+ "debug": "^4.3.4",
841
+ "http-errors": "^2.0.0",
842
+ "koa-compose": "^4.1.0",
843
+ "methods": "^1.1.2",
844
+ "path-to-regexp": "^6.2.1"
845
+ },
846
+ "engines": {
847
+ "node": ">= 12"
848
+ }
849
+ },
850
+ "node_modules/koa-router/node_modules/http-errors": {
851
+ "version": "2.0.1",
852
+ "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz",
853
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
854
+ "license": "MIT",
855
+ "dependencies": {
856
+ "depd": "~2.0.0",
857
+ "inherits": "~2.0.4",
858
+ "setprototypeof": "~1.2.0",
859
+ "statuses": "~2.0.2",
860
+ "toidentifier": "~1.0.1"
861
+ },
862
+ "engines": {
863
+ "node": ">= 0.8"
864
+ },
865
+ "funding": {
866
+ "type": "opencollective",
867
+ "url": "https://opencollective.com/express"
868
+ }
869
+ },
870
+ "node_modules/koa-router/node_modules/statuses": {
871
+ "version": "2.0.2",
872
+ "resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz",
873
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
874
+ "license": "MIT",
875
+ "engines": {
876
+ "node": ">= 0.8"
877
+ }
878
+ },
879
+ "node_modules/koa-send": {
880
+ "version": "5.0.1",
881
+ "resolved": "https://registry.npmmirror.com/koa-send/-/koa-send-5.0.1.tgz",
882
+ "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==",
883
+ "license": "MIT",
884
+ "dependencies": {
885
+ "debug": "^4.1.1",
886
+ "http-errors": "^1.7.3",
887
+ "resolve-path": "^1.4.0"
888
+ },
889
+ "engines": {
890
+ "node": ">= 8"
891
+ }
892
+ },
893
+ "node_modules/koa-static": {
894
+ "version": "5.0.0",
895
+ "resolved": "https://registry.npmmirror.com/koa-static/-/koa-static-5.0.0.tgz",
896
+ "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==",
897
+ "license": "MIT",
898
+ "dependencies": {
899
+ "debug": "^3.1.0",
900
+ "koa-send": "^5.0.0"
901
+ },
902
+ "engines": {
903
+ "node": ">= 7.6.0"
904
+ }
905
+ },
906
+ "node_modules/koa-static/node_modules/debug": {
907
+ "version": "3.2.7",
908
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz",
909
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
910
+ "license": "MIT",
911
+ "dependencies": {
912
+ "ms": "^2.1.1"
913
+ }
914
+ },
915
+ "node_modules/math-intrinsics": {
916
+ "version": "1.1.0",
917
+ "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
918
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
919
+ "license": "MIT",
920
+ "engines": {
921
+ "node": ">= 0.4"
922
+ }
923
+ },
924
+ "node_modules/media-typer": {
925
+ "version": "0.3.0",
926
+ "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz",
927
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
928
+ "license": "MIT",
929
+ "engines": {
930
+ "node": ">= 0.6"
931
+ }
932
+ },
933
+ "node_modules/methods": {
934
+ "version": "1.1.2",
935
+ "resolved": "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz",
936
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
937
+ "license": "MIT",
938
+ "engines": {
939
+ "node": ">= 0.6"
940
+ }
941
+ },
942
+ "node_modules/mime-db": {
943
+ "version": "1.52.0",
944
+ "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
945
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
946
+ "license": "MIT",
947
+ "engines": {
948
+ "node": ">= 0.6"
949
+ }
950
+ },
951
+ "node_modules/mime-types": {
952
+ "version": "2.1.35",
953
+ "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
954
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
955
+ "license": "MIT",
956
+ "dependencies": {
957
+ "mime-db": "1.52.0"
958
+ },
959
+ "engines": {
960
+ "node": ">= 0.6"
961
+ }
962
+ },
963
+ "node_modules/minimatch": {
964
+ "version": "10.2.4",
965
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.4.tgz",
966
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
967
+ "dev": true,
968
+ "license": "BlueOak-1.0.0",
969
+ "dependencies": {
970
+ "brace-expansion": "^5.0.2"
971
+ },
972
+ "engines": {
973
+ "node": "18 || 20 || >=22"
974
+ },
975
+ "funding": {
976
+ "url": "https://github.com/sponsors/isaacs"
977
+ }
978
+ },
979
+ "node_modules/ms": {
980
+ "version": "2.1.3",
981
+ "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
982
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
983
+ "license": "MIT"
984
+ },
985
+ "node_modules/multer": {
986
+ "version": "2.1.1",
987
+ "resolved": "https://registry.npmmirror.com/multer/-/multer-2.1.1.tgz",
988
+ "integrity": "sha512-mo+QTzKlx8R7E5ylSXxWzGoXoZbOsRMpyitcht8By2KHvMbf3tjwosZ/Mu/XYU6UuJ3VZnODIrak5ZrPiPyB6A==",
989
+ "license": "MIT",
990
+ "dependencies": {
991
+ "append-field": "^1.0.0",
992
+ "busboy": "^1.6.0",
993
+ "concat-stream": "^2.0.0",
994
+ "type-is": "^1.6.18"
995
+ },
996
+ "engines": {
997
+ "node": ">= 10.16.0"
998
+ },
999
+ "funding": {
1000
+ "type": "opencollective",
1001
+ "url": "https://opencollective.com/express"
1002
+ }
1003
+ },
1004
+ "node_modules/negotiator": {
1005
+ "version": "0.6.3",
1006
+ "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz",
1007
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
1008
+ "license": "MIT",
1009
+ "engines": {
1010
+ "node": ">= 0.6"
1011
+ }
1012
+ },
1013
+ "node_modules/nodemon": {
1014
+ "version": "3.1.14",
1015
+ "resolved": "https://registry.npmmirror.com/nodemon/-/nodemon-3.1.14.tgz",
1016
+ "integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==",
1017
+ "dev": true,
1018
+ "license": "MIT",
1019
+ "dependencies": {
1020
+ "chokidar": "^3.5.2",
1021
+ "debug": "^4",
1022
+ "ignore-by-default": "^1.0.1",
1023
+ "minimatch": "^10.2.1",
1024
+ "pstree.remy": "^1.1.8",
1025
+ "semver": "^7.5.3",
1026
+ "simple-update-notifier": "^2.0.0",
1027
+ "supports-color": "^5.5.0",
1028
+ "touch": "^3.1.0",
1029
+ "undefsafe": "^2.0.5"
1030
+ },
1031
+ "bin": {
1032
+ "nodemon": "bin/nodemon.js"
1033
+ },
1034
+ "engines": {
1035
+ "node": ">=10"
1036
+ },
1037
+ "funding": {
1038
+ "type": "opencollective",
1039
+ "url": "https://opencollective.com/nodemon"
1040
+ }
1041
+ },
1042
+ "node_modules/normalize-path": {
1043
+ "version": "3.0.0",
1044
+ "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
1045
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1046
+ "dev": true,
1047
+ "license": "MIT",
1048
+ "engines": {
1049
+ "node": ">=0.10.0"
1050
+ }
1051
+ },
1052
+ "node_modules/object-inspect": {
1053
+ "version": "1.13.4",
1054
+ "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
1055
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
1056
+ "license": "MIT",
1057
+ "engines": {
1058
+ "node": ">= 0.4"
1059
+ },
1060
+ "funding": {
1061
+ "url": "https://github.com/sponsors/ljharb"
1062
+ }
1063
+ },
1064
+ "node_modules/on-finished": {
1065
+ "version": "2.4.1",
1066
+ "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz",
1067
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1068
+ "license": "MIT",
1069
+ "dependencies": {
1070
+ "ee-first": "1.1.1"
1071
+ },
1072
+ "engines": {
1073
+ "node": ">= 0.8"
1074
+ }
1075
+ },
1076
+ "node_modules/only": {
1077
+ "version": "0.0.2",
1078
+ "resolved": "https://registry.npmmirror.com/only/-/only-0.0.2.tgz",
1079
+ "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ=="
1080
+ },
1081
+ "node_modules/parseurl": {
1082
+ "version": "1.3.3",
1083
+ "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz",
1084
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1085
+ "license": "MIT",
1086
+ "engines": {
1087
+ "node": ">= 0.8"
1088
+ }
1089
+ },
1090
+ "node_modules/path-is-absolute": {
1091
+ "version": "1.0.1",
1092
+ "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1093
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
1094
+ "license": "MIT",
1095
+ "engines": {
1096
+ "node": ">=0.10.0"
1097
+ }
1098
+ },
1099
+ "node_modules/path-to-regexp": {
1100
+ "version": "6.3.0",
1101
+ "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
1102
+ "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
1103
+ "license": "MIT"
1104
+ },
1105
+ "node_modules/picomatch": {
1106
+ "version": "2.3.1",
1107
+ "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
1108
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1109
+ "dev": true,
1110
+ "license": "MIT",
1111
+ "engines": {
1112
+ "node": ">=8.6"
1113
+ },
1114
+ "funding": {
1115
+ "url": "https://github.com/sponsors/jonschlinkert"
1116
+ }
1117
+ },
1118
+ "node_modules/pstree.remy": {
1119
+ "version": "1.1.8",
1120
+ "resolved": "https://registry.npmmirror.com/pstree.remy/-/pstree.remy-1.1.8.tgz",
1121
+ "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1122
+ "dev": true,
1123
+ "license": "MIT"
1124
+ },
1125
+ "node_modules/qs": {
1126
+ "version": "6.15.0",
1127
+ "resolved": "https://registry.npmmirror.com/qs/-/qs-6.15.0.tgz",
1128
+ "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
1129
+ "license": "BSD-3-Clause",
1130
+ "dependencies": {
1131
+ "side-channel": "^1.1.0"
1132
+ },
1133
+ "engines": {
1134
+ "node": ">=0.6"
1135
+ },
1136
+ "funding": {
1137
+ "url": "https://github.com/sponsors/ljharb"
1138
+ }
1139
+ },
1140
+ "node_modules/raw-body": {
1141
+ "version": "2.5.3",
1142
+ "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.3.tgz",
1143
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
1144
+ "license": "MIT",
1145
+ "dependencies": {
1146
+ "bytes": "~3.1.2",
1147
+ "http-errors": "~2.0.1",
1148
+ "iconv-lite": "~0.4.24",
1149
+ "unpipe": "~1.0.0"
1150
+ },
1151
+ "engines": {
1152
+ "node": ">= 0.8"
1153
+ }
1154
+ },
1155
+ "node_modules/raw-body/node_modules/http-errors": {
1156
+ "version": "2.0.1",
1157
+ "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz",
1158
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
1159
+ "license": "MIT",
1160
+ "dependencies": {
1161
+ "depd": "~2.0.0",
1162
+ "inherits": "~2.0.4",
1163
+ "setprototypeof": "~1.2.0",
1164
+ "statuses": "~2.0.2",
1165
+ "toidentifier": "~1.0.1"
1166
+ },
1167
+ "engines": {
1168
+ "node": ">= 0.8"
1169
+ },
1170
+ "funding": {
1171
+ "type": "opencollective",
1172
+ "url": "https://opencollective.com/express"
1173
+ }
1174
+ },
1175
+ "node_modules/raw-body/node_modules/statuses": {
1176
+ "version": "2.0.2",
1177
+ "resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz",
1178
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1179
+ "license": "MIT",
1180
+ "engines": {
1181
+ "node": ">= 0.8"
1182
+ }
1183
+ },
1184
+ "node_modules/readable-stream": {
1185
+ "version": "3.6.2",
1186
+ "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
1187
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1188
+ "license": "MIT",
1189
+ "dependencies": {
1190
+ "inherits": "^2.0.3",
1191
+ "string_decoder": "^1.1.1",
1192
+ "util-deprecate": "^1.0.1"
1193
+ },
1194
+ "engines": {
1195
+ "node": ">= 6"
1196
+ }
1197
+ },
1198
+ "node_modules/readdirp": {
1199
+ "version": "3.6.0",
1200
+ "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
1201
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1202
+ "dev": true,
1203
+ "license": "MIT",
1204
+ "dependencies": {
1205
+ "picomatch": "^2.2.1"
1206
+ },
1207
+ "engines": {
1208
+ "node": ">=8.10.0"
1209
+ }
1210
+ },
1211
+ "node_modules/resolve-path": {
1212
+ "version": "1.4.0",
1213
+ "resolved": "https://registry.npmmirror.com/resolve-path/-/resolve-path-1.4.0.tgz",
1214
+ "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==",
1215
+ "license": "MIT",
1216
+ "dependencies": {
1217
+ "http-errors": "~1.6.2",
1218
+ "path-is-absolute": "1.0.1"
1219
+ },
1220
+ "engines": {
1221
+ "node": ">= 0.8"
1222
+ }
1223
+ },
1224
+ "node_modules/resolve-path/node_modules/depd": {
1225
+ "version": "1.1.2",
1226
+ "resolved": "https://registry.npmmirror.com/depd/-/depd-1.1.2.tgz",
1227
+ "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
1228
+ "license": "MIT",
1229
+ "engines": {
1230
+ "node": ">= 0.6"
1231
+ }
1232
+ },
1233
+ "node_modules/resolve-path/node_modules/http-errors": {
1234
+ "version": "1.6.3",
1235
+ "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-1.6.3.tgz",
1236
+ "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==",
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "depd": "~1.1.2",
1240
+ "inherits": "2.0.3",
1241
+ "setprototypeof": "1.1.0",
1242
+ "statuses": ">= 1.4.0 < 2"
1243
+ },
1244
+ "engines": {
1245
+ "node": ">= 0.6"
1246
+ }
1247
+ },
1248
+ "node_modules/resolve-path/node_modules/inherits": {
1249
+ "version": "2.0.3",
1250
+ "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.3.tgz",
1251
+ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
1252
+ "license": "ISC"
1253
+ },
1254
+ "node_modules/resolve-path/node_modules/setprototypeof": {
1255
+ "version": "1.1.0",
1256
+ "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.1.0.tgz",
1257
+ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
1258
+ "license": "ISC"
1259
+ },
1260
+ "node_modules/safe-buffer": {
1261
+ "version": "5.2.1",
1262
+ "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
1263
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1264
+ "funding": [
1265
+ {
1266
+ "type": "github",
1267
+ "url": "https://github.com/sponsors/feross"
1268
+ },
1269
+ {
1270
+ "type": "patreon",
1271
+ "url": "https://www.patreon.com/feross"
1272
+ },
1273
+ {
1274
+ "type": "consulting",
1275
+ "url": "https://feross.org/support"
1276
+ }
1277
+ ],
1278
+ "license": "MIT"
1279
+ },
1280
+ "node_modules/safe-regex-test": {
1281
+ "version": "1.1.0",
1282
+ "resolved": "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
1283
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
1284
+ "license": "MIT",
1285
+ "dependencies": {
1286
+ "call-bound": "^1.0.2",
1287
+ "es-errors": "^1.3.0",
1288
+ "is-regex": "^1.2.1"
1289
+ },
1290
+ "engines": {
1291
+ "node": ">= 0.4"
1292
+ },
1293
+ "funding": {
1294
+ "url": "https://github.com/sponsors/ljharb"
1295
+ }
1296
+ },
1297
+ "node_modules/safer-buffer": {
1298
+ "version": "2.1.2",
1299
+ "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
1300
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1301
+ "license": "MIT"
1302
+ },
1303
+ "node_modules/semver": {
1304
+ "version": "7.7.4",
1305
+ "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz",
1306
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
1307
+ "dev": true,
1308
+ "license": "ISC",
1309
+ "bin": {
1310
+ "semver": "bin/semver.js"
1311
+ },
1312
+ "engines": {
1313
+ "node": ">=10"
1314
+ }
1315
+ },
1316
+ "node_modules/setprototypeof": {
1317
+ "version": "1.2.0",
1318
+ "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz",
1319
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1320
+ "license": "ISC"
1321
+ },
1322
+ "node_modules/side-channel": {
1323
+ "version": "1.1.0",
1324
+ "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
1325
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1326
+ "license": "MIT",
1327
+ "dependencies": {
1328
+ "es-errors": "^1.3.0",
1329
+ "object-inspect": "^1.13.3",
1330
+ "side-channel-list": "^1.0.0",
1331
+ "side-channel-map": "^1.0.1",
1332
+ "side-channel-weakmap": "^1.0.2"
1333
+ },
1334
+ "engines": {
1335
+ "node": ">= 0.4"
1336
+ },
1337
+ "funding": {
1338
+ "url": "https://github.com/sponsors/ljharb"
1339
+ }
1340
+ },
1341
+ "node_modules/side-channel-list": {
1342
+ "version": "1.0.0",
1343
+ "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz",
1344
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1345
+ "license": "MIT",
1346
+ "dependencies": {
1347
+ "es-errors": "^1.3.0",
1348
+ "object-inspect": "^1.13.3"
1349
+ },
1350
+ "engines": {
1351
+ "node": ">= 0.4"
1352
+ },
1353
+ "funding": {
1354
+ "url": "https://github.com/sponsors/ljharb"
1355
+ }
1356
+ },
1357
+ "node_modules/side-channel-map": {
1358
+ "version": "1.0.1",
1359
+ "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
1360
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1361
+ "license": "MIT",
1362
+ "dependencies": {
1363
+ "call-bound": "^1.0.2",
1364
+ "es-errors": "^1.3.0",
1365
+ "get-intrinsic": "^1.2.5",
1366
+ "object-inspect": "^1.13.3"
1367
+ },
1368
+ "engines": {
1369
+ "node": ">= 0.4"
1370
+ },
1371
+ "funding": {
1372
+ "url": "https://github.com/sponsors/ljharb"
1373
+ }
1374
+ },
1375
+ "node_modules/side-channel-weakmap": {
1376
+ "version": "1.0.2",
1377
+ "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1378
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1379
+ "license": "MIT",
1380
+ "dependencies": {
1381
+ "call-bound": "^1.0.2",
1382
+ "es-errors": "^1.3.0",
1383
+ "get-intrinsic": "^1.2.5",
1384
+ "object-inspect": "^1.13.3",
1385
+ "side-channel-map": "^1.0.1"
1386
+ },
1387
+ "engines": {
1388
+ "node": ">= 0.4"
1389
+ },
1390
+ "funding": {
1391
+ "url": "https://github.com/sponsors/ljharb"
1392
+ }
1393
+ },
1394
+ "node_modules/simple-update-notifier": {
1395
+ "version": "2.0.0",
1396
+ "resolved": "https://registry.npmmirror.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
1397
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
1398
+ "dev": true,
1399
+ "license": "MIT",
1400
+ "dependencies": {
1401
+ "semver": "^7.5.3"
1402
+ },
1403
+ "engines": {
1404
+ "node": ">=10"
1405
+ }
1406
+ },
1407
+ "node_modules/statuses": {
1408
+ "version": "1.5.0",
1409
+ "resolved": "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz",
1410
+ "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==",
1411
+ "license": "MIT",
1412
+ "engines": {
1413
+ "node": ">= 0.6"
1414
+ }
1415
+ },
1416
+ "node_modules/streamsearch": {
1417
+ "version": "1.1.0",
1418
+ "resolved": "https://registry.npmmirror.com/streamsearch/-/streamsearch-1.1.0.tgz",
1419
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
1420
+ "engines": {
1421
+ "node": ">=10.0.0"
1422
+ }
1423
+ },
1424
+ "node_modules/string_decoder": {
1425
+ "version": "1.3.0",
1426
+ "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
1427
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1428
+ "license": "MIT",
1429
+ "dependencies": {
1430
+ "safe-buffer": "~5.2.0"
1431
+ }
1432
+ },
1433
+ "node_modules/supports-color": {
1434
+ "version": "5.5.0",
1435
+ "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz",
1436
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1437
+ "dev": true,
1438
+ "license": "MIT",
1439
+ "dependencies": {
1440
+ "has-flag": "^3.0.0"
1441
+ },
1442
+ "engines": {
1443
+ "node": ">=4"
1444
+ }
1445
+ },
1446
+ "node_modules/to-regex-range": {
1447
+ "version": "5.0.1",
1448
+ "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
1449
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1450
+ "dev": true,
1451
+ "license": "MIT",
1452
+ "dependencies": {
1453
+ "is-number": "^7.0.0"
1454
+ },
1455
+ "engines": {
1456
+ "node": ">=8.0"
1457
+ }
1458
+ },
1459
+ "node_modules/toidentifier": {
1460
+ "version": "1.0.1",
1461
+ "resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz",
1462
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1463
+ "license": "MIT",
1464
+ "engines": {
1465
+ "node": ">=0.6"
1466
+ }
1467
+ },
1468
+ "node_modules/touch": {
1469
+ "version": "3.1.1",
1470
+ "resolved": "https://registry.npmmirror.com/touch/-/touch-3.1.1.tgz",
1471
+ "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
1472
+ "dev": true,
1473
+ "license": "ISC",
1474
+ "bin": {
1475
+ "nodetouch": "bin/nodetouch.js"
1476
+ }
1477
+ },
1478
+ "node_modules/tsscmp": {
1479
+ "version": "1.0.6",
1480
+ "resolved": "https://registry.npmmirror.com/tsscmp/-/tsscmp-1.0.6.tgz",
1481
+ "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==",
1482
+ "license": "MIT",
1483
+ "engines": {
1484
+ "node": ">=0.6.x"
1485
+ }
1486
+ },
1487
+ "node_modules/type-is": {
1488
+ "version": "1.6.18",
1489
+ "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz",
1490
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
1491
+ "license": "MIT",
1492
+ "dependencies": {
1493
+ "media-typer": "0.3.0",
1494
+ "mime-types": "~2.1.24"
1495
+ },
1496
+ "engines": {
1497
+ "node": ">= 0.6"
1498
+ }
1499
+ },
1500
+ "node_modules/typedarray": {
1501
+ "version": "0.0.6",
1502
+ "resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz",
1503
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
1504
+ "license": "MIT"
1505
+ },
1506
+ "node_modules/undefsafe": {
1507
+ "version": "2.0.5",
1508
+ "resolved": "https://registry.npmmirror.com/undefsafe/-/undefsafe-2.0.5.tgz",
1509
+ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
1510
+ "dev": true,
1511
+ "license": "MIT"
1512
+ },
1513
+ "node_modules/unpipe": {
1514
+ "version": "1.0.0",
1515
+ "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz",
1516
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1517
+ "license": "MIT",
1518
+ "engines": {
1519
+ "node": ">= 0.8"
1520
+ }
1521
+ },
1522
+ "node_modules/util-deprecate": {
1523
+ "version": "1.0.2",
1524
+ "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
1525
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1526
+ "license": "MIT"
1527
+ },
1528
+ "node_modules/vary": {
1529
+ "version": "1.1.2",
1530
+ "resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz",
1531
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1532
+ "license": "MIT",
1533
+ "engines": {
1534
+ "node": ">= 0.8"
1535
+ }
1536
+ },
1537
+ "node_modules/ylru": {
1538
+ "version": "1.4.0",
1539
+ "resolved": "https://registry.npmmirror.com/ylru/-/ylru-1.4.0.tgz",
1540
+ "integrity": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==",
1541
+ "license": "MIT",
1542
+ "engines": {
1543
+ "node": ">= 4.0.0"
1544
+ }
1545
+ }
1546
+ }
1547
+ }