itsi 0.1.6 → 0.1.8

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 (239) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +49 -0
  3. data/Rakefile +20 -0
  4. data/crates/itsi_error/src/from.rs +26 -29
  5. data/crates/itsi_error/src/lib.rs +1 -1
  6. data/crates/itsi_server/Cargo.lock +2956 -0
  7. data/crates/itsi_server/Cargo.toml +2 -1
  8. data/crates/itsi_server/src/env.rs +43 -0
  9. data/crates/itsi_server/src/lib.rs +1 -0
  10. data/crates/itsi_server/src/request/itsi_request.rs +7 -7
  11. data/crates/itsi_server/src/server/bind.rs +4 -3
  12. data/crates/itsi_server/src/server/itsi_server.rs +1 -8
  13. data/crates/itsi_server/src/server/listener.rs +98 -107
  14. data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +22 -12
  15. data/crates/itsi_server/src/server/tls/locked_dir_cache.rs +3 -3
  16. data/crates/itsi_server/src/server/tls.rs +83 -44
  17. data/gems/scheduler/ext/itsi_error/src/from.rs +26 -29
  18. data/gems/scheduler/ext/itsi_error/src/lib.rs +1 -1
  19. data/gems/scheduler/ext/itsi_server/Cargo.lock +2956 -0
  20. data/gems/scheduler/ext/itsi_server/Cargo.toml +2 -1
  21. data/gems/scheduler/ext/itsi_server/src/env.rs +43 -0
  22. data/gems/scheduler/ext/itsi_server/src/lib.rs +1 -0
  23. data/gems/scheduler/ext/itsi_server/src/request/itsi_request.rs +7 -7
  24. data/gems/scheduler/ext/itsi_server/src/server/bind.rs +4 -3
  25. data/gems/scheduler/ext/itsi_server/src/server/itsi_server.rs +1 -8
  26. data/gems/scheduler/ext/itsi_server/src/server/listener.rs +98 -107
  27. data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/single_mode.rs +22 -12
  28. data/gems/scheduler/ext/itsi_server/src/server/tls/locked_dir_cache.rs +3 -3
  29. data/gems/scheduler/ext/itsi_server/src/server/tls.rs +83 -44
  30. data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
  31. data/gems/server/Cargo.lock +2917 -0
  32. data/gems/server/Cargo.toml +7 -0
  33. data/gems/server/ext/itsi_error/src/from.rs +26 -29
  34. data/gems/server/ext/itsi_error/src/lib.rs +1 -1
  35. data/gems/server/ext/itsi_server/Cargo.lock +2956 -0
  36. data/gems/server/ext/itsi_server/Cargo.toml +2 -1
  37. data/gems/server/ext/itsi_server/src/env.rs +43 -0
  38. data/gems/server/ext/itsi_server/src/lib.rs +1 -0
  39. data/gems/server/ext/itsi_server/src/request/itsi_request.rs +7 -7
  40. data/gems/server/ext/itsi_server/src/server/bind.rs +4 -3
  41. data/gems/server/ext/itsi_server/src/server/itsi_server.rs +1 -8
  42. data/gems/server/ext/itsi_server/src/server/listener.rs +98 -107
  43. data/gems/server/ext/itsi_server/src/server/serve_strategy/single_mode.rs +22 -12
  44. data/gems/server/ext/itsi_server/src/server/tls/locked_dir_cache.rs +3 -3
  45. data/gems/server/ext/itsi_server/src/server/tls.rs +83 -44
  46. data/gems/server/lib/itsi/index.html.erb +91 -0
  47. data/gems/server/lib/itsi/server/scheduler_mode.rb +1 -1
  48. data/gems/server/lib/itsi/server/version.rb +1 -1
  49. data/gems/server/lib/itsi/server.rb +22 -2
  50. data/lib/itsi/version.rb +1 -1
  51. data/sandbox/deploy/main.tf +237 -0
  52. data/sandbox/deploy/outputs.tf +4 -0
  53. data/sandbox/deploy/vars.tf +11 -0
  54. data/sandbox/falcon_benchmark/Gemfile +10 -0
  55. data/sandbox/falcon_benchmark/Gemfile.lock +140 -0
  56. data/sandbox/falcon_benchmark/config.ru +54 -0
  57. data/sandbox/itsi_sandbox_async/Gemfile +10 -0
  58. data/sandbox/itsi_sandbox_async/Gemfile.lock +69 -0
  59. data/sandbox/itsi_sandbox_async/config.ru +10 -0
  60. data/sandbox/itsi_sandbox_hanami/.env +2 -0
  61. data/sandbox/itsi_sandbox_hanami/.gitignore +6 -0
  62. data/sandbox/itsi_sandbox_hanami/.rspec +1 -0
  63. data/sandbox/itsi_sandbox_hanami/Gemfile +49 -0
  64. data/sandbox/itsi_sandbox_hanami/Gemfile.lock +440 -0
  65. data/sandbox/itsi_sandbox_hanami/Guardfile +9 -0
  66. data/sandbox/itsi_sandbox_hanami/Procfile.dev +2 -0
  67. data/sandbox/itsi_sandbox_hanami/README.md +1 -0
  68. data/sandbox/itsi_sandbox_hanami/Rakefile +3 -0
  69. data/sandbox/itsi_sandbox_hanami/app/action.rb +12 -0
  70. data/sandbox/itsi_sandbox_hanami/app/actions/.keep +0 -0
  71. data/sandbox/itsi_sandbox_hanami/app/assets/css/app.css +5 -0
  72. data/sandbox/itsi_sandbox_hanami/app/assets/images/favicon.ico +0 -0
  73. data/sandbox/itsi_sandbox_hanami/app/assets/js/app.js +1 -0
  74. data/sandbox/itsi_sandbox_hanami/app/db/relation.rb +10 -0
  75. data/sandbox/itsi_sandbox_hanami/app/db/repo.rb +10 -0
  76. data/sandbox/itsi_sandbox_hanami/app/db/struct.rb +10 -0
  77. data/sandbox/itsi_sandbox_hanami/app/operation.rb +9 -0
  78. data/sandbox/itsi_sandbox_hanami/app/relations/.keep +0 -0
  79. data/sandbox/itsi_sandbox_hanami/app/repos/.keep +0 -0
  80. data/sandbox/itsi_sandbox_hanami/app/structs/.keep +0 -0
  81. data/sandbox/itsi_sandbox_hanami/app/templates/layouts/app.html.erb +14 -0
  82. data/sandbox/itsi_sandbox_hanami/app/view.rb +9 -0
  83. data/sandbox/itsi_sandbox_hanami/app/views/helpers.rb +10 -0
  84. data/sandbox/itsi_sandbox_hanami/bin/dev +8 -0
  85. data/sandbox/itsi_sandbox_hanami/config/app.rb +8 -0
  86. data/sandbox/itsi_sandbox_hanami/config/assets.js +16 -0
  87. data/sandbox/itsi_sandbox_hanami/config/db/migrate/.keep +0 -0
  88. data/sandbox/itsi_sandbox_hanami/config/db/seeds.rb +15 -0
  89. data/sandbox/itsi_sandbox_hanami/config/puma.rb +47 -0
  90. data/sandbox/itsi_sandbox_hanami/config/routes.rb +7 -0
  91. data/sandbox/itsi_sandbox_hanami/config/settings.rb +9 -0
  92. data/sandbox/itsi_sandbox_hanami/config.ru +5 -0
  93. data/sandbox/itsi_sandbox_hanami/db/.keep +0 -0
  94. data/sandbox/itsi_sandbox_hanami/lib/itsi_hanami/types.rb +11 -0
  95. data/sandbox/itsi_sandbox_hanami/lib/tasks/.keep +0 -0
  96. data/sandbox/itsi_sandbox_hanami/package-lock.json +946 -0
  97. data/sandbox/itsi_sandbox_hanami/package.json +8 -0
  98. data/sandbox/itsi_sandbox_hanami/spec/requests/root_spec.rb +11 -0
  99. data/sandbox/itsi_sandbox_hanami/spec/spec_helper.rb +9 -0
  100. data/sandbox/itsi_sandbox_hanami/spec/support/db/cleaning.rb +42 -0
  101. data/sandbox/itsi_sandbox_hanami/spec/support/db.rb +10 -0
  102. data/sandbox/itsi_sandbox_hanami/spec/support/features.rb +5 -0
  103. data/sandbox/itsi_sandbox_hanami/spec/support/operations.rb +8 -0
  104. data/sandbox/itsi_sandbox_hanami/spec/support/requests.rb +13 -0
  105. data/sandbox/itsi_sandbox_hanami/spec/support/rspec.rb +61 -0
  106. data/sandbox/itsi_sandbox_rack/Gemfile +17 -0
  107. data/sandbox/itsi_sandbox_rack/Gemfile.lock +153 -0
  108. data/sandbox/itsi_sandbox_rack/config.ru +18 -0
  109. data/sandbox/itsi_sandbox_rack_lint/Gemfile +7 -0
  110. data/sandbox/itsi_sandbox_rack_lint/Gemfile.lock +27 -0
  111. data/sandbox/itsi_sandbox_rack_lint/config.ru +3 -0
  112. data/sandbox/itsi_sandbox_rails/.dockerignore +51 -0
  113. data/sandbox/itsi_sandbox_rails/.gitattributes +9 -0
  114. data/sandbox/itsi_sandbox_rails/.github/dependabot.yml +12 -0
  115. data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +90 -0
  116. data/sandbox/itsi_sandbox_rails/.gitignore +34 -0
  117. data/sandbox/itsi_sandbox_rails/.kamal/hooks/docker-setup.sample +3 -0
  118. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-app-boot.sample +3 -0
  119. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-deploy.sample +14 -0
  120. data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-proxy-reboot.sample +3 -0
  121. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-app-boot.sample +3 -0
  122. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-build.sample +51 -0
  123. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-connect.sample +47 -0
  124. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-deploy.sample +109 -0
  125. data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-proxy-reboot.sample +3 -0
  126. data/sandbox/itsi_sandbox_rails/.kamal/secrets +17 -0
  127. data/sandbox/itsi_sandbox_rails/.rubocop.yml +8 -0
  128. data/sandbox/itsi_sandbox_rails/.ruby-version +1 -0
  129. data/sandbox/itsi_sandbox_rails/Dockerfile +72 -0
  130. data/sandbox/itsi_sandbox_rails/Gemfile +72 -0
  131. data/sandbox/itsi_sandbox_rails/Gemfile.lock +480 -0
  132. data/sandbox/itsi_sandbox_rails/README.md +24 -0
  133. data/sandbox/itsi_sandbox_rails/Rakefile +6 -0
  134. data/sandbox/itsi_sandbox_rails/app/assets/images/.keep +0 -0
  135. data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +10 -0
  136. data/sandbox/itsi_sandbox_rails/app/controllers/application_controller.rb +4 -0
  137. data/sandbox/itsi_sandbox_rails/app/controllers/concerns/.keep +0 -0
  138. data/sandbox/itsi_sandbox_rails/app/controllers/home_controller.rb +51 -0
  139. data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +41 -0
  140. data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +32 -0
  141. data/sandbox/itsi_sandbox_rails/app/helpers/application_helper.rb +2 -0
  142. data/sandbox/itsi_sandbox_rails/app/javascript/application.js +3 -0
  143. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/application.js +9 -0
  144. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/hello_controller.js +7 -0
  145. data/sandbox/itsi_sandbox_rails/app/javascript/controllers/index.js +4 -0
  146. data/sandbox/itsi_sandbox_rails/app/jobs/application_job.rb +7 -0
  147. data/sandbox/itsi_sandbox_rails/app/mailers/application_mailer.rb +4 -0
  148. data/sandbox/itsi_sandbox_rails/app/models/application_record.rb +3 -0
  149. data/sandbox/itsi_sandbox_rails/app/models/concerns/.keep +0 -0
  150. data/sandbox/itsi_sandbox_rails/app/models/post.rb +2 -0
  151. data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +28 -0
  152. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.html.erb +13 -0
  153. data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.text.erb +1 -0
  154. data/sandbox/itsi_sandbox_rails/app/views/pwa/manifest.json.erb +22 -0
  155. data/sandbox/itsi_sandbox_rails/app/views/pwa/service-worker.js +26 -0
  156. data/sandbox/itsi_sandbox_rails/bin/brakeman +7 -0
  157. data/sandbox/itsi_sandbox_rails/bin/bundle +109 -0
  158. data/sandbox/itsi_sandbox_rails/bin/dev +2 -0
  159. data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +14 -0
  160. data/sandbox/itsi_sandbox_rails/bin/importmap +4 -0
  161. data/sandbox/itsi_sandbox_rails/bin/jobs +6 -0
  162. data/sandbox/itsi_sandbox_rails/bin/kamal +27 -0
  163. data/sandbox/itsi_sandbox_rails/bin/rails +4 -0
  164. data/sandbox/itsi_sandbox_rails/bin/rake +4 -0
  165. data/sandbox/itsi_sandbox_rails/bin/rubocop +8 -0
  166. data/sandbox/itsi_sandbox_rails/bin/setup +34 -0
  167. data/sandbox/itsi_sandbox_rails/bin/thrust +5 -0
  168. data/sandbox/itsi_sandbox_rails/config/application.rb +61 -0
  169. data/sandbox/itsi_sandbox_rails/config/boot.rb +4 -0
  170. data/sandbox/itsi_sandbox_rails/config/cable.yml +17 -0
  171. data/sandbox/itsi_sandbox_rails/config/cache.yml +16 -0
  172. data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +1 -0
  173. data/sandbox/itsi_sandbox_rails/config/database.yml +40 -0
  174. data/sandbox/itsi_sandbox_rails/config/deploy.yml +116 -0
  175. data/sandbox/itsi_sandbox_rails/config/environment.rb +5 -0
  176. data/sandbox/itsi_sandbox_rails/config/environments/development.rb +72 -0
  177. data/sandbox/itsi_sandbox_rails/config/environments/production.rb +90 -0
  178. data/sandbox/itsi_sandbox_rails/config/environments/test.rb +53 -0
  179. data/sandbox/itsi_sandbox_rails/config/importmap.rb +7 -0
  180. data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +7 -0
  181. data/sandbox/itsi_sandbox_rails/config/initializers/content_security_policy.rb +25 -0
  182. data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +8 -0
  183. data/sandbox/itsi_sandbox_rails/config/initializers/inflections.rb +16 -0
  184. data/sandbox/itsi_sandbox_rails/config/locales/en.yml +31 -0
  185. data/sandbox/itsi_sandbox_rails/config/puma.rb +41 -0
  186. data/sandbox/itsi_sandbox_rails/config/queue.yml +18 -0
  187. data/sandbox/itsi_sandbox_rails/config/recurring.yml +10 -0
  188. data/sandbox/itsi_sandbox_rails/config/routes.rb +21 -0
  189. data/sandbox/itsi_sandbox_rails/config/storage.yml +34 -0
  190. data/sandbox/itsi_sandbox_rails/config.ru +7 -0
  191. data/sandbox/itsi_sandbox_rails/db/cable_schema.rb +11 -0
  192. data/sandbox/itsi_sandbox_rails/db/cache_schema.rb +14 -0
  193. data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +10 -0
  194. data/sandbox/itsi_sandbox_rails/db/queue_schema.rb +129 -0
  195. data/sandbox/itsi_sandbox_rails/db/schema.rb +23 -0
  196. data/sandbox/itsi_sandbox_rails/db/seeds.rb +9 -0
  197. data/sandbox/itsi_sandbox_rails/lib/tasks/.keep +0 -0
  198. data/sandbox/itsi_sandbox_rails/log/.keep +0 -0
  199. data/sandbox/itsi_sandbox_rails/public/400.html +114 -0
  200. data/sandbox/itsi_sandbox_rails/public/404.html +114 -0
  201. data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +114 -0
  202. data/sandbox/itsi_sandbox_rails/public/422.html +114 -0
  203. data/sandbox/itsi_sandbox_rails/public/500.html +114 -0
  204. data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
  205. data/sandbox/itsi_sandbox_rails/public/icon.svg +3 -0
  206. data/sandbox/itsi_sandbox_rails/public/robots.txt +1 -0
  207. data/sandbox/itsi_sandbox_rails/script/.keep +0 -0
  208. data/sandbox/itsi_sandbox_rails/storage/.keep +0 -0
  209. data/sandbox/itsi_sandbox_rails/test/application_system_test_case.rb +5 -0
  210. data/sandbox/itsi_sandbox_rails/test/controllers/.keep +0 -0
  211. data/sandbox/itsi_sandbox_rails/test/fixtures/files/.keep +0 -0
  212. data/sandbox/itsi_sandbox_rails/test/fixtures/posts.yml +9 -0
  213. data/sandbox/itsi_sandbox_rails/test/helpers/.keep +0 -0
  214. data/sandbox/itsi_sandbox_rails/test/integration/.keep +0 -0
  215. data/sandbox/itsi_sandbox_rails/test/mailers/.keep +0 -0
  216. data/sandbox/itsi_sandbox_rails/test/models/.keep +0 -0
  217. data/sandbox/itsi_sandbox_rails/test/models/post_test.rb +7 -0
  218. data/sandbox/itsi_sandbox_rails/test/system/.keep +0 -0
  219. data/sandbox/itsi_sandbox_rails/test/test_helper.rb +15 -0
  220. data/sandbox/itsi_sandbox_rails/tmp/.keep +0 -0
  221. data/sandbox/itsi_sandbox_rails/tmp/pids/.keep +0 -0
  222. data/sandbox/itsi_sandbox_rails/tmp/storage/.keep +0 -0
  223. data/sandbox/itsi_sandbox_rails/vendor/.keep +0 -0
  224. data/sandbox/itsi_sandbox_rails/vendor/javascript/.keep +0 -0
  225. data/sandbox/itsi_sandbox_roda/Gemfile +5 -0
  226. data/sandbox/itsi_sandbox_roda/Gemfile.lock +44 -0
  227. data/sandbox/itsi_sandbox_roda/config.ru +39 -0
  228. data/sandbox/itsi_sinatra/Gemfile +9 -0
  229. data/sandbox/itsi_sinatra/Gemfile.lock +81 -0
  230. data/sandbox/itsi_sinatra/app.rb +9 -0
  231. data/sandbox/pebble/docker-compose.yml +11 -0
  232. data/tasks.txt +10 -4
  233. metadata +196 -12
  234. data/crates/itsi_server/src/server/itsi_ca/itsi_ca.crt +0 -13
  235. data/crates/itsi_server/src/server/itsi_ca/itsi_ca.key +0 -5
  236. data/gems/scheduler/ext/itsi_server/src/server/itsi_ca/itsi_ca.crt +0 -13
  237. data/gems/scheduler/ext/itsi_server/src/server/itsi_ca/itsi_ca.key +0 -5
  238. data/gems/server/ext/itsi_server/src/server/itsi_ca/itsi_ca.crt +0 -13
  239. data/gems/server/ext/itsi_server/src/server/itsi_ca/itsi_ca.key +0 -5
