@kanjijs/cli 0.2.0-beta.55 → 0.2.0-beta.57

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 (1945) hide show
  1. package/dist/index.js +62 -8
  2. package/package.json +2 -2
  3. package/templates/starter/bun.lock +105 -0
  4. package/templates/starter/node_modules/@auth/core/README.md +24 -0
  5. package/templates/starter/node_modules/@auth/core/adapters.d.ts +411 -0
  6. package/templates/starter/node_modules/@auth/core/adapters.d.ts.map +1 -0
  7. package/templates/starter/node_modules/@auth/core/adapters.js +167 -0
  8. package/templates/starter/node_modules/@auth/core/errors.d.ts +395 -0
  9. package/templates/starter/node_modules/@auth/core/errors.d.ts.map +1 -0
  10. package/templates/starter/node_modules/@auth/core/errors.js +433 -0
  11. package/templates/starter/node_modules/@auth/core/index.d.ts +522 -0
  12. package/templates/starter/node_modules/@auth/core/index.d.ts.map +1 -0
  13. package/templates/starter/node_modules/@auth/core/index.js +140 -0
  14. package/templates/starter/node_modules/@auth/core/jwt.d.ts +127 -0
  15. package/templates/starter/node_modules/@auth/core/jwt.d.ts.map +1 -0
  16. package/templates/starter/node_modules/@auth/core/jwt.js +124 -0
  17. package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.d.ts +35 -0
  18. package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.d.ts.map +1 -0
  19. package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.js +273 -0
  20. package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.d.ts +5 -0
  21. package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.d.ts.map +1 -0
  22. package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.js +393 -0
  23. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.d.ts +48 -0
  24. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.d.ts.map +1 -0
  25. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.js +158 -0
  26. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.d.ts +80 -0
  27. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.d.ts.map +1 -0
  28. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.js +208 -0
  29. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.d.ts +33 -0
  30. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.d.ts.map +1 -0
  31. package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.js +39 -0
  32. package/templates/starter/node_modules/@auth/core/lib/actions/index.d.ts +6 -0
  33. package/templates/starter/node_modules/@auth/core/lib/actions/index.d.ts.map +1 -0
  34. package/templates/starter/node_modules/@auth/core/lib/actions/index.js +5 -0
  35. package/templates/starter/node_modules/@auth/core/lib/actions/session.d.ts +5 -0
  36. package/templates/starter/node_modules/@auth/core/lib/actions/session.d.ts.map +1 -0
  37. package/templates/starter/node_modules/@auth/core/lib/actions/session.js +120 -0
  38. package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.d.ts +12 -0
  39. package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.d.ts.map +1 -0
  40. package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.js +75 -0
  41. package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.d.ts +4 -0
  42. package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.d.ts.map +1 -0
  43. package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.js +22 -0
  44. package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.d.ts +10 -0
  45. package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.d.ts.map +1 -0
  46. package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.js +84 -0
  47. package/templates/starter/node_modules/@auth/core/lib/actions/signout.d.ts +11 -0
  48. package/templates/starter/node_modules/@auth/core/lib/actions/signout.d.ts.map +1 -0
  49. package/templates/starter/node_modules/@auth/core/lib/actions/signout.js +30 -0
  50. package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.d.ts +8 -0
  51. package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.d.ts.map +1 -0
  52. package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.js +57 -0
  53. package/templates/starter/node_modules/@auth/core/lib/index.d.ts +21 -0
  54. package/templates/starter/node_modules/@auth/core/lib/index.d.ts.map +1 -0
  55. package/templates/starter/node_modules/@auth/core/lib/index.js +88 -0
  56. package/templates/starter/node_modules/@auth/core/lib/init.d.ts +25 -0
  57. package/templates/starter/node_modules/@auth/core/lib/init.d.ts.map +1 -0
  58. package/templates/starter/node_modules/@auth/core/lib/init.js +175 -0
  59. package/templates/starter/node_modules/@auth/core/lib/pages/error.d.ts +17 -0
  60. package/templates/starter/node_modules/@auth/core/lib/pages/error.d.ts.map +1 -0
  61. package/templates/starter/node_modules/@auth/core/lib/pages/error.js +40 -0
  62. package/templates/starter/node_modules/@auth/core/lib/pages/index.d.ts +39 -0
  63. package/templates/starter/node_modules/@auth/core/lib/pages/index.d.ts.map +1 -0
  64. package/templates/starter/node_modules/@auth/core/lib/pages/index.js +128 -0
  65. package/templates/starter/node_modules/@auth/core/lib/pages/signin.d.ts +10 -0
  66. package/templates/starter/node_modules/@auth/core/lib/pages/signin.d.ts.map +1 -0
  67. package/templates/starter/node_modules/@auth/core/lib/pages/signin.js +78 -0
  68. package/templates/starter/node_modules/@auth/core/lib/pages/signout.d.ts +8 -0
  69. package/templates/starter/node_modules/@auth/core/lib/pages/signout.d.ts.map +1 -0
  70. package/templates/starter/node_modules/@auth/core/lib/pages/signout.js +17 -0
  71. package/templates/starter/node_modules/@auth/core/lib/pages/styles.d.ts +3 -0
  72. package/templates/starter/node_modules/@auth/core/lib/pages/styles.d.ts.map +1 -0
  73. package/templates/starter/node_modules/@auth/core/lib/pages/styles.js +354 -0
  74. package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.d.ts +8 -0
  75. package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.d.ts.map +1 -0
  76. package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.js +11 -0
  77. package/templates/starter/node_modules/@auth/core/lib/utils/actions.d.ts +3 -0
  78. package/templates/starter/node_modules/@auth/core/lib/utils/actions.d.ts.map +1 -0
  79. package/templates/starter/node_modules/@auth/core/lib/utils/actions.js +14 -0
  80. package/templates/starter/node_modules/@auth/core/lib/utils/assert.d.ts +14 -0
  81. package/templates/starter/node_modules/@auth/core/lib/utils/assert.d.ts.map +1 -0
  82. package/templates/starter/node_modules/@auth/core/lib/utils/assert.js +165 -0
  83. package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.d.ts +17 -0
  84. package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.d.ts.map +1 -0
  85. package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.js +27 -0
  86. package/templates/starter/node_modules/@auth/core/lib/utils/cookie.d.ts +111 -0
  87. package/templates/starter/node_modules/@auth/core/lib/utils/cookie.d.ts.map +1 -0
  88. package/templates/starter/node_modules/@auth/core/lib/utils/cookie.js +204 -0
  89. package/templates/starter/node_modules/@auth/core/lib/utils/date.d.ts +7 -0
  90. package/templates/starter/node_modules/@auth/core/lib/utils/date.d.ts.map +1 -0
  91. package/templates/starter/node_modules/@auth/core/lib/utils/date.js +8 -0
  92. package/templates/starter/node_modules/@auth/core/lib/utils/email.d.ts +20 -0
  93. package/templates/starter/node_modules/@auth/core/lib/utils/email.d.ts.map +1 -0
  94. package/templates/starter/node_modules/@auth/core/lib/utils/email.js +59 -0
  95. package/templates/starter/node_modules/@auth/core/lib/utils/env.d.ts +6 -0
  96. package/templates/starter/node_modules/@auth/core/lib/utils/env.d.ts.map +1 -0
  97. package/templates/starter/node_modules/@auth/core/lib/utils/env.js +75 -0
  98. package/templates/starter/node_modules/@auth/core/lib/utils/logger.d.ts +18 -0
  99. package/templates/starter/node_modules/@auth/core/lib/utils/logger.d.ts.map +1 -0
  100. package/templates/starter/node_modules/@auth/core/lib/utils/logger.js +45 -0
  101. package/templates/starter/node_modules/@auth/core/lib/utils/merge.d.ts +3 -0
  102. package/templates/starter/node_modules/@auth/core/lib/utils/merge.d.ts.map +1 -0
  103. package/templates/starter/node_modules/@auth/core/lib/utils/merge.js +24 -0
  104. package/templates/starter/node_modules/@auth/core/lib/utils/providers.d.ts +21 -0
  105. package/templates/starter/node_modules/@auth/core/lib/utils/providers.d.ts.map +1 -0
  106. package/templates/starter/node_modules/@auth/core/lib/utils/providers.js +134 -0
  107. package/templates/starter/node_modules/@auth/core/lib/utils/session.d.ts +7 -0
  108. package/templates/starter/node_modules/@auth/core/lib/utils/session.d.ts.map +1 -0
  109. package/templates/starter/node_modules/@auth/core/lib/utils/session.js +29 -0
  110. package/templates/starter/node_modules/@auth/core/lib/utils/web.d.ts +10 -0
  111. package/templates/starter/node_modules/@auth/core/lib/utils/web.d.ts.map +1 -0
  112. package/templates/starter/node_modules/@auth/core/lib/utils/web.js +104 -0
  113. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.d.ts +30 -0
  114. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.d.ts.map +1 -0
  115. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.js +197 -0
  116. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.d.ts +81 -0
  117. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.d.ts.map +1 -0
  118. package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.js +343 -0
  119. package/templates/starter/node_modules/@auth/core/package.json +117 -0
  120. package/templates/starter/node_modules/@auth/core/providers/42-school.d.ts +240 -0
  121. package/templates/starter/node_modules/@auth/core/providers/42-school.d.ts.map +1 -0
  122. package/templates/starter/node_modules/@auth/core/providers/42-school.js +78 -0
  123. package/templates/starter/node_modules/@auth/core/providers/apple.d.ts +142 -0
  124. package/templates/starter/node_modules/@auth/core/providers/apple.d.ts.map +1 -0
  125. package/templates/starter/node_modules/@auth/core/providers/apple.js +81 -0
  126. package/templates/starter/node_modules/@auth/core/providers/asgardeo.d.ts +102 -0
  127. package/templates/starter/node_modules/@auth/core/providers/asgardeo.d.ts.map +1 -0
  128. package/templates/starter/node_modules/@auth/core/providers/asgardeo.js +93 -0
  129. package/templates/starter/node_modules/@auth/core/providers/auth0.d.ts +116 -0
  130. package/templates/starter/node_modules/@auth/core/providers/auth0.d.ts.map +1 -0
  131. package/templates/starter/node_modules/@auth/core/providers/auth0.js +49 -0
  132. package/templates/starter/node_modules/@auth/core/providers/authentik.d.ts +90 -0
  133. package/templates/starter/node_modules/@auth/core/providers/authentik.d.ts.map +1 -0
  134. package/templates/starter/node_modules/@auth/core/providers/authentik.js +65 -0
  135. package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.d.ts +106 -0
  136. package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.d.ts.map +1 -0
  137. package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.js +102 -0
  138. package/templates/starter/node_modules/@auth/core/providers/azure-ad.d.ts +134 -0
  139. package/templates/starter/node_modules/@auth/core/providers/azure-ad.d.ts.map +1 -0
  140. package/templates/starter/node_modules/@auth/core/providers/azure-ad.js +144 -0
  141. package/templates/starter/node_modules/@auth/core/providers/azure-devops.d.ts +128 -0
  142. package/templates/starter/node_modules/@auth/core/providers/azure-devops.d.ts.map +1 -0
  143. package/templates/starter/node_modules/@auth/core/providers/azure-devops.js +158 -0
  144. package/templates/starter/node_modules/@auth/core/providers/bankid-no.d.ts +134 -0
  145. package/templates/starter/node_modules/@auth/core/providers/bankid-no.d.ts.map +1 -0
  146. package/templates/starter/node_modules/@auth/core/providers/bankid-no.js +65 -0
  147. package/templates/starter/node_modules/@auth/core/providers/battlenet.d.ts +85 -0
  148. package/templates/starter/node_modules/@auth/core/providers/battlenet.d.ts.map +1 -0
  149. package/templates/starter/node_modules/@auth/core/providers/battlenet.js +81 -0
  150. package/templates/starter/node_modules/@auth/core/providers/beyondidentity.d.ts +77 -0
  151. package/templates/starter/node_modules/@auth/core/providers/beyondidentity.d.ts.map +1 -0
  152. package/templates/starter/node_modules/@auth/core/providers/beyondidentity.js +84 -0
  153. package/templates/starter/node_modules/@auth/core/providers/box.d.ts +63 -0
  154. package/templates/starter/node_modules/@auth/core/providers/box.d.ts.map +1 -0
  155. package/templates/starter/node_modules/@auth/core/providers/box.js +73 -0
  156. package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.d.ts +121 -0
  157. package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.d.ts.map +1 -0
  158. package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.js +127 -0
  159. package/templates/starter/node_modules/@auth/core/providers/bungie.d.ts +167 -0
  160. package/templates/starter/node_modules/@auth/core/providers/bungie.d.ts.map +1 -0
  161. package/templates/starter/node_modules/@auth/core/providers/bungie.js +174 -0
  162. package/templates/starter/node_modules/@auth/core/providers/click-up.d.ts +75 -0
  163. package/templates/starter/node_modules/@auth/core/providers/click-up.d.ts.map +1 -0
  164. package/templates/starter/node_modules/@auth/core/providers/click-up.js +89 -0
  165. package/templates/starter/node_modules/@auth/core/providers/cognito.d.ts +81 -0
  166. package/templates/starter/node_modules/@auth/core/providers/cognito.d.ts.map +1 -0
  167. package/templates/starter/node_modules/@auth/core/providers/cognito.js +73 -0
  168. package/templates/starter/node_modules/@auth/core/providers/coinbase.d.ts +69 -0
  169. package/templates/starter/node_modules/@auth/core/providers/coinbase.d.ts.map +1 -0
  170. package/templates/starter/node_modules/@auth/core/providers/coinbase.js +78 -0
  171. package/templates/starter/node_modules/@auth/core/providers/credentials.d.ts +132 -0
  172. package/templates/starter/node_modules/@auth/core/providers/credentials.d.ts.map +1 -0
  173. package/templates/starter/node_modules/@auth/core/providers/credentials.js +74 -0
  174. package/templates/starter/node_modules/@auth/core/providers/descope.d.ts +97 -0
  175. package/templates/starter/node_modules/@auth/core/providers/descope.d.ts.map +1 -0
  176. package/templates/starter/node_modules/@auth/core/providers/descope.js +86 -0
  177. package/templates/starter/node_modules/@auth/core/providers/discord.d.ts +139 -0
  178. package/templates/starter/node_modules/@auth/core/providers/discord.d.ts.map +1 -0
  179. package/templates/starter/node_modules/@auth/core/providers/discord.js +83 -0
  180. package/templates/starter/node_modules/@auth/core/providers/dribbble.d.ts +88 -0
  181. package/templates/starter/node_modules/@auth/core/providers/dribbble.d.ts.map +1 -0
  182. package/templates/starter/node_modules/@auth/core/providers/dribbble.js +85 -0
  183. package/templates/starter/node_modules/@auth/core/providers/dropbox.d.ts +65 -0
  184. package/templates/starter/node_modules/@auth/core/providers/dropbox.d.ts.map +1 -0
  185. package/templates/starter/node_modules/@auth/core/providers/dropbox.js +72 -0
  186. package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.d.ts +91 -0
  187. package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.d.ts.map +1 -0
  188. package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.js +80 -0
  189. package/templates/starter/node_modules/@auth/core/providers/email.d.ts +39 -0
  190. package/templates/starter/node_modules/@auth/core/providers/email.d.ts.map +1 -0
  191. package/templates/starter/node_modules/@auth/core/providers/email.js +18 -0
  192. package/templates/starter/node_modules/@auth/core/providers/eveonline.d.ts +94 -0
  193. package/templates/starter/node_modules/@auth/core/providers/eveonline.d.ts.map +1 -0
  194. package/templates/starter/node_modules/@auth/core/providers/eveonline.js +92 -0
  195. package/templates/starter/node_modules/@auth/core/providers/facebook.d.ts +84 -0
  196. package/templates/starter/node_modules/@auth/core/providers/facebook.d.ts.map +1 -0
  197. package/templates/starter/node_modules/@auth/core/providers/facebook.js +93 -0
  198. package/templates/starter/node_modules/@auth/core/providers/faceit.d.ts +64 -0
  199. package/templates/starter/node_modules/@auth/core/providers/faceit.d.ts.map +1 -0
  200. package/templates/starter/node_modules/@auth/core/providers/faceit.js +74 -0
  201. package/templates/starter/node_modules/@auth/core/providers/foursquare.d.ts +71 -0
  202. package/templates/starter/node_modules/@auth/core/providers/foursquare.d.ts.map +1 -0
  203. package/templates/starter/node_modules/@auth/core/providers/foursquare.js +89 -0
  204. package/templates/starter/node_modules/@auth/core/providers/freshbooks.d.ts +66 -0
  205. package/templates/starter/node_modules/@auth/core/providers/freshbooks.d.ts.map +1 -0
  206. package/templates/starter/node_modules/@auth/core/providers/freshbooks.js +76 -0
  207. package/templates/starter/node_modules/@auth/core/providers/fusionauth.d.ts +109 -0
  208. package/templates/starter/node_modules/@auth/core/providers/fusionauth.d.ts.map +1 -0
  209. package/templates/starter/node_modules/@auth/core/providers/fusionauth.js +101 -0
  210. package/templates/starter/node_modules/@auth/core/providers/github.d.ts +127 -0
  211. package/templates/starter/node_modules/@auth/core/providers/github.d.ts.map +1 -0
  212. package/templates/starter/node_modules/@auth/core/providers/github.js +115 -0
  213. package/templates/starter/node_modules/@auth/core/providers/gitlab.d.ts +110 -0
  214. package/templates/starter/node_modules/@auth/core/providers/gitlab.d.ts.map +1 -0
  215. package/templates/starter/node_modules/@auth/core/providers/gitlab.js +73 -0
  216. package/templates/starter/node_modules/@auth/core/providers/google.d.ts +138 -0
  217. package/templates/starter/node_modules/@auth/core/providers/google.d.ts.map +1 -0
  218. package/templates/starter/node_modules/@auth/core/providers/google.js +119 -0
  219. package/templates/starter/node_modules/@auth/core/providers/hubspot.d.ts +76 -0
  220. package/templates/starter/node_modules/@auth/core/providers/hubspot.d.ts.map +1 -0
  221. package/templates/starter/node_modules/@auth/core/providers/hubspot.js +93 -0
  222. package/templates/starter/node_modules/@auth/core/providers/identity-server4.d.ts +69 -0
  223. package/templates/starter/node_modules/@auth/core/providers/identity-server4.d.ts.map +1 -0
  224. package/templates/starter/node_modules/@auth/core/providers/identity-server4.js +64 -0
  225. package/templates/starter/node_modules/@auth/core/providers/index.d.ts +62 -0
  226. package/templates/starter/node_modules/@auth/core/providers/index.d.ts.map +1 -0
  227. package/templates/starter/node_modules/@auth/core/providers/index.js +3 -0
  228. package/templates/starter/node_modules/@auth/core/providers/instagram.d.ts +74 -0
  229. package/templates/starter/node_modules/@auth/core/providers/instagram.d.ts.map +1 -0
  230. package/templates/starter/node_modules/@auth/core/providers/instagram.js +87 -0
  231. package/templates/starter/node_modules/@auth/core/providers/kakao.d.ts +148 -0
  232. package/templates/starter/node_modules/@auth/core/providers/kakao.d.ts.map +1 -0
  233. package/templates/starter/node_modules/@auth/core/providers/kakao.js +103 -0
  234. package/templates/starter/node_modules/@auth/core/providers/keycloak.d.ts +100 -0
  235. package/templates/starter/node_modules/@auth/core/providers/keycloak.d.ts.map +1 -0
  236. package/templates/starter/node_modules/@auth/core/providers/keycloak.js +73 -0
  237. package/templates/starter/node_modules/@auth/core/providers/line.d.ts +83 -0
  238. package/templates/starter/node_modules/@auth/core/providers/line.d.ts.map +1 -0
  239. package/templates/starter/node_modules/@auth/core/providers/line.js +72 -0
  240. package/templates/starter/node_modules/@auth/core/providers/linkedin.d.ts +77 -0
  241. package/templates/starter/node_modules/@auth/core/providers/linkedin.d.ts.map +1 -0
  242. package/templates/starter/node_modules/@auth/core/providers/linkedin.js +65 -0
  243. package/templates/starter/node_modules/@auth/core/providers/mailchimp.d.ts +66 -0
  244. package/templates/starter/node_modules/@auth/core/providers/mailchimp.d.ts.map +1 -0
  245. package/templates/starter/node_modules/@auth/core/providers/mailchimp.js +76 -0
  246. package/templates/starter/node_modules/@auth/core/providers/mailru.d.ts +63 -0
  247. package/templates/starter/node_modules/@auth/core/providers/mailru.d.ts.map +1 -0
  248. package/templates/starter/node_modules/@auth/core/providers/mailru.js +61 -0
  249. package/templates/starter/node_modules/@auth/core/providers/mastodon.d.ts +90 -0
  250. package/templates/starter/node_modules/@auth/core/providers/mastodon.d.ts.map +1 -0
  251. package/templates/starter/node_modules/@auth/core/providers/mastodon.js +75 -0
  252. package/templates/starter/node_modules/@auth/core/providers/mattermost.d.ts +132 -0
  253. package/templates/starter/node_modules/@auth/core/providers/mattermost.d.ts.map +1 -0
  254. package/templates/starter/node_modules/@auth/core/providers/mattermost.js +83 -0
  255. package/templates/starter/node_modules/@auth/core/providers/medium.d.ts +68 -0
  256. package/templates/starter/node_modules/@auth/core/providers/medium.d.ts.map +1 -0
  257. package/templates/starter/node_modules/@auth/core/providers/medium.js +84 -0
  258. package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.d.ts +131 -0
  259. package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.d.ts.map +1 -0
  260. package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.js +140 -0
  261. package/templates/starter/node_modules/@auth/core/providers/naver.d.ts +80 -0
  262. package/templates/starter/node_modules/@auth/core/providers/naver.d.ts.map +1 -0
  263. package/templates/starter/node_modules/@auth/core/providers/naver.js +79 -0
  264. package/templates/starter/node_modules/@auth/core/providers/netlify.d.ts +66 -0
  265. package/templates/starter/node_modules/@auth/core/providers/netlify.d.ts.map +1 -0
  266. package/templates/starter/node_modules/@auth/core/providers/netlify.js +85 -0
  267. package/templates/starter/node_modules/@auth/core/providers/netsuite.d.ts +189 -0
  268. package/templates/starter/node_modules/@auth/core/providers/netsuite.d.ts.map +1 -0
  269. package/templates/starter/node_modules/@auth/core/providers/netsuite.js +170 -0
  270. package/templates/starter/node_modules/@auth/core/providers/nodemailer.d.ts +27 -0
  271. package/templates/starter/node_modules/@auth/core/providers/nodemailer.d.ts.map +1 -0
  272. package/templates/starter/node_modules/@auth/core/providers/nodemailer.js +32 -0
  273. package/templates/starter/node_modules/@auth/core/providers/notion.d.ts +99 -0
  274. package/templates/starter/node_modules/@auth/core/providers/notion.d.ts.map +1 -0
  275. package/templates/starter/node_modules/@auth/core/providers/notion.js +110 -0
  276. package/templates/starter/node_modules/@auth/core/providers/oauth-types.d.ts +2 -0
  277. package/templates/starter/node_modules/@auth/core/providers/oauth-types.d.ts.map +1 -0
  278. package/templates/starter/node_modules/@auth/core/providers/oauth-types.js +1 -0
  279. package/templates/starter/node_modules/@auth/core/providers/oauth.d.ts +182 -0
  280. package/templates/starter/node_modules/@auth/core/providers/oauth.d.ts.map +1 -0
  281. package/templates/starter/node_modules/@auth/core/providers/oauth.js +1 -0
  282. package/templates/starter/node_modules/@auth/core/providers/okta.d.ts +99 -0
  283. package/templates/starter/node_modules/@auth/core/providers/okta.d.ts.map +1 -0
  284. package/templates/starter/node_modules/@auth/core/providers/okta.js +63 -0
  285. package/templates/starter/node_modules/@auth/core/providers/onelogin.d.ts +65 -0
  286. package/templates/starter/node_modules/@auth/core/providers/onelogin.d.ts.map +1 -0
  287. package/templates/starter/node_modules/@auth/core/providers/onelogin.js +61 -0
  288. package/templates/starter/node_modules/@auth/core/providers/ory-hydra.d.ts +79 -0
  289. package/templates/starter/node_modules/@auth/core/providers/ory-hydra.d.ts.map +1 -0
  290. package/templates/starter/node_modules/@auth/core/providers/ory-hydra.js +67 -0
  291. package/templates/starter/node_modules/@auth/core/providers/osso.d.ts +79 -0
  292. package/templates/starter/node_modules/@auth/core/providers/osso.d.ts.map +1 -0
  293. package/templates/starter/node_modules/@auth/core/providers/osso.js +77 -0
  294. package/templates/starter/node_modules/@auth/core/providers/osu.d.ts +116 -0
  295. package/templates/starter/node_modules/@auth/core/providers/osu.d.ts.map +1 -0
  296. package/templates/starter/node_modules/@auth/core/providers/osu.js +75 -0
  297. package/templates/starter/node_modules/@auth/core/providers/passage.d.ts +88 -0
  298. package/templates/starter/node_modules/@auth/core/providers/passage.d.ts.map +1 -0
  299. package/templates/starter/node_modules/@auth/core/providers/passage.js +75 -0
  300. package/templates/starter/node_modules/@auth/core/providers/passkey.d.ts +65 -0
  301. package/templates/starter/node_modules/@auth/core/providers/passkey.d.ts.map +1 -0
  302. package/templates/starter/node_modules/@auth/core/providers/passkey.js +87 -0
  303. package/templates/starter/node_modules/@auth/core/providers/patreon.d.ts +73 -0
  304. package/templates/starter/node_modules/@auth/core/providers/patreon.d.ts.map +1 -0
  305. package/templates/starter/node_modules/@auth/core/providers/patreon.js +77 -0
  306. package/templates/starter/node_modules/@auth/core/providers/pinterest.d.ts +79 -0
  307. package/templates/starter/node_modules/@auth/core/providers/pinterest.d.ts.map +1 -0
  308. package/templates/starter/node_modules/@auth/core/providers/pinterest.js +85 -0
  309. package/templates/starter/node_modules/@auth/core/providers/pipedrive.d.ts +99 -0
  310. package/templates/starter/node_modules/@auth/core/providers/pipedrive.d.ts.map +1 -0
  311. package/templates/starter/node_modules/@auth/core/providers/pipedrive.js +71 -0
  312. package/templates/starter/node_modules/@auth/core/providers/postmark.d.ts +4 -0
  313. package/templates/starter/node_modules/@auth/core/providers/postmark.d.ts.map +1 -0
  314. package/templates/starter/node_modules/@auth/core/providers/postmark.js +36 -0
  315. package/templates/starter/node_modules/@auth/core/providers/reddit.d.ts +88 -0
  316. package/templates/starter/node_modules/@auth/core/providers/reddit.d.ts.map +1 -0
  317. package/templates/starter/node_modules/@auth/core/providers/reddit.js +90 -0
  318. package/templates/starter/node_modules/@auth/core/providers/resend.d.ts +4 -0
  319. package/templates/starter/node_modules/@auth/core/providers/resend.d.ts.map +1 -0
  320. package/templates/starter/node_modules/@auth/core/providers/resend.js +32 -0
  321. package/templates/starter/node_modules/@auth/core/providers/salesforce.d.ts +71 -0
  322. package/templates/starter/node_modules/@auth/core/providers/salesforce.d.ts.map +1 -0
  323. package/templates/starter/node_modules/@auth/core/providers/salesforce.js +72 -0
  324. package/templates/starter/node_modules/@auth/core/providers/sendgrid.d.ts +4 -0
  325. package/templates/starter/node_modules/@auth/core/providers/sendgrid.d.ts.map +1 -0
  326. package/templates/starter/node_modules/@auth/core/providers/sendgrid.js +35 -0
  327. package/templates/starter/node_modules/@auth/core/providers/simplelogin.d.ts +87 -0
  328. package/templates/starter/node_modules/@auth/core/providers/simplelogin.d.ts.map +1 -0
  329. package/templates/starter/node_modules/@auth/core/providers/simplelogin.js +83 -0
  330. package/templates/starter/node_modules/@auth/core/providers/slack.d.ts +102 -0
  331. package/templates/starter/node_modules/@auth/core/providers/slack.d.ts.map +1 -0
  332. package/templates/starter/node_modules/@auth/core/providers/slack.js +69 -0
  333. package/templates/starter/node_modules/@auth/core/providers/spotify.d.ts +75 -0
  334. package/templates/starter/node_modules/@auth/core/providers/spotify.d.ts.map +1 -0
  335. package/templates/starter/node_modules/@auth/core/providers/spotify.js +73 -0
  336. package/templates/starter/node_modules/@auth/core/providers/strava.d.ts +68 -0
  337. package/templates/starter/node_modules/@auth/core/providers/strava.d.ts.map +1 -0
  338. package/templates/starter/node_modules/@auth/core/providers/strava.js +80 -0
  339. package/templates/starter/node_modules/@auth/core/providers/threads.d.ts +108 -0
  340. package/templates/starter/node_modules/@auth/core/providers/threads.d.ts.map +1 -0
  341. package/templates/starter/node_modules/@auth/core/providers/threads.js +89 -0
  342. package/templates/starter/node_modules/@auth/core/providers/tiktok.d.ts +186 -0
  343. package/templates/starter/node_modules/@auth/core/providers/tiktok.d.ts.map +1 -0
  344. package/templates/starter/node_modules/@auth/core/providers/tiktok.js +135 -0
  345. package/templates/starter/node_modules/@auth/core/providers/todoist.d.ts +76 -0
  346. package/templates/starter/node_modules/@auth/core/providers/todoist.d.ts.map +1 -0
  347. package/templates/starter/node_modules/@auth/core/providers/todoist.js +97 -0
  348. package/templates/starter/node_modules/@auth/core/providers/trakt.d.ts +93 -0
  349. package/templates/starter/node_modules/@auth/core/providers/trakt.d.ts.map +1 -0
  350. package/templates/starter/node_modules/@auth/core/providers/trakt.js +91 -0
  351. package/templates/starter/node_modules/@auth/core/providers/twitch.d.ts +71 -0
  352. package/templates/starter/node_modules/@auth/core/providers/twitch.d.ts.map +1 -0
  353. package/templates/starter/node_modules/@auth/core/providers/twitch.js +96 -0
  354. package/templates/starter/node_modules/@auth/core/providers/twitter.d.ts +183 -0
  355. package/templates/starter/node_modules/@auth/core/providers/twitter.d.ts.map +1 -0
  356. package/templates/starter/node_modules/@auth/core/providers/twitter.js +100 -0
  357. package/templates/starter/node_modules/@auth/core/providers/united-effects.d.ts +80 -0
  358. package/templates/starter/node_modules/@auth/core/providers/united-effects.d.ts.map +1 -0
  359. package/templates/starter/node_modules/@auth/core/providers/united-effects.js +72 -0
  360. package/templates/starter/node_modules/@auth/core/providers/vk.d.ts +334 -0
  361. package/templates/starter/node_modules/@auth/core/providers/vk.d.ts.map +1 -0
  362. package/templates/starter/node_modules/@auth/core/providers/vk.js +103 -0
  363. package/templates/starter/node_modules/@auth/core/providers/webauthn.d.ts +148 -0
  364. package/templates/starter/node_modules/@auth/core/providers/webauthn.d.ts.map +1 -0
  365. package/templates/starter/node_modules/@auth/core/providers/webauthn.js +122 -0
  366. package/templates/starter/node_modules/@auth/core/providers/webex.d.ts +78 -0
  367. package/templates/starter/node_modules/@auth/core/providers/webex.d.ts.map +1 -0
  368. package/templates/starter/node_modules/@auth/core/providers/webex.js +73 -0
  369. package/templates/starter/node_modules/@auth/core/providers/wikimedia.d.ts +99 -0
  370. package/templates/starter/node_modules/@auth/core/providers/wikimedia.d.ts.map +1 -0
  371. package/templates/starter/node_modules/@auth/core/providers/wikimedia.js +90 -0
  372. package/templates/starter/node_modules/@auth/core/providers/wordpress.d.ts +65 -0
  373. package/templates/starter/node_modules/@auth/core/providers/wordpress.d.ts.map +1 -0
  374. package/templates/starter/node_modules/@auth/core/providers/wordpress.js +71 -0
  375. package/templates/starter/node_modules/@auth/core/providers/workos.d.ts +154 -0
  376. package/templates/starter/node_modules/@auth/core/providers/workos.d.ts.map +1 -0
  377. package/templates/starter/node_modules/@auth/core/providers/workos.js +143 -0
  378. package/templates/starter/node_modules/@auth/core/providers/yandex.d.ts +131 -0
  379. package/templates/starter/node_modules/@auth/core/providers/yandex.d.ts.map +1 -0
  380. package/templates/starter/node_modules/@auth/core/providers/yandex.js +80 -0
  381. package/templates/starter/node_modules/@auth/core/providers/zitadel.d.ts +117 -0
  382. package/templates/starter/node_modules/@auth/core/providers/zitadel.d.ts.map +1 -0
  383. package/templates/starter/node_modules/@auth/core/providers/zitadel.js +95 -0
  384. package/templates/starter/node_modules/@auth/core/providers/zoho.d.ts +63 -0
  385. package/templates/starter/node_modules/@auth/core/providers/zoho.d.ts.map +1 -0
  386. package/templates/starter/node_modules/@auth/core/providers/zoho.js +79 -0
  387. package/templates/starter/node_modules/@auth/core/providers/zoom.d.ts +93 -0
  388. package/templates/starter/node_modules/@auth/core/providers/zoom.d.ts.map +1 -0
  389. package/templates/starter/node_modules/@auth/core/providers/zoom.js +82 -0
  390. package/templates/starter/node_modules/@auth/core/src/adapters.ts +461 -0
  391. package/templates/starter/node_modules/@auth/core/src/errors.ts +510 -0
  392. package/templates/starter/node_modules/@auth/core/src/index.ts +663 -0
  393. package/templates/starter/node_modules/@auth/core/src/jwt.ts +278 -0
  394. package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/handle-login.ts +332 -0
  395. package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/index.ts +542 -0
  396. package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/callback.ts +262 -0
  397. package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/checks.ts +317 -0
  398. package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/csrf-token.ts +60 -0
  399. package/templates/starter/node_modules/@auth/core/src/lib/actions/index.ts +5 -0
  400. package/templates/starter/node_modules/@auth/core/src/lib/actions/session.ts +160 -0
  401. package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/authorization-url.ts +99 -0
  402. package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/index.ts +37 -0
  403. package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/send-token.ts +103 -0
  404. package/templates/starter/node_modules/@auth/core/src/lib/actions/signout.ts +38 -0
  405. package/templates/starter/node_modules/@auth/core/src/lib/actions/webauthn-options.ts +98 -0
  406. package/templates/starter/node_modules/@auth/core/src/lib/index.ts +116 -0
  407. package/templates/starter/node_modules/@auth/core/src/lib/init.ts +236 -0
  408. package/templates/starter/node_modules/@auth/core/src/lib/pages/error.tsx +106 -0
  409. package/templates/starter/node_modules/@auth/core/src/lib/pages/index.ts +173 -0
  410. package/templates/starter/node_modules/@auth/core/src/lib/pages/signin.tsx +266 -0
  411. package/templates/starter/node_modules/@auth/core/src/lib/pages/signout.tsx +49 -0
  412. package/templates/starter/node_modules/@auth/core/src/lib/pages/styles.css +352 -0
  413. package/templates/starter/node_modules/@auth/core/src/lib/pages/styles.ts +354 -0
  414. package/templates/starter/node_modules/@auth/core/src/lib/pages/verify-request.tsx +36 -0
  415. package/templates/starter/node_modules/@auth/core/src/lib/utils/actions.ts +17 -0
  416. package/templates/starter/node_modules/@auth/core/src/lib/utils/assert.ts +255 -0
  417. package/templates/starter/node_modules/@auth/core/src/lib/utils/callback-url.ts +42 -0
  418. package/templates/starter/node_modules/@auth/core/src/lib/utils/cookie.ts +247 -0
  419. package/templates/starter/node_modules/@auth/core/src/lib/utils/date.ts +8 -0
  420. package/templates/starter/node_modules/@auth/core/src/lib/utils/email.ts +66 -0
  421. package/templates/starter/node_modules/@auth/core/src/lib/utils/env.ts +90 -0
  422. package/templates/starter/node_modules/@auth/core/src/lib/utils/logger.ts +73 -0
  423. package/templates/starter/node_modules/@auth/core/src/lib/utils/merge.ts +25 -0
  424. package/templates/starter/node_modules/@auth/core/src/lib/utils/providers.ts +179 -0
  425. package/templates/starter/node_modules/@auth/core/src/lib/utils/session.ts +41 -0
  426. package/templates/starter/node_modules/@auth/core/src/lib/utils/web.ts +145 -0
  427. package/templates/starter/node_modules/@auth/core/src/lib/utils/webauthn-client.js +229 -0
  428. package/templates/starter/node_modules/@auth/core/src/lib/utils/webauthn-utils.ts +531 -0
  429. package/templates/starter/node_modules/@auth/core/src/providers/42-school.ts +256 -0
  430. package/templates/starter/node_modules/@auth/core/src/providers/apple.ts +178 -0
  431. package/templates/starter/node_modules/@auth/core/src/providers/asgardeo.ts +118 -0
  432. package/templates/starter/node_modules/@auth/core/src/providers/auth0.ts +127 -0
  433. package/templates/starter/node_modules/@auth/core/src/providers/authentik.ts +100 -0
  434. package/templates/starter/node_modules/@auth/core/src/providers/azure-ad-b2c.ts +128 -0
  435. package/templates/starter/node_modules/@auth/core/src/providers/azure-ad.ts +178 -0
  436. package/templates/starter/node_modules/@auth/core/src/providers/azure-devops.ts +184 -0
  437. package/templates/starter/node_modules/@auth/core/src/providers/bankid-no.ts +161 -0
  438. package/templates/starter/node_modules/@auth/core/src/providers/battlenet.ts +107 -0
  439. package/templates/starter/node_modules/@auth/core/src/providers/beyondidentity.ts +102 -0
  440. package/templates/starter/node_modules/@auth/core/src/providers/box.ts +87 -0
  441. package/templates/starter/node_modules/@auth/core/src/providers/boxyhq-saml.ts +148 -0
  442. package/templates/starter/node_modules/@auth/core/src/providers/bungie.ts +192 -0
  443. package/templates/starter/node_modules/@auth/core/src/providers/click-up.ts +104 -0
  444. package/templates/starter/node_modules/@auth/core/src/providers/cognito.ts +94 -0
  445. package/templates/starter/node_modules/@auth/core/src/providers/coinbase.ts +93 -0
  446. package/templates/starter/node_modules/@auth/core/src/providers/credentials.ts +157 -0
  447. package/templates/starter/node_modules/@auth/core/src/providers/descope.ts +113 -0
  448. package/templates/starter/node_modules/@auth/core/src/providers/discord.ts +174 -0
  449. package/templates/starter/node_modules/@auth/core/src/providers/dribbble.ts +122 -0
  450. package/templates/starter/node_modules/@auth/core/src/providers/dropbox.ts +87 -0
  451. package/templates/starter/node_modules/@auth/core/src/providers/duende-identity-server6.ts +101 -0
  452. package/templates/starter/node_modules/@auth/core/src/providers/email.ts +55 -0
  453. package/templates/starter/node_modules/@auth/core/src/providers/eveonline.ts +117 -0
  454. package/templates/starter/node_modules/@auth/core/src/providers/facebook.ts +119 -0
  455. package/templates/starter/node_modules/@auth/core/src/providers/faceit.ts +90 -0
  456. package/templates/starter/node_modules/@auth/core/src/providers/foursquare.ts +103 -0
  457. package/templates/starter/node_modules/@auth/core/src/providers/freshbooks.ts +90 -0
  458. package/templates/starter/node_modules/@auth/core/src/providers/fusionauth.ts +135 -0
  459. package/templates/starter/node_modules/@auth/core/src/providers/github.ts +187 -0
  460. package/templates/starter/node_modules/@auth/core/src/providers/gitlab.ts +132 -0
  461. package/templates/starter/node_modules/@auth/core/src/providers/google.ts +152 -0
  462. package/templates/starter/node_modules/@auth/core/src/providers/hubspot.ts +117 -0
  463. package/templates/starter/node_modules/@auth/core/src/providers/identity-server4.ts +78 -0
  464. package/templates/starter/node_modules/@auth/core/src/providers/index.ts +118 -0
  465. package/templates/starter/node_modules/@auth/core/src/providers/instagram.ts +103 -0
  466. package/templates/starter/node_modules/@auth/core/src/providers/kakao.ts +184 -0
  467. package/templates/starter/node_modules/@auth/core/src/providers/keycloak.ts +111 -0
  468. package/templates/starter/node_modules/@auth/core/src/providers/line.ts +98 -0
  469. package/templates/starter/node_modules/@auth/core/src/providers/linkedin.ts +91 -0
  470. package/templates/starter/node_modules/@auth/core/src/providers/mailchimp.ts +90 -0
  471. package/templates/starter/node_modules/@auth/core/src/providers/mailru.ts +75 -0
  472. package/templates/starter/node_modules/@auth/core/src/providers/mastodon.ts +112 -0
  473. package/templates/starter/node_modules/@auth/core/src/providers/mattermost.ts +154 -0
  474. package/templates/starter/node_modules/@auth/core/src/providers/medium.ts +89 -0
  475. package/templates/starter/node_modules/@auth/core/src/providers/microsoft-entra-id.ts +177 -0
  476. package/templates/starter/node_modules/@auth/core/src/providers/naver.ts +102 -0
  477. package/templates/starter/node_modules/@auth/core/src/providers/netlify.ts +90 -0
  478. package/templates/starter/node_modules/@auth/core/src/providers/netsuite.ts +225 -0
  479. package/templates/starter/node_modules/@auth/core/src/providers/nodemailer.ts +82 -0
  480. package/templates/starter/node_modules/@auth/core/src/providers/notion.ts +166 -0
  481. package/templates/starter/node_modules/@auth/core/src/providers/oauth-types.ts +88 -0
  482. package/templates/starter/node_modules/@auth/core/src/providers/oauth.ts +302 -0
  483. package/templates/starter/node_modules/@auth/core/src/providers/okta.ts +111 -0
  484. package/templates/starter/node_modules/@auth/core/src/providers/onelogin.ts +75 -0
  485. package/templates/starter/node_modules/@auth/core/src/providers/ory-hydra.ts +93 -0
  486. package/templates/starter/node_modules/@auth/core/src/providers/osso.ts +91 -0
  487. package/templates/starter/node_modules/@auth/core/src/providers/osu.ts +138 -0
  488. package/templates/starter/node_modules/@auth/core/src/providers/passage.ts +103 -0
  489. package/templates/starter/node_modules/@auth/core/src/providers/passkey.ts +94 -0
  490. package/templates/starter/node_modules/@auth/core/src/providers/patreon.ts +98 -0
  491. package/templates/starter/node_modules/@auth/core/src/providers/pinterest.ts +106 -0
  492. package/templates/starter/node_modules/@auth/core/src/providers/pipedrive.ts +120 -0
  493. package/templates/starter/node_modules/@auth/core/src/providers/postmark.ts +38 -0
  494. package/templates/starter/node_modules/@auth/core/src/providers/reddit.ts +104 -0
  495. package/templates/starter/node_modules/@auth/core/src/providers/resend.ts +35 -0
  496. package/templates/starter/node_modules/@auth/core/src/providers/salesforce.ts +93 -0
  497. package/templates/starter/node_modules/@auth/core/src/providers/sendgrid.ts +36 -0
  498. package/templates/starter/node_modules/@auth/core/src/providers/simplelogin.ts +107 -0
  499. package/templates/starter/node_modules/@auth/core/src/providers/slack.ts +115 -0
  500. package/templates/starter/node_modules/@auth/core/src/providers/spotify.ts +99 -0
  501. package/templates/starter/node_modules/@auth/core/src/providers/strava.ts +101 -0
  502. package/templates/starter/node_modules/@auth/core/src/providers/threads.ts +135 -0
  503. package/templates/starter/node_modules/@auth/core/src/providers/tiktok.ts +267 -0
  504. package/templates/starter/node_modules/@auth/core/src/providers/todoist.ts +122 -0
  505. package/templates/starter/node_modules/@auth/core/src/providers/trakt.ts +120 -0
  506. package/templates/starter/node_modules/@auth/core/src/providers/twitch.ts +121 -0
  507. package/templates/starter/node_modules/@auth/core/src/providers/twitter.ts +207 -0
  508. package/templates/starter/node_modules/@auth/core/src/providers/united-effects.ts +89 -0
  509. package/templates/starter/node_modules/@auth/core/src/providers/vk.ts +401 -0
  510. package/templates/starter/node_modules/@auth/core/src/providers/webauthn.ts +290 -0
  511. package/templates/starter/node_modules/@auth/core/src/providers/webex.ts +102 -0
  512. package/templates/starter/node_modules/@auth/core/src/providers/wikimedia.ts +258 -0
  513. package/templates/starter/node_modules/@auth/core/src/providers/wordpress.ts +86 -0
  514. package/templates/starter/node_modules/@auth/core/src/providers/workos.ts +180 -0
  515. package/templates/starter/node_modules/@auth/core/src/providers/yandex.ts +159 -0
  516. package/templates/starter/node_modules/@auth/core/src/providers/zitadel.ts +128 -0
  517. package/templates/starter/node_modules/@auth/core/src/providers/zoho.ts +84 -0
  518. package/templates/starter/node_modules/@auth/core/src/providers/zoom.ts +119 -0
  519. package/templates/starter/node_modules/@auth/core/src/types.ts +432 -0
  520. package/templates/starter/node_modules/@auth/core/types.d.ts +306 -0
  521. package/templates/starter/node_modules/@auth/core/types.d.ts.map +1 -0
  522. package/templates/starter/node_modules/@auth/core/types.js +53 -0
  523. package/templates/starter/node_modules/@hono/auth-js/CHANGELOG.md +115 -0
  524. package/templates/starter/node_modules/@hono/auth-js/README.md +122 -0
  525. package/templates/starter/node_modules/@hono/auth-js/dist/index.cjs +157 -0
  526. package/templates/starter/node_modules/@hono/auth-js/dist/index.d.cts +34 -0
  527. package/templates/starter/node_modules/@hono/auth-js/dist/index.d.ts +34 -0
  528. package/templates/starter/node_modules/@hono/auth-js/dist/index.js +127 -0
  529. package/templates/starter/node_modules/@hono/auth-js/dist/react.cjs +461 -0
  530. package/templates/starter/node_modules/@hono/auth-js/dist/react.d.cts +112 -0
  531. package/templates/starter/node_modules/@hono/auth-js/dist/react.d.ts +112 -0
  532. package/templates/starter/node_modules/@hono/auth-js/dist/react.js +417 -0
  533. package/templates/starter/node_modules/@hono/auth-js/package.json +77 -0
  534. package/templates/starter/node_modules/@kanjijs/common/dist/index.d.ts +1 -0
  535. package/templates/starter/node_modules/@kanjijs/common/dist/index.js +6 -0
  536. package/templates/starter/node_modules/@kanjijs/common/package.json +22 -0
  537. package/templates/starter/node_modules/@kanjijs/contracts/README.md +53 -0
  538. package/templates/starter/node_modules/@kanjijs/contracts/dist/index.d.ts +27 -0
  539. package/templates/starter/node_modules/@kanjijs/contracts/dist/index.js +12 -0
  540. package/templates/starter/node_modules/@kanjijs/contracts/package.json +21 -0
  541. package/templates/starter/node_modules/@panva/hkdf/LICENSE.md +21 -0
  542. package/templates/starter/node_modules/@panva/hkdf/README.md +72 -0
  543. package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/index.js +50 -0
  544. package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/runtime/fallback.js +23 -0
  545. package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/runtime/hkdf.js +16 -0
  546. package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/index.js +46 -0
  547. package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/package.json +1 -0
  548. package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/runtime/fallback.js +21 -0
  549. package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/runtime/hkdf.js +14 -0
  550. package/templates/starter/node_modules/@panva/hkdf/dist/types/index.d.ts +2 -0
  551. package/templates/starter/node_modules/@panva/hkdf/dist/web/index.js +46 -0
  552. package/templates/starter/node_modules/@panva/hkdf/dist/web/package.json +1 -0
  553. package/templates/starter/node_modules/@panva/hkdf/dist/web/runtime/hkdf.js +18 -0
  554. package/templates/starter/node_modules/@panva/hkdf/package.json +49 -0
  555. package/templates/starter/node_modules/@pinojs/redact/.github/dependabot.yml +13 -0
  556. package/templates/starter/node_modules/@pinojs/redact/.github/workflows/ci.yml +48 -0
  557. package/templates/starter/node_modules/@pinojs/redact/.github/workflows/publish-release.yml +43 -0
  558. package/templates/starter/node_modules/@pinojs/redact/LICENSE +21 -0
  559. package/templates/starter/node_modules/@pinojs/redact/README.md +350 -0
  560. package/templates/starter/node_modules/@pinojs/redact/benchmarks/basic.js +184 -0
  561. package/templates/starter/node_modules/@pinojs/redact/eslint.config.js +1 -0
  562. package/templates/starter/node_modules/@pinojs/redact/index.d.ts +52 -0
  563. package/templates/starter/node_modules/@pinojs/redact/index.js +529 -0
  564. package/templates/starter/node_modules/@pinojs/redact/index.test-d.ts +22 -0
  565. package/templates/starter/node_modules/@pinojs/redact/package.json +37 -0
  566. package/templates/starter/node_modules/@pinojs/redact/scripts/sync-version.mjs +20 -0
  567. package/templates/starter/node_modules/@pinojs/redact/test/actual-redact-comparison.test.js +211 -0
  568. package/templates/starter/node_modules/@pinojs/redact/test/index.test.js +824 -0
  569. package/templates/starter/node_modules/@pinojs/redact/test/integration.test.js +390 -0
  570. package/templates/starter/node_modules/@pinojs/redact/test/multiple-wildcards.test.js +227 -0
  571. package/templates/starter/node_modules/@pinojs/redact/test/prototype-pollution.test.js +223 -0
  572. package/templates/starter/node_modules/@pinojs/redact/test/selective-clone.test.js +115 -0
  573. package/templates/starter/node_modules/@pinojs/redact/tsconfig.json +19 -0
  574. package/templates/starter/node_modules/@types/cookie/LICENSE +21 -0
  575. package/templates/starter/node_modules/@types/cookie/README.md +15 -0
  576. package/templates/starter/node_modules/@types/cookie/index.d.ts +154 -0
  577. package/templates/starter/node_modules/@types/cookie/package.json +30 -0
  578. package/templates/starter/node_modules/@types/node/LICENSE +21 -0
  579. package/templates/starter/node_modules/@types/node/README.md +15 -0
  580. package/templates/starter/node_modules/@types/node/assert/strict.d.ts +105 -0
  581. package/templates/starter/node_modules/@types/node/assert.d.ts +955 -0
  582. package/templates/starter/node_modules/@types/node/async_hooks.d.ts +623 -0
  583. package/templates/starter/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  584. package/templates/starter/node_modules/@types/node/buffer.d.ts +1810 -0
  585. package/templates/starter/node_modules/@types/node/child_process.d.ts +1428 -0
  586. package/templates/starter/node_modules/@types/node/cluster.d.ts +486 -0
  587. package/templates/starter/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  588. package/templates/starter/node_modules/@types/node/console.d.ts +151 -0
  589. package/templates/starter/node_modules/@types/node/constants.d.ts +20 -0
  590. package/templates/starter/node_modules/@types/node/crypto.d.ts +4065 -0
  591. package/templates/starter/node_modules/@types/node/dgram.d.ts +564 -0
  592. package/templates/starter/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
  593. package/templates/starter/node_modules/@types/node/dns/promises.d.ts +503 -0
  594. package/templates/starter/node_modules/@types/node/dns.d.ts +922 -0
  595. package/templates/starter/node_modules/@types/node/domain.d.ts +166 -0
  596. package/templates/starter/node_modules/@types/node/events.d.ts +1054 -0
  597. package/templates/starter/node_modules/@types/node/fs/promises.d.ts +1329 -0
  598. package/templates/starter/node_modules/@types/node/fs.d.ts +4676 -0
  599. package/templates/starter/node_modules/@types/node/globals.d.ts +150 -0
  600. package/templates/starter/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  601. package/templates/starter/node_modules/@types/node/http.d.ts +2152 -0
  602. package/templates/starter/node_modules/@types/node/http2.d.ts +2480 -0
  603. package/templates/starter/node_modules/@types/node/https.d.ts +399 -0
  604. package/templates/starter/node_modules/@types/node/index.d.ts +115 -0
  605. package/templates/starter/node_modules/@types/node/inspector/promises.d.ts +41 -0
  606. package/templates/starter/node_modules/@types/node/inspector.d.ts +224 -0
  607. package/templates/starter/node_modules/@types/node/inspector.generated.d.ts +4226 -0
  608. package/templates/starter/node_modules/@types/node/module.d.ts +819 -0
  609. package/templates/starter/node_modules/@types/node/net.d.ts +933 -0
  610. package/templates/starter/node_modules/@types/node/os.d.ts +507 -0
  611. package/templates/starter/node_modules/@types/node/package.json +155 -0
  612. package/templates/starter/node_modules/@types/node/path/posix.d.ts +8 -0
  613. package/templates/starter/node_modules/@types/node/path/win32.d.ts +8 -0
  614. package/templates/starter/node_modules/@types/node/path.d.ts +187 -0
  615. package/templates/starter/node_modules/@types/node/perf_hooks.d.ts +621 -0
  616. package/templates/starter/node_modules/@types/node/process.d.ts +2161 -0
  617. package/templates/starter/node_modules/@types/node/punycode.d.ts +117 -0
  618. package/templates/starter/node_modules/@types/node/querystring.d.ts +152 -0
  619. package/templates/starter/node_modules/@types/node/quic.d.ts +910 -0
  620. package/templates/starter/node_modules/@types/node/readline/promises.d.ts +161 -0
  621. package/templates/starter/node_modules/@types/node/readline.d.ts +541 -0
  622. package/templates/starter/node_modules/@types/node/repl.d.ts +415 -0
  623. package/templates/starter/node_modules/@types/node/sea.d.ts +162 -0
  624. package/templates/starter/node_modules/@types/node/sqlite.d.ts +953 -0
  625. package/templates/starter/node_modules/@types/node/stream/consumers.d.ts +38 -0
  626. package/templates/starter/node_modules/@types/node/stream/promises.d.ts +211 -0
  627. package/templates/starter/node_modules/@types/node/stream/web.d.ts +296 -0
  628. package/templates/starter/node_modules/@types/node/stream.d.ts +1760 -0
  629. package/templates/starter/node_modules/@types/node/string_decoder.d.ts +67 -0
  630. package/templates/starter/node_modules/@types/node/test/reporters.d.ts +96 -0
  631. package/templates/starter/node_modules/@types/node/test.d.ts +2239 -0
  632. package/templates/starter/node_modules/@types/node/timers/promises.d.ts +108 -0
  633. package/templates/starter/node_modules/@types/node/timers.d.ts +159 -0
  634. package/templates/starter/node_modules/@types/node/tls.d.ts +1198 -0
  635. package/templates/starter/node_modules/@types/node/trace_events.d.ts +197 -0
  636. package/templates/starter/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  637. package/templates/starter/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  638. package/templates/starter/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  639. package/templates/starter/node_modules/@types/node/ts5.6/index.d.ts +117 -0
  640. package/templates/starter/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  641. package/templates/starter/node_modules/@types/node/ts5.7/index.d.ts +117 -0
  642. package/templates/starter/node_modules/@types/node/tty.d.ts +250 -0
  643. package/templates/starter/node_modules/@types/node/url.d.ts +519 -0
  644. package/templates/starter/node_modules/@types/node/util/types.d.ts +558 -0
  645. package/templates/starter/node_modules/@types/node/util.d.ts +1653 -0
  646. package/templates/starter/node_modules/@types/node/v8.d.ts +979 -0
  647. package/templates/starter/node_modules/@types/node/vm.d.ts +1208 -0
  648. package/templates/starter/node_modules/@types/node/wasi.d.ts +202 -0
  649. package/templates/starter/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  650. package/templates/starter/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  651. package/templates/starter/node_modules/@types/node/web-globals/console.d.ts +9 -0
  652. package/templates/starter/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  653. package/templates/starter/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  654. package/templates/starter/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  655. package/templates/starter/node_modules/@types/node/web-globals/events.d.ts +106 -0
  656. package/templates/starter/node_modules/@types/node/web-globals/fetch.d.ts +54 -0
  657. package/templates/starter/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  658. package/templates/starter/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  659. package/templates/starter/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  660. package/templates/starter/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  661. package/templates/starter/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  662. package/templates/starter/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  663. package/templates/starter/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  664. package/templates/starter/node_modules/@types/node/web-globals/url.d.ts +24 -0
  665. package/templates/starter/node_modules/@types/node/worker_threads.d.ts +717 -0
  666. package/templates/starter/node_modules/@types/node/zlib.d.ts +618 -0
  667. package/templates/starter/node_modules/atomic-sleep/.travis.yml +11 -0
  668. package/templates/starter/node_modules/atomic-sleep/LICENSE +22 -0
  669. package/templates/starter/node_modules/atomic-sleep/index.js +38 -0
  670. package/templates/starter/node_modules/atomic-sleep/package.json +37 -0
  671. package/templates/starter/node_modules/atomic-sleep/readme.md +58 -0
  672. package/templates/starter/node_modules/atomic-sleep/test.js +47 -0
  673. package/templates/starter/node_modules/bun-types/CLAUDE.md +105 -0
  674. package/templates/starter/node_modules/bun-types/README.md +33 -0
  675. package/templates/starter/node_modules/bun-types/bun.d.ts +8450 -0
  676. package/templates/starter/node_modules/bun-types/bun.ns.d.ts +5 -0
  677. package/templates/starter/node_modules/bun-types/bundle.d.ts +74 -0
  678. package/templates/starter/node_modules/bun-types/deprecated.d.ts +184 -0
  679. package/templates/starter/node_modules/bun-types/devserver.d.ts +187 -0
  680. package/templates/starter/node_modules/bun-types/docs/README.md +28 -0
  681. package/templates/starter/node_modules/bun-types/docs/bundler/bytecode.mdx +465 -0
  682. package/templates/starter/node_modules/bun-types/docs/bundler/css.mdx +1024 -0
  683. package/templates/starter/node_modules/bun-types/docs/bundler/esbuild.mdx +298 -0
  684. package/templates/starter/node_modules/bun-types/docs/bundler/executables.mdx +1294 -0
  685. package/templates/starter/node_modules/bun-types/docs/bundler/fullstack.mdx +1086 -0
  686. package/templates/starter/node_modules/bun-types/docs/bundler/hot-reloading.mdx +229 -0
  687. package/templates/starter/node_modules/bun-types/docs/bundler/html-static.mdx +488 -0
  688. package/templates/starter/node_modules/bun-types/docs/bundler/index.mdx +1794 -0
  689. package/templates/starter/node_modules/bun-types/docs/bundler/loaders.mdx +451 -0
  690. package/templates/starter/node_modules/bun-types/docs/bundler/macros.mdx +328 -0
  691. package/templates/starter/node_modules/bun-types/docs/bundler/minifier.mdx +1286 -0
  692. package/templates/starter/node_modules/bun-types/docs/bundler/plugins.mdx +425 -0
  693. package/templates/starter/node_modules/bun-types/docs/feedback.mdx +75 -0
  694. package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-array.mdx +29 -0
  695. package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-blob.mdx +26 -0
  696. package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-buffer.mdx +27 -0
  697. package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-string.mdx +17 -0
  698. package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-typedarray.mdx +41 -0
  699. package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-arraybuffer.mdx +16 -0
  700. package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-dataview.mdx +16 -0
  701. package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-stream.mdx +16 -0
  702. package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-string.mdx +17 -0
  703. package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-typedarray.mdx +16 -0
  704. package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-arraybuffer.mdx +16 -0
  705. package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-blob.mdx +16 -0
  706. package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-readablestream.mdx +43 -0
  707. package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-string.mdx +27 -0
  708. package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-typedarray.mdx +16 -0
  709. package/templates/starter/node_modules/bun-types/docs/guides/binary/dataview-to-string.mdx +17 -0
  710. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-arraybuffer.mdx +27 -0
  711. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-blob.mdx +18 -0
  712. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-buffer.mdx +16 -0
  713. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-dataview.mdx +16 -0
  714. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-readablestream.mdx +43 -0
  715. package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-string.mdx +18 -0
  716. package/templates/starter/node_modules/bun-types/docs/guides/deployment/aws-lambda.mdx +204 -0
  717. package/templates/starter/node_modules/bun-types/docs/guides/deployment/digital-ocean.mdx +161 -0
  718. package/templates/starter/node_modules/bun-types/docs/guides/deployment/google-cloud-run.mdx +194 -0
  719. package/templates/starter/node_modules/bun-types/docs/guides/deployment/railway.mdx +145 -0
  720. package/templates/starter/node_modules/bun-types/docs/guides/deployment/render.mdx +82 -0
  721. package/templates/starter/node_modules/bun-types/docs/guides/deployment/vercel.mdx +97 -0
  722. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/astro.mdx +82 -0
  723. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/discordjs.mdx +80 -0
  724. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/docker.mdx +151 -0
  725. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/drizzle.mdx +195 -0
  726. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/elysia.mdx +31 -0
  727. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/express.mdx +43 -0
  728. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/gel.mdx +261 -0
  729. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/hono.mdx +47 -0
  730. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/mongoose.mdx +92 -0
  731. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/neon-drizzle.mdx +234 -0
  732. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/neon-serverless-postgres.mdx +60 -0
  733. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/nextjs.mdx +103 -0
  734. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/nuxt.mdx +96 -0
  735. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/pm2.mdx +55 -0
  736. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/prisma-postgres.mdx +169 -0
  737. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/prisma.mdx +164 -0
  738. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/qwik.mdx +114 -0
  739. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/react.mdx +52 -0
  740. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/remix.mdx +97 -0
  741. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/sentry.mdx +54 -0
  742. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/solidstart.mdx +62 -0
  743. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/ssr-react.mdx +49 -0
  744. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/stric.mdx +54 -0
  745. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/sveltekit.mdx +138 -0
  746. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/systemd.mdx +114 -0
  747. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/tanstack-start.mdx +791 -0
  748. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/upstash.mdx +87 -0
  749. package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/vite.mdx +77 -0
  750. package/templates/starter/node_modules/bun-types/docs/guides/html-rewriter/extract-links.mdx +71 -0
  751. package/templates/starter/node_modules/bun-types/docs/guides/html-rewriter/extract-social-meta.mdx +97 -0
  752. package/templates/starter/node_modules/bun-types/docs/guides/http/cluster.mdx +69 -0
  753. package/templates/starter/node_modules/bun-types/docs/guides/http/fetch-unix.mdx +35 -0
  754. package/templates/starter/node_modules/bun-types/docs/guides/http/fetch.mdx +26 -0
  755. package/templates/starter/node_modules/bun-types/docs/guides/http/file-uploads.mdx +97 -0
  756. package/templates/starter/node_modules/bun-types/docs/guides/http/hot.mdx +28 -0
  757. package/templates/starter/node_modules/bun-types/docs/guides/http/proxy.mdx +50 -0
  758. package/templates/starter/node_modules/bun-types/docs/guides/http/server.mdx +48 -0
  759. package/templates/starter/node_modules/bun-types/docs/guides/http/simple.mdx +20 -0
  760. package/templates/starter/node_modules/bun-types/docs/guides/http/stream-file.mdx +50 -0
  761. package/templates/starter/node_modules/bun-types/docs/guides/http/stream-iterator.mdx +49 -0
  762. package/templates/starter/node_modules/bun-types/docs/guides/http/stream-node-streams-in-bun.mdx +22 -0
  763. package/templates/starter/node_modules/bun-types/docs/guides/http/tls.mdx +32 -0
  764. package/templates/starter/node_modules/bun-types/docs/guides/index.mdx +10 -0
  765. package/templates/starter/node_modules/bun-types/docs/guides/install/add-dev.mdx +28 -0
  766. package/templates/starter/node_modules/bun-types/docs/guides/install/add-git.mdx +40 -0
  767. package/templates/starter/node_modules/bun-types/docs/guides/install/add-optional.mdx +27 -0
  768. package/templates/starter/node_modules/bun-types/docs/guides/install/add-peer.mdx +45 -0
  769. package/templates/starter/node_modules/bun-types/docs/guides/install/add-tarball.mdx +35 -0
  770. package/templates/starter/node_modules/bun-types/docs/guides/install/add.mdx +44 -0
  771. package/templates/starter/node_modules/bun-types/docs/guides/install/azure-artifacts.mdx +76 -0
  772. package/templates/starter/node_modules/bun-types/docs/guides/install/cicd.mdx +43 -0
  773. package/templates/starter/node_modules/bun-types/docs/guides/install/custom-registry.mdx +32 -0
  774. package/templates/starter/node_modules/bun-types/docs/guides/install/from-npm-install-to-bun-install.mdx +230 -0
  775. package/templates/starter/node_modules/bun-types/docs/guides/install/git-diff-bun-lockfile.mdx +48 -0
  776. package/templates/starter/node_modules/bun-types/docs/guides/install/jfrog-artifactory.mdx +28 -0
  777. package/templates/starter/node_modules/bun-types/docs/guides/install/npm-alias.mdx +25 -0
  778. package/templates/starter/node_modules/bun-types/docs/guides/install/registry-scope.mdx +40 -0
  779. package/templates/starter/node_modules/bun-types/docs/guides/install/trusted.mdx +52 -0
  780. package/templates/starter/node_modules/bun-types/docs/guides/install/workspaces.mdx +70 -0
  781. package/templates/starter/node_modules/bun-types/docs/guides/install/yarnlock.mdx +51 -0
  782. package/templates/starter/node_modules/bun-types/docs/guides/process/argv.mdx +66 -0
  783. package/templates/starter/node_modules/bun-types/docs/guides/process/ctrl-c.mdx +18 -0
  784. package/templates/starter/node_modules/bun-types/docs/guides/process/ipc.mdx +69 -0
  785. package/templates/starter/node_modules/bun-types/docs/guides/process/nanoseconds.mdx +15 -0
  786. package/templates/starter/node_modules/bun-types/docs/guides/process/os-signals.mdx +31 -0
  787. package/templates/starter/node_modules/bun-types/docs/guides/process/spawn-stderr.mdx +34 -0
  788. package/templates/starter/node_modules/bun-types/docs/guides/process/spawn-stdout.mdx +28 -0
  789. package/templates/starter/node_modules/bun-types/docs/guides/process/spawn.mdx +43 -0
  790. package/templates/starter/node_modules/bun-types/docs/guides/process/stdin.mdx +62 -0
  791. package/templates/starter/node_modules/bun-types/docs/guides/read-file/arraybuffer.mdx +30 -0
  792. package/templates/starter/node_modules/bun-types/docs/guides/read-file/buffer.mdx +21 -0
  793. package/templates/starter/node_modules/bun-types/docs/guides/read-file/exists.mdx +18 -0
  794. package/templates/starter/node_modules/bun-types/docs/guides/read-file/json.mdx +19 -0
  795. package/templates/starter/node_modules/bun-types/docs/guides/read-file/mime.mdx +22 -0
  796. package/templates/starter/node_modules/bun-types/docs/guides/read-file/stream.mdx +28 -0
  797. package/templates/starter/node_modules/bun-types/docs/guides/read-file/string.mdx +24 -0
  798. package/templates/starter/node_modules/bun-types/docs/guides/read-file/uint8array.mdx +23 -0
  799. package/templates/starter/node_modules/bun-types/docs/guides/read-file/watch.mdx +66 -0
  800. package/templates/starter/node_modules/bun-types/docs/guides/runtime/build-time-constants.mdx +295 -0
  801. package/templates/starter/node_modules/bun-types/docs/guides/runtime/cicd.mdx +45 -0
  802. package/templates/starter/node_modules/bun-types/docs/guides/runtime/codesign-macos-executable.mdx +61 -0
  803. package/templates/starter/node_modules/bun-types/docs/guides/runtime/define-constant.mdx +149 -0
  804. package/templates/starter/node_modules/bun-types/docs/guides/runtime/delete-directory.mdx +39 -0
  805. package/templates/starter/node_modules/bun-types/docs/guides/runtime/delete-file.mdx +21 -0
  806. package/templates/starter/node_modules/bun-types/docs/guides/runtime/heap-snapshot.mdx +28 -0
  807. package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-html.mdx +15 -0
  808. package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-json.mdx +46 -0
  809. package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-json5.mdx +74 -0
  810. package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-toml.mdx +32 -0
  811. package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-yaml.mdx +104 -0
  812. package/templates/starter/node_modules/bun-types/docs/guides/runtime/read-env.mdx +37 -0
  813. package/templates/starter/node_modules/bun-types/docs/guides/runtime/set-env.mdx +51 -0
  814. package/templates/starter/node_modules/bun-types/docs/guides/runtime/shell.mdx +42 -0
  815. package/templates/starter/node_modules/bun-types/docs/guides/runtime/timezone.mdx +38 -0
  816. package/templates/starter/node_modules/bun-types/docs/guides/runtime/tsconfig-paths.mdx +31 -0
  817. package/templates/starter/node_modules/bun-types/docs/guides/runtime/typescript.mdx +51 -0
  818. package/templates/starter/node_modules/bun-types/docs/guides/runtime/vscode-debugger.mdx +47 -0
  819. package/templates/starter/node_modules/bun-types/docs/guides/runtime/web-debugger.mdx +103 -0
  820. package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-arraybuffer.mdx +13 -0
  821. package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-blob.mdx +13 -0
  822. package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-json.mdx +14 -0
  823. package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-string.mdx +14 -0
  824. package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-uint8array.mdx +13 -0
  825. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-array.mdx +16 -0
  826. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-arraybuffer.mdx +16 -0
  827. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-blob.mdx +16 -0
  828. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-buffer.mdx +17 -0
  829. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-json.mdx +16 -0
  830. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-string.mdx +16 -0
  831. package/templates/starter/node_modules/bun-types/docs/guides/streams/to-typedarray.mdx +24 -0
  832. package/templates/starter/node_modules/bun-types/docs/guides/test/bail.mdx +24 -0
  833. package/templates/starter/node_modules/bun-types/docs/guides/test/concurrent-test-glob.mdx +146 -0
  834. package/templates/starter/node_modules/bun-types/docs/guides/test/coverage-threshold.mdx +67 -0
  835. package/templates/starter/node_modules/bun-types/docs/guides/test/coverage.mdx +49 -0
  836. package/templates/starter/node_modules/bun-types/docs/guides/test/happy-dom.mdx +73 -0
  837. package/templates/starter/node_modules/bun-types/docs/guides/test/migrate-from-jest.mdx +125 -0
  838. package/templates/starter/node_modules/bun-types/docs/guides/test/mock-clock.mdx +50 -0
  839. package/templates/starter/node_modules/bun-types/docs/guides/test/mock-functions.mdx +70 -0
  840. package/templates/starter/node_modules/bun-types/docs/guides/test/rerun-each.mdx +16 -0
  841. package/templates/starter/node_modules/bun-types/docs/guides/test/run-tests.mdx +116 -0
  842. package/templates/starter/node_modules/bun-types/docs/guides/test/skip-tests.mdx +43 -0
  843. package/templates/starter/node_modules/bun-types/docs/guides/test/snapshot.mdx +102 -0
  844. package/templates/starter/node_modules/bun-types/docs/guides/test/spy-on.mdx +49 -0
  845. package/templates/starter/node_modules/bun-types/docs/guides/test/svelte-test.mdx +113 -0
  846. package/templates/starter/node_modules/bun-types/docs/guides/test/testing-library.mdx +93 -0
  847. package/templates/starter/node_modules/bun-types/docs/guides/test/timeout.mdx +17 -0
  848. package/templates/starter/node_modules/bun-types/docs/guides/test/todo-tests.mdx +74 -0
  849. package/templates/starter/node_modules/bun-types/docs/guides/test/update-snapshots.mdx +49 -0
  850. package/templates/starter/node_modules/bun-types/docs/guides/test/watch-mode.mdx +24 -0
  851. package/templates/starter/node_modules/bun-types/docs/guides/util/base64.mdx +17 -0
  852. package/templates/starter/node_modules/bun-types/docs/guides/util/deep-equals.mdx +41 -0
  853. package/templates/starter/node_modules/bun-types/docs/guides/util/deflate.mdx +20 -0
  854. package/templates/starter/node_modules/bun-types/docs/guides/util/detect-bun.mdx +28 -0
  855. package/templates/starter/node_modules/bun-types/docs/guides/util/entrypoint.mdx +19 -0
  856. package/templates/starter/node_modules/bun-types/docs/guides/util/escape-html.mdx +24 -0
  857. package/templates/starter/node_modules/bun-types/docs/guides/util/file-url-to-path.mdx +16 -0
  858. package/templates/starter/node_modules/bun-types/docs/guides/util/gzip.mdx +20 -0
  859. package/templates/starter/node_modules/bun-types/docs/guides/util/hash-a-password.mdx +56 -0
  860. package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-dir.mdx +15 -0
  861. package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-file.mdx +15 -0
  862. package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-path.mdx +15 -0
  863. package/templates/starter/node_modules/bun-types/docs/guides/util/javascript-uuid.mdx +25 -0
  864. package/templates/starter/node_modules/bun-types/docs/guides/util/main.mdx +43 -0
  865. package/templates/starter/node_modules/bun-types/docs/guides/util/path-to-file-url.mdx +16 -0
  866. package/templates/starter/node_modules/bun-types/docs/guides/util/sleep.mdx +24 -0
  867. package/templates/starter/node_modules/bun-types/docs/guides/util/upgrade.mdx +93 -0
  868. package/templates/starter/node_modules/bun-types/docs/guides/util/version.mdx +23 -0
  869. package/templates/starter/node_modules/bun-types/docs/guides/util/which-path-to-executable-bin.mdx +17 -0
  870. package/templates/starter/node_modules/bun-types/docs/guides/websocket/compression.mdx +33 -0
  871. package/templates/starter/node_modules/bun-types/docs/guides/websocket/context.mdx +79 -0
  872. package/templates/starter/node_modules/bun-types/docs/guides/websocket/pubsub.mdx +43 -0
  873. package/templates/starter/node_modules/bun-types/docs/guides/websocket/simple.mdx +38 -0
  874. package/templates/starter/node_modules/bun-types/docs/guides/write-file/append.mdx +54 -0
  875. package/templates/starter/node_modules/bun-types/docs/guides/write-file/basic.mdx +46 -0
  876. package/templates/starter/node_modules/bun-types/docs/guides/write-file/blob.mdx +30 -0
  877. package/templates/starter/node_modules/bun-types/docs/guides/write-file/cat.mdx +19 -0
  878. package/templates/starter/node_modules/bun-types/docs/guides/write-file/file-cp.mdx +18 -0
  879. package/templates/starter/node_modules/bun-types/docs/guides/write-file/filesink.mdx +54 -0
  880. package/templates/starter/node_modules/bun-types/docs/guides/write-file/response.mdx +19 -0
  881. package/templates/starter/node_modules/bun-types/docs/guides/write-file/stdout.mdx +23 -0
  882. package/templates/starter/node_modules/bun-types/docs/guides/write-file/stream.mdx +19 -0
  883. package/templates/starter/node_modules/bun-types/docs/guides/write-file/unlink.mdx +18 -0
  884. package/templates/starter/node_modules/bun-types/docs/index.mdx +133 -0
  885. package/templates/starter/node_modules/bun-types/docs/installation.mdx +365 -0
  886. package/templates/starter/node_modules/bun-types/docs/pm/bunx.mdx +91 -0
  887. package/templates/starter/node_modules/bun-types/docs/pm/catalogs.mdx +292 -0
  888. package/templates/starter/node_modules/bun-types/docs/pm/cli/add.mdx +179 -0
  889. package/templates/starter/node_modules/bun-types/docs/pm/cli/audit.mdx +60 -0
  890. package/templates/starter/node_modules/bun-types/docs/pm/cli/info.mdx +70 -0
  891. package/templates/starter/node_modules/bun-types/docs/pm/cli/install.mdx +591 -0
  892. package/templates/starter/node_modules/bun-types/docs/pm/cli/link.mdx +61 -0
  893. package/templates/starter/node_modules/bun-types/docs/pm/cli/outdated.mdx +197 -0
  894. package/templates/starter/node_modules/bun-types/docs/pm/cli/patch.mdx +69 -0
  895. package/templates/starter/node_modules/bun-types/docs/pm/cli/pm.mdx +323 -0
  896. package/templates/starter/node_modules/bun-types/docs/pm/cli/publish.mdx +131 -0
  897. package/templates/starter/node_modules/bun-types/docs/pm/cli/remove.mdx +16 -0
  898. package/templates/starter/node_modules/bun-types/docs/pm/cli/update.mdx +140 -0
  899. package/templates/starter/node_modules/bun-types/docs/pm/cli/why.mdx +84 -0
  900. package/templates/starter/node_modules/bun-types/docs/pm/filter.mdx +102 -0
  901. package/templates/starter/node_modules/bun-types/docs/pm/global-cache.mdx +72 -0
  902. package/templates/starter/node_modules/bun-types/docs/pm/isolated-installs.mdx +220 -0
  903. package/templates/starter/node_modules/bun-types/docs/pm/lifecycle.mdx +64 -0
  904. package/templates/starter/node_modules/bun-types/docs/pm/lockfile.mdx +64 -0
  905. package/templates/starter/node_modules/bun-types/docs/pm/npmrc.mdx +245 -0
  906. package/templates/starter/node_modules/bun-types/docs/pm/overrides.mdx +83 -0
  907. package/templates/starter/node_modules/bun-types/docs/pm/scopes-registries.mdx +35 -0
  908. package/templates/starter/node_modules/bun-types/docs/pm/security-scanner-api.mdx +95 -0
  909. package/templates/starter/node_modules/bun-types/docs/pm/workspaces.mdx +115 -0
  910. package/templates/starter/node_modules/bun-types/docs/project/benchmarking.mdx +296 -0
  911. package/templates/starter/node_modules/bun-types/docs/project/bindgen.mdx +223 -0
  912. package/templates/starter/node_modules/bun-types/docs/project/building-windows.mdx +143 -0
  913. package/templates/starter/node_modules/bun-types/docs/project/contributing.mdx +371 -0
  914. package/templates/starter/node_modules/bun-types/docs/project/feedback.mdx +20 -0
  915. package/templates/starter/node_modules/bun-types/docs/project/license.mdx +78 -0
  916. package/templates/starter/node_modules/bun-types/docs/project/roadmap.mdx +8 -0
  917. package/templates/starter/node_modules/bun-types/docs/quickstart.mdx +251 -0
  918. package/templates/starter/node_modules/bun-types/docs/runtime/archive.mdx +452 -0
  919. package/templates/starter/node_modules/bun-types/docs/runtime/auto-install.mdx +97 -0
  920. package/templates/starter/node_modules/bun-types/docs/runtime/binary-data.mdx +846 -0
  921. package/templates/starter/node_modules/bun-types/docs/runtime/bun-apis.mdx +59 -0
  922. package/templates/starter/node_modules/bun-types/docs/runtime/bunfig.mdx +743 -0
  923. package/templates/starter/node_modules/bun-types/docs/runtime/c-compiler.mdx +204 -0
  924. package/templates/starter/node_modules/bun-types/docs/runtime/child-process.mdx +659 -0
  925. package/templates/starter/node_modules/bun-types/docs/runtime/color.mdx +267 -0
  926. package/templates/starter/node_modules/bun-types/docs/runtime/console.mdx +67 -0
  927. package/templates/starter/node_modules/bun-types/docs/runtime/cookies.mdx +454 -0
  928. package/templates/starter/node_modules/bun-types/docs/runtime/debugger.mdx +335 -0
  929. package/templates/starter/node_modules/bun-types/docs/runtime/environment-variables.mdx +231 -0
  930. package/templates/starter/node_modules/bun-types/docs/runtime/ffi.mdx +567 -0
  931. package/templates/starter/node_modules/bun-types/docs/runtime/file-io.mdx +306 -0
  932. package/templates/starter/node_modules/bun-types/docs/runtime/file-system-router.mdx +118 -0
  933. package/templates/starter/node_modules/bun-types/docs/runtime/file-types.mdx +482 -0
  934. package/templates/starter/node_modules/bun-types/docs/runtime/glob.mdx +181 -0
  935. package/templates/starter/node_modules/bun-types/docs/runtime/globals.mdx +72 -0
  936. package/templates/starter/node_modules/bun-types/docs/runtime/hashing.mdx +315 -0
  937. package/templates/starter/node_modules/bun-types/docs/runtime/html-rewriter.mdx +333 -0
  938. package/templates/starter/node_modules/bun-types/docs/runtime/http/cookies.mdx +79 -0
  939. package/templates/starter/node_modules/bun-types/docs/runtime/http/error-handling.mdx +40 -0
  940. package/templates/starter/node_modules/bun-types/docs/runtime/http/metrics.mdx +36 -0
  941. package/templates/starter/node_modules/bun-types/docs/runtime/http/routing.mdx +289 -0
  942. package/templates/starter/node_modules/bun-types/docs/runtime/http/server.mdx +645 -0
  943. package/templates/starter/node_modules/bun-types/docs/runtime/http/tls.mdx +101 -0
  944. package/templates/starter/node_modules/bun-types/docs/runtime/http/websockets.mdx +414 -0
  945. package/templates/starter/node_modules/bun-types/docs/runtime/index.mdx +223 -0
  946. package/templates/starter/node_modules/bun-types/docs/runtime/json5.mdx +271 -0
  947. package/templates/starter/node_modules/bun-types/docs/runtime/jsonl.mdx +188 -0
  948. package/templates/starter/node_modules/bun-types/docs/runtime/jsx.mdx +115 -0
  949. package/templates/starter/node_modules/bun-types/docs/runtime/markdown.mdx +344 -0
  950. package/templates/starter/node_modules/bun-types/docs/runtime/module-resolution.mdx +374 -0
  951. package/templates/starter/node_modules/bun-types/docs/runtime/networking/dns.mdx +111 -0
  952. package/templates/starter/node_modules/bun-types/docs/runtime/networking/fetch.mdx +484 -0
  953. package/templates/starter/node_modules/bun-types/docs/runtime/networking/tcp.mdx +239 -0
  954. package/templates/starter/node_modules/bun-types/docs/runtime/networking/udp.mdx +180 -0
  955. package/templates/starter/node_modules/bun-types/docs/runtime/node-api.mdx +19 -0
  956. package/templates/starter/node_modules/bun-types/docs/runtime/nodejs-compat.mdx +468 -0
  957. package/templates/starter/node_modules/bun-types/docs/runtime/plugins.mdx +419 -0
  958. package/templates/starter/node_modules/bun-types/docs/runtime/redis.mdx +583 -0
  959. package/templates/starter/node_modules/bun-types/docs/runtime/s3.mdx +881 -0
  960. package/templates/starter/node_modules/bun-types/docs/runtime/secrets.mdx +340 -0
  961. package/templates/starter/node_modules/bun-types/docs/runtime/semver.mdx +57 -0
  962. package/templates/starter/node_modules/bun-types/docs/runtime/shell.mdx +637 -0
  963. package/templates/starter/node_modules/bun-types/docs/runtime/sql.mdx +1404 -0
  964. package/templates/starter/node_modules/bun-types/docs/runtime/sqlite.mdx +721 -0
  965. package/templates/starter/node_modules/bun-types/docs/runtime/streams.mdx +232 -0
  966. package/templates/starter/node_modules/bun-types/docs/runtime/templating/create.mdx +269 -0
  967. package/templates/starter/node_modules/bun-types/docs/runtime/templating/init.mdx +58 -0
  968. package/templates/starter/node_modules/bun-types/docs/runtime/transpiler.mdx +288 -0
  969. package/templates/starter/node_modules/bun-types/docs/runtime/typescript.mdx +58 -0
  970. package/templates/starter/node_modules/bun-types/docs/runtime/utils.mdx +1010 -0
  971. package/templates/starter/node_modules/bun-types/docs/runtime/watch-mode.mdx +161 -0
  972. package/templates/starter/node_modules/bun-types/docs/runtime/web-apis.mdx +29 -0
  973. package/templates/starter/node_modules/bun-types/docs/runtime/workers.mdx +314 -0
  974. package/templates/starter/node_modules/bun-types/docs/runtime/yaml.mdx +469 -0
  975. package/templates/starter/node_modules/bun-types/docs/snippets/cli/add.mdx +166 -0
  976. package/templates/starter/node_modules/bun-types/docs/snippets/cli/build.mdx +196 -0
  977. package/templates/starter/node_modules/bun-types/docs/snippets/cli/bunx.mdx +49 -0
  978. package/templates/starter/node_modules/bun-types/docs/snippets/cli/feedback.mdx +17 -0
  979. package/templates/starter/node_modules/bun-types/docs/snippets/cli/init.mdx +84 -0
  980. package/templates/starter/node_modules/bun-types/docs/snippets/cli/install.mdx +173 -0
  981. package/templates/starter/node_modules/bun-types/docs/snippets/cli/link.mdx +163 -0
  982. package/templates/starter/node_modules/bun-types/docs/snippets/cli/outdated.mdx +140 -0
  983. package/templates/starter/node_modules/bun-types/docs/snippets/cli/patch.mdx +171 -0
  984. package/templates/starter/node_modules/bun-types/docs/snippets/cli/publish.mdx +198 -0
  985. package/templates/starter/node_modules/bun-types/docs/snippets/cli/remove.mdx +146 -0
  986. package/templates/starter/node_modules/bun-types/docs/snippets/cli/run.mdx +293 -0
  987. package/templates/starter/node_modules/bun-types/docs/snippets/cli/test.mdx +100 -0
  988. package/templates/starter/node_modules/bun-types/docs/snippets/cli/update.mdx +144 -0
  989. package/templates/starter/node_modules/bun-types/docs/test/code-coverage.mdx +409 -0
  990. package/templates/starter/node_modules/bun-types/docs/test/configuration.mdx +509 -0
  991. package/templates/starter/node_modules/bun-types/docs/test/dates-times.mdx +129 -0
  992. package/templates/starter/node_modules/bun-types/docs/test/discovery.mdx +90 -0
  993. package/templates/starter/node_modules/bun-types/docs/test/dom.mdx +226 -0
  994. package/templates/starter/node_modules/bun-types/docs/test/index.mdx +380 -0
  995. package/templates/starter/node_modules/bun-types/docs/test/lifecycle.mdx +366 -0
  996. package/templates/starter/node_modules/bun-types/docs/test/mocks.mdx +637 -0
  997. package/templates/starter/node_modules/bun-types/docs/test/reporters.mdx +126 -0
  998. package/templates/starter/node_modules/bun-types/docs/test/runtime-behavior.mdx +342 -0
  999. package/templates/starter/node_modules/bun-types/docs/test/snapshots.mdx +434 -0
  1000. package/templates/starter/node_modules/bun-types/docs/test/writing-tests.mdx +672 -0
  1001. package/templates/starter/node_modules/bun-types/docs/typescript.mdx +54 -0
  1002. package/templates/starter/node_modules/bun-types/extensions.d.ts +40 -0
  1003. package/templates/starter/node_modules/bun-types/fetch.d.ts +79 -0
  1004. package/templates/starter/node_modules/bun-types/ffi.d.ts +1154 -0
  1005. package/templates/starter/node_modules/bun-types/globals.d.ts +2067 -0
  1006. package/templates/starter/node_modules/bun-types/html-rewriter.d.ts +186 -0
  1007. package/templates/starter/node_modules/bun-types/index.d.ts +32 -0
  1008. package/templates/starter/node_modules/bun-types/jsc.d.ts +233 -0
  1009. package/templates/starter/node_modules/bun-types/jsx.d.ts +11 -0
  1010. package/templates/starter/node_modules/bun-types/overrides.d.ts +376 -0
  1011. package/templates/starter/node_modules/bun-types/package.json +37 -0
  1012. package/templates/starter/node_modules/bun-types/redis.d.ts +3352 -0
  1013. package/templates/starter/node_modules/bun-types/s3.d.ts +1335 -0
  1014. package/templates/starter/node_modules/bun-types/security.d.ts +101 -0
  1015. package/templates/starter/node_modules/bun-types/serve.d.ts +1296 -0
  1016. package/templates/starter/node_modules/bun-types/shell.d.ts +380 -0
  1017. package/templates/starter/node_modules/bun-types/sql.d.ts +887 -0
  1018. package/templates/starter/node_modules/bun-types/sqlite.d.ts +1322 -0
  1019. package/templates/starter/node_modules/bun-types/test-globals.d.ts +22 -0
  1020. package/templates/starter/node_modules/bun-types/test.d.ts +2391 -0
  1021. package/templates/starter/node_modules/bun-types/vendor/expect-type/branding.d.ts +283 -0
  1022. package/templates/starter/node_modules/bun-types/vendor/expect-type/index.d.ts +1207 -0
  1023. package/templates/starter/node_modules/bun-types/vendor/expect-type/messages.d.ts +395 -0
  1024. package/templates/starter/node_modules/bun-types/vendor/expect-type/overloads.d.ts +669 -0
  1025. package/templates/starter/node_modules/bun-types/vendor/expect-type/utils.d.ts +431 -0
  1026. package/templates/starter/node_modules/bun-types/wasm.d.ts +193 -0
  1027. package/templates/starter/node_modules/cookie/HISTORY.md +147 -0
  1028. package/templates/starter/node_modules/cookie/LICENSE +24 -0
  1029. package/templates/starter/node_modules/cookie/README.md +317 -0
  1030. package/templates/starter/node_modules/cookie/SECURITY.md +25 -0
  1031. package/templates/starter/node_modules/cookie/index.js +274 -0
  1032. package/templates/starter/node_modules/cookie/package.json +44 -0
  1033. package/templates/starter/node_modules/jose/LICENSE.md +21 -0
  1034. package/templates/starter/node_modules/jose/README.md +151 -0
  1035. package/templates/starter/node_modules/jose/dist/browser/index.js +30 -0
  1036. package/templates/starter/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
  1037. package/templates/starter/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
  1038. package/templates/starter/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +161 -0
  1039. package/templates/starter/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +153 -0
  1040. package/templates/starter/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
  1041. package/templates/starter/node_modules/jose/dist/browser/jwe/general/encrypt.js +174 -0
  1042. package/templates/starter/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
  1043. package/templates/starter/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
  1044. package/templates/starter/node_modules/jose/dist/browser/jwks/local.js +124 -0
  1045. package/templates/starter/node_modules/jose/dist/browser/jwks/remote.js +139 -0
  1046. package/templates/starter/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
  1047. package/templates/starter/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
  1048. package/templates/starter/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
  1049. package/templates/starter/node_modules/jose/dist/browser/jws/flattened/verify.js +122 -0
  1050. package/templates/starter/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
  1051. package/templates/starter/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
  1052. package/templates/starter/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
  1053. package/templates/starter/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
  1054. package/templates/starter/node_modules/jose/dist/browser/jwt/produce.js +75 -0
  1055. package/templates/starter/node_modules/jose/dist/browser/jwt/sign.js +20 -0
  1056. package/templates/starter/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
  1057. package/templates/starter/node_modules/jose/dist/browser/jwt/verify.js +15 -0
  1058. package/templates/starter/node_modules/jose/dist/browser/key/export.js +12 -0
  1059. package/templates/starter/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
  1060. package/templates/starter/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
  1061. package/templates/starter/node_modules/jose/dist/browser/key/import.js +45 -0
  1062. package/templates/starter/node_modules/jose/dist/browser/lib/aesgcmkw.js +16 -0
  1063. package/templates/starter/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
  1064. package/templates/starter/node_modules/jose/dist/browser/lib/cek.js +20 -0
  1065. package/templates/starter/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
  1066. package/templates/starter/node_modules/jose/dist/browser/lib/check_key_type.js +77 -0
  1067. package/templates/starter/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
  1068. package/templates/starter/node_modules/jose/dist/browser/lib/crypto_key.js +157 -0
  1069. package/templates/starter/node_modules/jose/dist/browser/lib/decrypt_key_management.js +129 -0
  1070. package/templates/starter/node_modules/jose/dist/browser/lib/encrypt_key_management.js +89 -0
  1071. package/templates/starter/node_modules/jose/dist/browser/lib/epoch.js +1 -0
  1072. package/templates/starter/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
  1073. package/templates/starter/node_modules/jose/dist/browser/lib/invalid_key_input.js +31 -0
  1074. package/templates/starter/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
  1075. package/templates/starter/node_modules/jose/dist/browser/lib/is_jwk.js +13 -0
  1076. package/templates/starter/node_modules/jose/dist/browser/lib/is_object.js +16 -0
  1077. package/templates/starter/node_modules/jose/dist/browser/lib/iv.js +20 -0
  1078. package/templates/starter/node_modules/jose/dist/browser/lib/jwt_claims_set.js +104 -0
  1079. package/templates/starter/node_modules/jose/dist/browser/lib/private_symbols.js +1 -0
  1080. package/templates/starter/node_modules/jose/dist/browser/lib/secs.js +55 -0
  1081. package/templates/starter/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
  1082. package/templates/starter/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
  1083. package/templates/starter/node_modules/jose/dist/browser/package.json +1 -0
  1084. package/templates/starter/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
  1085. package/templates/starter/node_modules/jose/dist/browser/runtime/asn1.js +205 -0
  1086. package/templates/starter/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
  1087. package/templates/starter/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
  1088. package/templates/starter/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
  1089. package/templates/starter/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
  1090. package/templates/starter/node_modules/jose/dist/browser/runtime/decrypt.js +91 -0
  1091. package/templates/starter/node_modules/jose/dist/browser/runtime/digest.js +6 -0
  1092. package/templates/starter/node_modules/jose/dist/browser/runtime/ecdhes.js +47 -0
  1093. package/templates/starter/node_modules/jose/dist/browser/runtime/encrypt.js +76 -0
  1094. package/templates/starter/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
  1095. package/templates/starter/node_modules/jose/dist/browser/runtime/generate.js +143 -0
  1096. package/templates/starter/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +24 -0
  1097. package/templates/starter/node_modules/jose/dist/browser/runtime/is_key_like.js +8 -0
  1098. package/templates/starter/node_modules/jose/dist/browser/runtime/jwk_to_key.js +104 -0
  1099. package/templates/starter/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
  1100. package/templates/starter/node_modules/jose/dist/browser/runtime/normalize_key.js +68 -0
  1101. package/templates/starter/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
  1102. package/templates/starter/node_modules/jose/dist/browser/runtime/random.js +2 -0
  1103. package/templates/starter/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
  1104. package/templates/starter/node_modules/jose/dist/browser/runtime/runtime.js +1 -0
  1105. package/templates/starter/node_modules/jose/dist/browser/runtime/sign.js +11 -0
  1106. package/templates/starter/node_modules/jose/dist/browser/runtime/subtle_dsa.js +28 -0
  1107. package/templates/starter/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
  1108. package/templates/starter/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
  1109. package/templates/starter/node_modules/jose/dist/browser/runtime/verify.js +16 -0
  1110. package/templates/starter/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
  1111. package/templates/starter/node_modules/jose/dist/browser/util/base64url.js +3 -0
  1112. package/templates/starter/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
  1113. package/templates/starter/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
  1114. package/templates/starter/node_modules/jose/dist/browser/util/errors.js +114 -0
  1115. package/templates/starter/node_modules/jose/dist/browser/util/runtime.js +2 -0
  1116. package/templates/starter/node_modules/jose/dist/node/cjs/index.js +69 -0
  1117. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +30 -0
  1118. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +31 -0
  1119. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +164 -0
  1120. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +165 -0
  1121. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +34 -0
  1122. package/templates/starter/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +186 -0
  1123. package/templates/starter/node_modules/jose/dist/node/cjs/jwk/embedded.js +20 -0
  1124. package/templates/starter/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +57 -0
  1125. package/templates/starter/node_modules/jose/dist/node/cjs/jwks/local.js +128 -0
  1126. package/templates/starter/node_modules/jose/dist/node/cjs/jwks/remote.js +152 -0
  1127. package/templates/starter/node_modules/jose/dist/node/cjs/jws/compact/sign.js +22 -0
  1128. package/templates/starter/node_modules/jose/dist/node/cjs/jws/compact/verify.js +24 -0
  1129. package/templates/starter/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +88 -0
  1130. package/templates/starter/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +125 -0
  1131. package/templates/starter/node_modules/jose/dist/node/cjs/jws/general/sign.js +77 -0
  1132. package/templates/starter/node_modules/jose/dist/node/cjs/jws/general/verify.js +27 -0
  1133. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/decrypt.js +26 -0
  1134. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/encrypt.js +79 -0
  1135. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/produce.js +80 -0
  1136. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
  1137. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
  1138. package/templates/starter/node_modules/jose/dist/node/cjs/jwt/verify.js +18 -0
  1139. package/templates/starter/node_modules/jose/dist/node/cjs/key/export.js +17 -0
  1140. package/templates/starter/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +7 -0
  1141. package/templates/starter/node_modules/jose/dist/node/cjs/key/generate_secret.js +7 -0
  1142. package/templates/starter/node_modules/jose/dist/node/cjs/key/import.js +51 -0
  1143. package/templates/starter/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +20 -0
  1144. package/templates/starter/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
  1145. package/templates/starter/node_modules/jose/dist/node/cjs/lib/cek.js +23 -0
  1146. package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
  1147. package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_key_type.js +80 -0
  1148. package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
  1149. package/templates/starter/node_modules/jose/dist/node/cjs/lib/crypto_key.js +161 -0
  1150. package/templates/starter/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +131 -0
  1151. package/templates/starter/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +91 -0
  1152. package/templates/starter/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
  1153. package/templates/starter/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
  1154. package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
  1155. package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_jwk.js +19 -0
  1156. package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
  1157. package/templates/starter/node_modules/jose/dist/node/cjs/lib/iv.js +23 -0
  1158. package/templates/starter/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +106 -0
  1159. package/templates/starter/node_modules/jose/dist/node/cjs/lib/private_symbols.js +4 -0
  1160. package/templates/starter/node_modules/jose/dist/node/cjs/lib/secs.js +57 -0
  1161. package/templates/starter/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
  1162. package/templates/starter/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
  1163. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
  1164. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/asn1.js +54 -0
  1165. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/base64url.js +20 -0
  1166. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
  1167. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
  1168. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/check_key_length.js +18 -0
  1169. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
  1170. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/decrypt.js +103 -0
  1171. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
  1172. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +26 -0
  1173. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
  1174. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/encrypt.js +80 -0
  1175. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
  1176. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/generate.js +103 -0
  1177. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +61 -0
  1178. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +31 -0
  1179. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
  1180. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
  1181. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +4 -0
  1182. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +10 -0
  1183. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +36 -0
  1184. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/node_key.js +111 -0
  1185. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/normalize_key.js +3 -0
  1186. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
  1187. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
  1188. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/rsaes.js +71 -0
  1189. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/runtime.js +3 -0
  1190. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/sign.js +19 -0
  1191. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
  1192. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/verify.js +31 -0
  1193. package/templates/starter/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +9 -0
  1194. package/templates/starter/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
  1195. package/templates/starter/node_modules/jose/dist/node/cjs/util/decode_jwt.js +35 -0
  1196. package/templates/starter/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +37 -0
  1197. package/templates/starter/node_modules/jose/dist/node/cjs/util/errors.js +117 -0
  1198. package/templates/starter/node_modules/jose/dist/node/cjs/util/runtime.js +4 -0
  1199. package/templates/starter/node_modules/jose/dist/node/esm/index.js +30 -0
  1200. package/templates/starter/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
  1201. package/templates/starter/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +27 -0
  1202. package/templates/starter/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +161 -0
  1203. package/templates/starter/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +161 -0
  1204. package/templates/starter/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
  1205. package/templates/starter/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +182 -0
  1206. package/templates/starter/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
  1207. package/templates/starter/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
  1208. package/templates/starter/node_modules/jose/dist/node/esm/jwks/local.js +125 -0
  1209. package/templates/starter/node_modules/jose/dist/node/esm/jwks/remote.js +148 -0
  1210. package/templates/starter/node_modules/jose/dist/node/esm/jws/compact/sign.js +18 -0
  1211. package/templates/starter/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
  1212. package/templates/starter/node_modules/jose/dist/node/esm/jws/flattened/sign.js +84 -0
  1213. package/templates/starter/node_modules/jose/dist/node/esm/jws/flattened/verify.js +122 -0
  1214. package/templates/starter/node_modules/jose/dist/node/esm/jws/general/sign.js +73 -0
  1215. package/templates/starter/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
  1216. package/templates/starter/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
  1217. package/templates/starter/node_modules/jose/dist/node/esm/jwt/encrypt.js +75 -0
  1218. package/templates/starter/node_modules/jose/dist/node/esm/jwt/produce.js +76 -0
  1219. package/templates/starter/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
  1220. package/templates/starter/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
  1221. package/templates/starter/node_modules/jose/dist/node/esm/jwt/verify.js +15 -0
  1222. package/templates/starter/node_modules/jose/dist/node/esm/key/export.js +12 -0
  1223. package/templates/starter/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
  1224. package/templates/starter/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
  1225. package/templates/starter/node_modules/jose/dist/node/esm/key/import.js +45 -0
  1226. package/templates/starter/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +16 -0
  1227. package/templates/starter/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
  1228. package/templates/starter/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
  1229. package/templates/starter/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
  1230. package/templates/starter/node_modules/jose/dist/node/esm/lib/check_key_type.js +77 -0
  1231. package/templates/starter/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
  1232. package/templates/starter/node_modules/jose/dist/node/esm/lib/crypto_key.js +157 -0
  1233. package/templates/starter/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +129 -0
  1234. package/templates/starter/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +89 -0
  1235. package/templates/starter/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
  1236. package/templates/starter/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +31 -0
  1237. package/templates/starter/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
  1238. package/templates/starter/node_modules/jose/dist/node/esm/lib/is_jwk.js +13 -0
  1239. package/templates/starter/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
  1240. package/templates/starter/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
  1241. package/templates/starter/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +104 -0
  1242. package/templates/starter/node_modules/jose/dist/node/esm/lib/private_symbols.js +1 -0
  1243. package/templates/starter/node_modules/jose/dist/node/esm/lib/secs.js +55 -0
  1244. package/templates/starter/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
  1245. package/templates/starter/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
  1246. package/templates/starter/node_modules/jose/dist/node/esm/package.json +1 -0
  1247. package/templates/starter/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
  1248. package/templates/starter/node_modules/jose/dist/node/esm/runtime/asn1.js +46 -0
  1249. package/templates/starter/node_modules/jose/dist/node/esm/runtime/base64url.js +14 -0
  1250. package/templates/starter/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
  1251. package/templates/starter/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
  1252. package/templates/starter/node_modules/jose/dist/node/esm/runtime/check_key_length.js +16 -0
  1253. package/templates/starter/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
  1254. package/templates/starter/node_modules/jose/dist/node/esm/runtime/decrypt.js +101 -0
  1255. package/templates/starter/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
  1256. package/templates/starter/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +23 -0
  1257. package/templates/starter/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
  1258. package/templates/starter/node_modules/jose/dist/node/esm/runtime/encrypt.js +78 -0
  1259. package/templates/starter/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
  1260. package/templates/starter/node_modules/jose/dist/node/esm/runtime/generate.js +99 -0
  1261. package/templates/starter/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +58 -0
  1262. package/templates/starter/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +28 -0
  1263. package/templates/starter/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
  1264. package/templates/starter/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
  1265. package/templates/starter/node_modules/jose/dist/node/esm/runtime/is_key_object.js +2 -0
  1266. package/templates/starter/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +8 -0
  1267. package/templates/starter/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +34 -0
  1268. package/templates/starter/node_modules/jose/dist/node/esm/runtime/node_key.js +108 -0
  1269. package/templates/starter/node_modules/jose/dist/node/esm/runtime/normalize_key.js +1 -0
  1270. package/templates/starter/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
  1271. package/templates/starter/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
  1272. package/templates/starter/node_modules/jose/dist/node/esm/runtime/rsaes.js +66 -0
  1273. package/templates/starter/node_modules/jose/dist/node/esm/runtime/runtime.js +1 -0
  1274. package/templates/starter/node_modules/jose/dist/node/esm/runtime/sign.js +17 -0
  1275. package/templates/starter/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
  1276. package/templates/starter/node_modules/jose/dist/node/esm/runtime/verify.js +29 -0
  1277. package/templates/starter/node_modules/jose/dist/node/esm/runtime/webcrypto.js +5 -0
  1278. package/templates/starter/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
  1279. package/templates/starter/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
  1280. package/templates/starter/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
  1281. package/templates/starter/node_modules/jose/dist/node/esm/util/errors.js +99 -0
  1282. package/templates/starter/node_modules/jose/dist/node/esm/util/runtime.js +2 -0
  1283. package/templates/starter/node_modules/jose/dist/types/index.d.ts +48 -0
  1284. package/templates/starter/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +26 -0
  1285. package/templates/starter/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +55 -0
  1286. package/templates/starter/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +26 -0
  1287. package/templates/starter/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +81 -0
  1288. package/templates/starter/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +26 -0
  1289. package/templates/starter/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +59 -0
  1290. package/templates/starter/node_modules/jose/dist/types/jwk/embedded.d.ts +12 -0
  1291. package/templates/starter/node_modules/jose/dist/types/jwk/thumbprint.d.ts +27 -0
  1292. package/templates/starter/node_modules/jose/dist/types/jwks/local.d.ts +23 -0
  1293. package/templates/starter/node_modules/jose/dist/types/jwks/remote.d.ts +135 -0
  1294. package/templates/starter/node_modules/jose/dist/types/jws/compact/sign.d.ts +27 -0
  1295. package/templates/starter/node_modules/jose/dist/types/jws/compact/verify.d.ts +28 -0
  1296. package/templates/starter/node_modules/jose/dist/types/jws/flattened/sign.d.ts +35 -0
  1297. package/templates/starter/node_modules/jose/dist/types/jws/flattened/verify.d.ts +28 -0
  1298. package/templates/starter/node_modules/jose/dist/types/jws/general/sign.d.ts +44 -0
  1299. package/templates/starter/node_modules/jose/dist/types/jws/general/verify.d.ts +28 -0
  1300. package/templates/starter/node_modules/jose/dist/types/jwt/decrypt.d.ts +30 -0
  1301. package/templates/starter/node_modules/jose/dist/types/jwt/encrypt.d.ts +80 -0
  1302. package/templates/starter/node_modules/jose/dist/types/jwt/produce.d.ts +104 -0
  1303. package/templates/starter/node_modules/jose/dist/types/jwt/sign.d.ts +26 -0
  1304. package/templates/starter/node_modules/jose/dist/types/jwt/unsecured.d.ts +24 -0
  1305. package/templates/starter/node_modules/jose/dist/types/jwt/verify.d.ts +32 -0
  1306. package/templates/starter/node_modules/jose/dist/types/key/export.d.ts +30 -0
  1307. package/templates/starter/node_modules/jose/dist/types/key/generate_key_pair.d.ts +40 -0
  1308. package/templates/starter/node_modules/jose/dist/types/key/generate_secret.d.ts +21 -0
  1309. package/templates/starter/node_modules/jose/dist/types/key/import.d.ts +76 -0
  1310. package/templates/starter/node_modules/jose/dist/types/types.d.ts +696 -0
  1311. package/templates/starter/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
  1312. package/templates/starter/node_modules/jose/dist/types/util/decode_jwt.d.ts +13 -0
  1313. package/templates/starter/node_modules/jose/dist/types/util/decode_protected_header.d.ts +11 -0
  1314. package/templates/starter/node_modules/jose/dist/types/util/errors.d.ts +194 -0
  1315. package/templates/starter/node_modules/jose/dist/types/util/runtime.d.ts +3 -0
  1316. package/templates/starter/node_modules/jose/package.json +381 -0
  1317. package/templates/starter/node_modules/oauth4webapi/LICENSE.md +21 -0
  1318. package/templates/starter/node_modules/oauth4webapi/README.md +87 -0
  1319. package/templates/starter/node_modules/oauth4webapi/build/index.d.ts +2049 -0
  1320. package/templates/starter/node_modules/oauth4webapi/build/index.js +2046 -0
  1321. package/templates/starter/node_modules/oauth4webapi/package.json +94 -0
  1322. package/templates/starter/node_modules/on-exit-leak-free/.github/dependabot.yml +12 -0
  1323. package/templates/starter/node_modules/on-exit-leak-free/.github/workflows/ci.yml +46 -0
  1324. package/templates/starter/node_modules/on-exit-leak-free/LICENSE +21 -0
  1325. package/templates/starter/node_modules/on-exit-leak-free/README.md +54 -0
  1326. package/templates/starter/node_modules/on-exit-leak-free/index.js +108 -0
  1327. package/templates/starter/node_modules/on-exit-leak-free/package.json +37 -0
  1328. package/templates/starter/node_modules/on-exit-leak-free/test/base.test.js +30 -0
  1329. package/templates/starter/node_modules/on-exit-leak-free/test/event-emitter-leak.test.js +23 -0
  1330. package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/beforeExit.js +33 -0
  1331. package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/close.js +21 -0
  1332. package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/gc-not-close.js +24 -0
  1333. package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/unregister.js +24 -0
  1334. package/templates/starter/node_modules/pino/.eslintignore +2 -0
  1335. package/templates/starter/node_modules/pino/.eslintrc +8 -0
  1336. package/templates/starter/node_modules/pino/.github/dependabot.yml +13 -0
  1337. package/templates/starter/node_modules/pino/.github/workflows/bench.yml +61 -0
  1338. package/templates/starter/node_modules/pino/.github/workflows/ci.yml +90 -0
  1339. package/templates/starter/node_modules/pino/.github/workflows/lock-threads.yml +30 -0
  1340. package/templates/starter/node_modules/pino/.github/workflows/publish-release.yml +43 -0
  1341. package/templates/starter/node_modules/pino/.github/workflows/target-main.yml +23 -0
  1342. package/templates/starter/node_modules/pino/.nojekyll +0 -0
  1343. package/templates/starter/node_modules/pino/.prettierignore +1 -0
  1344. package/templates/starter/node_modules/pino/.taprc.yaml +8 -0
  1345. package/templates/starter/node_modules/pino/CNAME +1 -0
  1346. package/templates/starter/node_modules/pino/CONTRIBUTING.md +30 -0
  1347. package/templates/starter/node_modules/pino/LICENSE +21 -0
  1348. package/templates/starter/node_modules/pino/README.md +177 -0
  1349. package/templates/starter/node_modules/pino/SECURITY.md +68 -0
  1350. package/templates/starter/node_modules/pino/benchmarks/basic.bench.js +95 -0
  1351. package/templates/starter/node_modules/pino/benchmarks/child-child.bench.js +52 -0
  1352. package/templates/starter/node_modules/pino/benchmarks/child-creation.bench.js +73 -0
  1353. package/templates/starter/node_modules/pino/benchmarks/child.bench.js +62 -0
  1354. package/templates/starter/node_modules/pino/benchmarks/deep-object.bench.js +88 -0
  1355. package/templates/starter/node_modules/pino/benchmarks/formatters.bench.js +50 -0
  1356. package/templates/starter/node_modules/pino/benchmarks/internal/custom-levels.js +67 -0
  1357. package/templates/starter/node_modules/pino/benchmarks/internal/just-pino-heavy.bench.js +76 -0
  1358. package/templates/starter/node_modules/pino/benchmarks/internal/just-pino.bench.js +182 -0
  1359. package/templates/starter/node_modules/pino/benchmarks/internal/parent-vs-child.bench.js +75 -0
  1360. package/templates/starter/node_modules/pino/benchmarks/internal/redact.bench.js +86 -0
  1361. package/templates/starter/node_modules/pino/benchmarks/long-string.bench.js +81 -0
  1362. package/templates/starter/node_modules/pino/benchmarks/multi-arg.bench.js +193 -0
  1363. package/templates/starter/node_modules/pino/benchmarks/multistream.js +98 -0
  1364. package/templates/starter/node_modules/pino/benchmarks/object.bench.js +82 -0
  1365. package/templates/starter/node_modules/pino/benchmarks/utils/generate-benchmark-doc.js +36 -0
  1366. package/templates/starter/node_modules/pino/benchmarks/utils/runbench.js +138 -0
  1367. package/templates/starter/node_modules/pino/benchmarks/utils/wrap-log-level.js +55 -0
  1368. package/templates/starter/node_modules/pino/bin.js +6 -0
  1369. package/templates/starter/node_modules/pino/browser.js +505 -0
  1370. package/templates/starter/node_modules/pino/build/sync-version.js +25 -0
  1371. package/templates/starter/node_modules/pino/docs/api.md +1588 -0
  1372. package/templates/starter/node_modules/pino/docs/asynchronous.md +40 -0
  1373. package/templates/starter/node_modules/pino/docs/benchmarks.md +55 -0
  1374. package/templates/starter/node_modules/pino/docs/browser.md +242 -0
  1375. package/templates/starter/node_modules/pino/docs/bundling.md +40 -0
  1376. package/templates/starter/node_modules/pino/docs/child-loggers.md +95 -0
  1377. package/templates/starter/node_modules/pino/docs/diagnostics.md +16 -0
  1378. package/templates/starter/node_modules/pino/docs/ecosystem.md +86 -0
  1379. package/templates/starter/node_modules/pino/docs/help.md +345 -0
  1380. package/templates/starter/node_modules/pino/docs/lts.md +64 -0
  1381. package/templates/starter/node_modules/pino/docs/pretty.md +35 -0
  1382. package/templates/starter/node_modules/pino/docs/redaction.md +135 -0
  1383. package/templates/starter/node_modules/pino/docs/transports.md +1263 -0
  1384. package/templates/starter/node_modules/pino/docs/web.md +309 -0
  1385. package/templates/starter/node_modules/pino/docsify/sidebar.md +26 -0
  1386. package/templates/starter/node_modules/pino/examples/basic.js +43 -0
  1387. package/templates/starter/node_modules/pino/examples/transport.js +68 -0
  1388. package/templates/starter/node_modules/pino/favicon-16x16.png +0 -0
  1389. package/templates/starter/node_modules/pino/favicon-32x32.png +0 -0
  1390. package/templates/starter/node_modules/pino/favicon.ico +0 -0
  1391. package/templates/starter/node_modules/pino/file.js +12 -0
  1392. package/templates/starter/node_modules/pino/inc-version.sh +42 -0
  1393. package/templates/starter/node_modules/pino/index.html +55 -0
  1394. package/templates/starter/node_modules/pino/lib/caller.js +30 -0
  1395. package/templates/starter/node_modules/pino/lib/constants.js +28 -0
  1396. package/templates/starter/node_modules/pino/lib/deprecations.js +8 -0
  1397. package/templates/starter/node_modules/pino/lib/levels.js +241 -0
  1398. package/templates/starter/node_modules/pino/lib/meta.js +3 -0
  1399. package/templates/starter/node_modules/pino/lib/multistream.js +203 -0
  1400. package/templates/starter/node_modules/pino/lib/proto.js +260 -0
  1401. package/templates/starter/node_modules/pino/lib/redaction.js +114 -0
  1402. package/templates/starter/node_modules/pino/lib/symbols.js +74 -0
  1403. package/templates/starter/node_modules/pino/lib/time.js +39 -0
  1404. package/templates/starter/node_modules/pino/lib/tools.js +436 -0
  1405. package/templates/starter/node_modules/pino/lib/transport-stream.js +56 -0
  1406. package/templates/starter/node_modules/pino/lib/transport.js +167 -0
  1407. package/templates/starter/node_modules/pino/lib/worker.js +194 -0
  1408. package/templates/starter/node_modules/pino/package.json +122 -0
  1409. package/templates/starter/node_modules/pino/pino-banner.png +0 -0
  1410. package/templates/starter/node_modules/pino/pino-logo-hire.png +0 -0
  1411. package/templates/starter/node_modules/pino/pino-tree.png +0 -0
  1412. package/templates/starter/node_modules/pino/pino.d.ts +904 -0
  1413. package/templates/starter/node_modules/pino/pino.js +234 -0
  1414. package/templates/starter/node_modules/pino/pretty-demo.png +0 -0
  1415. package/templates/starter/node_modules/pino/test/basic.test.js +876 -0
  1416. package/templates/starter/node_modules/pino/test/broken-pipe.test.js +57 -0
  1417. package/templates/starter/node_modules/pino/test/browser-child.test.js +132 -0
  1418. package/templates/starter/node_modules/pino/test/browser-disabled.test.js +87 -0
  1419. package/templates/starter/node_modules/pino/test/browser-early-console-freeze.test.js +12 -0
  1420. package/templates/starter/node_modules/pino/test/browser-is-level-enabled.test.js +104 -0
  1421. package/templates/starter/node_modules/pino/test/browser-levels.test.js +241 -0
  1422. package/templates/starter/node_modules/pino/test/browser-serializers.test.js +352 -0
  1423. package/templates/starter/node_modules/pino/test/browser-timestamp.test.js +88 -0
  1424. package/templates/starter/node_modules/pino/test/browser-transmit.test.js +417 -0
  1425. package/templates/starter/node_modules/pino/test/browser.test.js +679 -0
  1426. package/templates/starter/node_modules/pino/test/complex-objects.test.js +34 -0
  1427. package/templates/starter/node_modules/pino/test/crlf.test.js +32 -0
  1428. package/templates/starter/node_modules/pino/test/custom-levels.test.js +253 -0
  1429. package/templates/starter/node_modules/pino/test/diagnostics.test.js +107 -0
  1430. package/templates/starter/node_modules/pino/test/error.test.js +398 -0
  1431. package/templates/starter/node_modules/pino/test/errorKey.test.js +34 -0
  1432. package/templates/starter/node_modules/pino/test/escaping.test.js +91 -0
  1433. package/templates/starter/node_modules/pino/test/esm/esm.mjs +12 -0
  1434. package/templates/starter/node_modules/pino/test/esm/index.test.js +34 -0
  1435. package/templates/starter/node_modules/pino/test/esm/named-exports.mjs +27 -0
  1436. package/templates/starter/node_modules/pino/test/exit.test.js +77 -0
  1437. package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/basic.js +9 -0
  1438. package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/destination.js +10 -0
  1439. package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/syncfalse.js +12 -0
  1440. package/templates/starter/node_modules/pino/test/fixtures/console-transport.js +13 -0
  1441. package/templates/starter/node_modules/pino/test/fixtures/crashing-transport.js +13 -0
  1442. package/templates/starter/node_modules/pino/test/fixtures/default-exit.js +8 -0
  1443. package/templates/starter/node_modules/pino/test/fixtures/destination-exit.js +8 -0
  1444. package/templates/starter/node_modules/pino/test/fixtures/eval/index.js +13 -0
  1445. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/14-files.js +3 -0
  1446. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/2-files.js +3 -0
  1447. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file1.js +5 -0
  1448. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file10.js +5 -0
  1449. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file11.js +5 -0
  1450. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file12.js +5 -0
  1451. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file13.js +5 -0
  1452. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file14.js +11 -0
  1453. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file2.js +5 -0
  1454. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file3.js +5 -0
  1455. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file4.js +5 -0
  1456. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file5.js +5 -0
  1457. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file6.js +5 -0
  1458. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file7.js +5 -0
  1459. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file8.js +5 -0
  1460. package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file9.js +5 -0
  1461. package/templates/starter/node_modules/pino/test/fixtures/noop-transport.js +10 -0
  1462. package/templates/starter/node_modules/pino/test/fixtures/pretty/null-prototype.js +8 -0
  1463. package/templates/starter/node_modules/pino/test/fixtures/stdout-hack-protection.js +11 -0
  1464. package/templates/starter/node_modules/pino/test/fixtures/syncfalse-child.js +6 -0
  1465. package/templates/starter/node_modules/pino/test/fixtures/syncfalse-exit.js +9 -0
  1466. package/templates/starter/node_modules/pino/test/fixtures/syncfalse-flush-exit.js +10 -0
  1467. package/templates/starter/node_modules/pino/test/fixtures/syncfalse.js +6 -0
  1468. package/templates/starter/node_modules/pino/test/fixtures/syntax-error-esm.mjs +2 -0
  1469. package/templates/starter/node_modules/pino/test/fixtures/to-file-transport-with-transform.js +20 -0
  1470. package/templates/starter/node_modules/pino/test/fixtures/to-file-transport.js +13 -0
  1471. package/templates/starter/node_modules/pino/test/fixtures/to-file-transport.mjs +8 -0
  1472. package/templates/starter/node_modules/pino/test/fixtures/transport/index.js +12 -0
  1473. package/templates/starter/node_modules/pino/test/fixtures/transport/package.json +5 -0
  1474. package/templates/starter/node_modules/pino/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
  1475. package/templates/starter/node_modules/pino/test/fixtures/transport-exit-immediately.js +11 -0
  1476. package/templates/starter/node_modules/pino/test/fixtures/transport-exit-on-ready.js +12 -0
  1477. package/templates/starter/node_modules/pino/test/fixtures/transport-main.js +9 -0
  1478. package/templates/starter/node_modules/pino/test/fixtures/transport-many-lines.js +29 -0
  1479. package/templates/starter/node_modules/pino/test/fixtures/transport-string-stdout.js +9 -0
  1480. package/templates/starter/node_modules/pino/test/fixtures/transport-transform.js +21 -0
  1481. package/templates/starter/node_modules/pino/test/fixtures/transport-uses-pino-config.js +33 -0
  1482. package/templates/starter/node_modules/pino/test/fixtures/transport-with-on-exit.js +12 -0
  1483. package/templates/starter/node_modules/pino/test/fixtures/transport-worker-data.js +19 -0
  1484. package/templates/starter/node_modules/pino/test/fixtures/transport-worker.js +15 -0
  1485. package/templates/starter/node_modules/pino/test/fixtures/transport-wrong-export-type.js +3 -0
  1486. package/templates/starter/node_modules/pino/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
  1487. package/templates/starter/node_modules/pino/test/fixtures/ts/to-file-transport.ts +11 -0
  1488. package/templates/starter/node_modules/pino/test/fixtures/ts/transpile.cjs +36 -0
  1489. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
  1490. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-immediately.ts +10 -0
  1491. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
  1492. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-main.ts +8 -0
  1493. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-string-stdout.ts +8 -0
  1494. package/templates/starter/node_modules/pino/test/fixtures/ts/transport-worker.ts +14 -0
  1495. package/templates/starter/node_modules/pino/test/formatters.test.js +355 -0
  1496. package/templates/starter/node_modules/pino/test/helper.d.ts +4 -0
  1497. package/templates/starter/node_modules/pino/test/helper.js +128 -0
  1498. package/templates/starter/node_modules/pino/test/hooks.test.js +118 -0
  1499. package/templates/starter/node_modules/pino/test/http.test.js +242 -0
  1500. package/templates/starter/node_modules/pino/test/internals/version.test.js +15 -0
  1501. package/templates/starter/node_modules/pino/test/is-level-enabled.test.js +185 -0
  1502. package/templates/starter/node_modules/pino/test/jest/basic.spec.js +10 -0
  1503. package/templates/starter/node_modules/pino/test/levels.test.js +772 -0
  1504. package/templates/starter/node_modules/pino/test/metadata.test.js +106 -0
  1505. package/templates/starter/node_modules/pino/test/mixin-merge-strategy.test.js +55 -0
  1506. package/templates/starter/node_modules/pino/test/mixin.test.js +218 -0
  1507. package/templates/starter/node_modules/pino/test/multistream.test.js +723 -0
  1508. package/templates/starter/node_modules/pino/test/pkg/index.js +46 -0
  1509. package/templates/starter/node_modules/pino/test/pkg/pkg.config.json +16 -0
  1510. package/templates/starter/node_modules/pino/test/pkg/pkg.test.js +58 -0
  1511. package/templates/starter/node_modules/pino/test/redact.test.js +847 -0
  1512. package/templates/starter/node_modules/pino/test/serializers.test.js +253 -0
  1513. package/templates/starter/node_modules/pino/test/sinon-child-logger.test.js +75 -0
  1514. package/templates/starter/node_modules/pino/test/stdout-protection.test.js +39 -0
  1515. package/templates/starter/node_modules/pino/test/syncfalse.test.js +188 -0
  1516. package/templates/starter/node_modules/pino/test/timestamp-nano.test.js +35 -0
  1517. package/templates/starter/node_modules/pino/test/timestamp.test.js +122 -0
  1518. package/templates/starter/node_modules/pino/test/transport/big.test.js +43 -0
  1519. package/templates/starter/node_modules/pino/test/transport/bundlers-support.test.js +97 -0
  1520. package/templates/starter/node_modules/pino/test/transport/caller.test.js +23 -0
  1521. package/templates/starter/node_modules/pino/test/transport/core.test.js +643 -0
  1522. package/templates/starter/node_modules/pino/test/transport/core.test.ts +236 -0
  1523. package/templates/starter/node_modules/pino/test/transport/core.transpiled.test.ts +112 -0
  1524. package/templates/starter/node_modules/pino/test/transport/crash.test.js +34 -0
  1525. package/templates/starter/node_modules/pino/test/transport/module-link.test.js +239 -0
  1526. package/templates/starter/node_modules/pino/test/transport/pipeline.test.js +135 -0
  1527. package/templates/starter/node_modules/pino/test/transport/repl.test.js +14 -0
  1528. package/templates/starter/node_modules/pino/test/transport/syncTrue.test.js +55 -0
  1529. package/templates/starter/node_modules/pino/test/transport/syncfalse.test.js +68 -0
  1530. package/templates/starter/node_modules/pino/test/transport/targets.test.js +44 -0
  1531. package/templates/starter/node_modules/pino/test/transport/uses-pino-config.test.js +167 -0
  1532. package/templates/starter/node_modules/pino/test/transport-stream.test.js +26 -0
  1533. package/templates/starter/node_modules/pino/test/types/pino-import.test-d.cts +29 -0
  1534. package/templates/starter/node_modules/pino/test/types/pino-multistream.test-d.ts +28 -0
  1535. package/templates/starter/node_modules/pino/test/types/pino-top-export.test-d.ts +36 -0
  1536. package/templates/starter/node_modules/pino/test/types/pino-transport.test-d.ts +145 -0
  1537. package/templates/starter/node_modules/pino/test/types/pino-type-only.test-d.ts +66 -0
  1538. package/templates/starter/node_modules/pino/test/types/pino.test-d.ts +585 -0
  1539. package/templates/starter/node_modules/pino/test/types/pino.ts +90 -0
  1540. package/templates/starter/node_modules/pino/tsconfig.json +14 -0
  1541. package/templates/starter/node_modules/pino-abstract-transport/.github/dependabot.yml +13 -0
  1542. package/templates/starter/node_modules/pino-abstract-transport/.github/workflows/ci.yml +97 -0
  1543. package/templates/starter/node_modules/pino-abstract-transport/.husky/pre-commit +4 -0
  1544. package/templates/starter/node_modules/pino-abstract-transport/LICENSE +21 -0
  1545. package/templates/starter/node_modules/pino-abstract-transport/README.md +172 -0
  1546. package/templates/starter/node_modules/pino-abstract-transport/index.d.ts +122 -0
  1547. package/templates/starter/node_modules/pino-abstract-transport/index.js +128 -0
  1548. package/templates/starter/node_modules/pino-abstract-transport/package.json +40 -0
  1549. package/templates/starter/node_modules/pino-abstract-transport/test/base.test.js +445 -0
  1550. package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-async-iteration.js +22 -0
  1551. package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-on-data.js +22 -0
  1552. package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-transform.js +24 -0
  1553. package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/worker-pipeline.js +15 -0
  1554. package/templates/starter/node_modules/pino-abstract-transport/test/types/index.test-d.ts +31 -0
  1555. package/templates/starter/node_modules/pino-abstract-transport/test/worker.test.js +357 -0
  1556. package/templates/starter/node_modules/pino-std-serializers/.editorconfig +13 -0
  1557. package/templates/starter/node_modules/pino-std-serializers/.github/dependabot.yml +13 -0
  1558. package/templates/starter/node_modules/pino-std-serializers/.github/workflows/ci.yml +81 -0
  1559. package/templates/starter/node_modules/pino-std-serializers/LICENSE +7 -0
  1560. package/templates/starter/node_modules/pino-std-serializers/Readme.md +182 -0
  1561. package/templates/starter/node_modules/pino-std-serializers/eslint.config.js +7 -0
  1562. package/templates/starter/node_modules/pino-std-serializers/index.d.ts +145 -0
  1563. package/templates/starter/node_modules/pino-std-serializers/index.js +36 -0
  1564. package/templates/starter/node_modules/pino-std-serializers/lib/err-helpers.js +118 -0
  1565. package/templates/starter/node_modules/pino-std-serializers/lib/err-proto.js +48 -0
  1566. package/templates/starter/node_modules/pino-std-serializers/lib/err-with-cause.js +48 -0
  1567. package/templates/starter/node_modules/pino-std-serializers/lib/err.js +45 -0
  1568. package/templates/starter/node_modules/pino-std-serializers/lib/req.js +100 -0
  1569. package/templates/starter/node_modules/pino-std-serializers/lib/res.js +47 -0
  1570. package/templates/starter/node_modules/pino-std-serializers/package.json +42 -0
  1571. package/templates/starter/node_modules/pino-std-serializers/test/err-with-cause.test.js +187 -0
  1572. package/templates/starter/node_modules/pino-std-serializers/test/err.test.js +200 -0
  1573. package/templates/starter/node_modules/pino-std-serializers/test/req.test.js +477 -0
  1574. package/templates/starter/node_modules/pino-std-serializers/test/res.test.js +120 -0
  1575. package/templates/starter/node_modules/pino-std-serializers/test/types/index.test-d.ts +71 -0
  1576. package/templates/starter/node_modules/pino-std-serializers/tsconfig.json +13 -0
  1577. package/templates/starter/node_modules/preact/LICENSE +21 -0
  1578. package/templates/starter/node_modules/preact/README.md +188 -0
  1579. package/templates/starter/node_modules/preact/compat/client.js +19 -0
  1580. package/templates/starter/node_modules/preact/compat/client.mjs +22 -0
  1581. package/templates/starter/node_modules/preact/compat/dist/compat.js +2 -0
  1582. package/templates/starter/node_modules/preact/compat/dist/compat.js.map +1 -0
  1583. package/templates/starter/node_modules/preact/compat/dist/compat.mjs +2 -0
  1584. package/templates/starter/node_modules/preact/compat/dist/compat.module.js +2 -0
  1585. package/templates/starter/node_modules/preact/compat/dist/compat.module.js.map +1 -0
  1586. package/templates/starter/node_modules/preact/compat/dist/compat.umd.js +2 -0
  1587. package/templates/starter/node_modules/preact/compat/dist/compat.umd.js.map +1 -0
  1588. package/templates/starter/node_modules/preact/compat/jsx-dev-runtime.js +3 -0
  1589. package/templates/starter/node_modules/preact/compat/jsx-dev-runtime.mjs +3 -0
  1590. package/templates/starter/node_modules/preact/compat/jsx-runtime.js +3 -0
  1591. package/templates/starter/node_modules/preact/compat/jsx-runtime.mjs +3 -0
  1592. package/templates/starter/node_modules/preact/compat/package.json +50 -0
  1593. package/templates/starter/node_modules/preact/compat/scheduler.js +15 -0
  1594. package/templates/starter/node_modules/preact/compat/scheduler.mjs +23 -0
  1595. package/templates/starter/node_modules/preact/compat/server.browser.js +4 -0
  1596. package/templates/starter/node_modules/preact/compat/server.js +15 -0
  1597. package/templates/starter/node_modules/preact/compat/server.mjs +4 -0
  1598. package/templates/starter/node_modules/preact/compat/src/Children.js +21 -0
  1599. package/templates/starter/node_modules/preact/compat/src/PureComponent.js +15 -0
  1600. package/templates/starter/node_modules/preact/compat/src/forwardRef.js +44 -0
  1601. package/templates/starter/node_modules/preact/compat/src/index.d.ts +175 -0
  1602. package/templates/starter/node_modules/preact/compat/src/index.js +246 -0
  1603. package/templates/starter/node_modules/preact/compat/src/internal.d.ts +47 -0
  1604. package/templates/starter/node_modules/preact/compat/src/memo.js +34 -0
  1605. package/templates/starter/node_modules/preact/compat/src/portals.js +82 -0
  1606. package/templates/starter/node_modules/preact/compat/src/render.js +238 -0
  1607. package/templates/starter/node_modules/preact/compat/src/suspense-list.d.ts +14 -0
  1608. package/templates/starter/node_modules/preact/compat/src/suspense-list.js +126 -0
  1609. package/templates/starter/node_modules/preact/compat/src/suspense.d.ts +15 -0
  1610. package/templates/starter/node_modules/preact/compat/src/suspense.js +270 -0
  1611. package/templates/starter/node_modules/preact/compat/src/util.js +38 -0
  1612. package/templates/starter/node_modules/preact/compat/test-utils.js +1 -0
  1613. package/templates/starter/node_modules/preact/debug/dist/debug.js +2 -0
  1614. package/templates/starter/node_modules/preact/debug/dist/debug.js.map +1 -0
  1615. package/templates/starter/node_modules/preact/debug/dist/debug.mjs +2 -0
  1616. package/templates/starter/node_modules/preact/debug/dist/debug.module.js +2 -0
  1617. package/templates/starter/node_modules/preact/debug/dist/debug.module.js.map +1 -0
  1618. package/templates/starter/node_modules/preact/debug/dist/debug.umd.js +2 -0
  1619. package/templates/starter/node_modules/preact/debug/dist/debug.umd.js.map +1 -0
  1620. package/templates/starter/node_modules/preact/debug/package.json +26 -0
  1621. package/templates/starter/node_modules/preact/debug/src/check-props.js +54 -0
  1622. package/templates/starter/node_modules/preact/debug/src/component-stack.js +146 -0
  1623. package/templates/starter/node_modules/preact/debug/src/constants.js +3 -0
  1624. package/templates/starter/node_modules/preact/debug/src/debug.js +437 -0
  1625. package/templates/starter/node_modules/preact/debug/src/index.d.ts +4 -0
  1626. package/templates/starter/node_modules/preact/debug/src/index.js +6 -0
  1627. package/templates/starter/node_modules/preact/debug/src/internal.d.ts +82 -0
  1628. package/templates/starter/node_modules/preact/debug/src/util.js +11 -0
  1629. package/templates/starter/node_modules/preact/devtools/dist/devtools.js +2 -0
  1630. package/templates/starter/node_modules/preact/devtools/dist/devtools.js.map +1 -0
  1631. package/templates/starter/node_modules/preact/devtools/dist/devtools.mjs +2 -0
  1632. package/templates/starter/node_modules/preact/devtools/dist/devtools.module.js +2 -0
  1633. package/templates/starter/node_modules/preact/devtools/dist/devtools.module.js.map +1 -0
  1634. package/templates/starter/node_modules/preact/devtools/dist/devtools.umd.js +2 -0
  1635. package/templates/starter/node_modules/preact/devtools/dist/devtools.umd.js.map +1 -0
  1636. package/templates/starter/node_modules/preact/devtools/package.json +25 -0
  1637. package/templates/starter/node_modules/preact/devtools/src/devtools.js +10 -0
  1638. package/templates/starter/node_modules/preact/devtools/src/index.d.ts +8 -0
  1639. package/templates/starter/node_modules/preact/devtools/src/index.js +15 -0
  1640. package/templates/starter/node_modules/preact/dist/preact.js +2 -0
  1641. package/templates/starter/node_modules/preact/dist/preact.js.map +1 -0
  1642. package/templates/starter/node_modules/preact/dist/preact.min.js +2 -0
  1643. package/templates/starter/node_modules/preact/dist/preact.min.js.map +1 -0
  1644. package/templates/starter/node_modules/preact/dist/preact.min.module.js +2 -0
  1645. package/templates/starter/node_modules/preact/dist/preact.min.module.js.map +1 -0
  1646. package/templates/starter/node_modules/preact/dist/preact.min.umd.js +2 -0
  1647. package/templates/starter/node_modules/preact/dist/preact.min.umd.js.map +1 -0
  1648. package/templates/starter/node_modules/preact/dist/preact.mjs +2 -0
  1649. package/templates/starter/node_modules/preact/dist/preact.module.js +2 -0
  1650. package/templates/starter/node_modules/preact/dist/preact.module.js.map +1 -0
  1651. package/templates/starter/node_modules/preact/dist/preact.umd.js +2 -0
  1652. package/templates/starter/node_modules/preact/dist/preact.umd.js.map +1 -0
  1653. package/templates/starter/node_modules/preact/hooks/dist/hooks.js +2 -0
  1654. package/templates/starter/node_modules/preact/hooks/dist/hooks.js.map +1 -0
  1655. package/templates/starter/node_modules/preact/hooks/dist/hooks.mjs +2 -0
  1656. package/templates/starter/node_modules/preact/hooks/dist/hooks.module.js +2 -0
  1657. package/templates/starter/node_modules/preact/hooks/dist/hooks.module.js.map +1 -0
  1658. package/templates/starter/node_modules/preact/hooks/dist/hooks.umd.js +2 -0
  1659. package/templates/starter/node_modules/preact/hooks/dist/hooks.umd.js.map +1 -0
  1660. package/templates/starter/node_modules/preact/hooks/package.json +35 -0
  1661. package/templates/starter/node_modules/preact/hooks/src/index.d.ts +141 -0
  1662. package/templates/starter/node_modules/preact/hooks/src/index.js +486 -0
  1663. package/templates/starter/node_modules/preact/hooks/src/internal.d.ts +85 -0
  1664. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.js +2 -0
  1665. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.js.map +1 -0
  1666. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs +2 -0
  1667. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js +2 -0
  1668. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js.map +1 -0
  1669. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js +2 -0
  1670. package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js.map +1 -0
  1671. package/templates/starter/node_modules/preact/jsx-runtime/package.json +28 -0
  1672. package/templates/starter/node_modules/preact/jsx-runtime/src/index.d.ts +50 -0
  1673. package/templates/starter/node_modules/preact/jsx-runtime/src/index.js +77 -0
  1674. package/templates/starter/node_modules/preact/package.json +309 -0
  1675. package/templates/starter/node_modules/preact/src/cjs.js +3 -0
  1676. package/templates/starter/node_modules/preact/src/clone-element.js +34 -0
  1677. package/templates/starter/node_modules/preact/src/component.js +217 -0
  1678. package/templates/starter/node_modules/preact/src/constants.js +3 -0
  1679. package/templates/starter/node_modules/preact/src/create-context.js +68 -0
  1680. package/templates/starter/node_modules/preact/src/create-element.js +98 -0
  1681. package/templates/starter/node_modules/preact/src/diff/catch-error.js +40 -0
  1682. package/templates/starter/node_modules/preact/src/diff/children.js +317 -0
  1683. package/templates/starter/node_modules/preact/src/diff/index.js +555 -0
  1684. package/templates/starter/node_modules/preact/src/diff/props.js +155 -0
  1685. package/templates/starter/node_modules/preact/src/index.d.ts +374 -0
  1686. package/templates/starter/node_modules/preact/src/index.js +13 -0
  1687. package/templates/starter/node_modules/preact/src/internal.d.ts +156 -0
  1688. package/templates/starter/node_modules/preact/src/jsx.d.ts +1095 -0
  1689. package/templates/starter/node_modules/preact/src/options.js +16 -0
  1690. package/templates/starter/node_modules/preact/src/render.js +75 -0
  1691. package/templates/starter/node_modules/preact/src/util.js +27 -0
  1692. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.js +2 -0
  1693. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.js.map +1 -0
  1694. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.mjs +2 -0
  1695. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.module.js +2 -0
  1696. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.module.js.map +1 -0
  1697. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.umd.js +2 -0
  1698. package/templates/starter/node_modules/preact/test-utils/dist/testUtils.umd.js.map +1 -0
  1699. package/templates/starter/node_modules/preact/test-utils/package.json +28 -0
  1700. package/templates/starter/node_modules/preact/test-utils/src/index.d.ts +3 -0
  1701. package/templates/starter/node_modules/preact/test-utils/src/index.js +118 -0
  1702. package/templates/starter/node_modules/preact-render-to-string/LICENSE +21 -0
  1703. package/templates/starter/node_modules/preact-render-to-string/README.md +102 -0
  1704. package/templates/starter/node_modules/preact-render-to-string/dist/commonjs.js +2 -0
  1705. package/templates/starter/node_modules/preact-render-to-string/dist/commonjs.js.map +1 -0
  1706. package/templates/starter/node_modules/preact-render-to-string/dist/index.d.ts +16 -0
  1707. package/templates/starter/node_modules/preact-render-to-string/dist/index.js +1 -0
  1708. package/templates/starter/node_modules/preact-render-to-string/dist/index.js.map +1 -0
  1709. package/templates/starter/node_modules/preact-render-to-string/dist/index.mjs +2 -0
  1710. package/templates/starter/node_modules/preact-render-to-string/dist/index.module.js +2 -0
  1711. package/templates/starter/node_modules/preact-render-to-string/dist/index.module.js.map +1 -0
  1712. package/templates/starter/node_modules/preact-render-to-string/dist/jsx-entry.js +2 -0
  1713. package/templates/starter/node_modules/preact-render-to-string/dist/jsx-entry.js.map +1 -0
  1714. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.d.ts +13 -0
  1715. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.js +1 -0
  1716. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.js.map +1 -0
  1717. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.mjs +2 -0
  1718. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.modern.js +2 -0
  1719. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.modern.js.map +1 -0
  1720. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.module.js +2 -0
  1721. package/templates/starter/node_modules/preact-render-to-string/dist/jsx.module.js.map +1 -0
  1722. package/templates/starter/node_modules/preact-render-to-string/dist/preact-render-to-string-tests.d.ts +1 -0
  1723. package/templates/starter/node_modules/preact-render-to-string/jsx.js +1 -0
  1724. package/templates/starter/node_modules/preact-render-to-string/package.json +148 -0
  1725. package/templates/starter/node_modules/preact-render-to-string/src/constants.js +14 -0
  1726. package/templates/starter/node_modules/preact-render-to-string/src/index.d.ts +16 -0
  1727. package/templates/starter/node_modules/preact-render-to-string/src/index.js +366 -0
  1728. package/templates/starter/node_modules/preact-render-to-string/src/jsx.d.ts +13 -0
  1729. package/templates/starter/node_modules/preact-render-to-string/src/jsx.js +76 -0
  1730. package/templates/starter/node_modules/preact-render-to-string/src/polyfills.js +8 -0
  1731. package/templates/starter/node_modules/preact-render-to-string/src/preact-render-to-string-tests.d.ts +1 -0
  1732. package/templates/starter/node_modules/preact-render-to-string/src/pretty.js +385 -0
  1733. package/templates/starter/node_modules/preact-render-to-string/src/util.js +125 -0
  1734. package/templates/starter/node_modules/preact-render-to-string/typings.json +5 -0
  1735. package/templates/starter/node_modules/pretty-format/LICENSE.md +15 -0
  1736. package/templates/starter/node_modules/pretty-format/README.md +94 -0
  1737. package/templates/starter/node_modules/pretty-format/index.js +343 -0
  1738. package/templates/starter/node_modules/pretty-format/package.json +26 -0
  1739. package/templates/starter/node_modules/pretty-format/plugins/ReactElement.js +74 -0
  1740. package/templates/starter/node_modules/pretty-format/plugins/ReactTestComponent.js +58 -0
  1741. package/templates/starter/node_modules/pretty-format/printString.js +7 -0
  1742. package/templates/starter/node_modules/process-warning/.gitattributes +2 -0
  1743. package/templates/starter/node_modules/process-warning/.github/dependabot.yml +13 -0
  1744. package/templates/starter/node_modules/process-warning/.github/workflows/ci.yml +22 -0
  1745. package/templates/starter/node_modules/process-warning/LICENSE +21 -0
  1746. package/templates/starter/node_modules/process-warning/README.md +118 -0
  1747. package/templates/starter/node_modules/process-warning/benchmarks/warn.js +25 -0
  1748. package/templates/starter/node_modules/process-warning/eslint.config.js +6 -0
  1749. package/templates/starter/node_modules/process-warning/examples/example.js +11 -0
  1750. package/templates/starter/node_modules/process-warning/index.js +124 -0
  1751. package/templates/starter/node_modules/process-warning/package.json +73 -0
  1752. package/templates/starter/node_modules/process-warning/test/emit-interpolated-string.test.js +34 -0
  1753. package/templates/starter/node_modules/process-warning/test/emit-once-only.test.js +33 -0
  1754. package/templates/starter/node_modules/process-warning/test/emit-reset.test.js +40 -0
  1755. package/templates/starter/node_modules/process-warning/test/emit-set.test.js +35 -0
  1756. package/templates/starter/node_modules/process-warning/test/emit-unlimited.test.js +42 -0
  1757. package/templates/starter/node_modules/process-warning/test/index.test.js +99 -0
  1758. package/templates/starter/node_modules/process-warning/test/issue-88.test.js +38 -0
  1759. package/templates/starter/node_modules/process-warning/test/jest.test.js +24 -0
  1760. package/templates/starter/node_modules/process-warning/test/no-warnings.test.js +80 -0
  1761. package/templates/starter/node_modules/process-warning/test/promise.js +10 -0
  1762. package/templates/starter/node_modules/process-warning/types/index.d.ts +37 -0
  1763. package/templates/starter/node_modules/process-warning/types/index.test-d.ts +36 -0
  1764. package/templates/starter/node_modules/quick-format-unescaped/.github/workflows/ci.yml +21 -0
  1765. package/templates/starter/node_modules/quick-format-unescaped/LICENSE +21 -0
  1766. package/templates/starter/node_modules/quick-format-unescaped/benchmark.js +24 -0
  1767. package/templates/starter/node_modules/quick-format-unescaped/index.js +109 -0
  1768. package/templates/starter/node_modules/quick-format-unescaped/package.json +29 -0
  1769. package/templates/starter/node_modules/quick-format-unescaped/readme.md +66 -0
  1770. package/templates/starter/node_modules/quick-format-unescaped/test/index.js +136 -0
  1771. package/templates/starter/node_modules/react/LICENSE +21 -0
  1772. package/templates/starter/node_modules/react/README.md +37 -0
  1773. package/templates/starter/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  1774. package/templates/starter/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  1775. package/templates/starter/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  1776. package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  1777. package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  1778. package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  1779. package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  1780. package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  1781. package/templates/starter/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  1782. package/templates/starter/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  1783. package/templates/starter/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  1784. package/templates/starter/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  1785. package/templates/starter/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  1786. package/templates/starter/node_modules/react/cjs/react.development.js +1284 -0
  1787. package/templates/starter/node_modules/react/cjs/react.production.js +542 -0
  1788. package/templates/starter/node_modules/react/cjs/react.react-server.development.js +848 -0
  1789. package/templates/starter/node_modules/react/cjs/react.react-server.production.js +423 -0
  1790. package/templates/starter/node_modules/react/compiler-runtime.js +14 -0
  1791. package/templates/starter/node_modules/react/index.js +7 -0
  1792. package/templates/starter/node_modules/react/jsx-dev-runtime.js +7 -0
  1793. package/templates/starter/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  1794. package/templates/starter/node_modules/react/jsx-runtime.js +7 -0
  1795. package/templates/starter/node_modules/react/jsx-runtime.react-server.js +7 -0
  1796. package/templates/starter/node_modules/react/package.json +51 -0
  1797. package/templates/starter/node_modules/react/react.react-server.js +7 -0
  1798. package/templates/starter/node_modules/real-require/LICENSE.md +21 -0
  1799. package/templates/starter/node_modules/real-require/README.md +51 -0
  1800. package/templates/starter/node_modules/real-require/package.json +49 -0
  1801. package/templates/starter/node_modules/real-require/src/index.js +14 -0
  1802. package/templates/starter/node_modules/safe-stable-stringify/LICENSE +21 -0
  1803. package/templates/starter/node_modules/safe-stable-stringify/esm/package.json +4 -0
  1804. package/templates/starter/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
  1805. package/templates/starter/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
  1806. package/templates/starter/node_modules/safe-stable-stringify/index.d.ts +22 -0
  1807. package/templates/starter/node_modules/safe-stable-stringify/index.js +625 -0
  1808. package/templates/starter/node_modules/safe-stable-stringify/package.json +65 -0
  1809. package/templates/starter/node_modules/safe-stable-stringify/readme.md +179 -0
  1810. package/templates/starter/node_modules/sonic-boom/.eslintignore +2 -0
  1811. package/templates/starter/node_modules/sonic-boom/.taprc +3 -0
  1812. package/templates/starter/node_modules/sonic-boom/LICENSE +21 -0
  1813. package/templates/starter/node_modules/sonic-boom/README.md +152 -0
  1814. package/templates/starter/node_modules/sonic-boom/bench.js +98 -0
  1815. package/templates/starter/node_modules/sonic-boom/check.js +18 -0
  1816. package/templates/starter/node_modules/sonic-boom/example.js +8 -0
  1817. package/templates/starter/node_modules/sonic-boom/fixtures/firehose.js +22 -0
  1818. package/templates/starter/node_modules/sonic-boom/index.js +719 -0
  1819. package/templates/starter/node_modules/sonic-boom/package.json +52 -0
  1820. package/templates/starter/node_modules/sonic-boom/test/destroy.test.js +49 -0
  1821. package/templates/starter/node_modules/sonic-boom/test/end.test.js +98 -0
  1822. package/templates/starter/node_modules/sonic-boom/test/flush-sync.test.js +140 -0
  1823. package/templates/starter/node_modules/sonic-boom/test/flush.test.js +419 -0
  1824. package/templates/starter/node_modules/sonic-boom/test/fsync.test.js +63 -0
  1825. package/templates/starter/node_modules/sonic-boom/test/helper.js +42 -0
  1826. package/templates/starter/node_modules/sonic-boom/test/minlength.test.js +35 -0
  1827. package/templates/starter/node_modules/sonic-boom/test/mode.test.js +116 -0
  1828. package/templates/starter/node_modules/sonic-boom/test/periodicflush.test.js +61 -0
  1829. package/templates/starter/node_modules/sonic-boom/test/reopen.test.js +239 -0
  1830. package/templates/starter/node_modules/sonic-boom/test/retry.test.js +414 -0
  1831. package/templates/starter/node_modules/sonic-boom/test/sync.test.js +261 -0
  1832. package/templates/starter/node_modules/sonic-boom/test/write.test.js +465 -0
  1833. package/templates/starter/node_modules/sonic-boom/types/index.d.ts +63 -0
  1834. package/templates/starter/node_modules/sonic-boom/types/tests/test.ts +4 -0
  1835. package/templates/starter/node_modules/split2/LICENSE +13 -0
  1836. package/templates/starter/node_modules/split2/README.md +85 -0
  1837. package/templates/starter/node_modules/split2/bench.js +27 -0
  1838. package/templates/starter/node_modules/split2/index.js +141 -0
  1839. package/templates/starter/node_modules/split2/package.json +39 -0
  1840. package/templates/starter/node_modules/split2/test.js +409 -0
  1841. package/templates/starter/node_modules/thread-stream/.github/dependabot.yml +13 -0
  1842. package/templates/starter/node_modules/thread-stream/.github/workflows/ci.yml +94 -0
  1843. package/templates/starter/node_modules/thread-stream/.husky/pre-commit +4 -0
  1844. package/templates/starter/node_modules/thread-stream/.taprc +4 -0
  1845. package/templates/starter/node_modules/thread-stream/LICENSE +21 -0
  1846. package/templates/starter/node_modules/thread-stream/README.md +135 -0
  1847. package/templates/starter/node_modules/thread-stream/bench.js +85 -0
  1848. package/templates/starter/node_modules/thread-stream/index.d.ts +92 -0
  1849. package/templates/starter/node_modules/thread-stream/index.js +537 -0
  1850. package/templates/starter/node_modules/thread-stream/lib/indexes.js +9 -0
  1851. package/templates/starter/node_modules/thread-stream/lib/wait.js +61 -0
  1852. package/templates/starter/node_modules/thread-stream/lib/worker.js +174 -0
  1853. package/templates/starter/node_modules/thread-stream/package.json +57 -0
  1854. package/templates/starter/node_modules/thread-stream/test/base.test.js +285 -0
  1855. package/templates/starter/node_modules/thread-stream/test/bench.test.js +38 -0
  1856. package/templates/starter/node_modules/thread-stream/test/bundlers.test.js +60 -0
  1857. package/templates/starter/node_modules/thread-stream/test/close-on-gc.js +37 -0
  1858. package/templates/starter/node_modules/thread-stream/test/commonjs-fallback.test.js +80 -0
  1859. package/templates/starter/node_modules/thread-stream/test/context.test.js +21 -0
  1860. package/templates/starter/node_modules/thread-stream/test/create-and-exit.js +16 -0
  1861. package/templates/starter/node_modules/thread-stream/test/custom-worker.js +9 -0
  1862. package/templates/starter/node_modules/thread-stream/test/dir with spaces/test-package.zip +0 -0
  1863. package/templates/starter/node_modules/thread-stream/test/emit-event.js +22 -0
  1864. package/templates/starter/node_modules/thread-stream/test/end.test.js +61 -0
  1865. package/templates/starter/node_modules/thread-stream/test/error.js +14 -0
  1866. package/templates/starter/node_modules/thread-stream/test/esm.test.mjs +47 -0
  1867. package/templates/starter/node_modules/thread-stream/test/event.test.js +23 -0
  1868. package/templates/starter/node_modules/thread-stream/test/exit.js +14 -0
  1869. package/templates/starter/node_modules/thread-stream/test/get-context.js +22 -0
  1870. package/templates/starter/node_modules/thread-stream/test/helper.d.ts +1 -0
  1871. package/templates/starter/node_modules/thread-stream/test/helper.js +35 -0
  1872. package/templates/starter/node_modules/thread-stream/test/indexes.test.js +11 -0
  1873. package/templates/starter/node_modules/thread-stream/test/multibyte-chars.test.mjs +74 -0
  1874. package/templates/starter/node_modules/thread-stream/test/never-drain.test.js +57 -0
  1875. package/templates/starter/node_modules/thread-stream/test/on-message.js +18 -0
  1876. package/templates/starter/node_modules/thread-stream/test/pkg/index.js +37 -0
  1877. package/templates/starter/node_modules/thread-stream/test/pkg/pkg.config.json +15 -0
  1878. package/templates/starter/node_modules/thread-stream/test/pkg/pkg.test.js +46 -0
  1879. package/templates/starter/node_modules/thread-stream/test/port.js +16 -0
  1880. package/templates/starter/node_modules/thread-stream/test/post-message.test.js +24 -0
  1881. package/templates/starter/node_modules/thread-stream/test/string-limit-2.test.js +41 -0
  1882. package/templates/starter/node_modules/thread-stream/test/string-limit.test.js +42 -0
  1883. package/templates/starter/node_modules/thread-stream/test/syntax-error.mjs +2 -0
  1884. package/templates/starter/node_modules/thread-stream/test/thread-management.test.js +121 -0
  1885. package/templates/starter/node_modules/thread-stream/test/to-file-on-destroy.js +23 -0
  1886. package/templates/starter/node_modules/thread-stream/test/to-file-on-final.js +24 -0
  1887. package/templates/starter/node_modules/thread-stream/test/to-file.js +12 -0
  1888. package/templates/starter/node_modules/thread-stream/test/to-file.mjs +8 -0
  1889. package/templates/starter/node_modules/thread-stream/test/to-next.js +9 -0
  1890. package/templates/starter/node_modules/thread-stream/test/transpiled.test.js +30 -0
  1891. package/templates/starter/node_modules/thread-stream/test/ts/to-file.ts +10 -0
  1892. package/templates/starter/node_modules/thread-stream/test/ts/transpile.sh +19 -0
  1893. package/templates/starter/node_modules/thread-stream/test/ts-commonjs-default-export.zip +0 -0
  1894. package/templates/starter/node_modules/thread-stream/test/ts.test.ts +33 -0
  1895. package/templates/starter/node_modules/thread-stream/test/uncaughtException.js +21 -0
  1896. package/templates/starter/node_modules/thread-stream/test/unhandledRejection.js +21 -0
  1897. package/templates/starter/node_modules/thread-stream/test/yarnrc.yml +7 -0
  1898. package/templates/starter/node_modules/thread-stream/tsconfig.json +8 -0
  1899. package/templates/starter/node_modules/undici-types/LICENSE +21 -0
  1900. package/templates/starter/node_modules/undici-types/README.md +6 -0
  1901. package/templates/starter/node_modules/undici-types/agent.d.ts +32 -0
  1902. package/templates/starter/node_modules/undici-types/api.d.ts +43 -0
  1903. package/templates/starter/node_modules/undici-types/balanced-pool.d.ts +29 -0
  1904. package/templates/starter/node_modules/undici-types/cache-interceptor.d.ts +172 -0
  1905. package/templates/starter/node_modules/undici-types/cache.d.ts +36 -0
  1906. package/templates/starter/node_modules/undici-types/client-stats.d.ts +15 -0
  1907. package/templates/starter/node_modules/undici-types/client.d.ts +108 -0
  1908. package/templates/starter/node_modules/undici-types/connector.d.ts +34 -0
  1909. package/templates/starter/node_modules/undici-types/content-type.d.ts +21 -0
  1910. package/templates/starter/node_modules/undici-types/cookies.d.ts +30 -0
  1911. package/templates/starter/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  1912. package/templates/starter/node_modules/undici-types/dispatcher.d.ts +276 -0
  1913. package/templates/starter/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  1914. package/templates/starter/node_modules/undici-types/errors.d.ts +161 -0
  1915. package/templates/starter/node_modules/undici-types/eventsource.d.ts +66 -0
  1916. package/templates/starter/node_modules/undici-types/fetch.d.ts +211 -0
  1917. package/templates/starter/node_modules/undici-types/formdata.d.ts +108 -0
  1918. package/templates/starter/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  1919. package/templates/starter/node_modules/undici-types/global-origin.d.ts +7 -0
  1920. package/templates/starter/node_modules/undici-types/h2c-client.d.ts +73 -0
  1921. package/templates/starter/node_modules/undici-types/handlers.d.ts +15 -0
  1922. package/templates/starter/node_modules/undici-types/header.d.ts +160 -0
  1923. package/templates/starter/node_modules/undici-types/index.d.ts +80 -0
  1924. package/templates/starter/node_modules/undici-types/interceptors.d.ts +39 -0
  1925. package/templates/starter/node_modules/undici-types/mock-agent.d.ts +68 -0
  1926. package/templates/starter/node_modules/undici-types/mock-call-history.d.ts +111 -0
  1927. package/templates/starter/node_modules/undici-types/mock-client.d.ts +27 -0
  1928. package/templates/starter/node_modules/undici-types/mock-errors.d.ts +12 -0
  1929. package/templates/starter/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  1930. package/templates/starter/node_modules/undici-types/mock-pool.d.ts +27 -0
  1931. package/templates/starter/node_modules/undici-types/package.json +55 -0
  1932. package/templates/starter/node_modules/undici-types/patch.d.ts +29 -0
  1933. package/templates/starter/node_modules/undici-types/pool-stats.d.ts +19 -0
  1934. package/templates/starter/node_modules/undici-types/pool.d.ts +41 -0
  1935. package/templates/starter/node_modules/undici-types/proxy-agent.d.ts +29 -0
  1936. package/templates/starter/node_modules/undici-types/readable.d.ts +68 -0
  1937. package/templates/starter/node_modules/undici-types/retry-agent.d.ts +8 -0
  1938. package/templates/starter/node_modules/undici-types/retry-handler.d.ts +125 -0
  1939. package/templates/starter/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  1940. package/templates/starter/node_modules/undici-types/util.d.ts +18 -0
  1941. package/templates/starter/node_modules/undici-types/utility.d.ts +7 -0
  1942. package/templates/starter/node_modules/undici-types/webidl.d.ts +341 -0
  1943. package/templates/starter/node_modules/undici-types/websocket.d.ts +186 -0
  1944. package/templates/starter/package.json +7 -7
  1945. package/templates/starter/src/app.controller.spec.ts +6 -9
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Add United Effects login to your page.
3
+ *
4
+ * ### Setup
5
+ *
6
+ * #### Callback URL
7
+ * ```
8
+ * https://example.com/api/auth/callback/united-effects
9
+ * ```
10
+ *
11
+ * #### Configuration
12
+ *```ts
13
+ * import { Auth } from "@auth/core"
14
+ * import UnitedEffects from "@auth/core/providers/united-effects"
15
+ *
16
+ * const request = new Request(origin)
17
+ * const response = await Auth(request, {
18
+ * providers: [
19
+ * UnitedEffects({ clientId: UE_CLIENT_ID, clientSecret: UE_CLIENT_SECRET }),
20
+ * ],
21
+ * })
22
+ * ```
23
+ *
24
+ * ### Resources
25
+ *
26
+ * - [UnitedEffects Auth.js documentation](https://docs.unitedeffects.com/integrations/nextauthjs)",
27
+ *
28
+ * ### Notes
29
+ *
30
+ * By default, Auth.js assumes that the UnitedEffects provider is
31
+ * based on the [Open ID Connect](https://openid.net/specs/openid-connect-core-1_0.html) specification.
32
+ *
33
+ * :::note
34
+ *
35
+ * `issuer` should be the fully qualified URL including your Auth Group ID – e.g. `https://auth.unitedeffects.com/YQpbQV5dbW-224dCovz-3`
36
+ *
37
+ * :::
38
+ *
39
+ * :::danger
40
+ *
41
+ * The United Effects API does not return the user name or image by design, so this provider will return null for both. United Effects prioritizes user personal information security above all and has built a secured profile access request system separate from the provider API.
42
+ *
43
+ * :::
44
+ *
45
+ * :::tip
46
+ *
47
+ * The UnitedEffects provider comes with a [default configuration](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/united-effects.ts).
48
+ * To override the defaults for your use case, check out [customizing a built-in OAuth provider](https://authjs.dev/guides/configuring-oauth-providers).
49
+ *
50
+ * :::
51
+ *
52
+ * :::info **Disclaimer**
53
+ *
54
+ * If you think you found a bug in the default configuration, you can [open an issue](https://authjs.dev/new/provider-issue).
55
+ *
56
+ * Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from
57
+ * the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec,
58
+ * we might not pursue a resolution. You can ask for more help in [Discussions](https://authjs.dev/new/github-discussions).
59
+ *
60
+ * :::
61
+ */
62
+ export default function UnitedEffects(options) {
63
+ return {
64
+ id: "united-effects",
65
+ name: "United Effects",
66
+ type: "oidc",
67
+ authorization: {
68
+ params: { scope: "openid email profile", resource: options.issuer },
69
+ },
70
+ options,
71
+ };
72
+ }
@@ -0,0 +1,334 @@
1
+ /**
2
+ * <div style={{backgroundColor: "#000", display: "flex", justifyContent: "space-between", color: "#fff", padding: 16}}>
3
+ * <span>Built-in <b>VK</b> integration.</span>
4
+ * <a href="https://vk.com/">
5
+ * <img style={{display: "block"}} src="https://authjs.dev/img/providers/vk.svg" height="48" />
6
+ * </a>
7
+ * </div>
8
+ *
9
+ * @module providers/vk
10
+ */
11
+ import type { OAuthConfig, OAuthUserConfig } from "./index.js";
12
+ /** https://dev.vk.com/reference/objects/user */
13
+ export interface VkProfile {
14
+ id: number;
15
+ first_name: string;
16
+ last_name: string;
17
+ photo_100: string;
18
+ can_access_closed: boolean;
19
+ is_closed: boolean;
20
+ deactivated?: string;
21
+ sex?: 0 | 1 | 2;
22
+ screen_name?: string;
23
+ photo_50?: string;
24
+ online?: 0 | 1;
25
+ online_mobile?: 0 | 1;
26
+ online_app?: number;
27
+ verified?: 0 | 1;
28
+ trending?: 0 | 1;
29
+ friend_status?: 0 | 1 | 2 | 3;
30
+ first_name_nom?: string;
31
+ first_name_gen?: string;
32
+ first_name_dat?: string;
33
+ first_name_acc?: string;
34
+ first_name_ins?: string;
35
+ first_name_abl?: string;
36
+ last_name_nom?: string;
37
+ last_name_gen?: string;
38
+ last_name_dat?: string;
39
+ last_name_acc?: string;
40
+ last_name_ins?: string;
41
+ last_name_abl?: string;
42
+ nickname?: string;
43
+ maiden_name?: string;
44
+ domain?: string;
45
+ bdate?: string;
46
+ city?: {
47
+ id: number;
48
+ title: string;
49
+ };
50
+ country?: {
51
+ id: number;
52
+ title: string;
53
+ };
54
+ timezone?: number;
55
+ photo_200?: string;
56
+ photo_max?: string;
57
+ photo_200_orig?: string;
58
+ photo_400_orig?: string;
59
+ photo_max_orig?: string;
60
+ photo_id?: string;
61
+ has_photo?: 0 | 1;
62
+ has_mobile?: 0 | 1;
63
+ is_friend?: 0 | 1;
64
+ can_post?: 0 | 1;
65
+ can_see_all_posts?: 0 | 1;
66
+ can_see_audio?: 0 | 1;
67
+ connections?: {
68
+ facebook?: string;
69
+ skype?: string;
70
+ twitter?: string;
71
+ livejournal?: string;
72
+ instagram?: string;
73
+ };
74
+ photo_400?: string;
75
+ wall_default?: "owner" | "all";
76
+ interests?: string;
77
+ books?: string;
78
+ tv?: string;
79
+ quotes?: string;
80
+ about?: string;
81
+ games?: string;
82
+ movies?: string;
83
+ activities?: string;
84
+ music?: string;
85
+ can_write_private_message?: 0 | 1;
86
+ can_send_friend_request?: 0 | 1;
87
+ contacts?: {
88
+ mobile_phone?: string;
89
+ home_phone?: string;
90
+ };
91
+ site?: string;
92
+ status_audio?: {
93
+ access_key?: string;
94
+ artist: string;
95
+ id: number;
96
+ owner_id: number;
97
+ title: string;
98
+ url?: string;
99
+ duration: number;
100
+ date?: number;
101
+ album_id?: number;
102
+ genre_id?: number;
103
+ performer?: string;
104
+ };
105
+ status?: string;
106
+ last_seen?: {
107
+ platform?: 1 | 2 | 3 | 4 | 5 | 6 | 7;
108
+ time?: number;
109
+ };
110
+ exports?: {
111
+ facebook?: number;
112
+ livejournal?: number;
113
+ twitter?: number;
114
+ instagram?: number;
115
+ };
116
+ crop_photo?: {
117
+ photo: {
118
+ access_key?: string;
119
+ album_id: number;
120
+ date: number;
121
+ height?: number;
122
+ id: number;
123
+ images?: Array<{
124
+ height?: number;
125
+ type?: "s" | "m" | "x" | "l" | "o" | "p" | "q" | "r" | "y" | "z" | "w";
126
+ url?: string;
127
+ width?: number;
128
+ }>;
129
+ lat?: number;
130
+ long?: number;
131
+ owner_id: number;
132
+ photo_256?: string;
133
+ can_comment?: 0 | 1;
134
+ place?: string;
135
+ post_id?: number;
136
+ sizes?: Array<{
137
+ height: number;
138
+ url: string;
139
+ src?: string;
140
+ type: "s" | "m" | "x" | "o" | "p" | "q" | "r" | "k" | "l" | "y" | "z" | "c" | "w" | "a" | "b" | "e" | "i" | "d" | "j" | "temp" | "h" | "g" | "n" | "f" | "max";
141
+ width: number;
142
+ }>;
143
+ text?: string;
144
+ user_id?: number;
145
+ width?: number;
146
+ has_tags: boolean;
147
+ };
148
+ crop: {
149
+ x: number;
150
+ y: number;
151
+ x2: number;
152
+ y2: number;
153
+ };
154
+ rect: {
155
+ x: number;
156
+ y: number;
157
+ x2: number;
158
+ y2: number;
159
+ };
160
+ };
161
+ followers_count?: number;
162
+ blacklisted?: 0 | 1;
163
+ blacklisted_by_me?: 0 | 1;
164
+ is_favorite?: 0 | 1;
165
+ is_hidden_from_feed?: 0 | 1;
166
+ common_count?: number;
167
+ occupation?: {
168
+ id?: number;
169
+ name?: string;
170
+ type?: "work" | "school" | "university";
171
+ };
172
+ career?: {
173
+ group_id?: number;
174
+ company?: string;
175
+ country_id?: number;
176
+ city_id?: number;
177
+ city_name?: string;
178
+ from?: number;
179
+ until?: number;
180
+ position?: string;
181
+ };
182
+ military?: {
183
+ country_id: number;
184
+ from?: number;
185
+ unit: string;
186
+ unit_id: number;
187
+ until?: number;
188
+ };
189
+ education?: {
190
+ university?: number;
191
+ university_name?: string;
192
+ faculty?: number;
193
+ faculty_name?: string;
194
+ graduation?: number;
195
+ };
196
+ home_town?: string;
197
+ relation?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
198
+ relation_partner?: {
199
+ deactivated?: string;
200
+ first_name: string;
201
+ hidden?: number;
202
+ id: number;
203
+ last_name: string;
204
+ can_access_closed?: boolean;
205
+ is_closed?: boolean;
206
+ };
207
+ personal?: {
208
+ alcohol?: 1 | 2 | 3 | 4 | 5;
209
+ inspired_by?: string;
210
+ langs?: string[];
211
+ life_main?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
212
+ people_main?: 1 | 2 | 3 | 4 | 5 | 6;
213
+ political?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
214
+ religion?: string;
215
+ smoking?: 1 | 2 | 3 | 4 | 5;
216
+ };
217
+ universities?: Array<{
218
+ chair?: number;
219
+ chair_name?: string;
220
+ city?: number;
221
+ country?: number;
222
+ education_form?: string;
223
+ education_status?: string;
224
+ faculty?: number;
225
+ faculty_name?: string;
226
+ graduation?: number;
227
+ id?: number;
228
+ name?: string;
229
+ university_group_id?: number;
230
+ }>;
231
+ schools?: Array<{
232
+ city?: number;
233
+ class?: string;
234
+ country?: number;
235
+ id?: string;
236
+ name?: string;
237
+ type?: number;
238
+ type_str?: string;
239
+ year_from?: number;
240
+ year_graduated?: number;
241
+ year_to?: number;
242
+ speciality?: string;
243
+ }>;
244
+ relatives?: Array<{
245
+ id?: number;
246
+ name?: string;
247
+ type: "parent" | "child" | "grandparent" | "grandchild" | "sibling";
248
+ }>;
249
+ counters?: {
250
+ albums?: number;
251
+ videos?: number;
252
+ audios?: number;
253
+ photos?: number;
254
+ notes?: number;
255
+ friends?: number;
256
+ groups?: number;
257
+ online_friends?: number;
258
+ mutual_friends?: number;
259
+ user_videos?: number;
260
+ followers?: number;
261
+ pages?: number;
262
+ };
263
+ is_no_index?: 0 | 1;
264
+ email?: string;
265
+ }
266
+ /**
267
+ * Add VK login to your page.
268
+ *
269
+ * ### Setup
270
+ *
271
+ * #### Callback URL
272
+ * ```
273
+ * https://example.com/api/auth/callback/vk
274
+ * ```
275
+ *
276
+ * #### Configuration
277
+ *```ts
278
+ * import { Auth } from "@auth/core"
279
+ * import VK from "@auth/core/providers/vk"
280
+ *
281
+ * const request = new Request(origin)
282
+ * const response = await Auth(request, {
283
+ * providers: [VK({ clientId: VK_CLIENT_ID, clientSecret: VK_CLIENT_SECRET })],
284
+ * })
285
+ * ```
286
+ *
287
+ * ### Resources
288
+ *
289
+ * - [VK API documentation](https://vk.com/dev/first_guide)
290
+ * - [VK App configuration](https://vk.com/apps?act=manage)
291
+ *
292
+ * ### Notes
293
+ *
294
+ * By default, Auth.js assumes that the VK provider is
295
+ * based on the [OAuth 2](https://www.rfc-editor.org/rfc/rfc6749.html) specification.
296
+ *
297
+ * :::tip
298
+ *
299
+ * The VK provider comes with a [default configuration](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/vk.ts).
300
+ * To override the defaults for your use case, check out [customizing a built-in OAuth provider](https://authjs.dev/guides/configuring-oauth-providers).
301
+ *
302
+ * :::
303
+ *
304
+ * :::note
305
+ *
306
+ * By default the provider uses 5.126 version of the API. See https://vk.com/dev/versions for more info.
307
+ * If you want to use a different version, you can pass it to provider's options object:
308
+ * ```ts
309
+ * const apiVersion = "5.126"
310
+ * providers: [
311
+ * Vk({
312
+ * accessTokenUrl: `https://oauth.vk.com/access_token?v=${apiVersion}`,
313
+ * requestTokenUrl: `https://oauth.vk.com/access_token?v=${apiVersion}`,
314
+ * authorizationUrl:
315
+ * `https://oauth.vk.com/authorize?response_type=code&v=${apiVersion}`,
316
+ * profileUrl: `https://api.vk.com/method/users.get?fields=photo_100&v=${apiVersion}`,
317
+ * })
318
+ * ]
319
+ * ```
320
+ *
321
+ * :::
322
+ *
323
+ * :::info **Disclaimer**
324
+ *
325
+ * If you think you found a bug in the default configuration, you can [open an issue](https://authjs.dev/new/provider-issue).
326
+ *
327
+ * Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from
328
+ * the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec,
329
+ * we might not pursue a resolution. You can ask for more help in [Discussions](https://authjs.dev/new/github-discussions).
330
+ *
331
+ * :::
332
+ */
333
+ export default function VK<P extends Record<string, any> = VkProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
334
+ //# sourceMappingURL=vk.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vk.d.ts","sourceRoot":"","sources":["../src/providers/vk.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAE9D,gDAAgD;AAChD,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,iBAAiB,EAAE,OAAO,CAAA;IAC1B,SAAS,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACd,aAAa,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACrB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAChB,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAChB,aAAa,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IAC7B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE;QACL,EAAE,EAAE,MAAM,CAAA;QACV,KAAK,EAAE,MAAM,CAAA;KACd,CAAA;IACD,OAAO,CAAC,EAAE;QACR,EAAE,EAAE,MAAM,CAAA;QACV,KAAK,EAAE,MAAM,CAAA;KACd,CAAA;IACD,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACjB,UAAU,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAClB,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACjB,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAChB,iBAAiB,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACzB,aAAa,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACrB,WAAW,CAAC,EAAE;QACZ,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,SAAS,CAAC,EAAE,MAAM,CAAA;KACnB,CAAA;IACD,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,yBAAyB,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACjC,uBAAuB,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAC/B,QAAQ,CAAC,EAAE;QACT,YAAY,CAAC,EAAE,MAAM,CAAA;QACrB,UAAU,CAAC,EAAE,MAAM,CAAA;KACpB,CAAA;IACD,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE;QACb,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,MAAM,EAAE,MAAM,CAAA;QACd,EAAE,EAAE,MAAM,CAAA;QACV,QAAQ,EAAE,MAAM,CAAA;QAChB,KAAK,EAAE,MAAM,CAAA;QACb,GAAG,CAAC,EAAE,MAAM,CAAA;QACZ,QAAQ,EAAE,MAAM,CAAA;QAChB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,SAAS,CAAC,EAAE,MAAM,CAAA;KACnB,CAAA;IACD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE;QACV,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QACpC,IAAI,CAAC,EAAE,MAAM,CAAA;KACd,CAAA;IACD,OAAO,CAAC,EAAE;QACR,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,SAAS,CAAC,EAAE,MAAM,CAAA;KACnB,CAAA;IACD,UAAU,CAAC,EAAE;QACX,KAAK,EAAE;YACL,UAAU,CAAC,EAAE,MAAM,CAAA;YACnB,QAAQ,EAAE,MAAM,CAAA;YAChB,IAAI,EAAE,MAAM,CAAA;YACZ,MAAM,CAAC,EAAE,MAAM,CAAA;YACf,EAAE,EAAE,MAAM,CAAA;YACV,MAAM,CAAC,EAAE,KAAK,CAAC;gBACb,MAAM,CAAC,EAAE,MAAM,CAAA;gBACf,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAA;gBACtE,GAAG,CAAC,EAAE,MAAM,CAAA;gBACZ,KAAK,CAAC,EAAE,MAAM,CAAA;aACf,CAAC,CAAA;YACF,GAAG,CAAC,EAAE,MAAM,CAAA;YACZ,IAAI,CAAC,EAAE,MAAM,CAAA;YACb,QAAQ,EAAE,MAAM,CAAA;YAChB,SAAS,CAAC,EAAE,MAAM,CAAA;YAClB,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;YACnB,KAAK,CAAC,EAAE,MAAM,CAAA;YACd,OAAO,CAAC,EAAE,MAAM,CAAA;YAChB,KAAK,CAAC,EAAE,KAAK,CAAC;gBACZ,MAAM,EAAE,MAAM,CAAA;gBACd,GAAG,EAAE,MAAM,CAAA;gBACX,GAAG,CAAC,EAAE,MAAM,CAAA;gBACZ,IAAI,EACA,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,MAAM,GACN,GAAG,GACH,GAAG,GACH,GAAG,GACH,GAAG,GACH,KAAK,CAAA;gBACT,KAAK,EAAE,MAAM,CAAA;aACd,CAAC,CAAA;YACF,IAAI,CAAC,EAAE,MAAM,CAAA;YACb,OAAO,CAAC,EAAE,MAAM,CAAA;YAChB,KAAK,CAAC,EAAE,MAAM,CAAA;YACd,QAAQ,EAAE,OAAO,CAAA;SAClB,CAAA;QACD,IAAI,EAAE;YACJ,CAAC,EAAE,MAAM,CAAA;YACT,CAAC,EAAE,MAAM,CAAA;YACT,EAAE,EAAE,MAAM,CAAA;YACV,EAAE,EAAE,MAAM,CAAA;SACX,CAAA;QACD,IAAI,EAAE;YACJ,CAAC,EAAE,MAAM,CAAA;YACT,CAAC,EAAE,MAAM,CAAA;YACT,EAAE,EAAE,MAAM,CAAA;YACV,EAAE,EAAE,MAAM,CAAA;SACX,CAAA;KACF,CAAA;IACD,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACnB,iBAAiB,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACzB,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IACnB,mBAAmB,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,UAAU,CAAC,EAAE;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,YAAY,CAAA;KACxC,CAAA;IACD,MAAM,CAAC,EAAE;QACP,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,SAAS,CAAC,EAAE,MAAM,CAAA;QAClB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,QAAQ,CAAC,EAAE,MAAM,CAAA;KAClB,CAAA;IACD,QAAQ,CAAC,EAAE;QACT,UAAU,EAAE,MAAM,CAAA;QAClB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,IAAI,EAAE,MAAM,CAAA;QACZ,OAAO,EAAE,MAAM,CAAA;QACf,KAAK,CAAC,EAAE,MAAM,CAAA;KACf,CAAA;IACD,SAAS,CAAC,EAAE;QACV,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,eAAe,CAAC,EAAE,MAAM,CAAA;QACxB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,YAAY,CAAC,EAAE,MAAM,CAAA;QACrB,UAAU,CAAC,EAAE,MAAM,CAAA;KACpB,CAAA;IACD,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IAC5C,gBAAgB,CAAC,EAAE;QACjB,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,UAAU,EAAE,MAAM,CAAA;QAClB,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,EAAE,EAAE,MAAM,CAAA;QACV,SAAS,EAAE,MAAM,CAAA;QACjB,iBAAiB,CAAC,EAAE,OAAO,CAAA;QAC3B,SAAS,CAAC,EAAE,OAAO,CAAA;KACpB,CAAA;IACD,QAAQ,CAAC,EAAE;QACT,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QAC3B,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAA;QAChB,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QACzC,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QACnC,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;QAC7C,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;KAC5B,CAAA;IACD,YAAY,CAAC,EAAE,KAAK,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,cAAc,CAAC,EAAE,MAAM,CAAA;QACvB,gBAAgB,CAAC,EAAE,MAAM,CAAA;QACzB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,YAAY,CAAC,EAAE,MAAM,CAAA;QACrB,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,mBAAmB,CAAC,EAAE,MAAM,CAAA;KAC7B,CAAC,CAAA;IACF,OAAO,CAAC,EAAE,KAAK,CAAC;QACd,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,SAAS,CAAC,EAAE,MAAM,CAAA;QAClB,cAAc,CAAC,EAAE,MAAM,CAAA;QACvB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,UAAU,CAAC,EAAE,MAAM,CAAA;KACpB,CAAC,CAAA;IACF,SAAS,CAAC,EAAE,KAAK,CAAC;QAChB,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,IAAI,EAAE,QAAQ,GAAG,OAAO,GAAG,aAAa,GAAG,YAAY,GAAG,SAAS,CAAA;KACpE,CAAC,CAAA;IACF,QAAQ,CAAC,EAAE;QACT,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,cAAc,CAAC,EAAE,MAAM,CAAA;QACvB,cAAc,CAAC,EAAE,MAAM,CAAA;QACvB,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,SAAS,CAAC,EAAE,MAAM,CAAA;QAClB,KAAK,CAAC,EAAE,MAAM,CAAA;KACf,CAAA;IACD,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;IAEnB,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkEG;AACH,MAAM,CAAC,OAAO,UAAU,EAAE,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,EAClE,OAAO,EAAE,eAAe,CAAC,CAAC,CAAC,GAC1B,WAAW,CAAC,CAAC,CAAC,CAsChB"}
@@ -0,0 +1,103 @@
1
+ /**
2
+ * Add VK login to your page.
3
+ *
4
+ * ### Setup
5
+ *
6
+ * #### Callback URL
7
+ * ```
8
+ * https://example.com/api/auth/callback/vk
9
+ * ```
10
+ *
11
+ * #### Configuration
12
+ *```ts
13
+ * import { Auth } from "@auth/core"
14
+ * import VK from "@auth/core/providers/vk"
15
+ *
16
+ * const request = new Request(origin)
17
+ * const response = await Auth(request, {
18
+ * providers: [VK({ clientId: VK_CLIENT_ID, clientSecret: VK_CLIENT_SECRET })],
19
+ * })
20
+ * ```
21
+ *
22
+ * ### Resources
23
+ *
24
+ * - [VK API documentation](https://vk.com/dev/first_guide)
25
+ * - [VK App configuration](https://vk.com/apps?act=manage)
26
+ *
27
+ * ### Notes
28
+ *
29
+ * By default, Auth.js assumes that the VK provider is
30
+ * based on the [OAuth 2](https://www.rfc-editor.org/rfc/rfc6749.html) specification.
31
+ *
32
+ * :::tip
33
+ *
34
+ * The VK provider comes with a [default configuration](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/vk.ts).
35
+ * To override the defaults for your use case, check out [customizing a built-in OAuth provider](https://authjs.dev/guides/configuring-oauth-providers).
36
+ *
37
+ * :::
38
+ *
39
+ * :::note
40
+ *
41
+ * By default the provider uses 5.126 version of the API. See https://vk.com/dev/versions for more info.
42
+ * If you want to use a different version, you can pass it to provider's options object:
43
+ * ```ts
44
+ * const apiVersion = "5.126"
45
+ * providers: [
46
+ * Vk({
47
+ * accessTokenUrl: `https://oauth.vk.com/access_token?v=${apiVersion}`,
48
+ * requestTokenUrl: `https://oauth.vk.com/access_token?v=${apiVersion}`,
49
+ * authorizationUrl:
50
+ * `https://oauth.vk.com/authorize?response_type=code&v=${apiVersion}`,
51
+ * profileUrl: `https://api.vk.com/method/users.get?fields=photo_100&v=${apiVersion}`,
52
+ * })
53
+ * ]
54
+ * ```
55
+ *
56
+ * :::
57
+ *
58
+ * :::info **Disclaimer**
59
+ *
60
+ * If you think you found a bug in the default configuration, you can [open an issue](https://authjs.dev/new/provider-issue).
61
+ *
62
+ * Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from
63
+ * the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec,
64
+ * we might not pursue a resolution. You can ask for more help in [Discussions](https://authjs.dev/new/github-discussions).
65
+ *
66
+ * :::
67
+ */
68
+ export default function VK(options) {
69
+ const apiVersion = "5.131"; // https://vk.com/dev/versions
70
+ return {
71
+ id: "vk",
72
+ name: "VK",
73
+ type: "oauth",
74
+ authorization: `https://oauth.vk.com/authorize?scope=email&v=${apiVersion}`,
75
+ client: {
76
+ token_endpoint_auth_method: "client_secret_post",
77
+ },
78
+ token: `https://oauth.vk.com/access_token?v=${apiVersion}`,
79
+ userinfo: {
80
+ url: `https://api.vk.com/method/users.get?fields=photo_100&v=${apiVersion}`,
81
+ async request({ tokens, provider }) {
82
+ const profile = await fetch(provider.userinfo?.url, {
83
+ headers: {
84
+ Authorization: `Bearer ${tokens.access_token}`,
85
+ "User-Agent": "authjs",
86
+ },
87
+ }).then(async (res) => await res.json());
88
+ profile.response[0].email = tokens.email ? tokens.email : null;
89
+ return profile.response[0];
90
+ },
91
+ },
92
+ profile(profile) {
93
+ return {
94
+ id: profile.id,
95
+ name: [profile.first_name, profile.last_name].filter(Boolean).join(" "),
96
+ email: profile.email ?? null,
97
+ image: profile.photo_100,
98
+ };
99
+ },
100
+ style: { bg: "#07F", text: "#fff" },
101
+ options,
102
+ };
103
+ }
@@ -0,0 +1,148 @@
1
+ import { generateAuthenticationOptions, generateRegistrationOptions, verifyAuthenticationResponse, verifyRegistrationResponse } from "@simplewebauthn/server";
2
+ import type { CommonProviderOptions, CredentialInput } from "./index.js";
3
+ import type { GenerateRegistrationOptionsOpts, GenerateAuthenticationOptionsOpts, VerifyAuthenticationResponseOpts, VerifyRegistrationResponseOpts } from "@simplewebauthn/server";
4
+ import type { InternalOptions, RequestInternal, SemverString, User } from "../types.js";
5
+ export type WebAuthnProviderType = "webauthn";
6
+ export declare const DEFAULT_WEBAUTHN_TIMEOUT: number;
7
+ export declare const DEFAULT_SIMPLEWEBAUTHN_BROWSER_VERSION: SemverString;
8
+ export type RelayingParty = {
9
+ /** Relaying Party ID. Use the website's domain name. */
10
+ id: string;
11
+ /** Relaying Party name. Use the website's name. */
12
+ name: string;
13
+ /** Relaying Party origin. Use the website's origin. */
14
+ origin: string;
15
+ };
16
+ type RelayingPartyArray = {
17
+ /** Relaying Party ID. Use the website's domain name. */
18
+ id: string | string[];
19
+ /** Relaying Party name. Use the website's name. */
20
+ name: string | string[];
21
+ /** Relaying Party origin. Use the website's origin. */
22
+ origin: string | string[];
23
+ };
24
+ export type GetUserInfo = (options: InternalOptions<WebAuthnProviderType>, request: RequestInternal) => Promise<{
25
+ user: User;
26
+ exists: true;
27
+ } | {
28
+ user: Omit<User, "id">;
29
+ exists: false;
30
+ } | null>;
31
+ type ConfigurableAuthenticationOptions = Omit<GenerateAuthenticationOptionsOpts, "rpID" | "allowCredentials" | "challenge">;
32
+ type ConfigurableRegistrationOptions = Omit<GenerateRegistrationOptionsOpts, "rpName" | "rpID" | "userID" | "userName" | "challenge" | "userDisplayName" | "excludeCredentials">;
33
+ type ConfigurableVerifyAuthenticationOptions = Omit<VerifyAuthenticationResponseOpts, "expectedChallenge" | "expectedOrigin" | "expectedRPID" | "authenticator" | "response">;
34
+ type ConfigurableVerifyRegistrationOptions = Omit<VerifyRegistrationResponseOpts, "expectedChallenge" | "expectedOrigin" | "expectedRPID" | "response">;
35
+ export interface WebAuthnConfig extends CommonProviderOptions {
36
+ type: WebAuthnProviderType;
37
+ /**
38
+ * Relaying party (RP) configuration
39
+ *
40
+ * If not provided, the request URL will be used.
41
+ **/
42
+ relayingParty?: Partial<RelayingPartyArray>;
43
+ /**
44
+ * Function that returns the relaying party for the current request.
45
+ */
46
+ getRelayingParty: (options: InternalOptions<WebAuthnProviderType>, request: RequestInternal) => RelayingParty;
47
+ /**
48
+ * Enable conditional UI.
49
+ *
50
+ * NOTE: Only one provider can have this option enabled at a time. Defaults to `true`.
51
+ */
52
+ enableConditionalUI: boolean;
53
+ /**
54
+ * Version of SimpleWebAuthn browser script to load in the sign in page.
55
+ *
56
+ * This is only loaded if the provider has conditional UI enabled. If set to false, it won't load any script.
57
+ * Defaults to `v9.0.0`.
58
+ */
59
+ simpleWebAuthnBrowserVersion: SemverString | false;
60
+ /** Form fields displayed in the default Passkey sign in/up form.
61
+ * These are not validated or enforced beyond the default Auth.js authentication page.
62
+ *
63
+ * By default it displays an email field.
64
+ */
65
+ formFields: Record<string, CredentialInput>;
66
+ /**
67
+ * Authentication options that are passed to @simplewebauthn during authentication.
68
+ */
69
+ authenticationOptions?: Partial<ConfigurableAuthenticationOptions>;
70
+ /**
71
+ * Registration options that are passed to @simplewebauthn during registration.
72
+ */
73
+ registrationOptions: Partial<ConfigurableRegistrationOptions>;
74
+ /**
75
+ * Verify Authentication options that are passed to @simplewebauthn during authentication.
76
+ */
77
+ verifyAuthenticationOptions?: Partial<ConfigurableVerifyAuthenticationOptions>;
78
+ /**
79
+ * Verify Registration options that are passed to @simplewebauthn during registration.
80
+ */
81
+ verifyRegistrationOptions?: Partial<ConfigurableVerifyRegistrationOptions>;
82
+ /**
83
+ * Function that returns the user info that the authenticator will use during registration and authentication.
84
+ *
85
+ * - It accepts the provider options, the request object, and returns the user info.
86
+ * - If the request contains an existing user's data (e.g. email address), the function must return the existing user and `exists` must be `true`.
87
+ * - If the request contains enough information to create a new user, the function must return a new user info and `exists` must be `false`.
88
+ * - If the request does not contain enough information to create a new user, the function must return `null`.
89
+ *
90
+ * It should not have any side effects (i.e. it shall not modify the database).
91
+ *
92
+ * During passkey creation:
93
+ * - The passkey's user ID will be a random string.
94
+ * - The passkey's user name will be user.email
95
+ * - The passkey's user display name will be user.name, if present, or user.email
96
+ *
97
+ * By default, it looks for and uses the "email" request parameter to look up the user in the database.
98
+ */
99
+ getUserInfo: GetUserInfo;
100
+ /** SimpleWebAuthn instance to use for registration and authentication. */
101
+ simpleWebAuthn: {
102
+ verifyAuthenticationResponse: typeof verifyAuthenticationResponse;
103
+ verifyRegistrationResponse: typeof verifyRegistrationResponse;
104
+ generateAuthenticationOptions: typeof generateAuthenticationOptions;
105
+ generateRegistrationOptions: typeof generateRegistrationOptions;
106
+ };
107
+ }
108
+ /**
109
+ * Add WebAuthn login to your page.
110
+ *
111
+ * ### Setup
112
+ *
113
+ * #### Configuration
114
+ * ```ts
115
+ * import { Auth } from "@auth/core"
116
+ * import WebAuthn from "@auth/core/providers/webauthn"
117
+ *
118
+ * const request = new Request(origin)
119
+ * const response = await Auth(request, {
120
+ * providers: [WebAuthn],
121
+ * })
122
+ * ```
123
+ * ### Resources
124
+ *
125
+ * - [SimpleWebAuthn - Server side](https://simplewebauthn.dev/docs/packages/server)
126
+ * - [SimpleWebAuthn - Client side](https://simplewebauthn.dev/docs/packages/client)
127
+ * - [Source code](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/webauthn.ts)
128
+ *
129
+ * :::tip
130
+ *
131
+ * The WebAuthn provider comes with a [default configuration](https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/webauthn.ts).
132
+ * To override the defaults for your use case, check out [customizing the built-in WebAuthn provider](https://authjs.dev/guides/configuring-oauth-providers).
133
+ *
134
+ * :::
135
+ *
136
+ * :::info **Disclaimer**
137
+ *
138
+ * If you think you found a bug in the default configuration, you can [open an issue](https://authjs.dev/new/provider-issue).
139
+ *
140
+ * Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from
141
+ * the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec,
142
+ * we might not pursue a resolution. You can ask for more help in [Discussions](https://authjs.dev/new/github-discussions).
143
+ *
144
+ * :::
145
+ */
146
+ export default function WebAuthn(config: Partial<WebAuthnConfig>): WebAuthnConfig;
147
+ export {};
148
+ //# sourceMappingURL=webauthn.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"webauthn.d.ts","sourceRoot":"","sources":["../src/providers/webauthn.ts"],"names":[],"mappings":"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"}