@@ -0,0 +1,946 @@
1
+ {
2
+ "name": "itsi_hanami",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "itsi_hanami",
8
+ "dependencies": {
9
+ "hanami-assets": "^2.2.1"
10
+ }
11
+ },
12
+ "node_modules/@esbuild/aix-ppc64": {
13
+ "version": "0.19.12",
14
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz",
15
+ "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==",
16
+ "cpu": [
17
+ "ppc64"
18
+ ],
19
+ "license": "MIT",
20
+ "optional": true,
21
+ "os": [
22
+ "aix"
23
+ ],
24
+ "engines": {
25
+ "node": ">=12"
26
+ }
27
+ },
28
+ "node_modules/@esbuild/android-arm": {
29
+ "version": "0.19.12",
30
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz",
31
+ "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==",
32
+ "cpu": [
33
+ "arm"
34
+ ],
35
+ "license": "MIT",
36
+ "optional": true,
37
+ "os": [
38
+ "android"
39
+ ],
40
+ "engines": {
41
+ "node": ">=12"
42
+ }
43
+ },
44
+ "node_modules/@esbuild/android-arm64": {
45
+ "version": "0.19.12",
46
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz",
47
+ "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==",
48
+ "cpu": [
49
+ "arm64"
50
+ ],
51
+ "license": "MIT",
52
+ "optional": true,
53
+ "os": [
54
+ "android"
55
+ ],
56
+ "engines": {
57
+ "node": ">=12"
58
+ }
59
+ },
60
+ "node_modules/@esbuild/android-x64": {
61
+ "version": "0.19.12",
62
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz",
63
+ "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==",
64
+ "cpu": [
65
+ "x64"
66
+ ],
67
+ "license": "MIT",
68
+ "optional": true,
69
+ "os": [
70
+ "android"
71
+ ],
72
+ "engines": {
73
+ "node": ">=12"
74
+ }
75
+ },
76
+ "node_modules/@esbuild/darwin-arm64": {
77
+ "version": "0.19.12",
78
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz",
79
+ "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==",
80
+ "cpu": [
81
+ "arm64"
82
+ ],
83
+ "license": "MIT",
84
+ "optional": true,
85
+ "os": [
86
+ "darwin"
87
+ ],
88
+ "engines": {
89
+ "node": ">=12"
90
+ }
91
+ },
92
+ "node_modules/@esbuild/darwin-x64": {
93
+ "version": "0.19.12",
94
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz",
95
+ "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==",
96
+ "cpu": [
97
+ "x64"
98
+ ],
99
+ "license": "MIT",
100
+ "optional": true,
101
+ "os": [
102
+ "darwin"
103
+ ],
104
+ "engines": {
105
+ "node": ">=12"
106
+ }
107
+ },
108
+ "node_modules/@esbuild/freebsd-arm64": {
109
+ "version": "0.19.12",
110
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz",
111
+ "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==",
112
+ "cpu": [
113
+ "arm64"
114
+ ],
115
+ "license": "MIT",
116
+ "optional": true,
117
+ "os": [
118
+ "freebsd"
119
+ ],
120
+ "engines": {
121
+ "node": ">=12"
122
+ }
123
+ },
124
+ "node_modules/@esbuild/freebsd-x64": {
125
+ "version": "0.19.12",
126
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz",
127
+ "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==",
128
+ "cpu": [
129
+ "x64"
130
+ ],
131
+ "license": "MIT",
132
+ "optional": true,
133
+ "os": [
134
+ "freebsd"
135
+ ],
136
+ "engines": {
137
+ "node": ">=12"
138
+ }
139
+ },
140
+ "node_modules/@esbuild/linux-arm": {
141
+ "version": "0.19.12",
142
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz",
143
+ "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==",
144
+ "cpu": [
145
+ "arm"
146
+ ],
147
+ "license": "MIT",
148
+ "optional": true,
149
+ "os": [
150
+ "linux"
151
+ ],
152
+ "engines": {
153
+ "node": ">=12"
154
+ }
155
+ },
156
+ "node_modules/@esbuild/linux-arm64": {
157
+ "version": "0.19.12",
158
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz",
159
+ "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==",
160
+ "cpu": [
161
+ "arm64"
162
+ ],
163
+ "license": "MIT",
164
+ "optional": true,
165
+ "os": [
166
+ "linux"
167
+ ],
168
+ "engines": {
169
+ "node": ">=12"
170
+ }
171
+ },
172
+ "node_modules/@esbuild/linux-ia32": {
173
+ "version": "0.19.12",
174
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz",
175
+ "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==",
176
+ "cpu": [
177
+ "ia32"
178
+ ],
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "linux"
183
+ ],
184
+ "engines": {
185
+ "node": ">=12"
186
+ }
187
+ },
188
+ "node_modules/@esbuild/linux-loong64": {
189
+ "version": "0.19.12",
190
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz",
191
+ "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==",
192
+ "cpu": [
193
+ "loong64"
194
+ ],
195
+ "license": "MIT",
196
+ "optional": true,
197
+ "os": [
198
+ "linux"
199
+ ],
200
+ "engines": {
201
+ "node": ">=12"
202
+ }
203
+ },
204
+ "node_modules/@esbuild/linux-mips64el": {
205
+ "version": "0.19.12",
206
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz",
207
+ "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==",
208
+ "cpu": [
209
+ "mips64el"
210
+ ],
211
+ "license": "MIT",
212
+ "optional": true,
213
+ "os": [
214
+ "linux"
215
+ ],
216
+ "engines": {
217
+ "node": ">=12"
218
+ }
219
+ },
220
+ "node_modules/@esbuild/linux-ppc64": {
221
+ "version": "0.19.12",
222
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz",
223
+ "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==",
224
+ "cpu": [
225
+ "ppc64"
226
+ ],
227
+ "license": "MIT",
228
+ "optional": true,
229
+ "os": [
230
+ "linux"
231
+ ],
232
+ "engines": {
233
+ "node": ">=12"
234
+ }
235
+ },
236
+ "node_modules/@esbuild/linux-riscv64": {
237
+ "version": "0.19.12",
238
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz",
239
+ "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==",
240
+ "cpu": [
241
+ "riscv64"
242
+ ],
243
+ "license": "MIT",
244
+ "optional": true,
245
+ "os": [
246
+ "linux"
247
+ ],
248
+ "engines": {
249
+ "node": ">=12"
250
+ }
251
+ },
252
+ "node_modules/@esbuild/linux-s390x": {
253
+ "version": "0.19.12",
254
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz",
255
+ "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==",
256
+ "cpu": [
257
+ "s390x"
258
+ ],
259
+ "license": "MIT",
260
+ "optional": true,
261
+ "os": [
262
+ "linux"
263
+ ],
264
+ "engines": {
265
+ "node": ">=12"
266
+ }
267
+ },
268
+ "node_modules/@esbuild/linux-x64": {
269
+ "version": "0.19.12",
270
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz",
271
+ "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==",
272
+ "cpu": [
273
+ "x64"
274
+ ],
275
+ "license": "MIT",
276
+ "optional": true,
277
+ "os": [
278
+ "linux"
279
+ ],
280
+ "engines": {
281
+ "node": ">=12"
282
+ }
283
+ },
284
+ "node_modules/@esbuild/netbsd-x64": {
285
+ "version": "0.19.12",
286
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz",
287
+ "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==",
288
+ "cpu": [
289
+ "x64"
290
+ ],
291
+ "license": "MIT",
292
+ "optional": true,
293
+ "os": [
294
+ "netbsd"
295
+ ],
296
+ "engines": {
297
+ "node": ">=12"
298
+ }
299
+ },
300
+ "node_modules/@esbuild/openbsd-x64": {
301
+ "version": "0.19.12",
302
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz",
303
+ "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==",
304
+ "cpu": [
305
+ "x64"
306
+ ],
307
+ "license": "MIT",
308
+ "optional": true,
309
+ "os": [
310
+ "openbsd"
311
+ ],
312
+ "engines": {
313
+ "node": ">=12"
314
+ }
315
+ },
316
+ "node_modules/@esbuild/sunos-x64": {
317
+ "version": "0.19.12",
318
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz",
319
+ "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==",
320
+ "cpu": [
321
+ "x64"
322
+ ],
323
+ "license": "MIT",
324
+ "optional": true,
325
+ "os": [
326
+ "sunos"
327
+ ],
328
+ "engines": {
329
+ "node": ">=12"
330
+ }
331
+ },
332
+ "node_modules/@esbuild/win32-arm64": {
333
+ "version": "0.19.12",
334
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz",
335
+ "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==",
336
+ "cpu": [
337
+ "arm64"
338
+ ],
339
+ "license": "MIT",
340
+ "optional": true,
341
+ "os": [
342
+ "win32"
343
+ ],
344
+ "engines": {
345
+ "node": ">=12"
346
+ }
347
+ },
348
+ "node_modules/@esbuild/win32-ia32": {
349
+ "version": "0.19.12",
350
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz",
351
+ "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==",
352
+ "cpu": [
353
+ "ia32"
354
+ ],
355
+ "license": "MIT",
356
+ "optional": true,
357
+ "os": [
358
+ "win32"
359
+ ],
360
+ "engines": {
361
+ "node": ">=12"
362
+ }
363
+ },
364
+ "node_modules/@esbuild/win32-x64": {
365
+ "version": "0.19.12",
366
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz",
367
+ "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==",
368
+ "cpu": [
369
+ "x64"
370
+ ],
371
+ "license": "MIT",
372
+ "optional": true,
373
+ "os": [
374
+ "win32"
375
+ ],
376
+ "engines": {
377
+ "node": ">=12"
378
+ }
379
+ },
380
+ "node_modules/@isaacs/cliui": {
381
+ "version": "8.0.2",
382
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
383
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
384
+ "license": "ISC",
385
+ "dependencies": {
386
+ "string-width": "^5.1.2",
387
+ "string-width-cjs": "npm:string-width@^4.2.0",
388
+ "strip-ansi": "^7.0.1",
389
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
390
+ "wrap-ansi": "^8.1.0",
391
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
392
+ },
393
+ "engines": {
394
+ "node": ">=12"
395
+ }
396
+ },
397
+ "node_modules/@pkgjs/parseargs": {
398
+ "version": "0.11.0",
399
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
400
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
401
+ "license": "MIT",
402
+ "optional": true,
403
+ "engines": {
404
+ "node": ">=14"
405
+ }
406
+ },
407
+ "node_modules/ansi-regex": {
408
+ "version": "6.1.0",
409
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
410
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
411
+ "license": "MIT",
412
+ "engines": {
413
+ "node": ">=12"
414
+ },
415
+ "funding": {
416
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
417
+ }
418
+ },
419
+ "node_modules/ansi-styles": {
420
+ "version": "6.2.1",
421
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
422
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
423
+ "license": "MIT",
424
+ "engines": {
425
+ "node": ">=12"
426
+ },
427
+ "funding": {
428
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
429
+ }
430
+ },
431
+ "node_modules/balanced-match": {
432
+ "version": "1.0.2",
433
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
434
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
435
+ "license": "MIT"
436
+ },
437
+ "node_modules/brace-expansion": {
438
+ "version": "2.0.1",
439
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
440
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
441
+ "license": "MIT",
442
+ "dependencies": {
443
+ "balanced-match": "^1.0.0"
444
+ }
445
+ },
446
+ "node_modules/color-convert": {
447
+ "version": "2.0.1",
448
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
449
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
450
+ "license": "MIT",
451
+ "dependencies": {
452
+ "color-name": "~1.1.4"
453
+ },
454
+ "engines": {
455
+ "node": ">=7.0.0"
456
+ }
457
+ },
458
+ "node_modules/color-name": {
459
+ "version": "1.1.4",
460
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
461
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
462
+ "license": "MIT"
463
+ },
464
+ "node_modules/cross-spawn": {
465
+ "version": "7.0.6",
466
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
467
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
468
+ "license": "MIT",
469
+ "dependencies": {
470
+ "path-key": "^3.1.0",
471
+ "shebang-command": "^2.0.0",
472
+ "which": "^2.0.1"
473
+ },
474
+ "engines": {
475
+ "node": ">= 8"
476
+ }
477
+ },
478
+ "node_modules/eastasianwidth": {
479
+ "version": "0.2.0",
480
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
481
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
482
+ "license": "MIT"
483
+ },
484
+ "node_modules/emoji-regex": {
485
+ "version": "9.2.2",
486
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
487
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
488
+ "license": "MIT"
489
+ },
490
+ "node_modules/esbuild": {
491
+ "version": "0.19.12",
492
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz",
493
+ "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==",
494
+ "hasInstallScript": true,
495
+ "license": "MIT",
496
+ "bin": {
497
+ "esbuild": "bin/esbuild"
498
+ },
499
+ "engines": {
500
+ "node": ">=12"
501
+ },
502
+ "optionalDependencies": {
503
+ "@esbuild/aix-ppc64": "0.19.12",
504
+ "@esbuild/android-arm": "0.19.12",
505
+ "@esbuild/android-arm64": "0.19.12",
506
+ "@esbuild/android-x64": "0.19.12",
507
+ "@esbuild/darwin-arm64": "0.19.12",
508
+ "@esbuild/darwin-x64": "0.19.12",
509
+ "@esbuild/freebsd-arm64": "0.19.12",
510
+ "@esbuild/freebsd-x64": "0.19.12",
511
+ "@esbuild/linux-arm": "0.19.12",
512
+ "@esbuild/linux-arm64": "0.19.12",
513
+ "@esbuild/linux-ia32": "0.19.12",
514
+ "@esbuild/linux-loong64": "0.19.12",
515
+ "@esbuild/linux-mips64el": "0.19.12",
516
+ "@esbuild/linux-ppc64": "0.19.12",
517
+ "@esbuild/linux-riscv64": "0.19.12",
518
+ "@esbuild/linux-s390x": "0.19.12",
519
+ "@esbuild/linux-x64": "0.19.12",
520
+ "@esbuild/netbsd-x64": "0.19.12",
521
+ "@esbuild/openbsd-x64": "0.19.12",
522
+ "@esbuild/sunos-x64": "0.19.12",
523
+ "@esbuild/win32-arm64": "0.19.12",
524
+ "@esbuild/win32-ia32": "0.19.12",
525
+ "@esbuild/win32-x64": "0.19.12"
526
+ }
527
+ },
528
+ "node_modules/foreground-child": {
529
+ "version": "3.3.1",
530
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
531
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
532
+ "license": "ISC",
533
+ "dependencies": {
534
+ "cross-spawn": "^7.0.6",
535
+ "signal-exit": "^4.0.1"
536
+ },
537
+ "engines": {
538
+ "node": ">=14"
539
+ },
540
+ "funding": {
541
+ "url": "https://github.com/sponsors/isaacs"
542
+ }
543
+ },
544
+ "node_modules/fs-extra": {
545
+ "version": "11.3.0",
546
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
547
+ "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==",
548
+ "license": "MIT",
549
+ "dependencies": {
550
+ "graceful-fs": "^4.2.0",
551
+ "jsonfile": "^6.0.1",
552
+ "universalify": "^2.0.0"
553
+ },
554
+ "engines": {
555
+ "node": ">=14.14"
556
+ }
557
+ },
558
+ "node_modules/glob": {
559
+ "version": "10.4.5",
560
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
561
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
562
+ "license": "ISC",
563
+ "dependencies": {
564
+ "foreground-child": "^3.1.0",
565
+ "jackspeak": "^3.1.2",
566
+ "minimatch": "^9.0.4",
567
+ "minipass": "^7.1.2",
568
+ "package-json-from-dist": "^1.0.0",
569
+ "path-scurry": "^1.11.1"
570
+ },
571
+ "bin": {
572
+ "glob": "dist/esm/bin.mjs"
573
+ },
574
+ "funding": {
575
+ "url": "https://github.com/sponsors/isaacs"
576
+ }
577
+ },
578
+ "node_modules/graceful-fs": {
579
+ "version": "4.2.11",
580
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
581
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
582
+ "license": "ISC"
583
+ },
584
+ "node_modules/hanami-assets": {
585
+ "version": "2.2.1",
586
+ "resolved": "https://registry.npmjs.org/hanami-assets/-/hanami-assets-2.2.1.tgz",
587
+ "integrity": "sha512-/zE7COY/seadmeBR+TVGD29DnJClxWi/En6YQQIH51s5/xhUHiuucbLdicmTmhw2ousqQ1mN9uX27RPkLujs+g==",
588
+ "license": "MIT",
589
+ "dependencies": {
590
+ "esbuild": "^0.19.0",
591
+ "fs-extra": "^11.1.0",
592
+ "glob": "^10.3.3"
593
+ },
594
+ "funding": {
595
+ "url": "https://github.com/sponsors/hanami"
596
+ }
597
+ },
598
+ "node_modules/is-fullwidth-code-point": {
599
+ "version": "3.0.0",
600
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
601
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
602
+ "license": "MIT",
603
+ "engines": {
604
+ "node": ">=8"
605
+ }
606
+ },
607
+ "node_modules/isexe": {
608
+ "version": "2.0.0",
609
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
610
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
611
+ "license": "ISC"
612
+ },
613
+ "node_modules/jackspeak": {
614
+ "version": "3.4.3",
615
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
616
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
617
+ "license": "BlueOak-1.0.0",
618
+ "dependencies": {
619
+ "@isaacs/cliui": "^8.0.2"
620
+ },
621
+ "funding": {
622
+ "url": "https://github.com/sponsors/isaacs"
623
+ },
624
+ "optionalDependencies": {
625
+ "@pkgjs/parseargs": "^0.11.0"
626
+ }
627
+ },
628
+ "node_modules/jsonfile": {
629
+ "version": "6.1.0",
630
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
631
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
632
+ "license": "MIT",
633
+ "dependencies": {
634
+ "universalify": "^2.0.0"
635
+ },
636
+ "optionalDependencies": {
637
+ "graceful-fs": "^4.1.6"
638
+ }
639
+ },
640
+ "node_modules/lru-cache": {
641
+ "version": "10.4.3",
642
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
643
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
644
+ "license": "ISC"
645
+ },
646
+ "node_modules/minimatch": {
647
+ "version": "9.0.5",
648
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
649
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
650
+ "license": "ISC",
651
+ "dependencies": {
652
+ "brace-expansion": "^2.0.1"
653
+ },
654
+ "engines": {
655
+ "node": ">=16 || 14 >=14.17"
656
+ },
657
+ "funding": {
658
+ "url": "https://github.com/sponsors/isaacs"
659
+ }
660
+ },
661
+ "node_modules/minipass": {
662
+ "version": "7.1.2",
663
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
664
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
665
+ "license": "ISC",
666
+ "engines": {
667
+ "node": ">=16 || 14 >=14.17"
668
+ }
669
+ },
670
+ "node_modules/package-json-from-dist": {
671
+ "version": "1.0.1",
672
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
673
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
674
+ "license": "BlueOak-1.0.0"
675
+ },
676
+ "node_modules/path-key": {
677
+ "version": "3.1.1",
678
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
679
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
680
+ "license": "MIT",
681
+ "engines": {
682
+ "node": ">=8"
683
+ }
684
+ },
685
+ "node_modules/path-scurry": {
686
+ "version": "1.11.1",
687
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
688
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
689
+ "license": "BlueOak-1.0.0",
690
+ "dependencies": {
691
+ "lru-cache": "^10.2.0",
692
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
693
+ },
694
+ "engines": {
695
+ "node": ">=16 || 14 >=14.18"
696
+ },
697
+ "funding": {
698
+ "url": "https://github.com/sponsors/isaacs"
699
+ }
700
+ },
701
+ "node_modules/shebang-command": {
702
+ "version": "2.0.0",
703
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
704
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
705
+ "license": "MIT",
706
+ "dependencies": {
707
+ "shebang-regex": "^3.0.0"
708
+ },
709
+ "engines": {
710
+ "node": ">=8"
711
+ }
712
+ },
713
+ "node_modules/shebang-regex": {
714
+ "version": "3.0.0",
715
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
716
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
717
+ "license": "MIT",
718
+ "engines": {
719
+ "node": ">=8"
720
+ }
721
+ },
722
+ "node_modules/signal-exit": {
723
+ "version": "4.1.0",
724
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
725
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
726
+ "license": "ISC",
727
+ "engines": {
728
+ "node": ">=14"
729
+ },
730
+ "funding": {
731
+ "url": "https://github.com/sponsors/isaacs"
732
+ }
733
+ },
734
+ "node_modules/string-width": {
735
+ "version": "5.1.2",
736
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
737
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
738
+ "license": "MIT",
739
+ "dependencies": {
740
+ "eastasianwidth": "^0.2.0",
741
+ "emoji-regex": "^9.2.2",
742
+ "strip-ansi": "^7.0.1"
743
+ },
744
+ "engines": {
745
+ "node": ">=12"
746
+ },
747
+ "funding": {
748
+ "url": "https://github.com/sponsors/sindresorhus"
749
+ }
750
+ },
751
+ "node_modules/string-width-cjs": {
752
+ "name": "string-width",
753
+ "version": "4.2.3",
754
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
755
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
756
+ "license": "MIT",
757
+ "dependencies": {
758
+ "emoji-regex": "^8.0.0",
759
+ "is-fullwidth-code-point": "^3.0.0",
760
+ "strip-ansi": "^6.0.1"
761
+ },
762
+ "engines": {
763
+ "node": ">=8"
764
+ }
765
+ },
766
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
767
+ "version": "5.0.1",
768
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
769
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
770
+ "license": "MIT",
771
+ "engines": {
772
+ "node": ">=8"
773
+ }
774
+ },
775
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
776
+ "version": "8.0.0",
777
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
778
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
779
+ "license": "MIT"
780
+ },
781
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
782
+ "version": "6.0.1",
783
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
784
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
785
+ "license": "MIT",
786
+ "dependencies": {
787
+ "ansi-regex": "^5.0.1"
788
+ },
789
+ "engines": {
790
+ "node": ">=8"
791
+ }
792
+ },
793
+ "node_modules/strip-ansi": {
794
+ "version": "7.1.0",
795
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
796
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
797
+ "license": "MIT",
798
+ "dependencies": {
799
+ "ansi-regex": "^6.0.1"
800
+ },
801
+ "engines": {
802
+ "node": ">=12"
803
+ },
804
+ "funding": {
805
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
806
+ }
807
+ },
808
+ "node_modules/strip-ansi-cjs": {
809
+ "name": "strip-ansi",
810
+ "version": "6.0.1",
811
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
812
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
813
+ "license": "MIT",
814
+ "dependencies": {
815
+ "ansi-regex": "^5.0.1"
816
+ },
817
+ "engines": {
818
+ "node": ">=8"
819
+ }
820
+ },
821
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
822
+ "version": "5.0.1",
823
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
824
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
825
+ "license": "MIT",
826
+ "engines": {
827
+ "node": ">=8"
828
+ }
829
+ },
830
+ "node_modules/universalify": {
831
+ "version": "2.0.1",
832
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
833
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
834
+ "license": "MIT",
835
+ "engines": {
836
+ "node": ">= 10.0.0"
837
+ }
838
+ },
839
+ "node_modules/which": {
840
+ "version": "2.0.2",
841
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
842
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
843
+ "license": "ISC",
844
+ "dependencies": {
845
+ "isexe": "^2.0.0"
846
+ },
847
+ "bin": {
848
+ "node-which": "bin/node-which"
849
+ },
850
+ "engines": {
851
+ "node": ">= 8"
852
+ }
853
+ },
854
+ "node_modules/wrap-ansi": {
855
+ "version": "8.1.0",
856
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
857
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
858
+ "license": "MIT",
859
+ "dependencies": {
860
+ "ansi-styles": "^6.1.0",
861
+ "string-width": "^5.0.1",
862
+ "strip-ansi": "^7.0.1"
863
+ },
864
+ "engines": {
865
+ "node": ">=12"
866
+ },
867
+ "funding": {
868
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
869
+ }
870
+ },
871
+ "node_modules/wrap-ansi-cjs": {
872
+ "name": "wrap-ansi",
873
+ "version": "7.0.0",
874
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
875
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
876
+ "license": "MIT",
877
+ "dependencies": {
878
+ "ansi-styles": "^4.0.0",
879
+ "string-width": "^4.1.0",
880
+ "strip-ansi": "^6.0.0"
881
+ },
882
+ "engines": {
883
+ "node": ">=10"
884
+ },
885
+ "funding": {
886
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
887
+ }
888
+ },
889
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
890
+ "version": "5.0.1",
891
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
892
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
893
+ "license": "MIT",
894
+ "engines": {
895
+ "node": ">=8"
896
+ }
897
+ },
898
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
899
+ "version": "4.3.0",
900
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
901
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
902
+ "license": "MIT",
903
+ "dependencies": {
904
+ "color-convert": "^2.0.1"
905
+ },
906
+ "engines": {
907
+ "node": ">=8"
908
+ },
909
+ "funding": {
910
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
911
+ }
912
+ },
913
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
914
+ "version": "8.0.0",
915
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
916
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
917
+ "license": "MIT"
918
+ },
919
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
920
+ "version": "4.2.3",
921
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
922
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
923
+ "license": "MIT",
924
+ "dependencies": {
925
+ "emoji-regex": "^8.0.0",
926
+ "is-fullwidth-code-point": "^3.0.0",
927
+ "strip-ansi": "^6.0.1"
928
+ },
929
+ "engines": {
930
+ "node": ">=8"
931
+ }
932
+ },
933
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
934
+ "version": "6.0.1",
935
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
936
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
937
+ "license": "MIT",
938
+ "dependencies": {
939
+ "ansi-regex": "^5.0.1"
940
+ },
941
+ "engines": {
942
+ "node": ">=8"
943
+ }
944
+ }
945
+ }
946
+ }