@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.
- package/dist/index.js +62 -8
- package/package.json +2 -2
- package/templates/starter/bun.lock +105 -0
- package/templates/starter/node_modules/@auth/core/README.md +24 -0
- package/templates/starter/node_modules/@auth/core/adapters.d.ts +411 -0
- package/templates/starter/node_modules/@auth/core/adapters.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/adapters.js +167 -0
- package/templates/starter/node_modules/@auth/core/errors.d.ts +395 -0
- package/templates/starter/node_modules/@auth/core/errors.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/errors.js +433 -0
- package/templates/starter/node_modules/@auth/core/index.d.ts +522 -0
- package/templates/starter/node_modules/@auth/core/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/index.js +140 -0
- package/templates/starter/node_modules/@auth/core/jwt.d.ts +127 -0
- package/templates/starter/node_modules/@auth/core/jwt.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/jwt.js +124 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.d.ts +35 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/handle-login.js +273 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.d.ts +5 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/index.js +393 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.d.ts +48 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/callback.js +158 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.d.ts +80 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/checks.js +208 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.d.ts +33 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/callback/oauth/csrf-token.js +39 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/index.d.ts +6 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/index.js +5 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/session.d.ts +5 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/session.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/session.js +120 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.d.ts +12 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/authorization-url.js +75 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.d.ts +4 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/index.js +22 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.d.ts +10 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signin/send-token.js +84 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signout.d.ts +11 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signout.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/signout.js +30 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.d.ts +8 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/actions/webauthn-options.js +57 -0
- package/templates/starter/node_modules/@auth/core/lib/index.d.ts +21 -0
- package/templates/starter/node_modules/@auth/core/lib/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/index.js +88 -0
- package/templates/starter/node_modules/@auth/core/lib/init.d.ts +25 -0
- package/templates/starter/node_modules/@auth/core/lib/init.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/init.js +175 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/error.d.ts +17 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/error.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/error.js +40 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/index.d.ts +39 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/index.js +128 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signin.d.ts +10 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signin.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signin.js +78 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signout.d.ts +8 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signout.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/signout.js +17 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/styles.d.ts +3 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/styles.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/styles.js +354 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.d.ts +8 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/pages/verify-request.js +11 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/actions.d.ts +3 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/actions.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/actions.js +14 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/assert.d.ts +14 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/assert.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/assert.js +165 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.d.ts +17 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/callback-url.js +27 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/cookie.d.ts +111 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/cookie.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/cookie.js +204 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/date.d.ts +7 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/date.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/date.js +8 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/email.d.ts +20 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/email.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/email.js +59 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/env.d.ts +6 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/env.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/env.js +75 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/logger.d.ts +18 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/logger.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/logger.js +45 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/merge.d.ts +3 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/merge.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/merge.js +24 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/providers.d.ts +21 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/providers.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/providers.js +134 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/session.d.ts +7 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/session.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/session.js +29 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/web.d.ts +10 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/web.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/web.js +104 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.d.ts +30 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-client.js +197 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.d.ts +81 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/lib/utils/webauthn-utils.js +343 -0
- package/templates/starter/node_modules/@auth/core/package.json +117 -0
- package/templates/starter/node_modules/@auth/core/providers/42-school.d.ts +240 -0
- package/templates/starter/node_modules/@auth/core/providers/42-school.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/42-school.js +78 -0
- package/templates/starter/node_modules/@auth/core/providers/apple.d.ts +142 -0
- package/templates/starter/node_modules/@auth/core/providers/apple.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/apple.js +81 -0
- package/templates/starter/node_modules/@auth/core/providers/asgardeo.d.ts +102 -0
- package/templates/starter/node_modules/@auth/core/providers/asgardeo.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/asgardeo.js +93 -0
- package/templates/starter/node_modules/@auth/core/providers/auth0.d.ts +116 -0
- package/templates/starter/node_modules/@auth/core/providers/auth0.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/auth0.js +49 -0
- package/templates/starter/node_modules/@auth/core/providers/authentik.d.ts +90 -0
- package/templates/starter/node_modules/@auth/core/providers/authentik.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/authentik.js +65 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.d.ts +106 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad-b2c.js +102 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad.d.ts +134 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-ad.js +144 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-devops.d.ts +128 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-devops.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/azure-devops.js +158 -0
- package/templates/starter/node_modules/@auth/core/providers/bankid-no.d.ts +134 -0
- package/templates/starter/node_modules/@auth/core/providers/bankid-no.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/bankid-no.js +65 -0
- package/templates/starter/node_modules/@auth/core/providers/battlenet.d.ts +85 -0
- package/templates/starter/node_modules/@auth/core/providers/battlenet.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/battlenet.js +81 -0
- package/templates/starter/node_modules/@auth/core/providers/beyondidentity.d.ts +77 -0
- package/templates/starter/node_modules/@auth/core/providers/beyondidentity.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/beyondidentity.js +84 -0
- package/templates/starter/node_modules/@auth/core/providers/box.d.ts +63 -0
- package/templates/starter/node_modules/@auth/core/providers/box.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/box.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.d.ts +121 -0
- package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/boxyhq-saml.js +127 -0
- package/templates/starter/node_modules/@auth/core/providers/bungie.d.ts +167 -0
- package/templates/starter/node_modules/@auth/core/providers/bungie.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/bungie.js +174 -0
- package/templates/starter/node_modules/@auth/core/providers/click-up.d.ts +75 -0
- package/templates/starter/node_modules/@auth/core/providers/click-up.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/click-up.js +89 -0
- package/templates/starter/node_modules/@auth/core/providers/cognito.d.ts +81 -0
- package/templates/starter/node_modules/@auth/core/providers/cognito.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/cognito.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/coinbase.d.ts +69 -0
- package/templates/starter/node_modules/@auth/core/providers/coinbase.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/coinbase.js +78 -0
- package/templates/starter/node_modules/@auth/core/providers/credentials.d.ts +132 -0
- package/templates/starter/node_modules/@auth/core/providers/credentials.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/credentials.js +74 -0
- package/templates/starter/node_modules/@auth/core/providers/descope.d.ts +97 -0
- package/templates/starter/node_modules/@auth/core/providers/descope.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/descope.js +86 -0
- package/templates/starter/node_modules/@auth/core/providers/discord.d.ts +139 -0
- package/templates/starter/node_modules/@auth/core/providers/discord.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/discord.js +83 -0
- package/templates/starter/node_modules/@auth/core/providers/dribbble.d.ts +88 -0
- package/templates/starter/node_modules/@auth/core/providers/dribbble.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/dribbble.js +85 -0
- package/templates/starter/node_modules/@auth/core/providers/dropbox.d.ts +65 -0
- package/templates/starter/node_modules/@auth/core/providers/dropbox.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/dropbox.js +72 -0
- package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.d.ts +91 -0
- package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/duende-identity-server6.js +80 -0
- package/templates/starter/node_modules/@auth/core/providers/email.d.ts +39 -0
- package/templates/starter/node_modules/@auth/core/providers/email.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/email.js +18 -0
- package/templates/starter/node_modules/@auth/core/providers/eveonline.d.ts +94 -0
- package/templates/starter/node_modules/@auth/core/providers/eveonline.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/eveonline.js +92 -0
- package/templates/starter/node_modules/@auth/core/providers/facebook.d.ts +84 -0
- package/templates/starter/node_modules/@auth/core/providers/facebook.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/facebook.js +93 -0
- package/templates/starter/node_modules/@auth/core/providers/faceit.d.ts +64 -0
- package/templates/starter/node_modules/@auth/core/providers/faceit.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/faceit.js +74 -0
- package/templates/starter/node_modules/@auth/core/providers/foursquare.d.ts +71 -0
- package/templates/starter/node_modules/@auth/core/providers/foursquare.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/foursquare.js +89 -0
- package/templates/starter/node_modules/@auth/core/providers/freshbooks.d.ts +66 -0
- package/templates/starter/node_modules/@auth/core/providers/freshbooks.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/freshbooks.js +76 -0
- package/templates/starter/node_modules/@auth/core/providers/fusionauth.d.ts +109 -0
- package/templates/starter/node_modules/@auth/core/providers/fusionauth.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/fusionauth.js +101 -0
- package/templates/starter/node_modules/@auth/core/providers/github.d.ts +127 -0
- package/templates/starter/node_modules/@auth/core/providers/github.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/github.js +115 -0
- package/templates/starter/node_modules/@auth/core/providers/gitlab.d.ts +110 -0
- package/templates/starter/node_modules/@auth/core/providers/gitlab.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/gitlab.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/google.d.ts +138 -0
- package/templates/starter/node_modules/@auth/core/providers/google.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/google.js +119 -0
- package/templates/starter/node_modules/@auth/core/providers/hubspot.d.ts +76 -0
- package/templates/starter/node_modules/@auth/core/providers/hubspot.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/hubspot.js +93 -0
- package/templates/starter/node_modules/@auth/core/providers/identity-server4.d.ts +69 -0
- package/templates/starter/node_modules/@auth/core/providers/identity-server4.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/identity-server4.js +64 -0
- package/templates/starter/node_modules/@auth/core/providers/index.d.ts +62 -0
- package/templates/starter/node_modules/@auth/core/providers/index.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/index.js +3 -0
- package/templates/starter/node_modules/@auth/core/providers/instagram.d.ts +74 -0
- package/templates/starter/node_modules/@auth/core/providers/instagram.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/instagram.js +87 -0
- package/templates/starter/node_modules/@auth/core/providers/kakao.d.ts +148 -0
- package/templates/starter/node_modules/@auth/core/providers/kakao.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/kakao.js +103 -0
- package/templates/starter/node_modules/@auth/core/providers/keycloak.d.ts +100 -0
- package/templates/starter/node_modules/@auth/core/providers/keycloak.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/keycloak.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/line.d.ts +83 -0
- package/templates/starter/node_modules/@auth/core/providers/line.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/line.js +72 -0
- package/templates/starter/node_modules/@auth/core/providers/linkedin.d.ts +77 -0
- package/templates/starter/node_modules/@auth/core/providers/linkedin.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/linkedin.js +65 -0
- package/templates/starter/node_modules/@auth/core/providers/mailchimp.d.ts +66 -0
- package/templates/starter/node_modules/@auth/core/providers/mailchimp.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/mailchimp.js +76 -0
- package/templates/starter/node_modules/@auth/core/providers/mailru.d.ts +63 -0
- package/templates/starter/node_modules/@auth/core/providers/mailru.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/mailru.js +61 -0
- package/templates/starter/node_modules/@auth/core/providers/mastodon.d.ts +90 -0
- package/templates/starter/node_modules/@auth/core/providers/mastodon.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/mastodon.js +75 -0
- package/templates/starter/node_modules/@auth/core/providers/mattermost.d.ts +132 -0
- package/templates/starter/node_modules/@auth/core/providers/mattermost.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/mattermost.js +83 -0
- package/templates/starter/node_modules/@auth/core/providers/medium.d.ts +68 -0
- package/templates/starter/node_modules/@auth/core/providers/medium.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/medium.js +84 -0
- package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.d.ts +131 -0
- package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/microsoft-entra-id.js +140 -0
- package/templates/starter/node_modules/@auth/core/providers/naver.d.ts +80 -0
- package/templates/starter/node_modules/@auth/core/providers/naver.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/naver.js +79 -0
- package/templates/starter/node_modules/@auth/core/providers/netlify.d.ts +66 -0
- package/templates/starter/node_modules/@auth/core/providers/netlify.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/netlify.js +85 -0
- package/templates/starter/node_modules/@auth/core/providers/netsuite.d.ts +189 -0
- package/templates/starter/node_modules/@auth/core/providers/netsuite.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/netsuite.js +170 -0
- package/templates/starter/node_modules/@auth/core/providers/nodemailer.d.ts +27 -0
- package/templates/starter/node_modules/@auth/core/providers/nodemailer.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/nodemailer.js +32 -0
- package/templates/starter/node_modules/@auth/core/providers/notion.d.ts +99 -0
- package/templates/starter/node_modules/@auth/core/providers/notion.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/notion.js +110 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth-types.d.ts +2 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth-types.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth-types.js +1 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth.d.ts +182 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/oauth.js +1 -0
- package/templates/starter/node_modules/@auth/core/providers/okta.d.ts +99 -0
- package/templates/starter/node_modules/@auth/core/providers/okta.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/okta.js +63 -0
- package/templates/starter/node_modules/@auth/core/providers/onelogin.d.ts +65 -0
- package/templates/starter/node_modules/@auth/core/providers/onelogin.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/onelogin.js +61 -0
- package/templates/starter/node_modules/@auth/core/providers/ory-hydra.d.ts +79 -0
- package/templates/starter/node_modules/@auth/core/providers/ory-hydra.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/ory-hydra.js +67 -0
- package/templates/starter/node_modules/@auth/core/providers/osso.d.ts +79 -0
- package/templates/starter/node_modules/@auth/core/providers/osso.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/osso.js +77 -0
- package/templates/starter/node_modules/@auth/core/providers/osu.d.ts +116 -0
- package/templates/starter/node_modules/@auth/core/providers/osu.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/osu.js +75 -0
- package/templates/starter/node_modules/@auth/core/providers/passage.d.ts +88 -0
- package/templates/starter/node_modules/@auth/core/providers/passage.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/passage.js +75 -0
- package/templates/starter/node_modules/@auth/core/providers/passkey.d.ts +65 -0
- package/templates/starter/node_modules/@auth/core/providers/passkey.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/passkey.js +87 -0
- package/templates/starter/node_modules/@auth/core/providers/patreon.d.ts +73 -0
- package/templates/starter/node_modules/@auth/core/providers/patreon.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/patreon.js +77 -0
- package/templates/starter/node_modules/@auth/core/providers/pinterest.d.ts +79 -0
- package/templates/starter/node_modules/@auth/core/providers/pinterest.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/pinterest.js +85 -0
- package/templates/starter/node_modules/@auth/core/providers/pipedrive.d.ts +99 -0
- package/templates/starter/node_modules/@auth/core/providers/pipedrive.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/pipedrive.js +71 -0
- package/templates/starter/node_modules/@auth/core/providers/postmark.d.ts +4 -0
- package/templates/starter/node_modules/@auth/core/providers/postmark.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/postmark.js +36 -0
- package/templates/starter/node_modules/@auth/core/providers/reddit.d.ts +88 -0
- package/templates/starter/node_modules/@auth/core/providers/reddit.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/reddit.js +90 -0
- package/templates/starter/node_modules/@auth/core/providers/resend.d.ts +4 -0
- package/templates/starter/node_modules/@auth/core/providers/resend.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/resend.js +32 -0
- package/templates/starter/node_modules/@auth/core/providers/salesforce.d.ts +71 -0
- package/templates/starter/node_modules/@auth/core/providers/salesforce.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/salesforce.js +72 -0
- package/templates/starter/node_modules/@auth/core/providers/sendgrid.d.ts +4 -0
- package/templates/starter/node_modules/@auth/core/providers/sendgrid.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/sendgrid.js +35 -0
- package/templates/starter/node_modules/@auth/core/providers/simplelogin.d.ts +87 -0
- package/templates/starter/node_modules/@auth/core/providers/simplelogin.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/simplelogin.js +83 -0
- package/templates/starter/node_modules/@auth/core/providers/slack.d.ts +102 -0
- package/templates/starter/node_modules/@auth/core/providers/slack.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/slack.js +69 -0
- package/templates/starter/node_modules/@auth/core/providers/spotify.d.ts +75 -0
- package/templates/starter/node_modules/@auth/core/providers/spotify.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/spotify.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/strava.d.ts +68 -0
- package/templates/starter/node_modules/@auth/core/providers/strava.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/strava.js +80 -0
- package/templates/starter/node_modules/@auth/core/providers/threads.d.ts +108 -0
- package/templates/starter/node_modules/@auth/core/providers/threads.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/threads.js +89 -0
- package/templates/starter/node_modules/@auth/core/providers/tiktok.d.ts +186 -0
- package/templates/starter/node_modules/@auth/core/providers/tiktok.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/tiktok.js +135 -0
- package/templates/starter/node_modules/@auth/core/providers/todoist.d.ts +76 -0
- package/templates/starter/node_modules/@auth/core/providers/todoist.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/todoist.js +97 -0
- package/templates/starter/node_modules/@auth/core/providers/trakt.d.ts +93 -0
- package/templates/starter/node_modules/@auth/core/providers/trakt.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/trakt.js +91 -0
- package/templates/starter/node_modules/@auth/core/providers/twitch.d.ts +71 -0
- package/templates/starter/node_modules/@auth/core/providers/twitch.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/twitch.js +96 -0
- package/templates/starter/node_modules/@auth/core/providers/twitter.d.ts +183 -0
- package/templates/starter/node_modules/@auth/core/providers/twitter.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/twitter.js +100 -0
- package/templates/starter/node_modules/@auth/core/providers/united-effects.d.ts +80 -0
- package/templates/starter/node_modules/@auth/core/providers/united-effects.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/united-effects.js +72 -0
- package/templates/starter/node_modules/@auth/core/providers/vk.d.ts +334 -0
- package/templates/starter/node_modules/@auth/core/providers/vk.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/vk.js +103 -0
- package/templates/starter/node_modules/@auth/core/providers/webauthn.d.ts +148 -0
- package/templates/starter/node_modules/@auth/core/providers/webauthn.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/webauthn.js +122 -0
- package/templates/starter/node_modules/@auth/core/providers/webex.d.ts +78 -0
- package/templates/starter/node_modules/@auth/core/providers/webex.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/webex.js +73 -0
- package/templates/starter/node_modules/@auth/core/providers/wikimedia.d.ts +99 -0
- package/templates/starter/node_modules/@auth/core/providers/wikimedia.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/wikimedia.js +90 -0
- package/templates/starter/node_modules/@auth/core/providers/wordpress.d.ts +65 -0
- package/templates/starter/node_modules/@auth/core/providers/wordpress.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/wordpress.js +71 -0
- package/templates/starter/node_modules/@auth/core/providers/workos.d.ts +154 -0
- package/templates/starter/node_modules/@auth/core/providers/workos.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/workos.js +143 -0
- package/templates/starter/node_modules/@auth/core/providers/yandex.d.ts +131 -0
- package/templates/starter/node_modules/@auth/core/providers/yandex.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/yandex.js +80 -0
- package/templates/starter/node_modules/@auth/core/providers/zitadel.d.ts +117 -0
- package/templates/starter/node_modules/@auth/core/providers/zitadel.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/zitadel.js +95 -0
- package/templates/starter/node_modules/@auth/core/providers/zoho.d.ts +63 -0
- package/templates/starter/node_modules/@auth/core/providers/zoho.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/zoho.js +79 -0
- package/templates/starter/node_modules/@auth/core/providers/zoom.d.ts +93 -0
- package/templates/starter/node_modules/@auth/core/providers/zoom.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/providers/zoom.js +82 -0
- package/templates/starter/node_modules/@auth/core/src/adapters.ts +461 -0
- package/templates/starter/node_modules/@auth/core/src/errors.ts +510 -0
- package/templates/starter/node_modules/@auth/core/src/index.ts +663 -0
- package/templates/starter/node_modules/@auth/core/src/jwt.ts +278 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/handle-login.ts +332 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/index.ts +542 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/callback.ts +262 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/checks.ts +317 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/callback/oauth/csrf-token.ts +60 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/index.ts +5 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/session.ts +160 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/authorization-url.ts +99 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/index.ts +37 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/signin/send-token.ts +103 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/signout.ts +38 -0
- package/templates/starter/node_modules/@auth/core/src/lib/actions/webauthn-options.ts +98 -0
- package/templates/starter/node_modules/@auth/core/src/lib/index.ts +116 -0
- package/templates/starter/node_modules/@auth/core/src/lib/init.ts +236 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/error.tsx +106 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/index.ts +173 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/signin.tsx +266 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/signout.tsx +49 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/styles.css +352 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/styles.ts +354 -0
- package/templates/starter/node_modules/@auth/core/src/lib/pages/verify-request.tsx +36 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/actions.ts +17 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/assert.ts +255 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/callback-url.ts +42 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/cookie.ts +247 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/date.ts +8 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/email.ts +66 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/env.ts +90 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/logger.ts +73 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/merge.ts +25 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/providers.ts +179 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/session.ts +41 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/web.ts +145 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/webauthn-client.js +229 -0
- package/templates/starter/node_modules/@auth/core/src/lib/utils/webauthn-utils.ts +531 -0
- package/templates/starter/node_modules/@auth/core/src/providers/42-school.ts +256 -0
- package/templates/starter/node_modules/@auth/core/src/providers/apple.ts +178 -0
- package/templates/starter/node_modules/@auth/core/src/providers/asgardeo.ts +118 -0
- package/templates/starter/node_modules/@auth/core/src/providers/auth0.ts +127 -0
- package/templates/starter/node_modules/@auth/core/src/providers/authentik.ts +100 -0
- package/templates/starter/node_modules/@auth/core/src/providers/azure-ad-b2c.ts +128 -0
- package/templates/starter/node_modules/@auth/core/src/providers/azure-ad.ts +178 -0
- package/templates/starter/node_modules/@auth/core/src/providers/azure-devops.ts +184 -0
- package/templates/starter/node_modules/@auth/core/src/providers/bankid-no.ts +161 -0
- package/templates/starter/node_modules/@auth/core/src/providers/battlenet.ts +107 -0
- package/templates/starter/node_modules/@auth/core/src/providers/beyondidentity.ts +102 -0
- package/templates/starter/node_modules/@auth/core/src/providers/box.ts +87 -0
- package/templates/starter/node_modules/@auth/core/src/providers/boxyhq-saml.ts +148 -0
- package/templates/starter/node_modules/@auth/core/src/providers/bungie.ts +192 -0
- package/templates/starter/node_modules/@auth/core/src/providers/click-up.ts +104 -0
- package/templates/starter/node_modules/@auth/core/src/providers/cognito.ts +94 -0
- package/templates/starter/node_modules/@auth/core/src/providers/coinbase.ts +93 -0
- package/templates/starter/node_modules/@auth/core/src/providers/credentials.ts +157 -0
- package/templates/starter/node_modules/@auth/core/src/providers/descope.ts +113 -0
- package/templates/starter/node_modules/@auth/core/src/providers/discord.ts +174 -0
- package/templates/starter/node_modules/@auth/core/src/providers/dribbble.ts +122 -0
- package/templates/starter/node_modules/@auth/core/src/providers/dropbox.ts +87 -0
- package/templates/starter/node_modules/@auth/core/src/providers/duende-identity-server6.ts +101 -0
- package/templates/starter/node_modules/@auth/core/src/providers/email.ts +55 -0
- package/templates/starter/node_modules/@auth/core/src/providers/eveonline.ts +117 -0
- package/templates/starter/node_modules/@auth/core/src/providers/facebook.ts +119 -0
- package/templates/starter/node_modules/@auth/core/src/providers/faceit.ts +90 -0
- package/templates/starter/node_modules/@auth/core/src/providers/foursquare.ts +103 -0
- package/templates/starter/node_modules/@auth/core/src/providers/freshbooks.ts +90 -0
- package/templates/starter/node_modules/@auth/core/src/providers/fusionauth.ts +135 -0
- package/templates/starter/node_modules/@auth/core/src/providers/github.ts +187 -0
- package/templates/starter/node_modules/@auth/core/src/providers/gitlab.ts +132 -0
- package/templates/starter/node_modules/@auth/core/src/providers/google.ts +152 -0
- package/templates/starter/node_modules/@auth/core/src/providers/hubspot.ts +117 -0
- package/templates/starter/node_modules/@auth/core/src/providers/identity-server4.ts +78 -0
- package/templates/starter/node_modules/@auth/core/src/providers/index.ts +118 -0
- package/templates/starter/node_modules/@auth/core/src/providers/instagram.ts +103 -0
- package/templates/starter/node_modules/@auth/core/src/providers/kakao.ts +184 -0
- package/templates/starter/node_modules/@auth/core/src/providers/keycloak.ts +111 -0
- package/templates/starter/node_modules/@auth/core/src/providers/line.ts +98 -0
- package/templates/starter/node_modules/@auth/core/src/providers/linkedin.ts +91 -0
- package/templates/starter/node_modules/@auth/core/src/providers/mailchimp.ts +90 -0
- package/templates/starter/node_modules/@auth/core/src/providers/mailru.ts +75 -0
- package/templates/starter/node_modules/@auth/core/src/providers/mastodon.ts +112 -0
- package/templates/starter/node_modules/@auth/core/src/providers/mattermost.ts +154 -0
- package/templates/starter/node_modules/@auth/core/src/providers/medium.ts +89 -0
- package/templates/starter/node_modules/@auth/core/src/providers/microsoft-entra-id.ts +177 -0
- package/templates/starter/node_modules/@auth/core/src/providers/naver.ts +102 -0
- package/templates/starter/node_modules/@auth/core/src/providers/netlify.ts +90 -0
- package/templates/starter/node_modules/@auth/core/src/providers/netsuite.ts +225 -0
- package/templates/starter/node_modules/@auth/core/src/providers/nodemailer.ts +82 -0
- package/templates/starter/node_modules/@auth/core/src/providers/notion.ts +166 -0
- package/templates/starter/node_modules/@auth/core/src/providers/oauth-types.ts +88 -0
- package/templates/starter/node_modules/@auth/core/src/providers/oauth.ts +302 -0
- package/templates/starter/node_modules/@auth/core/src/providers/okta.ts +111 -0
- package/templates/starter/node_modules/@auth/core/src/providers/onelogin.ts +75 -0
- package/templates/starter/node_modules/@auth/core/src/providers/ory-hydra.ts +93 -0
- package/templates/starter/node_modules/@auth/core/src/providers/osso.ts +91 -0
- package/templates/starter/node_modules/@auth/core/src/providers/osu.ts +138 -0
- package/templates/starter/node_modules/@auth/core/src/providers/passage.ts +103 -0
- package/templates/starter/node_modules/@auth/core/src/providers/passkey.ts +94 -0
- package/templates/starter/node_modules/@auth/core/src/providers/patreon.ts +98 -0
- package/templates/starter/node_modules/@auth/core/src/providers/pinterest.ts +106 -0
- package/templates/starter/node_modules/@auth/core/src/providers/pipedrive.ts +120 -0
- package/templates/starter/node_modules/@auth/core/src/providers/postmark.ts +38 -0
- package/templates/starter/node_modules/@auth/core/src/providers/reddit.ts +104 -0
- package/templates/starter/node_modules/@auth/core/src/providers/resend.ts +35 -0
- package/templates/starter/node_modules/@auth/core/src/providers/salesforce.ts +93 -0
- package/templates/starter/node_modules/@auth/core/src/providers/sendgrid.ts +36 -0
- package/templates/starter/node_modules/@auth/core/src/providers/simplelogin.ts +107 -0
- package/templates/starter/node_modules/@auth/core/src/providers/slack.ts +115 -0
- package/templates/starter/node_modules/@auth/core/src/providers/spotify.ts +99 -0
- package/templates/starter/node_modules/@auth/core/src/providers/strava.ts +101 -0
- package/templates/starter/node_modules/@auth/core/src/providers/threads.ts +135 -0
- package/templates/starter/node_modules/@auth/core/src/providers/tiktok.ts +267 -0
- package/templates/starter/node_modules/@auth/core/src/providers/todoist.ts +122 -0
- package/templates/starter/node_modules/@auth/core/src/providers/trakt.ts +120 -0
- package/templates/starter/node_modules/@auth/core/src/providers/twitch.ts +121 -0
- package/templates/starter/node_modules/@auth/core/src/providers/twitter.ts +207 -0
- package/templates/starter/node_modules/@auth/core/src/providers/united-effects.ts +89 -0
- package/templates/starter/node_modules/@auth/core/src/providers/vk.ts +401 -0
- package/templates/starter/node_modules/@auth/core/src/providers/webauthn.ts +290 -0
- package/templates/starter/node_modules/@auth/core/src/providers/webex.ts +102 -0
- package/templates/starter/node_modules/@auth/core/src/providers/wikimedia.ts +258 -0
- package/templates/starter/node_modules/@auth/core/src/providers/wordpress.ts +86 -0
- package/templates/starter/node_modules/@auth/core/src/providers/workos.ts +180 -0
- package/templates/starter/node_modules/@auth/core/src/providers/yandex.ts +159 -0
- package/templates/starter/node_modules/@auth/core/src/providers/zitadel.ts +128 -0
- package/templates/starter/node_modules/@auth/core/src/providers/zoho.ts +84 -0
- package/templates/starter/node_modules/@auth/core/src/providers/zoom.ts +119 -0
- package/templates/starter/node_modules/@auth/core/src/types.ts +432 -0
- package/templates/starter/node_modules/@auth/core/types.d.ts +306 -0
- package/templates/starter/node_modules/@auth/core/types.d.ts.map +1 -0
- package/templates/starter/node_modules/@auth/core/types.js +53 -0
- package/templates/starter/node_modules/@hono/auth-js/CHANGELOG.md +115 -0
- package/templates/starter/node_modules/@hono/auth-js/README.md +122 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/index.cjs +157 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/index.d.cts +34 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/index.d.ts +34 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/index.js +127 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/react.cjs +461 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/react.d.cts +112 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/react.d.ts +112 -0
- package/templates/starter/node_modules/@hono/auth-js/dist/react.js +417 -0
- package/templates/starter/node_modules/@hono/auth-js/package.json +77 -0
- package/templates/starter/node_modules/@kanjijs/common/dist/index.d.ts +1 -0
- package/templates/starter/node_modules/@kanjijs/common/dist/index.js +6 -0
- package/templates/starter/node_modules/@kanjijs/common/package.json +22 -0
- package/templates/starter/node_modules/@kanjijs/contracts/README.md +53 -0
- package/templates/starter/node_modules/@kanjijs/contracts/dist/index.d.ts +27 -0
- package/templates/starter/node_modules/@kanjijs/contracts/dist/index.js +12 -0
- package/templates/starter/node_modules/@kanjijs/contracts/package.json +21 -0
- package/templates/starter/node_modules/@panva/hkdf/LICENSE.md +21 -0
- package/templates/starter/node_modules/@panva/hkdf/README.md +72 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/index.js +50 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/runtime/fallback.js +23 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/cjs/runtime/hkdf.js +16 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/index.js +46 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/package.json +1 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/runtime/fallback.js +21 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/node/esm/runtime/hkdf.js +14 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/types/index.d.ts +2 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/web/index.js +46 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/web/package.json +1 -0
- package/templates/starter/node_modules/@panva/hkdf/dist/web/runtime/hkdf.js +18 -0
- package/templates/starter/node_modules/@panva/hkdf/package.json +49 -0
- package/templates/starter/node_modules/@pinojs/redact/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/@pinojs/redact/.github/workflows/ci.yml +48 -0
- package/templates/starter/node_modules/@pinojs/redact/.github/workflows/publish-release.yml +43 -0
- package/templates/starter/node_modules/@pinojs/redact/LICENSE +21 -0
- package/templates/starter/node_modules/@pinojs/redact/README.md +350 -0
- package/templates/starter/node_modules/@pinojs/redact/benchmarks/basic.js +184 -0
- package/templates/starter/node_modules/@pinojs/redact/eslint.config.js +1 -0
- package/templates/starter/node_modules/@pinojs/redact/index.d.ts +52 -0
- package/templates/starter/node_modules/@pinojs/redact/index.js +529 -0
- package/templates/starter/node_modules/@pinojs/redact/index.test-d.ts +22 -0
- package/templates/starter/node_modules/@pinojs/redact/package.json +37 -0
- package/templates/starter/node_modules/@pinojs/redact/scripts/sync-version.mjs +20 -0
- package/templates/starter/node_modules/@pinojs/redact/test/actual-redact-comparison.test.js +211 -0
- package/templates/starter/node_modules/@pinojs/redact/test/index.test.js +824 -0
- package/templates/starter/node_modules/@pinojs/redact/test/integration.test.js +390 -0
- package/templates/starter/node_modules/@pinojs/redact/test/multiple-wildcards.test.js +227 -0
- package/templates/starter/node_modules/@pinojs/redact/test/prototype-pollution.test.js +223 -0
- package/templates/starter/node_modules/@pinojs/redact/test/selective-clone.test.js +115 -0
- package/templates/starter/node_modules/@pinojs/redact/tsconfig.json +19 -0
- package/templates/starter/node_modules/@types/cookie/LICENSE +21 -0
- package/templates/starter/node_modules/@types/cookie/README.md +15 -0
- package/templates/starter/node_modules/@types/cookie/index.d.ts +154 -0
- package/templates/starter/node_modules/@types/cookie/package.json +30 -0
- package/templates/starter/node_modules/@types/node/LICENSE +21 -0
- package/templates/starter/node_modules/@types/node/README.md +15 -0
- package/templates/starter/node_modules/@types/node/assert/strict.d.ts +105 -0
- package/templates/starter/node_modules/@types/node/assert.d.ts +955 -0
- package/templates/starter/node_modules/@types/node/async_hooks.d.ts +623 -0
- package/templates/starter/node_modules/@types/node/buffer.buffer.d.ts +466 -0
- package/templates/starter/node_modules/@types/node/buffer.d.ts +1810 -0
- package/templates/starter/node_modules/@types/node/child_process.d.ts +1428 -0
- package/templates/starter/node_modules/@types/node/cluster.d.ts +486 -0
- package/templates/starter/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/templates/starter/node_modules/@types/node/console.d.ts +151 -0
- package/templates/starter/node_modules/@types/node/constants.d.ts +20 -0
- package/templates/starter/node_modules/@types/node/crypto.d.ts +4065 -0
- package/templates/starter/node_modules/@types/node/dgram.d.ts +564 -0
- package/templates/starter/node_modules/@types/node/diagnostics_channel.d.ts +576 -0
- package/templates/starter/node_modules/@types/node/dns/promises.d.ts +503 -0
- package/templates/starter/node_modules/@types/node/dns.d.ts +922 -0
- package/templates/starter/node_modules/@types/node/domain.d.ts +166 -0
- package/templates/starter/node_modules/@types/node/events.d.ts +1054 -0
- package/templates/starter/node_modules/@types/node/fs/promises.d.ts +1329 -0
- package/templates/starter/node_modules/@types/node/fs.d.ts +4676 -0
- package/templates/starter/node_modules/@types/node/globals.d.ts +150 -0
- package/templates/starter/node_modules/@types/node/globals.typedarray.d.ts +101 -0
- package/templates/starter/node_modules/@types/node/http.d.ts +2152 -0
- package/templates/starter/node_modules/@types/node/http2.d.ts +2480 -0
- package/templates/starter/node_modules/@types/node/https.d.ts +399 -0
- package/templates/starter/node_modules/@types/node/index.d.ts +115 -0
- package/templates/starter/node_modules/@types/node/inspector/promises.d.ts +41 -0
- package/templates/starter/node_modules/@types/node/inspector.d.ts +224 -0
- package/templates/starter/node_modules/@types/node/inspector.generated.d.ts +4226 -0
- package/templates/starter/node_modules/@types/node/module.d.ts +819 -0
- package/templates/starter/node_modules/@types/node/net.d.ts +933 -0
- package/templates/starter/node_modules/@types/node/os.d.ts +507 -0
- package/templates/starter/node_modules/@types/node/package.json +155 -0
- package/templates/starter/node_modules/@types/node/path/posix.d.ts +8 -0
- package/templates/starter/node_modules/@types/node/path/win32.d.ts +8 -0
- package/templates/starter/node_modules/@types/node/path.d.ts +187 -0
- package/templates/starter/node_modules/@types/node/perf_hooks.d.ts +621 -0
- package/templates/starter/node_modules/@types/node/process.d.ts +2161 -0
- package/templates/starter/node_modules/@types/node/punycode.d.ts +117 -0
- package/templates/starter/node_modules/@types/node/querystring.d.ts +152 -0
- package/templates/starter/node_modules/@types/node/quic.d.ts +910 -0
- package/templates/starter/node_modules/@types/node/readline/promises.d.ts +161 -0
- package/templates/starter/node_modules/@types/node/readline.d.ts +541 -0
- package/templates/starter/node_modules/@types/node/repl.d.ts +415 -0
- package/templates/starter/node_modules/@types/node/sea.d.ts +162 -0
- package/templates/starter/node_modules/@types/node/sqlite.d.ts +953 -0
- package/templates/starter/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/templates/starter/node_modules/@types/node/stream/promises.d.ts +211 -0
- package/templates/starter/node_modules/@types/node/stream/web.d.ts +296 -0
- package/templates/starter/node_modules/@types/node/stream.d.ts +1760 -0
- package/templates/starter/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/templates/starter/node_modules/@types/node/test/reporters.d.ts +96 -0
- package/templates/starter/node_modules/@types/node/test.d.ts +2239 -0
- package/templates/starter/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/templates/starter/node_modules/@types/node/timers.d.ts +159 -0
- package/templates/starter/node_modules/@types/node/tls.d.ts +1198 -0
- package/templates/starter/node_modules/@types/node/trace_events.d.ts +197 -0
- package/templates/starter/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
- package/templates/starter/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
- package/templates/starter/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
- package/templates/starter/node_modules/@types/node/ts5.6/index.d.ts +117 -0
- package/templates/starter/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
- package/templates/starter/node_modules/@types/node/ts5.7/index.d.ts +117 -0
- package/templates/starter/node_modules/@types/node/tty.d.ts +250 -0
- package/templates/starter/node_modules/@types/node/url.d.ts +519 -0
- package/templates/starter/node_modules/@types/node/util/types.d.ts +558 -0
- package/templates/starter/node_modules/@types/node/util.d.ts +1653 -0
- package/templates/starter/node_modules/@types/node/v8.d.ts +979 -0
- package/templates/starter/node_modules/@types/node/vm.d.ts +1208 -0
- package/templates/starter/node_modules/@types/node/wasi.d.ts +202 -0
- package/templates/starter/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
- package/templates/starter/node_modules/@types/node/web-globals/blob.d.ts +23 -0
- package/templates/starter/node_modules/@types/node/web-globals/console.d.ts +9 -0
- package/templates/starter/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
- package/templates/starter/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/templates/starter/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
- package/templates/starter/node_modules/@types/node/web-globals/events.d.ts +106 -0
- package/templates/starter/node_modules/@types/node/web-globals/fetch.d.ts +54 -0
- package/templates/starter/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
- package/templates/starter/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
- package/templates/starter/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
- package/templates/starter/node_modules/@types/node/web-globals/performance.d.ts +45 -0
- package/templates/starter/node_modules/@types/node/web-globals/storage.d.ts +24 -0
- package/templates/starter/node_modules/@types/node/web-globals/streams.d.ts +115 -0
- package/templates/starter/node_modules/@types/node/web-globals/timers.d.ts +44 -0
- package/templates/starter/node_modules/@types/node/web-globals/url.d.ts +24 -0
- package/templates/starter/node_modules/@types/node/worker_threads.d.ts +717 -0
- package/templates/starter/node_modules/@types/node/zlib.d.ts +618 -0
- package/templates/starter/node_modules/atomic-sleep/.travis.yml +11 -0
- package/templates/starter/node_modules/atomic-sleep/LICENSE +22 -0
- package/templates/starter/node_modules/atomic-sleep/index.js +38 -0
- package/templates/starter/node_modules/atomic-sleep/package.json +37 -0
- package/templates/starter/node_modules/atomic-sleep/readme.md +58 -0
- package/templates/starter/node_modules/atomic-sleep/test.js +47 -0
- package/templates/starter/node_modules/bun-types/CLAUDE.md +105 -0
- package/templates/starter/node_modules/bun-types/README.md +33 -0
- package/templates/starter/node_modules/bun-types/bun.d.ts +8450 -0
- package/templates/starter/node_modules/bun-types/bun.ns.d.ts +5 -0
- package/templates/starter/node_modules/bun-types/bundle.d.ts +74 -0
- package/templates/starter/node_modules/bun-types/deprecated.d.ts +184 -0
- package/templates/starter/node_modules/bun-types/devserver.d.ts +187 -0
- package/templates/starter/node_modules/bun-types/docs/README.md +28 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/bytecode.mdx +465 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/css.mdx +1024 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/esbuild.mdx +298 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/executables.mdx +1294 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/fullstack.mdx +1086 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/hot-reloading.mdx +229 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/html-static.mdx +488 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/index.mdx +1794 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/loaders.mdx +451 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/macros.mdx +328 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/minifier.mdx +1286 -0
- package/templates/starter/node_modules/bun-types/docs/bundler/plugins.mdx +425 -0
- package/templates/starter/node_modules/bun-types/docs/feedback.mdx +75 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-array.mdx +29 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-blob.mdx +26 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-buffer.mdx +27 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-string.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/arraybuffer-to-typedarray.mdx +41 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-arraybuffer.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-dataview.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-stream.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-string.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/blob-to-typedarray.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-arraybuffer.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-blob.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-readablestream.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-string.mdx +27 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/buffer-to-typedarray.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/dataview-to-string.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-arraybuffer.mdx +27 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-blob.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-buffer.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-dataview.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-readablestream.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/binary/typedarray-to-string.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/aws-lambda.mdx +204 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/digital-ocean.mdx +161 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/google-cloud-run.mdx +194 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/railway.mdx +145 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/render.mdx +82 -0
- package/templates/starter/node_modules/bun-types/docs/guides/deployment/vercel.mdx +97 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/astro.mdx +82 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/discordjs.mdx +80 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/docker.mdx +151 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/drizzle.mdx +195 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/elysia.mdx +31 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/express.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/gel.mdx +261 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/hono.mdx +47 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/mongoose.mdx +92 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/neon-drizzle.mdx +234 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/neon-serverless-postgres.mdx +60 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/nextjs.mdx +103 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/nuxt.mdx +96 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/pm2.mdx +55 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/prisma-postgres.mdx +169 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/prisma.mdx +164 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/qwik.mdx +114 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/react.mdx +52 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/remix.mdx +97 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/sentry.mdx +54 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/solidstart.mdx +62 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/ssr-react.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/stric.mdx +54 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/sveltekit.mdx +138 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/systemd.mdx +114 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/tanstack-start.mdx +791 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/upstash.mdx +87 -0
- package/templates/starter/node_modules/bun-types/docs/guides/ecosystem/vite.mdx +77 -0
- package/templates/starter/node_modules/bun-types/docs/guides/html-rewriter/extract-links.mdx +71 -0
- package/templates/starter/node_modules/bun-types/docs/guides/html-rewriter/extract-social-meta.mdx +97 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/cluster.mdx +69 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/fetch-unix.mdx +35 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/fetch.mdx +26 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/file-uploads.mdx +97 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/hot.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/proxy.mdx +50 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/server.mdx +48 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/simple.mdx +20 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/stream-file.mdx +50 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/stream-iterator.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/stream-node-streams-in-bun.mdx +22 -0
- package/templates/starter/node_modules/bun-types/docs/guides/http/tls.mdx +32 -0
- package/templates/starter/node_modules/bun-types/docs/guides/index.mdx +10 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add-dev.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add-git.mdx +40 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add-optional.mdx +27 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add-peer.mdx +45 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add-tarball.mdx +35 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/add.mdx +44 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/azure-artifacts.mdx +76 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/cicd.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/custom-registry.mdx +32 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/from-npm-install-to-bun-install.mdx +230 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/git-diff-bun-lockfile.mdx +48 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/jfrog-artifactory.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/npm-alias.mdx +25 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/registry-scope.mdx +40 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/trusted.mdx +52 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/workspaces.mdx +70 -0
- package/templates/starter/node_modules/bun-types/docs/guides/install/yarnlock.mdx +51 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/argv.mdx +66 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/ctrl-c.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/ipc.mdx +69 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/nanoseconds.mdx +15 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/os-signals.mdx +31 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/spawn-stderr.mdx +34 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/spawn-stdout.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/spawn.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/process/stdin.mdx +62 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/arraybuffer.mdx +30 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/buffer.mdx +21 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/exists.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/json.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/mime.mdx +22 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/stream.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/string.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/uint8array.mdx +23 -0
- package/templates/starter/node_modules/bun-types/docs/guides/read-file/watch.mdx +66 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/build-time-constants.mdx +295 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/cicd.mdx +45 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/codesign-macos-executable.mdx +61 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/define-constant.mdx +149 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/delete-directory.mdx +39 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/delete-file.mdx +21 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/heap-snapshot.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-html.mdx +15 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-json.mdx +46 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-json5.mdx +74 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-toml.mdx +32 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/import-yaml.mdx +104 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/read-env.mdx +37 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/set-env.mdx +51 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/shell.mdx +42 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/timezone.mdx +38 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/tsconfig-paths.mdx +31 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/typescript.mdx +51 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/vscode-debugger.mdx +47 -0
- package/templates/starter/node_modules/bun-types/docs/guides/runtime/web-debugger.mdx +103 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-arraybuffer.mdx +13 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-blob.mdx +13 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-json.mdx +14 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-string.mdx +14 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/node-readable-to-uint8array.mdx +13 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-array.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-arraybuffer.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-blob.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-buffer.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-json.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-string.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/streams/to-typedarray.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/bail.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/concurrent-test-glob.mdx +146 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/coverage-threshold.mdx +67 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/coverage.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/happy-dom.mdx +73 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/migrate-from-jest.mdx +125 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/mock-clock.mdx +50 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/mock-functions.mdx +70 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/rerun-each.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/run-tests.mdx +116 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/skip-tests.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/snapshot.mdx +102 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/spy-on.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/svelte-test.mdx +113 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/testing-library.mdx +93 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/timeout.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/todo-tests.mdx +74 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/update-snapshots.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/guides/test/watch-mode.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/base64.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/deep-equals.mdx +41 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/deflate.mdx +20 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/detect-bun.mdx +28 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/entrypoint.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/escape-html.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/file-url-to-path.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/gzip.mdx +20 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/hash-a-password.mdx +56 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-dir.mdx +15 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-file.mdx +15 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/import-meta-path.mdx +15 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/javascript-uuid.mdx +25 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/main.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/path-to-file-url.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/sleep.mdx +24 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/upgrade.mdx +93 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/version.mdx +23 -0
- package/templates/starter/node_modules/bun-types/docs/guides/util/which-path-to-executable-bin.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/guides/websocket/compression.mdx +33 -0
- package/templates/starter/node_modules/bun-types/docs/guides/websocket/context.mdx +79 -0
- package/templates/starter/node_modules/bun-types/docs/guides/websocket/pubsub.mdx +43 -0
- package/templates/starter/node_modules/bun-types/docs/guides/websocket/simple.mdx +38 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/append.mdx +54 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/basic.mdx +46 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/blob.mdx +30 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/cat.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/file-cp.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/filesink.mdx +54 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/response.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/stdout.mdx +23 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/stream.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/guides/write-file/unlink.mdx +18 -0
- package/templates/starter/node_modules/bun-types/docs/index.mdx +133 -0
- package/templates/starter/node_modules/bun-types/docs/installation.mdx +365 -0
- package/templates/starter/node_modules/bun-types/docs/pm/bunx.mdx +91 -0
- package/templates/starter/node_modules/bun-types/docs/pm/catalogs.mdx +292 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/add.mdx +179 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/audit.mdx +60 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/info.mdx +70 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/install.mdx +591 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/link.mdx +61 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/outdated.mdx +197 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/patch.mdx +69 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/pm.mdx +323 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/publish.mdx +131 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/remove.mdx +16 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/update.mdx +140 -0
- package/templates/starter/node_modules/bun-types/docs/pm/cli/why.mdx +84 -0
- package/templates/starter/node_modules/bun-types/docs/pm/filter.mdx +102 -0
- package/templates/starter/node_modules/bun-types/docs/pm/global-cache.mdx +72 -0
- package/templates/starter/node_modules/bun-types/docs/pm/isolated-installs.mdx +220 -0
- package/templates/starter/node_modules/bun-types/docs/pm/lifecycle.mdx +64 -0
- package/templates/starter/node_modules/bun-types/docs/pm/lockfile.mdx +64 -0
- package/templates/starter/node_modules/bun-types/docs/pm/npmrc.mdx +245 -0
- package/templates/starter/node_modules/bun-types/docs/pm/overrides.mdx +83 -0
- package/templates/starter/node_modules/bun-types/docs/pm/scopes-registries.mdx +35 -0
- package/templates/starter/node_modules/bun-types/docs/pm/security-scanner-api.mdx +95 -0
- package/templates/starter/node_modules/bun-types/docs/pm/workspaces.mdx +115 -0
- package/templates/starter/node_modules/bun-types/docs/project/benchmarking.mdx +296 -0
- package/templates/starter/node_modules/bun-types/docs/project/bindgen.mdx +223 -0
- package/templates/starter/node_modules/bun-types/docs/project/building-windows.mdx +143 -0
- package/templates/starter/node_modules/bun-types/docs/project/contributing.mdx +371 -0
- package/templates/starter/node_modules/bun-types/docs/project/feedback.mdx +20 -0
- package/templates/starter/node_modules/bun-types/docs/project/license.mdx +78 -0
- package/templates/starter/node_modules/bun-types/docs/project/roadmap.mdx +8 -0
- package/templates/starter/node_modules/bun-types/docs/quickstart.mdx +251 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/archive.mdx +452 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/auto-install.mdx +97 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/binary-data.mdx +846 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/bun-apis.mdx +59 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/bunfig.mdx +743 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/c-compiler.mdx +204 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/child-process.mdx +659 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/color.mdx +267 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/console.mdx +67 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/cookies.mdx +454 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/debugger.mdx +335 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/environment-variables.mdx +231 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/ffi.mdx +567 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/file-io.mdx +306 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/file-system-router.mdx +118 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/file-types.mdx +482 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/glob.mdx +181 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/globals.mdx +72 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/hashing.mdx +315 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/html-rewriter.mdx +333 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/cookies.mdx +79 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/error-handling.mdx +40 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/metrics.mdx +36 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/routing.mdx +289 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/server.mdx +645 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/tls.mdx +101 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/http/websockets.mdx +414 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/index.mdx +223 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/json5.mdx +271 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/jsonl.mdx +188 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/jsx.mdx +115 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/markdown.mdx +344 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/module-resolution.mdx +374 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/networking/dns.mdx +111 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/networking/fetch.mdx +484 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/networking/tcp.mdx +239 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/networking/udp.mdx +180 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/node-api.mdx +19 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/nodejs-compat.mdx +468 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/plugins.mdx +419 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/redis.mdx +583 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/s3.mdx +881 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/secrets.mdx +340 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/semver.mdx +57 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/shell.mdx +637 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/sql.mdx +1404 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/sqlite.mdx +721 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/streams.mdx +232 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/templating/create.mdx +269 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/templating/init.mdx +58 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/transpiler.mdx +288 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/typescript.mdx +58 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/utils.mdx +1010 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/watch-mode.mdx +161 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/web-apis.mdx +29 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/workers.mdx +314 -0
- package/templates/starter/node_modules/bun-types/docs/runtime/yaml.mdx +469 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/add.mdx +166 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/build.mdx +196 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/bunx.mdx +49 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/feedback.mdx +17 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/init.mdx +84 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/install.mdx +173 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/link.mdx +163 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/outdated.mdx +140 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/patch.mdx +171 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/publish.mdx +198 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/remove.mdx +146 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/run.mdx +293 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/test.mdx +100 -0
- package/templates/starter/node_modules/bun-types/docs/snippets/cli/update.mdx +144 -0
- package/templates/starter/node_modules/bun-types/docs/test/code-coverage.mdx +409 -0
- package/templates/starter/node_modules/bun-types/docs/test/configuration.mdx +509 -0
- package/templates/starter/node_modules/bun-types/docs/test/dates-times.mdx +129 -0
- package/templates/starter/node_modules/bun-types/docs/test/discovery.mdx +90 -0
- package/templates/starter/node_modules/bun-types/docs/test/dom.mdx +226 -0
- package/templates/starter/node_modules/bun-types/docs/test/index.mdx +380 -0
- package/templates/starter/node_modules/bun-types/docs/test/lifecycle.mdx +366 -0
- package/templates/starter/node_modules/bun-types/docs/test/mocks.mdx +637 -0
- package/templates/starter/node_modules/bun-types/docs/test/reporters.mdx +126 -0
- package/templates/starter/node_modules/bun-types/docs/test/runtime-behavior.mdx +342 -0
- package/templates/starter/node_modules/bun-types/docs/test/snapshots.mdx +434 -0
- package/templates/starter/node_modules/bun-types/docs/test/writing-tests.mdx +672 -0
- package/templates/starter/node_modules/bun-types/docs/typescript.mdx +54 -0
- package/templates/starter/node_modules/bun-types/extensions.d.ts +40 -0
- package/templates/starter/node_modules/bun-types/fetch.d.ts +79 -0
- package/templates/starter/node_modules/bun-types/ffi.d.ts +1154 -0
- package/templates/starter/node_modules/bun-types/globals.d.ts +2067 -0
- package/templates/starter/node_modules/bun-types/html-rewriter.d.ts +186 -0
- package/templates/starter/node_modules/bun-types/index.d.ts +32 -0
- package/templates/starter/node_modules/bun-types/jsc.d.ts +233 -0
- package/templates/starter/node_modules/bun-types/jsx.d.ts +11 -0
- package/templates/starter/node_modules/bun-types/overrides.d.ts +376 -0
- package/templates/starter/node_modules/bun-types/package.json +37 -0
- package/templates/starter/node_modules/bun-types/redis.d.ts +3352 -0
- package/templates/starter/node_modules/bun-types/s3.d.ts +1335 -0
- package/templates/starter/node_modules/bun-types/security.d.ts +101 -0
- package/templates/starter/node_modules/bun-types/serve.d.ts +1296 -0
- package/templates/starter/node_modules/bun-types/shell.d.ts +380 -0
- package/templates/starter/node_modules/bun-types/sql.d.ts +887 -0
- package/templates/starter/node_modules/bun-types/sqlite.d.ts +1322 -0
- package/templates/starter/node_modules/bun-types/test-globals.d.ts +22 -0
- package/templates/starter/node_modules/bun-types/test.d.ts +2391 -0
- package/templates/starter/node_modules/bun-types/vendor/expect-type/branding.d.ts +283 -0
- package/templates/starter/node_modules/bun-types/vendor/expect-type/index.d.ts +1207 -0
- package/templates/starter/node_modules/bun-types/vendor/expect-type/messages.d.ts +395 -0
- package/templates/starter/node_modules/bun-types/vendor/expect-type/overloads.d.ts +669 -0
- package/templates/starter/node_modules/bun-types/vendor/expect-type/utils.d.ts +431 -0
- package/templates/starter/node_modules/bun-types/wasm.d.ts +193 -0
- package/templates/starter/node_modules/cookie/HISTORY.md +147 -0
- package/templates/starter/node_modules/cookie/LICENSE +24 -0
- package/templates/starter/node_modules/cookie/README.md +317 -0
- package/templates/starter/node_modules/cookie/SECURITY.md +25 -0
- package/templates/starter/node_modules/cookie/index.js +274 -0
- package/templates/starter/node_modules/cookie/package.json +44 -0
- package/templates/starter/node_modules/jose/LICENSE.md +21 -0
- package/templates/starter/node_modules/jose/README.md +151 -0
- package/templates/starter/node_modules/jose/dist/browser/index.js +30 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +161 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +153 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
- package/templates/starter/node_modules/jose/dist/browser/jwe/general/encrypt.js +174 -0
- package/templates/starter/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
- package/templates/starter/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
- package/templates/starter/node_modules/jose/dist/browser/jwks/local.js +124 -0
- package/templates/starter/node_modules/jose/dist/browser/jwks/remote.js +139 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/flattened/verify.js +122 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
- package/templates/starter/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/produce.js +75 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/sign.js +20 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
- package/templates/starter/node_modules/jose/dist/browser/jwt/verify.js +15 -0
- package/templates/starter/node_modules/jose/dist/browser/key/export.js +12 -0
- package/templates/starter/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
- package/templates/starter/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
- package/templates/starter/node_modules/jose/dist/browser/key/import.js +45 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/aesgcmkw.js +16 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/cek.js +20 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/check_key_type.js +77 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/crypto_key.js +157 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/decrypt_key_management.js +129 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/encrypt_key_management.js +89 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/epoch.js +1 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/invalid_key_input.js +31 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/is_jwk.js +13 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/is_object.js +16 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/iv.js +20 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/jwt_claims_set.js +104 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/private_symbols.js +1 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/secs.js +55 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
- package/templates/starter/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
- package/templates/starter/node_modules/jose/dist/browser/package.json +1 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/asn1.js +205 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/decrypt.js +91 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/digest.js +6 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/ecdhes.js +47 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/encrypt.js +76 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/generate.js +143 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +24 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/is_key_like.js +8 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/jwk_to_key.js +104 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/normalize_key.js +68 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/random.js +2 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/runtime.js +1 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/sign.js +11 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/subtle_dsa.js +28 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/verify.js +16 -0
- package/templates/starter/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
- package/templates/starter/node_modules/jose/dist/browser/util/base64url.js +3 -0
- package/templates/starter/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
- package/templates/starter/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
- package/templates/starter/node_modules/jose/dist/browser/util/errors.js +114 -0
- package/templates/starter/node_modules/jose/dist/browser/util/runtime.js +2 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/index.js +69 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +30 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +31 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +164 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +165 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +34 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +186 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwk/embedded.js +20 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +57 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwks/local.js +128 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwks/remote.js +152 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/compact/sign.js +22 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/compact/verify.js +24 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +88 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +125 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/general/sign.js +77 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jws/general/verify.js +27 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/decrypt.js +26 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/encrypt.js +79 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/produce.js +80 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/jwt/verify.js +18 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/key/export.js +17 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +7 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/key/generate_secret.js +7 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/key/import.js +51 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +20 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/cek.js +23 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_key_type.js +80 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/crypto_key.js +161 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +131 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +91 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_jwk.js +19 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/iv.js +23 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +106 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/private_symbols.js +4 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/secs.js +57 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/asn1.js +54 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/base64url.js +20 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/check_key_length.js +18 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/decrypt.js +103 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +26 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/encrypt.js +80 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/generate.js +103 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +61 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +31 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +4 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +10 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +36 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/node_key.js +111 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/normalize_key.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/rsaes.js +71 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/runtime.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/sign.js +19 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/verify.js +31 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +9 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/util/decode_jwt.js +35 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +37 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/util/errors.js +117 -0
- package/templates/starter/node_modules/jose/dist/node/cjs/util/runtime.js +4 -0
- package/templates/starter/node_modules/jose/dist/node/esm/index.js +30 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +27 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +161 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +161 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +182 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwks/local.js +125 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwks/remote.js +148 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/compact/sign.js +18 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/flattened/sign.js +84 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/flattened/verify.js +122 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/general/sign.js +73 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/encrypt.js +75 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/produce.js +76 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
- package/templates/starter/node_modules/jose/dist/node/esm/jwt/verify.js +15 -0
- package/templates/starter/node_modules/jose/dist/node/esm/key/export.js +12 -0
- package/templates/starter/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
- package/templates/starter/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
- package/templates/starter/node_modules/jose/dist/node/esm/key/import.js +45 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +16 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/check_key_type.js +77 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/crypto_key.js +157 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +129 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +89 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +31 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/is_jwk.js +13 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +104 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/private_symbols.js +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/secs.js +55 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
- package/templates/starter/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
- package/templates/starter/node_modules/jose/dist/node/esm/package.json +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/asn1.js +46 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/base64url.js +14 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/check_key_length.js +16 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/decrypt.js +101 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +23 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/encrypt.js +78 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/generate.js +99 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +58 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +28 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/is_key_object.js +2 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +8 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +34 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/node_key.js +108 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/normalize_key.js +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/rsaes.js +66 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/runtime.js +1 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/sign.js +17 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/verify.js +29 -0
- package/templates/starter/node_modules/jose/dist/node/esm/runtime/webcrypto.js +5 -0
- package/templates/starter/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
- package/templates/starter/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
- package/templates/starter/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
- package/templates/starter/node_modules/jose/dist/node/esm/util/errors.js +99 -0
- package/templates/starter/node_modules/jose/dist/node/esm/util/runtime.js +2 -0
- package/templates/starter/node_modules/jose/dist/types/index.d.ts +48 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +26 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +55 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +26 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +81 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +26 -0
- package/templates/starter/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +59 -0
- package/templates/starter/node_modules/jose/dist/types/jwk/embedded.d.ts +12 -0
- package/templates/starter/node_modules/jose/dist/types/jwk/thumbprint.d.ts +27 -0
- package/templates/starter/node_modules/jose/dist/types/jwks/local.d.ts +23 -0
- package/templates/starter/node_modules/jose/dist/types/jwks/remote.d.ts +135 -0
- package/templates/starter/node_modules/jose/dist/types/jws/compact/sign.d.ts +27 -0
- package/templates/starter/node_modules/jose/dist/types/jws/compact/verify.d.ts +28 -0
- package/templates/starter/node_modules/jose/dist/types/jws/flattened/sign.d.ts +35 -0
- package/templates/starter/node_modules/jose/dist/types/jws/flattened/verify.d.ts +28 -0
- package/templates/starter/node_modules/jose/dist/types/jws/general/sign.d.ts +44 -0
- package/templates/starter/node_modules/jose/dist/types/jws/general/verify.d.ts +28 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/decrypt.d.ts +30 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/encrypt.d.ts +80 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/produce.d.ts +104 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/sign.d.ts +26 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/unsecured.d.ts +24 -0
- package/templates/starter/node_modules/jose/dist/types/jwt/verify.d.ts +32 -0
- package/templates/starter/node_modules/jose/dist/types/key/export.d.ts +30 -0
- package/templates/starter/node_modules/jose/dist/types/key/generate_key_pair.d.ts +40 -0
- package/templates/starter/node_modules/jose/dist/types/key/generate_secret.d.ts +21 -0
- package/templates/starter/node_modules/jose/dist/types/key/import.d.ts +76 -0
- package/templates/starter/node_modules/jose/dist/types/types.d.ts +696 -0
- package/templates/starter/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
- package/templates/starter/node_modules/jose/dist/types/util/decode_jwt.d.ts +13 -0
- package/templates/starter/node_modules/jose/dist/types/util/decode_protected_header.d.ts +11 -0
- package/templates/starter/node_modules/jose/dist/types/util/errors.d.ts +194 -0
- package/templates/starter/node_modules/jose/dist/types/util/runtime.d.ts +3 -0
- package/templates/starter/node_modules/jose/package.json +381 -0
- package/templates/starter/node_modules/oauth4webapi/LICENSE.md +21 -0
- package/templates/starter/node_modules/oauth4webapi/README.md +87 -0
- package/templates/starter/node_modules/oauth4webapi/build/index.d.ts +2049 -0
- package/templates/starter/node_modules/oauth4webapi/build/index.js +2046 -0
- package/templates/starter/node_modules/oauth4webapi/package.json +94 -0
- package/templates/starter/node_modules/on-exit-leak-free/.github/dependabot.yml +12 -0
- package/templates/starter/node_modules/on-exit-leak-free/.github/workflows/ci.yml +46 -0
- package/templates/starter/node_modules/on-exit-leak-free/LICENSE +21 -0
- package/templates/starter/node_modules/on-exit-leak-free/README.md +54 -0
- package/templates/starter/node_modules/on-exit-leak-free/index.js +108 -0
- package/templates/starter/node_modules/on-exit-leak-free/package.json +37 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/base.test.js +30 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/event-emitter-leak.test.js +23 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/beforeExit.js +33 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/close.js +21 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/gc-not-close.js +24 -0
- package/templates/starter/node_modules/on-exit-leak-free/test/fixtures/unregister.js +24 -0
- package/templates/starter/node_modules/pino/.eslintignore +2 -0
- package/templates/starter/node_modules/pino/.eslintrc +8 -0
- package/templates/starter/node_modules/pino/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/pino/.github/workflows/bench.yml +61 -0
- package/templates/starter/node_modules/pino/.github/workflows/ci.yml +90 -0
- package/templates/starter/node_modules/pino/.github/workflows/lock-threads.yml +30 -0
- package/templates/starter/node_modules/pino/.github/workflows/publish-release.yml +43 -0
- package/templates/starter/node_modules/pino/.github/workflows/target-main.yml +23 -0
- package/templates/starter/node_modules/pino/.nojekyll +0 -0
- package/templates/starter/node_modules/pino/.prettierignore +1 -0
- package/templates/starter/node_modules/pino/.taprc.yaml +8 -0
- package/templates/starter/node_modules/pino/CNAME +1 -0
- package/templates/starter/node_modules/pino/CONTRIBUTING.md +30 -0
- package/templates/starter/node_modules/pino/LICENSE +21 -0
- package/templates/starter/node_modules/pino/README.md +177 -0
- package/templates/starter/node_modules/pino/SECURITY.md +68 -0
- package/templates/starter/node_modules/pino/benchmarks/basic.bench.js +95 -0
- package/templates/starter/node_modules/pino/benchmarks/child-child.bench.js +52 -0
- package/templates/starter/node_modules/pino/benchmarks/child-creation.bench.js +73 -0
- package/templates/starter/node_modules/pino/benchmarks/child.bench.js +62 -0
- package/templates/starter/node_modules/pino/benchmarks/deep-object.bench.js +88 -0
- package/templates/starter/node_modules/pino/benchmarks/formatters.bench.js +50 -0
- package/templates/starter/node_modules/pino/benchmarks/internal/custom-levels.js +67 -0
- package/templates/starter/node_modules/pino/benchmarks/internal/just-pino-heavy.bench.js +76 -0
- package/templates/starter/node_modules/pino/benchmarks/internal/just-pino.bench.js +182 -0
- package/templates/starter/node_modules/pino/benchmarks/internal/parent-vs-child.bench.js +75 -0
- package/templates/starter/node_modules/pino/benchmarks/internal/redact.bench.js +86 -0
- package/templates/starter/node_modules/pino/benchmarks/long-string.bench.js +81 -0
- package/templates/starter/node_modules/pino/benchmarks/multi-arg.bench.js +193 -0
- package/templates/starter/node_modules/pino/benchmarks/multistream.js +98 -0
- package/templates/starter/node_modules/pino/benchmarks/object.bench.js +82 -0
- package/templates/starter/node_modules/pino/benchmarks/utils/generate-benchmark-doc.js +36 -0
- package/templates/starter/node_modules/pino/benchmarks/utils/runbench.js +138 -0
- package/templates/starter/node_modules/pino/benchmarks/utils/wrap-log-level.js +55 -0
- package/templates/starter/node_modules/pino/bin.js +6 -0
- package/templates/starter/node_modules/pino/browser.js +505 -0
- package/templates/starter/node_modules/pino/build/sync-version.js +25 -0
- package/templates/starter/node_modules/pino/docs/api.md +1588 -0
- package/templates/starter/node_modules/pino/docs/asynchronous.md +40 -0
- package/templates/starter/node_modules/pino/docs/benchmarks.md +55 -0
- package/templates/starter/node_modules/pino/docs/browser.md +242 -0
- package/templates/starter/node_modules/pino/docs/bundling.md +40 -0
- package/templates/starter/node_modules/pino/docs/child-loggers.md +95 -0
- package/templates/starter/node_modules/pino/docs/diagnostics.md +16 -0
- package/templates/starter/node_modules/pino/docs/ecosystem.md +86 -0
- package/templates/starter/node_modules/pino/docs/help.md +345 -0
- package/templates/starter/node_modules/pino/docs/lts.md +64 -0
- package/templates/starter/node_modules/pino/docs/pretty.md +35 -0
- package/templates/starter/node_modules/pino/docs/redaction.md +135 -0
- package/templates/starter/node_modules/pino/docs/transports.md +1263 -0
- package/templates/starter/node_modules/pino/docs/web.md +309 -0
- package/templates/starter/node_modules/pino/docsify/sidebar.md +26 -0
- package/templates/starter/node_modules/pino/examples/basic.js +43 -0
- package/templates/starter/node_modules/pino/examples/transport.js +68 -0
- package/templates/starter/node_modules/pino/favicon-16x16.png +0 -0
- package/templates/starter/node_modules/pino/favicon-32x32.png +0 -0
- package/templates/starter/node_modules/pino/favicon.ico +0 -0
- package/templates/starter/node_modules/pino/file.js +12 -0
- package/templates/starter/node_modules/pino/inc-version.sh +42 -0
- package/templates/starter/node_modules/pino/index.html +55 -0
- package/templates/starter/node_modules/pino/lib/caller.js +30 -0
- package/templates/starter/node_modules/pino/lib/constants.js +28 -0
- package/templates/starter/node_modules/pino/lib/deprecations.js +8 -0
- package/templates/starter/node_modules/pino/lib/levels.js +241 -0
- package/templates/starter/node_modules/pino/lib/meta.js +3 -0
- package/templates/starter/node_modules/pino/lib/multistream.js +203 -0
- package/templates/starter/node_modules/pino/lib/proto.js +260 -0
- package/templates/starter/node_modules/pino/lib/redaction.js +114 -0
- package/templates/starter/node_modules/pino/lib/symbols.js +74 -0
- package/templates/starter/node_modules/pino/lib/time.js +39 -0
- package/templates/starter/node_modules/pino/lib/tools.js +436 -0
- package/templates/starter/node_modules/pino/lib/transport-stream.js +56 -0
- package/templates/starter/node_modules/pino/lib/transport.js +167 -0
- package/templates/starter/node_modules/pino/lib/worker.js +194 -0
- package/templates/starter/node_modules/pino/package.json +122 -0
- package/templates/starter/node_modules/pino/pino-banner.png +0 -0
- package/templates/starter/node_modules/pino/pino-logo-hire.png +0 -0
- package/templates/starter/node_modules/pino/pino-tree.png +0 -0
- package/templates/starter/node_modules/pino/pino.d.ts +904 -0
- package/templates/starter/node_modules/pino/pino.js +234 -0
- package/templates/starter/node_modules/pino/pretty-demo.png +0 -0
- package/templates/starter/node_modules/pino/test/basic.test.js +876 -0
- package/templates/starter/node_modules/pino/test/broken-pipe.test.js +57 -0
- package/templates/starter/node_modules/pino/test/browser-child.test.js +132 -0
- package/templates/starter/node_modules/pino/test/browser-disabled.test.js +87 -0
- package/templates/starter/node_modules/pino/test/browser-early-console-freeze.test.js +12 -0
- package/templates/starter/node_modules/pino/test/browser-is-level-enabled.test.js +104 -0
- package/templates/starter/node_modules/pino/test/browser-levels.test.js +241 -0
- package/templates/starter/node_modules/pino/test/browser-serializers.test.js +352 -0
- package/templates/starter/node_modules/pino/test/browser-timestamp.test.js +88 -0
- package/templates/starter/node_modules/pino/test/browser-transmit.test.js +417 -0
- package/templates/starter/node_modules/pino/test/browser.test.js +679 -0
- package/templates/starter/node_modules/pino/test/complex-objects.test.js +34 -0
- package/templates/starter/node_modules/pino/test/crlf.test.js +32 -0
- package/templates/starter/node_modules/pino/test/custom-levels.test.js +253 -0
- package/templates/starter/node_modules/pino/test/diagnostics.test.js +107 -0
- package/templates/starter/node_modules/pino/test/error.test.js +398 -0
- package/templates/starter/node_modules/pino/test/errorKey.test.js +34 -0
- package/templates/starter/node_modules/pino/test/escaping.test.js +91 -0
- package/templates/starter/node_modules/pino/test/esm/esm.mjs +12 -0
- package/templates/starter/node_modules/pino/test/esm/index.test.js +34 -0
- package/templates/starter/node_modules/pino/test/esm/named-exports.mjs +27 -0
- package/templates/starter/node_modules/pino/test/exit.test.js +77 -0
- package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/basic.js +9 -0
- package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/destination.js +10 -0
- package/templates/starter/node_modules/pino/test/fixtures/broken-pipe/syncfalse.js +12 -0
- package/templates/starter/node_modules/pino/test/fixtures/console-transport.js +13 -0
- package/templates/starter/node_modules/pino/test/fixtures/crashing-transport.js +13 -0
- package/templates/starter/node_modules/pino/test/fixtures/default-exit.js +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/destination-exit.js +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/index.js +13 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/14-files.js +3 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/2-files.js +3 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file1.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file10.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file11.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file12.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file13.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file14.js +11 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file2.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file3.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file4.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file5.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file6.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file7.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file8.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/eval/node_modules/file9.js +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/noop-transport.js +10 -0
- package/templates/starter/node_modules/pino/test/fixtures/pretty/null-prototype.js +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/stdout-hack-protection.js +11 -0
- package/templates/starter/node_modules/pino/test/fixtures/syncfalse-child.js +6 -0
- package/templates/starter/node_modules/pino/test/fixtures/syncfalse-exit.js +9 -0
- package/templates/starter/node_modules/pino/test/fixtures/syncfalse-flush-exit.js +10 -0
- package/templates/starter/node_modules/pino/test/fixtures/syncfalse.js +6 -0
- package/templates/starter/node_modules/pino/test/fixtures/syntax-error-esm.mjs +2 -0
- package/templates/starter/node_modules/pino/test/fixtures/to-file-transport-with-transform.js +20 -0
- package/templates/starter/node_modules/pino/test/fixtures/to-file-transport.js +13 -0
- package/templates/starter/node_modules/pino/test/fixtures/to-file-transport.mjs +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport/index.js +12 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport/package.json +5 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-exit-immediately.js +11 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-exit-on-ready.js +12 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-main.js +9 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-many-lines.js +29 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-string-stdout.js +9 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-transform.js +21 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-uses-pino-config.js +33 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-with-on-exit.js +12 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-worker-data.js +19 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-worker.js +15 -0
- package/templates/starter/node_modules/pino/test/fixtures/transport-wrong-export-type.js +3 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/to-file-transport.ts +11 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transpile.cjs +36 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-immediately.ts +10 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-main.ts +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-string-stdout.ts +8 -0
- package/templates/starter/node_modules/pino/test/fixtures/ts/transport-worker.ts +14 -0
- package/templates/starter/node_modules/pino/test/formatters.test.js +355 -0
- package/templates/starter/node_modules/pino/test/helper.d.ts +4 -0
- package/templates/starter/node_modules/pino/test/helper.js +128 -0
- package/templates/starter/node_modules/pino/test/hooks.test.js +118 -0
- package/templates/starter/node_modules/pino/test/http.test.js +242 -0
- package/templates/starter/node_modules/pino/test/internals/version.test.js +15 -0
- package/templates/starter/node_modules/pino/test/is-level-enabled.test.js +185 -0
- package/templates/starter/node_modules/pino/test/jest/basic.spec.js +10 -0
- package/templates/starter/node_modules/pino/test/levels.test.js +772 -0
- package/templates/starter/node_modules/pino/test/metadata.test.js +106 -0
- package/templates/starter/node_modules/pino/test/mixin-merge-strategy.test.js +55 -0
- package/templates/starter/node_modules/pino/test/mixin.test.js +218 -0
- package/templates/starter/node_modules/pino/test/multistream.test.js +723 -0
- package/templates/starter/node_modules/pino/test/pkg/index.js +46 -0
- package/templates/starter/node_modules/pino/test/pkg/pkg.config.json +16 -0
- package/templates/starter/node_modules/pino/test/pkg/pkg.test.js +58 -0
- package/templates/starter/node_modules/pino/test/redact.test.js +847 -0
- package/templates/starter/node_modules/pino/test/serializers.test.js +253 -0
- package/templates/starter/node_modules/pino/test/sinon-child-logger.test.js +75 -0
- package/templates/starter/node_modules/pino/test/stdout-protection.test.js +39 -0
- package/templates/starter/node_modules/pino/test/syncfalse.test.js +188 -0
- package/templates/starter/node_modules/pino/test/timestamp-nano.test.js +35 -0
- package/templates/starter/node_modules/pino/test/timestamp.test.js +122 -0
- package/templates/starter/node_modules/pino/test/transport/big.test.js +43 -0
- package/templates/starter/node_modules/pino/test/transport/bundlers-support.test.js +97 -0
- package/templates/starter/node_modules/pino/test/transport/caller.test.js +23 -0
- package/templates/starter/node_modules/pino/test/transport/core.test.js +643 -0
- package/templates/starter/node_modules/pino/test/transport/core.test.ts +236 -0
- package/templates/starter/node_modules/pino/test/transport/core.transpiled.test.ts +112 -0
- package/templates/starter/node_modules/pino/test/transport/crash.test.js +34 -0
- package/templates/starter/node_modules/pino/test/transport/module-link.test.js +239 -0
- package/templates/starter/node_modules/pino/test/transport/pipeline.test.js +135 -0
- package/templates/starter/node_modules/pino/test/transport/repl.test.js +14 -0
- package/templates/starter/node_modules/pino/test/transport/syncTrue.test.js +55 -0
- package/templates/starter/node_modules/pino/test/transport/syncfalse.test.js +68 -0
- package/templates/starter/node_modules/pino/test/transport/targets.test.js +44 -0
- package/templates/starter/node_modules/pino/test/transport/uses-pino-config.test.js +167 -0
- package/templates/starter/node_modules/pino/test/transport-stream.test.js +26 -0
- package/templates/starter/node_modules/pino/test/types/pino-import.test-d.cts +29 -0
- package/templates/starter/node_modules/pino/test/types/pino-multistream.test-d.ts +28 -0
- package/templates/starter/node_modules/pino/test/types/pino-top-export.test-d.ts +36 -0
- package/templates/starter/node_modules/pino/test/types/pino-transport.test-d.ts +145 -0
- package/templates/starter/node_modules/pino/test/types/pino-type-only.test-d.ts +66 -0
- package/templates/starter/node_modules/pino/test/types/pino.test-d.ts +585 -0
- package/templates/starter/node_modules/pino/test/types/pino.ts +90 -0
- package/templates/starter/node_modules/pino/tsconfig.json +14 -0
- package/templates/starter/node_modules/pino-abstract-transport/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/pino-abstract-transport/.github/workflows/ci.yml +97 -0
- package/templates/starter/node_modules/pino-abstract-transport/.husky/pre-commit +4 -0
- package/templates/starter/node_modules/pino-abstract-transport/LICENSE +21 -0
- package/templates/starter/node_modules/pino-abstract-transport/README.md +172 -0
- package/templates/starter/node_modules/pino-abstract-transport/index.d.ts +122 -0
- package/templates/starter/node_modules/pino-abstract-transport/index.js +128 -0
- package/templates/starter/node_modules/pino-abstract-transport/package.json +40 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/base.test.js +445 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-async-iteration.js +22 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-on-data.js +22 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/transport-transform.js +24 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/fixtures/worker-pipeline.js +15 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/types/index.test-d.ts +31 -0
- package/templates/starter/node_modules/pino-abstract-transport/test/worker.test.js +357 -0
- package/templates/starter/node_modules/pino-std-serializers/.editorconfig +13 -0
- package/templates/starter/node_modules/pino-std-serializers/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/pino-std-serializers/.github/workflows/ci.yml +81 -0
- package/templates/starter/node_modules/pino-std-serializers/LICENSE +7 -0
- package/templates/starter/node_modules/pino-std-serializers/Readme.md +182 -0
- package/templates/starter/node_modules/pino-std-serializers/eslint.config.js +7 -0
- package/templates/starter/node_modules/pino-std-serializers/index.d.ts +145 -0
- package/templates/starter/node_modules/pino-std-serializers/index.js +36 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/err-helpers.js +118 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/err-proto.js +48 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/err-with-cause.js +48 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/err.js +45 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/req.js +100 -0
- package/templates/starter/node_modules/pino-std-serializers/lib/res.js +47 -0
- package/templates/starter/node_modules/pino-std-serializers/package.json +42 -0
- package/templates/starter/node_modules/pino-std-serializers/test/err-with-cause.test.js +187 -0
- package/templates/starter/node_modules/pino-std-serializers/test/err.test.js +200 -0
- package/templates/starter/node_modules/pino-std-serializers/test/req.test.js +477 -0
- package/templates/starter/node_modules/pino-std-serializers/test/res.test.js +120 -0
- package/templates/starter/node_modules/pino-std-serializers/test/types/index.test-d.ts +71 -0
- package/templates/starter/node_modules/pino-std-serializers/tsconfig.json +13 -0
- package/templates/starter/node_modules/preact/LICENSE +21 -0
- package/templates/starter/node_modules/preact/README.md +188 -0
- package/templates/starter/node_modules/preact/compat/client.js +19 -0
- package/templates/starter/node_modules/preact/compat/client.mjs +22 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.js +2 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.js.map +1 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.mjs +2 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.module.js +2 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.module.js.map +1 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.umd.js +2 -0
- package/templates/starter/node_modules/preact/compat/dist/compat.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/compat/jsx-dev-runtime.js +3 -0
- package/templates/starter/node_modules/preact/compat/jsx-dev-runtime.mjs +3 -0
- package/templates/starter/node_modules/preact/compat/jsx-runtime.js +3 -0
- package/templates/starter/node_modules/preact/compat/jsx-runtime.mjs +3 -0
- package/templates/starter/node_modules/preact/compat/package.json +50 -0
- package/templates/starter/node_modules/preact/compat/scheduler.js +15 -0
- package/templates/starter/node_modules/preact/compat/scheduler.mjs +23 -0
- package/templates/starter/node_modules/preact/compat/server.browser.js +4 -0
- package/templates/starter/node_modules/preact/compat/server.js +15 -0
- package/templates/starter/node_modules/preact/compat/server.mjs +4 -0
- package/templates/starter/node_modules/preact/compat/src/Children.js +21 -0
- package/templates/starter/node_modules/preact/compat/src/PureComponent.js +15 -0
- package/templates/starter/node_modules/preact/compat/src/forwardRef.js +44 -0
- package/templates/starter/node_modules/preact/compat/src/index.d.ts +175 -0
- package/templates/starter/node_modules/preact/compat/src/index.js +246 -0
- package/templates/starter/node_modules/preact/compat/src/internal.d.ts +47 -0
- package/templates/starter/node_modules/preact/compat/src/memo.js +34 -0
- package/templates/starter/node_modules/preact/compat/src/portals.js +82 -0
- package/templates/starter/node_modules/preact/compat/src/render.js +238 -0
- package/templates/starter/node_modules/preact/compat/src/suspense-list.d.ts +14 -0
- package/templates/starter/node_modules/preact/compat/src/suspense-list.js +126 -0
- package/templates/starter/node_modules/preact/compat/src/suspense.d.ts +15 -0
- package/templates/starter/node_modules/preact/compat/src/suspense.js +270 -0
- package/templates/starter/node_modules/preact/compat/src/util.js +38 -0
- package/templates/starter/node_modules/preact/compat/test-utils.js +1 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.js +2 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.js.map +1 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.mjs +2 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.module.js +2 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.module.js.map +1 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.umd.js +2 -0
- package/templates/starter/node_modules/preact/debug/dist/debug.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/debug/package.json +26 -0
- package/templates/starter/node_modules/preact/debug/src/check-props.js +54 -0
- package/templates/starter/node_modules/preact/debug/src/component-stack.js +146 -0
- package/templates/starter/node_modules/preact/debug/src/constants.js +3 -0
- package/templates/starter/node_modules/preact/debug/src/debug.js +437 -0
- package/templates/starter/node_modules/preact/debug/src/index.d.ts +4 -0
- package/templates/starter/node_modules/preact/debug/src/index.js +6 -0
- package/templates/starter/node_modules/preact/debug/src/internal.d.ts +82 -0
- package/templates/starter/node_modules/preact/debug/src/util.js +11 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.js +2 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.js.map +1 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.mjs +2 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.module.js +2 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.module.js.map +1 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.umd.js +2 -0
- package/templates/starter/node_modules/preact/devtools/dist/devtools.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/devtools/package.json +25 -0
- package/templates/starter/node_modules/preact/devtools/src/devtools.js +10 -0
- package/templates/starter/node_modules/preact/devtools/src/index.d.ts +8 -0
- package/templates/starter/node_modules/preact/devtools/src/index.js +15 -0
- package/templates/starter/node_modules/preact/dist/preact.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.js.map +1 -0
- package/templates/starter/node_modules/preact/dist/preact.min.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.min.js.map +1 -0
- package/templates/starter/node_modules/preact/dist/preact.min.module.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.min.module.js.map +1 -0
- package/templates/starter/node_modules/preact/dist/preact.min.umd.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.min.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/dist/preact.mjs +2 -0
- package/templates/starter/node_modules/preact/dist/preact.module.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.module.js.map +1 -0
- package/templates/starter/node_modules/preact/dist/preact.umd.js +2 -0
- package/templates/starter/node_modules/preact/dist/preact.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.js +2 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.js.map +1 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.mjs +2 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.module.js +2 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.module.js.map +1 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.umd.js +2 -0
- package/templates/starter/node_modules/preact/hooks/dist/hooks.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/hooks/package.json +35 -0
- package/templates/starter/node_modules/preact/hooks/src/index.d.ts +141 -0
- package/templates/starter/node_modules/preact/hooks/src/index.js +486 -0
- package/templates/starter/node_modules/preact/hooks/src/internal.d.ts +85 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.js +2 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.js.map +1 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs +2 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js +2 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.module.js.map +1 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js +2 -0
- package/templates/starter/node_modules/preact/jsx-runtime/dist/jsxRuntime.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/jsx-runtime/package.json +28 -0
- package/templates/starter/node_modules/preact/jsx-runtime/src/index.d.ts +50 -0
- package/templates/starter/node_modules/preact/jsx-runtime/src/index.js +77 -0
- package/templates/starter/node_modules/preact/package.json +309 -0
- package/templates/starter/node_modules/preact/src/cjs.js +3 -0
- package/templates/starter/node_modules/preact/src/clone-element.js +34 -0
- package/templates/starter/node_modules/preact/src/component.js +217 -0
- package/templates/starter/node_modules/preact/src/constants.js +3 -0
- package/templates/starter/node_modules/preact/src/create-context.js +68 -0
- package/templates/starter/node_modules/preact/src/create-element.js +98 -0
- package/templates/starter/node_modules/preact/src/diff/catch-error.js +40 -0
- package/templates/starter/node_modules/preact/src/diff/children.js +317 -0
- package/templates/starter/node_modules/preact/src/diff/index.js +555 -0
- package/templates/starter/node_modules/preact/src/diff/props.js +155 -0
- package/templates/starter/node_modules/preact/src/index.d.ts +374 -0
- package/templates/starter/node_modules/preact/src/index.js +13 -0
- package/templates/starter/node_modules/preact/src/internal.d.ts +156 -0
- package/templates/starter/node_modules/preact/src/jsx.d.ts +1095 -0
- package/templates/starter/node_modules/preact/src/options.js +16 -0
- package/templates/starter/node_modules/preact/src/render.js +75 -0
- package/templates/starter/node_modules/preact/src/util.js +27 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.js +2 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.js.map +1 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.mjs +2 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.module.js +2 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.module.js.map +1 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.umd.js +2 -0
- package/templates/starter/node_modules/preact/test-utils/dist/testUtils.umd.js.map +1 -0
- package/templates/starter/node_modules/preact/test-utils/package.json +28 -0
- package/templates/starter/node_modules/preact/test-utils/src/index.d.ts +3 -0
- package/templates/starter/node_modules/preact/test-utils/src/index.js +118 -0
- package/templates/starter/node_modules/preact-render-to-string/LICENSE +21 -0
- package/templates/starter/node_modules/preact-render-to-string/README.md +102 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/commonjs.js +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/commonjs.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.d.ts +16 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.js +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.mjs +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.module.js +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/index.module.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx-entry.js +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx-entry.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.d.ts +13 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.js +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.mjs +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.modern.js +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.modern.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.module.js +2 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/jsx.module.js.map +1 -0
- package/templates/starter/node_modules/preact-render-to-string/dist/preact-render-to-string-tests.d.ts +1 -0
- package/templates/starter/node_modules/preact-render-to-string/jsx.js +1 -0
- package/templates/starter/node_modules/preact-render-to-string/package.json +148 -0
- package/templates/starter/node_modules/preact-render-to-string/src/constants.js +14 -0
- package/templates/starter/node_modules/preact-render-to-string/src/index.d.ts +16 -0
- package/templates/starter/node_modules/preact-render-to-string/src/index.js +366 -0
- package/templates/starter/node_modules/preact-render-to-string/src/jsx.d.ts +13 -0
- package/templates/starter/node_modules/preact-render-to-string/src/jsx.js +76 -0
- package/templates/starter/node_modules/preact-render-to-string/src/polyfills.js +8 -0
- package/templates/starter/node_modules/preact-render-to-string/src/preact-render-to-string-tests.d.ts +1 -0
- package/templates/starter/node_modules/preact-render-to-string/src/pretty.js +385 -0
- package/templates/starter/node_modules/preact-render-to-string/src/util.js +125 -0
- package/templates/starter/node_modules/preact-render-to-string/typings.json +5 -0
- package/templates/starter/node_modules/pretty-format/LICENSE.md +15 -0
- package/templates/starter/node_modules/pretty-format/README.md +94 -0
- package/templates/starter/node_modules/pretty-format/index.js +343 -0
- package/templates/starter/node_modules/pretty-format/package.json +26 -0
- package/templates/starter/node_modules/pretty-format/plugins/ReactElement.js +74 -0
- package/templates/starter/node_modules/pretty-format/plugins/ReactTestComponent.js +58 -0
- package/templates/starter/node_modules/pretty-format/printString.js +7 -0
- package/templates/starter/node_modules/process-warning/.gitattributes +2 -0
- package/templates/starter/node_modules/process-warning/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/process-warning/.github/workflows/ci.yml +22 -0
- package/templates/starter/node_modules/process-warning/LICENSE +21 -0
- package/templates/starter/node_modules/process-warning/README.md +118 -0
- package/templates/starter/node_modules/process-warning/benchmarks/warn.js +25 -0
- package/templates/starter/node_modules/process-warning/eslint.config.js +6 -0
- package/templates/starter/node_modules/process-warning/examples/example.js +11 -0
- package/templates/starter/node_modules/process-warning/index.js +124 -0
- package/templates/starter/node_modules/process-warning/package.json +73 -0
- package/templates/starter/node_modules/process-warning/test/emit-interpolated-string.test.js +34 -0
- package/templates/starter/node_modules/process-warning/test/emit-once-only.test.js +33 -0
- package/templates/starter/node_modules/process-warning/test/emit-reset.test.js +40 -0
- package/templates/starter/node_modules/process-warning/test/emit-set.test.js +35 -0
- package/templates/starter/node_modules/process-warning/test/emit-unlimited.test.js +42 -0
- package/templates/starter/node_modules/process-warning/test/index.test.js +99 -0
- package/templates/starter/node_modules/process-warning/test/issue-88.test.js +38 -0
- package/templates/starter/node_modules/process-warning/test/jest.test.js +24 -0
- package/templates/starter/node_modules/process-warning/test/no-warnings.test.js +80 -0
- package/templates/starter/node_modules/process-warning/test/promise.js +10 -0
- package/templates/starter/node_modules/process-warning/types/index.d.ts +37 -0
- package/templates/starter/node_modules/process-warning/types/index.test-d.ts +36 -0
- package/templates/starter/node_modules/quick-format-unescaped/.github/workflows/ci.yml +21 -0
- package/templates/starter/node_modules/quick-format-unescaped/LICENSE +21 -0
- package/templates/starter/node_modules/quick-format-unescaped/benchmark.js +24 -0
- package/templates/starter/node_modules/quick-format-unescaped/index.js +109 -0
- package/templates/starter/node_modules/quick-format-unescaped/package.json +29 -0
- package/templates/starter/node_modules/quick-format-unescaped/readme.md +66 -0
- package/templates/starter/node_modules/quick-format-unescaped/test/index.js +136 -0
- package/templates/starter/node_modules/react/LICENSE +21 -0
- package/templates/starter/node_modules/react/README.md +37 -0
- package/templates/starter/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/templates/starter/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/templates/starter/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/templates/starter/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/templates/starter/node_modules/react/cjs/react.development.js +1284 -0
- package/templates/starter/node_modules/react/cjs/react.production.js +542 -0
- package/templates/starter/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/templates/starter/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/templates/starter/node_modules/react/compiler-runtime.js +14 -0
- package/templates/starter/node_modules/react/index.js +7 -0
- package/templates/starter/node_modules/react/jsx-dev-runtime.js +7 -0
- package/templates/starter/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/templates/starter/node_modules/react/jsx-runtime.js +7 -0
- package/templates/starter/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/templates/starter/node_modules/react/package.json +51 -0
- package/templates/starter/node_modules/react/react.react-server.js +7 -0
- package/templates/starter/node_modules/real-require/LICENSE.md +21 -0
- package/templates/starter/node_modules/real-require/README.md +51 -0
- package/templates/starter/node_modules/real-require/package.json +49 -0
- package/templates/starter/node_modules/real-require/src/index.js +14 -0
- package/templates/starter/node_modules/safe-stable-stringify/LICENSE +21 -0
- package/templates/starter/node_modules/safe-stable-stringify/esm/package.json +4 -0
- package/templates/starter/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
- package/templates/starter/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
- package/templates/starter/node_modules/safe-stable-stringify/index.d.ts +22 -0
- package/templates/starter/node_modules/safe-stable-stringify/index.js +625 -0
- package/templates/starter/node_modules/safe-stable-stringify/package.json +65 -0
- package/templates/starter/node_modules/safe-stable-stringify/readme.md +179 -0
- package/templates/starter/node_modules/sonic-boom/.eslintignore +2 -0
- package/templates/starter/node_modules/sonic-boom/.taprc +3 -0
- package/templates/starter/node_modules/sonic-boom/LICENSE +21 -0
- package/templates/starter/node_modules/sonic-boom/README.md +152 -0
- package/templates/starter/node_modules/sonic-boom/bench.js +98 -0
- package/templates/starter/node_modules/sonic-boom/check.js +18 -0
- package/templates/starter/node_modules/sonic-boom/example.js +8 -0
- package/templates/starter/node_modules/sonic-boom/fixtures/firehose.js +22 -0
- package/templates/starter/node_modules/sonic-boom/index.js +719 -0
- package/templates/starter/node_modules/sonic-boom/package.json +52 -0
- package/templates/starter/node_modules/sonic-boom/test/destroy.test.js +49 -0
- package/templates/starter/node_modules/sonic-boom/test/end.test.js +98 -0
- package/templates/starter/node_modules/sonic-boom/test/flush-sync.test.js +140 -0
- package/templates/starter/node_modules/sonic-boom/test/flush.test.js +419 -0
- package/templates/starter/node_modules/sonic-boom/test/fsync.test.js +63 -0
- package/templates/starter/node_modules/sonic-boom/test/helper.js +42 -0
- package/templates/starter/node_modules/sonic-boom/test/minlength.test.js +35 -0
- package/templates/starter/node_modules/sonic-boom/test/mode.test.js +116 -0
- package/templates/starter/node_modules/sonic-boom/test/periodicflush.test.js +61 -0
- package/templates/starter/node_modules/sonic-boom/test/reopen.test.js +239 -0
- package/templates/starter/node_modules/sonic-boom/test/retry.test.js +414 -0
- package/templates/starter/node_modules/sonic-boom/test/sync.test.js +261 -0
- package/templates/starter/node_modules/sonic-boom/test/write.test.js +465 -0
- package/templates/starter/node_modules/sonic-boom/types/index.d.ts +63 -0
- package/templates/starter/node_modules/sonic-boom/types/tests/test.ts +4 -0
- package/templates/starter/node_modules/split2/LICENSE +13 -0
- package/templates/starter/node_modules/split2/README.md +85 -0
- package/templates/starter/node_modules/split2/bench.js +27 -0
- package/templates/starter/node_modules/split2/index.js +141 -0
- package/templates/starter/node_modules/split2/package.json +39 -0
- package/templates/starter/node_modules/split2/test.js +409 -0
- package/templates/starter/node_modules/thread-stream/.github/dependabot.yml +13 -0
- package/templates/starter/node_modules/thread-stream/.github/workflows/ci.yml +94 -0
- package/templates/starter/node_modules/thread-stream/.husky/pre-commit +4 -0
- package/templates/starter/node_modules/thread-stream/.taprc +4 -0
- package/templates/starter/node_modules/thread-stream/LICENSE +21 -0
- package/templates/starter/node_modules/thread-stream/README.md +135 -0
- package/templates/starter/node_modules/thread-stream/bench.js +85 -0
- package/templates/starter/node_modules/thread-stream/index.d.ts +92 -0
- package/templates/starter/node_modules/thread-stream/index.js +537 -0
- package/templates/starter/node_modules/thread-stream/lib/indexes.js +9 -0
- package/templates/starter/node_modules/thread-stream/lib/wait.js +61 -0
- package/templates/starter/node_modules/thread-stream/lib/worker.js +174 -0
- package/templates/starter/node_modules/thread-stream/package.json +57 -0
- package/templates/starter/node_modules/thread-stream/test/base.test.js +285 -0
- package/templates/starter/node_modules/thread-stream/test/bench.test.js +38 -0
- package/templates/starter/node_modules/thread-stream/test/bundlers.test.js +60 -0
- package/templates/starter/node_modules/thread-stream/test/close-on-gc.js +37 -0
- package/templates/starter/node_modules/thread-stream/test/commonjs-fallback.test.js +80 -0
- package/templates/starter/node_modules/thread-stream/test/context.test.js +21 -0
- package/templates/starter/node_modules/thread-stream/test/create-and-exit.js +16 -0
- package/templates/starter/node_modules/thread-stream/test/custom-worker.js +9 -0
- package/templates/starter/node_modules/thread-stream/test/dir with spaces/test-package.zip +0 -0
- package/templates/starter/node_modules/thread-stream/test/emit-event.js +22 -0
- package/templates/starter/node_modules/thread-stream/test/end.test.js +61 -0
- package/templates/starter/node_modules/thread-stream/test/error.js +14 -0
- package/templates/starter/node_modules/thread-stream/test/esm.test.mjs +47 -0
- package/templates/starter/node_modules/thread-stream/test/event.test.js +23 -0
- package/templates/starter/node_modules/thread-stream/test/exit.js +14 -0
- package/templates/starter/node_modules/thread-stream/test/get-context.js +22 -0
- package/templates/starter/node_modules/thread-stream/test/helper.d.ts +1 -0
- package/templates/starter/node_modules/thread-stream/test/helper.js +35 -0
- package/templates/starter/node_modules/thread-stream/test/indexes.test.js +11 -0
- package/templates/starter/node_modules/thread-stream/test/multibyte-chars.test.mjs +74 -0
- package/templates/starter/node_modules/thread-stream/test/never-drain.test.js +57 -0
- package/templates/starter/node_modules/thread-stream/test/on-message.js +18 -0
- package/templates/starter/node_modules/thread-stream/test/pkg/index.js +37 -0
- package/templates/starter/node_modules/thread-stream/test/pkg/pkg.config.json +15 -0
- package/templates/starter/node_modules/thread-stream/test/pkg/pkg.test.js +46 -0
- package/templates/starter/node_modules/thread-stream/test/port.js +16 -0
- package/templates/starter/node_modules/thread-stream/test/post-message.test.js +24 -0
- package/templates/starter/node_modules/thread-stream/test/string-limit-2.test.js +41 -0
- package/templates/starter/node_modules/thread-stream/test/string-limit.test.js +42 -0
- package/templates/starter/node_modules/thread-stream/test/syntax-error.mjs +2 -0
- package/templates/starter/node_modules/thread-stream/test/thread-management.test.js +121 -0
- package/templates/starter/node_modules/thread-stream/test/to-file-on-destroy.js +23 -0
- package/templates/starter/node_modules/thread-stream/test/to-file-on-final.js +24 -0
- package/templates/starter/node_modules/thread-stream/test/to-file.js +12 -0
- package/templates/starter/node_modules/thread-stream/test/to-file.mjs +8 -0
- package/templates/starter/node_modules/thread-stream/test/to-next.js +9 -0
- package/templates/starter/node_modules/thread-stream/test/transpiled.test.js +30 -0
- package/templates/starter/node_modules/thread-stream/test/ts/to-file.ts +10 -0
- package/templates/starter/node_modules/thread-stream/test/ts/transpile.sh +19 -0
- package/templates/starter/node_modules/thread-stream/test/ts-commonjs-default-export.zip +0 -0
- package/templates/starter/node_modules/thread-stream/test/ts.test.ts +33 -0
- package/templates/starter/node_modules/thread-stream/test/uncaughtException.js +21 -0
- package/templates/starter/node_modules/thread-stream/test/unhandledRejection.js +21 -0
- package/templates/starter/node_modules/thread-stream/test/yarnrc.yml +7 -0
- package/templates/starter/node_modules/thread-stream/tsconfig.json +8 -0
- package/templates/starter/node_modules/undici-types/LICENSE +21 -0
- package/templates/starter/node_modules/undici-types/README.md +6 -0
- package/templates/starter/node_modules/undici-types/agent.d.ts +32 -0
- package/templates/starter/node_modules/undici-types/api.d.ts +43 -0
- package/templates/starter/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/templates/starter/node_modules/undici-types/cache-interceptor.d.ts +172 -0
- package/templates/starter/node_modules/undici-types/cache.d.ts +36 -0
- package/templates/starter/node_modules/undici-types/client-stats.d.ts +15 -0
- package/templates/starter/node_modules/undici-types/client.d.ts +108 -0
- package/templates/starter/node_modules/undici-types/connector.d.ts +34 -0
- package/templates/starter/node_modules/undici-types/content-type.d.ts +21 -0
- package/templates/starter/node_modules/undici-types/cookies.d.ts +30 -0
- package/templates/starter/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
- package/templates/starter/node_modules/undici-types/dispatcher.d.ts +276 -0
- package/templates/starter/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
- package/templates/starter/node_modules/undici-types/errors.d.ts +161 -0
- package/templates/starter/node_modules/undici-types/eventsource.d.ts +66 -0
- package/templates/starter/node_modules/undici-types/fetch.d.ts +211 -0
- package/templates/starter/node_modules/undici-types/formdata.d.ts +108 -0
- package/templates/starter/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/templates/starter/node_modules/undici-types/global-origin.d.ts +7 -0
- package/templates/starter/node_modules/undici-types/h2c-client.d.ts +73 -0
- package/templates/starter/node_modules/undici-types/handlers.d.ts +15 -0
- package/templates/starter/node_modules/undici-types/header.d.ts +160 -0
- package/templates/starter/node_modules/undici-types/index.d.ts +80 -0
- package/templates/starter/node_modules/undici-types/interceptors.d.ts +39 -0
- package/templates/starter/node_modules/undici-types/mock-agent.d.ts +68 -0
- package/templates/starter/node_modules/undici-types/mock-call-history.d.ts +111 -0
- package/templates/starter/node_modules/undici-types/mock-client.d.ts +27 -0
- package/templates/starter/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/templates/starter/node_modules/undici-types/mock-interceptor.d.ts +94 -0
- package/templates/starter/node_modules/undici-types/mock-pool.d.ts +27 -0
- package/templates/starter/node_modules/undici-types/package.json +55 -0
- package/templates/starter/node_modules/undici-types/patch.d.ts +29 -0
- package/templates/starter/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/templates/starter/node_modules/undici-types/pool.d.ts +41 -0
- package/templates/starter/node_modules/undici-types/proxy-agent.d.ts +29 -0
- package/templates/starter/node_modules/undici-types/readable.d.ts +68 -0
- package/templates/starter/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/templates/starter/node_modules/undici-types/retry-handler.d.ts +125 -0
- package/templates/starter/node_modules/undici-types/snapshot-agent.d.ts +109 -0
- package/templates/starter/node_modules/undici-types/util.d.ts +18 -0
- package/templates/starter/node_modules/undici-types/utility.d.ts +7 -0
- package/templates/starter/node_modules/undici-types/webidl.d.ts +341 -0
- package/templates/starter/node_modules/undici-types/websocket.d.ts +186 -0
- package/templates/starter/package.json +7 -7
- package/templates/starter/src/app.controller.spec.ts +6 -9
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* This module contains public types and interfaces of the core package.
|
|
4
|
+
*
|
|
5
|
+
* ## Installation
|
|
6
|
+
*
|
|
7
|
+
* ```bash npm2yarn
|
|
8
|
+
* npm install @auth/core
|
|
9
|
+
* ```
|
|
10
|
+
*
|
|
11
|
+
* You can then import this submodule from `@auth/core/types`.
|
|
12
|
+
*
|
|
13
|
+
* ## Usage
|
|
14
|
+
*
|
|
15
|
+
* Even if you don't use TypeScript, IDEs like VS Code will pick up types to provide you with a better developer experience.
|
|
16
|
+
* While you are typing, you will get suggestions about what certain objects/functions look like,
|
|
17
|
+
* and sometimes links to documentation, examples, and other valuable resources.
|
|
18
|
+
*
|
|
19
|
+
* Generally, you will not need to import types from this module.
|
|
20
|
+
* Mostly when using the `Auth` function and optionally the `AuthConfig` interface,
|
|
21
|
+
* everything inside there will already be typed.
|
|
22
|
+
*
|
|
23
|
+
* :::tip
|
|
24
|
+
* Inside the `Auth` function, you won't need to use a single type from this module.
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* ```ts title=index.ts
|
|
28
|
+
* import { Auth } from "@auth/core"
|
|
29
|
+
*
|
|
30
|
+
* const request = new Request("https://example.com")
|
|
31
|
+
* const response = await Auth(request, {
|
|
32
|
+
* callbacks: {
|
|
33
|
+
* jwt(): JWT { // <-- This is unnecessary!
|
|
34
|
+
* return { foo: "bar" }
|
|
35
|
+
* },
|
|
36
|
+
* session(
|
|
37
|
+
* { session, token }: { session: Session; token: JWT } // <-- This is unnecessary!
|
|
38
|
+
* ) {
|
|
39
|
+
* return session
|
|
40
|
+
* },
|
|
41
|
+
* }
|
|
42
|
+
* })
|
|
43
|
+
* ```
|
|
44
|
+
* :::
|
|
45
|
+
*
|
|
46
|
+
* ## Resources
|
|
47
|
+
*
|
|
48
|
+
* - [TypeScript - The Basics](https://www.typescriptlang.org/docs/handbook/2/basic-types.html)
|
|
49
|
+
* - [Extending built-in types](https://authjs.dev/getting-started/typescript#module-augmentation)
|
|
50
|
+
*
|
|
51
|
+
* @module types
|
|
52
|
+
*/
|
|
53
|
+
import type { CookieSerializeOptions } from "cookie";
|
|
54
|
+
import type { OAuth2TokenEndpointResponse, OpenIDTokenEndpointResponse } from "oauth4webapi";
|
|
55
|
+
import type { Cookie } from "./lib/utils/cookie.js";
|
|
56
|
+
import type { LoggerInstance } from "./lib/utils/logger.js";
|
|
57
|
+
import type { ProviderType } from "./providers/index.js";
|
|
58
|
+
export type { WebAuthnOptionsResponseBody } from "./lib/utils/webauthn-utils.js";
|
|
59
|
+
export type { AuthConfig } from "./index.js";
|
|
60
|
+
export type { LoggerInstance };
|
|
61
|
+
export type Awaitable<T> = T | PromiseLike<T>;
|
|
62
|
+
export type Awaited<T> = T extends Promise<infer U> ? U : T;
|
|
63
|
+
export type SemverString = `v${number}` | `v${number}.${number}` | `v${number}.${number}.${number}`;
|
|
64
|
+
/**
|
|
65
|
+
* Change the theme of the built-in pages.
|
|
66
|
+
*
|
|
67
|
+
* [Documentation](https://authjs.dev/reference/core#theme) |
|
|
68
|
+
* [Pages](https://authjs.dev/guides/pages/signin)
|
|
69
|
+
*/
|
|
70
|
+
export interface Theme {
|
|
71
|
+
colorScheme?: "auto" | "dark" | "light";
|
|
72
|
+
logo?: string;
|
|
73
|
+
brandColor?: string;
|
|
74
|
+
buttonText?: string;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Different tokens returned by OAuth Providers.
|
|
78
|
+
* Some of them are available with different casing,
|
|
79
|
+
* but they refer to the same value.
|
|
80
|
+
*/
|
|
81
|
+
export type TokenSet = Partial<OAuth2TokenEndpointResponse | OpenIDTokenEndpointResponse> & {
|
|
82
|
+
/**
|
|
83
|
+
* Date of when the `access_token` expires in seconds.
|
|
84
|
+
* This value is calculated from the `expires_in` value.
|
|
85
|
+
*
|
|
86
|
+
* @see https://www.ietf.org/rfc/rfc6749.html#section-4.2.2
|
|
87
|
+
*/
|
|
88
|
+
expires_at?: number;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* Usually contains information about the provider being used
|
|
92
|
+
* and also extends `TokenSet`, which is different tokens returned by OAuth Providers.
|
|
93
|
+
*/
|
|
94
|
+
export interface Account extends Partial<OpenIDTokenEndpointResponse> {
|
|
95
|
+
/** Provider's id for this account. Eg.: "google" */
|
|
96
|
+
provider: string;
|
|
97
|
+
/**
|
|
98
|
+
* This value depends on the type of the provider being used to create the account.
|
|
99
|
+
* - oauth/oidc: The OAuth account's id, returned from the `profile()` callback.
|
|
100
|
+
* - email: The user's email address.
|
|
101
|
+
* - credentials: `id` returned from the `authorize()` callback
|
|
102
|
+
*/
|
|
103
|
+
providerAccountId: string;
|
|
104
|
+
/** Provider's type for this account */
|
|
105
|
+
type: ProviderType;
|
|
106
|
+
/**
|
|
107
|
+
* id of the user this account belongs to
|
|
108
|
+
*
|
|
109
|
+
* @see https://authjs.dev/reference/core/adapters#adapteruser
|
|
110
|
+
*/
|
|
111
|
+
userId?: string;
|
|
112
|
+
/**
|
|
113
|
+
* Calculated value based on {@link OAuth2TokenEndpointResponse.expires_in}.
|
|
114
|
+
*
|
|
115
|
+
* It is the absolute timestamp (in seconds) when the {@link OAuth2TokenEndpointResponse.access_token} expires.
|
|
116
|
+
*
|
|
117
|
+
* This value can be used for implementing token rotation together with {@link OAuth2TokenEndpointResponse.refresh_token}.
|
|
118
|
+
*
|
|
119
|
+
* @see https://authjs.dev/guides/refresh-token-rotation#database-strategy
|
|
120
|
+
* @see https://www.rfc-editor.org/rfc/rfc6749#section-5.1
|
|
121
|
+
*/
|
|
122
|
+
expires_at?: number;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* The user info returned from your OAuth provider.
|
|
126
|
+
*
|
|
127
|
+
* @see https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims
|
|
128
|
+
*/
|
|
129
|
+
export interface Profile {
|
|
130
|
+
id?: string | null;
|
|
131
|
+
sub?: string | null;
|
|
132
|
+
name?: string | null;
|
|
133
|
+
given_name?: string | null;
|
|
134
|
+
family_name?: string | null;
|
|
135
|
+
middle_name?: string | null;
|
|
136
|
+
nickname?: string | null;
|
|
137
|
+
preferred_username?: string | null;
|
|
138
|
+
profile?: string | null;
|
|
139
|
+
picture?: string | null | any;
|
|
140
|
+
website?: string | null;
|
|
141
|
+
email?: string | null;
|
|
142
|
+
email_verified?: boolean | null;
|
|
143
|
+
gender?: string | null;
|
|
144
|
+
birthdate?: string | null;
|
|
145
|
+
zoneinfo?: string | null;
|
|
146
|
+
locale?: string | null;
|
|
147
|
+
phone_number?: string | null;
|
|
148
|
+
updated_at?: Date | string | number | null;
|
|
149
|
+
address?: {
|
|
150
|
+
formatted?: string | null;
|
|
151
|
+
street_address?: string | null;
|
|
152
|
+
locality?: string | null;
|
|
153
|
+
region?: string | null;
|
|
154
|
+
postal_code?: string | null;
|
|
155
|
+
country?: string | null;
|
|
156
|
+
} | null;
|
|
157
|
+
[claim: string]: unknown;
|
|
158
|
+
}
|
|
159
|
+
/** [Documentation](https://authjs.dev/reference/core#cookies) */
|
|
160
|
+
export interface CookieOption {
|
|
161
|
+
name: string;
|
|
162
|
+
options: CookieSerializeOptions;
|
|
163
|
+
}
|
|
164
|
+
/** [Documentation](https://authjs.dev/reference/core#cookies) */
|
|
165
|
+
export interface CookiesOptions {
|
|
166
|
+
sessionToken: Partial<CookieOption>;
|
|
167
|
+
callbackUrl: Partial<CookieOption>;
|
|
168
|
+
csrfToken: Partial<CookieOption>;
|
|
169
|
+
pkceCodeVerifier: Partial<CookieOption>;
|
|
170
|
+
state: Partial<CookieOption>;
|
|
171
|
+
nonce: Partial<CookieOption>;
|
|
172
|
+
webauthnChallenge: Partial<CookieOption>;
|
|
173
|
+
}
|
|
174
|
+
/** TODO: Check if all these are used/correct */
|
|
175
|
+
export type ErrorPageParam = "Configuration" | "AccessDenied" | "Verification";
|
|
176
|
+
/** TODO: Check if all these are used/correct */
|
|
177
|
+
export type SignInPageErrorParam = "Signin" | "OAuthSignin" | "OAuthCallbackError" | "OAuthCreateAccount" | "EmailCreateAccount" | "Callback" | "OAuthAccountNotLinked" | "EmailSignin" | "CredentialsSignin" | "SessionRequired";
|
|
178
|
+
export interface PagesOptions {
|
|
179
|
+
/**
|
|
180
|
+
* The path to the sign in page.
|
|
181
|
+
*
|
|
182
|
+
* The optional "error" query parameter is set to
|
|
183
|
+
* one of the {@link SignInPageErrorParam available} values.
|
|
184
|
+
*
|
|
185
|
+
* @default "/signin"
|
|
186
|
+
*/
|
|
187
|
+
signIn: string;
|
|
188
|
+
signOut: string;
|
|
189
|
+
/**
|
|
190
|
+
* The path to the error page.
|
|
191
|
+
*
|
|
192
|
+
* The optional "error" query parameter is set to
|
|
193
|
+
* one of the {@link ErrorPageParam available} values.
|
|
194
|
+
*
|
|
195
|
+
* @default "/error"
|
|
196
|
+
*/
|
|
197
|
+
error: string;
|
|
198
|
+
verifyRequest: string;
|
|
199
|
+
/** If set, new users will be directed here on first sign in */
|
|
200
|
+
newUser: string;
|
|
201
|
+
}
|
|
202
|
+
type ISODateString = string;
|
|
203
|
+
export interface DefaultSession {
|
|
204
|
+
user?: User;
|
|
205
|
+
expires: ISODateString;
|
|
206
|
+
}
|
|
207
|
+
/** The active session of the logged in user. */
|
|
208
|
+
export interface Session extends DefaultSession {
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* The shape of the returned object in the OAuth providers' `profile` callback,
|
|
212
|
+
* available in the `jwt` and `session` callbacks,
|
|
213
|
+
* or the second parameter of the `session` callback, when using a database.
|
|
214
|
+
*/
|
|
215
|
+
export interface User {
|
|
216
|
+
id?: string;
|
|
217
|
+
name?: string | null;
|
|
218
|
+
email?: string | null;
|
|
219
|
+
image?: string | null;
|
|
220
|
+
}
|
|
221
|
+
export interface PublicProvider {
|
|
222
|
+
id: string;
|
|
223
|
+
name: string;
|
|
224
|
+
type: string;
|
|
225
|
+
signinUrl: string;
|
|
226
|
+
callbackUrl: string;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Supported actions by Auth.js. Each action map to a REST API endpoint.
|
|
230
|
+
* Some actions have a `GET` and `POST` variant, depending on if the action
|
|
231
|
+
* changes the state of the server.
|
|
232
|
+
*
|
|
233
|
+
* - **`"callback"`**:
|
|
234
|
+
* - **`GET`**: Handles the callback from an [OAuth provider](https://authjs.dev/reference/core/providers#oauth2configprofile).
|
|
235
|
+
* - **`POST`**: Handles the callback from a [Credentials provider](https://authjs.dev/getting-started/providers/credentials#credentialsconfigcredentialsinputs).
|
|
236
|
+
* - **`"csrf"`**: Returns the raw CSRF token, which is saved in a cookie (encrypted).
|
|
237
|
+
* It is used for CSRF protection, implementing the [double submit cookie](https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html#double-submit-cookie) technique.
|
|
238
|
+
* :::note
|
|
239
|
+
* Some frameworks have built-in CSRF protection and can therefore disable this action. In this case, the corresponding endpoint will return a 404 response. Read more at [`skipCSRFCheck`](https://authjs.dev/reference/core#skipcsrfcheck).
|
|
240
|
+
* _⚠ We don't recommend manually disabling CSRF protection, unless you know what you're doing._
|
|
241
|
+
* :::
|
|
242
|
+
* - **`"error"`**: Renders the built-in error page.
|
|
243
|
+
* - **`"providers"`**: Returns a client-safe list of all configured providers.
|
|
244
|
+
* - **`"session"`**:
|
|
245
|
+
* - **`GET`**: Returns the user's session if it exists, otherwise `null`.
|
|
246
|
+
* - **`POST`**: Updates the user's session and returns the updated session.
|
|
247
|
+
* - **`"signin"`**:
|
|
248
|
+
* - **`GET`**: Renders the built-in sign-in page.
|
|
249
|
+
* - **`POST`**: Initiates the sign-in flow.
|
|
250
|
+
* - **`"signout"`**:
|
|
251
|
+
* - **`GET`**: Renders the built-in sign-out page.
|
|
252
|
+
* - **`POST`**: Initiates the sign-out flow. This will invalidate the user's session (deleting the cookie, and if there is a session in the database, it will be deleted as well).
|
|
253
|
+
* - **`"verify-request"`**: Renders the built-in verification request page.
|
|
254
|
+
* - **`"webauthn-options"`**:
|
|
255
|
+
* - **`GET`**: Returns the options for the WebAuthn authentication and registration flows.
|
|
256
|
+
*/
|
|
257
|
+
export type AuthAction = "callback" | "csrf" | "error" | "providers" | "session" | "signin" | "signout" | "verify-request" | "webauthn-options";
|
|
258
|
+
export interface ResponseInternal<Body extends string | Record<string, any> | any[] | null = any> {
|
|
259
|
+
status?: number;
|
|
260
|
+
headers?: Headers | HeadersInit;
|
|
261
|
+
body?: Body;
|
|
262
|
+
redirect?: string;
|
|
263
|
+
cookies?: Cookie[];
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* A webauthn authenticator.
|
|
267
|
+
* Represents an entity capable of authenticating the account it references,
|
|
268
|
+
* and contains the auhtenticator's credentials and related information.
|
|
269
|
+
*
|
|
270
|
+
* @see https://www.w3.org/TR/webauthn/#authenticator
|
|
271
|
+
*/
|
|
272
|
+
export interface Authenticator {
|
|
273
|
+
/**
|
|
274
|
+
* ID of the user this authenticator belongs to.
|
|
275
|
+
*/
|
|
276
|
+
userId?: string;
|
|
277
|
+
/**
|
|
278
|
+
* The provider account ID connected to the authenticator.
|
|
279
|
+
*/
|
|
280
|
+
providerAccountId: string;
|
|
281
|
+
/**
|
|
282
|
+
* Number of times the authenticator has been used.
|
|
283
|
+
*/
|
|
284
|
+
counter: number;
|
|
285
|
+
/**
|
|
286
|
+
* Whether the client authenticator backed up the credential.
|
|
287
|
+
*/
|
|
288
|
+
credentialBackedUp: boolean;
|
|
289
|
+
/**
|
|
290
|
+
* Base64 encoded credential ID.
|
|
291
|
+
*/
|
|
292
|
+
credentialID: string;
|
|
293
|
+
/**
|
|
294
|
+
* Base64 encoded credential public key.
|
|
295
|
+
*/
|
|
296
|
+
credentialPublicKey: string;
|
|
297
|
+
/**
|
|
298
|
+
* Concatenated transport flags.
|
|
299
|
+
*/
|
|
300
|
+
transports?: string | null;
|
|
301
|
+
/**
|
|
302
|
+
* Device type of the authenticator.
|
|
303
|
+
*/
|
|
304
|
+
credentialDeviceType: string;
|
|
305
|
+
}
|
|
306
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AAEH,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAA;AACpD,OAAO,KAAK,EACV,2BAA2B,EAC3B,2BAA2B,EAC5B,MAAM,cAAc,CAAA;AAIrB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,KAAK,EAKV,YAAY,EACb,MAAM,sBAAsB,CAAA;AAM7B,YAAY,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAA;AAChF,YAAY,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAC5C,YAAY,EAAE,cAAc,EAAE,CAAA;AAC9B,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;AAC7C,MAAM,MAAM,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;AAE3D,MAAM,MAAM,YAAY,GACpB,IAAI,MAAM,EAAE,GACZ,IAAI,MAAM,IAAI,MAAM,EAAE,GACtB,IAAI,MAAM,IAAI,MAAM,IAAI,MAAM,EAAE,CAAA;AAEpC;;;;;GAKG;AACH,MAAM,WAAW,KAAK;IACpB,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IACvC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,OAAO,CAC5B,2BAA2B,GAAG,2BAA2B,CAC1D,GAAG;IACF;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AAED;;;GAGG;AACH,MAAM,WAAW,OAAQ,SAAQ,OAAO,CAAC,2BAA2B,CAAC;IACnE,oDAAoD;IACpD,QAAQ,EAAE,MAAM,CAAA;IAChB;;;;;OAKG;IACH,iBAAiB,EAAE,MAAM,CAAA;IACzB,uCAAuC;IACvC,IAAI,EAAE,YAAY,CAAA;IAClB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;;;;;;;;OASG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED;;;;GAIG;AACH,MAAM,WAAW,OAAO;IACtB,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAClB,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAClC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACvB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,GAAG,CAAA;IAC7B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,cAAc,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;IAC/B,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACzB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC5B,UAAU,CAAC,EAAE,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC1C,OAAO,CAAC,EAAE;QACR,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QACzB,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QAC9B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QACxB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QACtB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QAC3B,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KACxB,GAAG,IAAI,CAAA;IACR,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAA;CACzB;AAED,iEAAiE;AACjE,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,sBAAsB,CAAA;CAChC;AAED,iEAAiE;AACjE,MAAM,WAAW,cAAc;IAC7B,YAAY,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IACnC,WAAW,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IAClC,SAAS,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IAChC,gBAAgB,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IACvC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IAC5B,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;IAC5B,iBAAiB,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;CACzC;AAED,gDAAgD;AAChD,MAAM,MAAM,cAAc,GAAG,eAAe,GAAG,cAAc,GAAG,cAAc,CAAA;AAE9E,gDAAgD;AAChD,MAAM,MAAM,oBAAoB,GAC5B,QAAQ,GACR,aAAa,GACb,oBAAoB,GACpB,oBAAoB,GACpB,oBAAoB,GACpB,UAAU,GACV,uBAAuB,GACvB,aAAa,GACb,mBAAmB,GACnB,iBAAiB,CAAA;AAErB,MAAM,WAAW,YAAY;IAC3B;;;;;;;OAOG;IACH,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf;;;;;;;OAOG;IACH,KAAK,EAAE,MAAM,CAAA;IACb,aAAa,EAAE,MAAM,CAAA;IACrB,+DAA+D;IAC/D,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,KAAK,aAAa,GAAG,MAAM,CAAA;AAE3B,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,OAAO,EAAE,aAAa,CAAA;CACvB;AAED,gDAAgD;AAChD,MAAM,WAAW,OAAQ,SAAQ,cAAc;CAAG;AAElD;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACnB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CACtB;AAqBD,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;CACpB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAM,MAAM,UAAU,GAClB,UAAU,GACV,MAAM,GACN,OAAO,GACP,WAAW,GACX,SAAS,GACT,QAAQ,GACR,SAAS,GACT,gBAAgB,GAChB,kBAAkB,CAAA;AAgBtB,MAAM,WAAW,gBAAgB,CAC/B,IAAI,SAAS,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,GAAG,EAAE,GAAG,IAAI,GAAG,GAAG;IAE9D,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,GAAG,WAAW,CAAA;IAC/B,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;CACnB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAA;IACzB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAA;IAC3B;;OAEG;IACH,YAAY,EAAE,MAAM,CAAA;IACpB;;OAEG;IACH,mBAAmB,EAAE,MAAM,CAAA;IAC3B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B;;OAEG;IACH,oBAAoB,EAAE,MAAM,CAAA;CAC7B"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* This module contains public types and interfaces of the core package.
|
|
4
|
+
*
|
|
5
|
+
* ## Installation
|
|
6
|
+
*
|
|
7
|
+
* ```bash npm2yarn
|
|
8
|
+
* npm install @auth/core
|
|
9
|
+
* ```
|
|
10
|
+
*
|
|
11
|
+
* You can then import this submodule from `@auth/core/types`.
|
|
12
|
+
*
|
|
13
|
+
* ## Usage
|
|
14
|
+
*
|
|
15
|
+
* Even if you don't use TypeScript, IDEs like VS Code will pick up types to provide you with a better developer experience.
|
|
16
|
+
* While you are typing, you will get suggestions about what certain objects/functions look like,
|
|
17
|
+
* and sometimes links to documentation, examples, and other valuable resources.
|
|
18
|
+
*
|
|
19
|
+
* Generally, you will not need to import types from this module.
|
|
20
|
+
* Mostly when using the `Auth` function and optionally the `AuthConfig` interface,
|
|
21
|
+
* everything inside there will already be typed.
|
|
22
|
+
*
|
|
23
|
+
* :::tip
|
|
24
|
+
* Inside the `Auth` function, you won't need to use a single type from this module.
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* ```ts title=index.ts
|
|
28
|
+
* import { Auth } from "@auth/core"
|
|
29
|
+
*
|
|
30
|
+
* const request = new Request("https://example.com")
|
|
31
|
+
* const response = await Auth(request, {
|
|
32
|
+
* callbacks: {
|
|
33
|
+
* jwt(): JWT { // <-- This is unnecessary!
|
|
34
|
+
* return { foo: "bar" }
|
|
35
|
+
* },
|
|
36
|
+
* session(
|
|
37
|
+
* { session, token }: { session: Session; token: JWT } // <-- This is unnecessary!
|
|
38
|
+
* ) {
|
|
39
|
+
* return session
|
|
40
|
+
* },
|
|
41
|
+
* }
|
|
42
|
+
* })
|
|
43
|
+
* ```
|
|
44
|
+
* :::
|
|
45
|
+
*
|
|
46
|
+
* ## Resources
|
|
47
|
+
*
|
|
48
|
+
* - [TypeScript - The Basics](https://www.typescriptlang.org/docs/handbook/2/basic-types.html)
|
|
49
|
+
* - [Extending built-in types](https://authjs.dev/getting-started/typescript#module-augmentation)
|
|
50
|
+
*
|
|
51
|
+
* @module types
|
|
52
|
+
*/
|
|
53
|
+
export {};
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# @hono/auth-js
|
|
2
|
+
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1324](https://github.com/honojs/middleware/pull/1324) [`d89fed7eecfa151c18b0a8cf95dae1dfe83dfec2`](https://github.com/honojs/middleware/commit/d89fed7eecfa151c18b0a8cf95dae1dfe83dfec2) Thanks [@jamestalmage](https://github.com/jamestalmage)! - Allow async authjs Config
|
|
8
|
+
|
|
9
|
+
## 1.0.17
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1210](https://github.com/honojs/middleware/pull/1210) [`0758fd0af1f213131d0894299e5bec716d284580`](https://github.com/honojs/middleware/commit/0758fd0af1f213131d0894299e5bec716d284580) Thanks [@BarryThePenguin](https://github.com/BarryThePenguin)! - Add explicit return types
|
|
14
|
+
|
|
15
|
+
## 1.0.16
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#1170](https://github.com/honojs/middleware/pull/1170) [`7585969171ad4876e7620c7369eb9b638849d0eb`](https://github.com/honojs/middleware/commit/7585969171ad4876e7620c7369eb9b638849d0eb) Thanks [@hambergerpls](https://github.com/hambergerpls)! - fix(auth-js): use HonoRequest.blob() instead of HonoRequest.raw.body()
|
|
20
|
+
|
|
21
|
+
## 1.0.15
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#813](https://github.com/honojs/middleware/pull/813) [`b1c812e50c9388cf7cda893e7c554cedeb24d803`](https://github.com/honojs/middleware/commit/b1c812e50c9388cf7cda893e7c554cedeb24d803) Thanks [@divyam234](https://github.com/divyam234)! - add react 19 in peer dependencies
|
|
26
|
+
|
|
27
|
+
## 1.0.14
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- [#806](https://github.com/honojs/middleware/pull/806) [`9a2cf452c7000aee4193502da755b2c4352b077d`](https://github.com/honojs/middleware/commit/9a2cf452c7000aee4193502da755b2c4352b077d) Thanks [@985563349](https://github.com/985563349)! - fix cloned request causing request body to be unavailable in middleware
|
|
32
|
+
|
|
33
|
+
## 1.0.13
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- [#790](https://github.com/honojs/middleware/pull/790) [`ed31c680f7cb4d08985c820e8e1bf051ddc57acd`](https://github.com/honojs/middleware/commit/ed31c680f7cb4d08985c820e8e1bf051ddc57acd) Thanks [@divyam234](https://github.com/divyam234)! - clone request directly for bun
|
|
38
|
+
|
|
39
|
+
## 1.0.12
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- [#775](https://github.com/honojs/middleware/pull/775) [`c19b51baaf396647f2d6b021e38f083768328b74`](https://github.com/honojs/middleware/commit/c19b51baaf396647f2d6b021e38f083768328b74) Thanks [@divyam234](https://github.com/divyam234)! - refactor session provider
|
|
44
|
+
|
|
45
|
+
## 1.0.11
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- [#769](https://github.com/honojs/middleware/pull/769) [`c2d661aa697bc3800a1b4b6c10ed3589d6d85cf2`](https://github.com/honojs/middleware/commit/c2d661aa697bc3800a1b4b6c10ed3589d6d85cf2) Thanks [@yusukebe](https://github.com/yusukebe)! - fix: remove config.basePath
|
|
50
|
+
|
|
51
|
+
## 1.0.10
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- [#614](https://github.com/honojs/middleware/pull/614) [`19f3beae1ab33bb3257694c742d1b3e5487a187d`](https://github.com/honojs/middleware/commit/19f3beae1ab33bb3257694c742d1b3e5487a187d) Thanks [@divyam234](https://github.com/divyam234)! - fix immutable headers error in x-forwarded req
|
|
56
|
+
|
|
57
|
+
## 1.0.9
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- [#598](https://github.com/honojs/middleware/pull/598) [`eb7e597aaabce2b2ac6e7809579c44f440c2b8b0`](https://github.com/honojs/middleware/commit/eb7e597aaabce2b2ac6e7809579c44f440c2b8b0) Thanks [@divyam234](https://github.com/divyam234)! - fix bun req cloning
|
|
62
|
+
|
|
63
|
+
## 1.0.8
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- [#549](https://github.com/honojs/middleware/pull/549) [`d5ebee9c70b5c6e9ecdcadd39805a6a7c481c0ee`](https://github.com/honojs/middleware/commit/d5ebee9c70b5c6e9ecdcadd39805a6a7c481c0ee) Thanks [@divyam234](https://github.com/divyam234)! - handle x-forwarded headers to detect auth url
|
|
68
|
+
|
|
69
|
+
## 1.0.7
|
|
70
|
+
|
|
71
|
+
### Patch Changes
|
|
72
|
+
|
|
73
|
+
- [#494](https://github.com/honojs/middleware/pull/494) [`300ef2f8bf4761b7b005e0c4ee7cb6ccf3ef810b`](https://github.com/honojs/middleware/commit/300ef2f8bf4761b7b005e0c4ee7cb6ccf3ef810b) Thanks [@divyam234](https://github.com/divyam234)! - fix for ssr
|
|
74
|
+
|
|
75
|
+
## 1.0.6
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- [#486](https://github.com/honojs/middleware/pull/486) [`18959557f45851a0109a63de3e865329c30d4fcc`](https://github.com/honojs/middleware/commit/18959557f45851a0109a63de3e865329c30d4fcc) Thanks [@yusukebe](https://github.com/yusukebe)! - fix: use `env` in `hono/adapter` and add tests
|
|
80
|
+
|
|
81
|
+
## 1.0.5
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- [#481](https://github.com/honojs/middleware/pull/481) [`b8fb9a06c13c3d5988b21e1b286c2a0b5ba99d80`](https://github.com/honojs/middleware/commit/b8fb9a06c13c3d5988b21e1b286c2a0b5ba99d80) Thanks [@DIYgod](https://github.com/DIYgod)! - fix AUTH_URL not working in getAuthUser
|
|
86
|
+
|
|
87
|
+
## 1.0.4
|
|
88
|
+
|
|
89
|
+
### Patch Changes
|
|
90
|
+
|
|
91
|
+
- [#478](https://github.com/honojs/middleware/pull/478) [`5004ca9c5b6f75c1fca001c26fc70b927c154589`](https://github.com/honojs/middleware/commit/5004ca9c5b6f75c1fca001c26fc70b927c154589) Thanks [@DIYgod](https://github.com/DIYgod)! - fix env AUTH_URL not working
|
|
92
|
+
|
|
93
|
+
## 1.0.3
|
|
94
|
+
|
|
95
|
+
### Patch Changes
|
|
96
|
+
|
|
97
|
+
- [#380](https://github.com/honojs/middleware/pull/380) [`ea19f6bdeb14216da0880baf5dd5885395c0f008`](https://github.com/honojs/middleware/commit/ea19f6bdeb14216da0880baf5dd5885395c0f008) Thanks [@CarlosZiegler](https://github.com/CarlosZiegler)! - fix: change peer dependency to support v4.0.0
|
|
98
|
+
|
|
99
|
+
## 1.0.2
|
|
100
|
+
|
|
101
|
+
### Patch Changes
|
|
102
|
+
|
|
103
|
+
- [#359](https://github.com/honojs/middleware/pull/359) [`4ccda19d3176d9148310bcdb33baf48986433342`](https://github.com/honojs/middleware/commit/4ccda19d3176d9148310bcdb33baf48986433342) Thanks [@divyam234](https://github.com/divyam234)! - Update @auth/core version and set default basePath
|
|
104
|
+
|
|
105
|
+
## 1.0.1
|
|
106
|
+
|
|
107
|
+
### Patch Changes
|
|
108
|
+
|
|
109
|
+
- [#330](https://github.com/honojs/middleware/pull/330) [`766738e0ea8f5e45739e0ffc4248f132f6313957`](https://github.com/honojs/middleware/commit/766738e0ea8f5e45739e0ffc4248f132f6313957) Thanks [@divyam234](https://github.com/divyam234)! - added react as peer dependency
|
|
110
|
+
|
|
111
|
+
## 1.0.0
|
|
112
|
+
|
|
113
|
+
### Major Changes
|
|
114
|
+
|
|
115
|
+
- [#326](https://github.com/honojs/middleware/pull/326) [`f9859e8fa7e79e1111b8d335d927e7de0309dd7d`](https://github.com/honojs/middleware/commit/f9859e8fa7e79e1111b8d335d927e7de0309dd7d) Thanks [@divyam234](https://github.com/divyam234)! - initial support auth.js with hono
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# Auth.js middleware for Hono
|
|
2
|
+
|
|
3
|
+
[](https://codecov.io/github/honojs/middleware)
|
|
4
|
+
|
|
5
|
+
This is a [Auth.js](https://authjs.dev) third-party middleware for [Hono](https://github.com/honojs/hono).
|
|
6
|
+
|
|
7
|
+
This middleware can be used to inject the Auth.js session into the request context.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```plain
|
|
12
|
+
npm i hono @hono/auth-js @auth/core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Configuration
|
|
16
|
+
|
|
17
|
+
Before starting using the middleware you must set the following environment variables:
|
|
18
|
+
|
|
19
|
+
```plain
|
|
20
|
+
AUTH_SECRET=#required
|
|
21
|
+
AUTH_URL=https://example.com/api/auth
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## How to Use
|
|
25
|
+
|
|
26
|
+
```ts
|
|
27
|
+
import { Hono } from 'hono'
|
|
28
|
+
import { authHandler, initAuthConfig, verifyAuth } from '@hono/auth-js'
|
|
29
|
+
import GitHub from '@auth/core/providers/github'
|
|
30
|
+
|
|
31
|
+
const app = new Hono()
|
|
32
|
+
|
|
33
|
+
app.use(
|
|
34
|
+
'*',
|
|
35
|
+
initAuthConfig((c) => ({
|
|
36
|
+
secret: c.env.AUTH_SECRET,
|
|
37
|
+
providers: [
|
|
38
|
+
GitHub({
|
|
39
|
+
clientId: c.env.GITHUB_ID,
|
|
40
|
+
clientSecret: c.env.GITHUB_SECRET,
|
|
41
|
+
}),
|
|
42
|
+
],
|
|
43
|
+
}))
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
app.use('/api/auth/*', authHandler())
|
|
47
|
+
|
|
48
|
+
app.use('/api/*', verifyAuth())
|
|
49
|
+
|
|
50
|
+
app.get('/api/protected', (c) => {
|
|
51
|
+
const auth = c.get('authUser')
|
|
52
|
+
return c.json(auth)
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
export default app
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
React component
|
|
59
|
+
|
|
60
|
+
```tsx
|
|
61
|
+
import { SessionProvider, useSession } from '@hono/auth-js/react'
|
|
62
|
+
|
|
63
|
+
export default function App() {
|
|
64
|
+
return (
|
|
65
|
+
<SessionProvider>
|
|
66
|
+
<Children />
|
|
67
|
+
</SessionProvider>
|
|
68
|
+
)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function Children() {
|
|
72
|
+
const { data: session, status } = useSession()
|
|
73
|
+
return <div>I am {session?.user}</div>
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Default `/api/auth` path can be changed to something else but that will also require you to change path in react app.
|
|
78
|
+
|
|
79
|
+
```tsx
|
|
80
|
+
import { SessionProvider, authConfigManager, useSession } from '@hono/auth-js/react'
|
|
81
|
+
|
|
82
|
+
authConfigManager.setConfig({
|
|
83
|
+
basePath: '/custom', // if auth route is diff from /api/auth
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
export default function App() {
|
|
87
|
+
return (
|
|
88
|
+
<SessionProvider>
|
|
89
|
+
<Children />
|
|
90
|
+
</SessionProvider>
|
|
91
|
+
)
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function Children() {
|
|
95
|
+
const { data: session, status } = useSession()
|
|
96
|
+
return <div>I am {session?.user}</div>
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
SessionProvider is not needed with react query.Use useQuery hook to fetch session data.
|
|
101
|
+
|
|
102
|
+
```ts
|
|
103
|
+
const useSession = () => {
|
|
104
|
+
const { data, status } = useQuery({
|
|
105
|
+
queryKey: ['session'],
|
|
106
|
+
queryFn: async () => {
|
|
107
|
+
const res = await fetch('/api/auth/session')
|
|
108
|
+
return res.json()
|
|
109
|
+
},
|
|
110
|
+
staleTime: 5 * (60 * 1000),
|
|
111
|
+
gcTime: 10 * (60 * 1000),
|
|
112
|
+
refetchOnWindowFocus: true,
|
|
113
|
+
})
|
|
114
|
+
return { session: data, status }
|
|
115
|
+
}
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
For more details on how to Popup Oauth Login see [example](https://github.com/divyam234/next-auth-hono-react)
|
|
119
|
+
|
|
120
|
+
## Author
|
|
121
|
+
|
|
122
|
+
Divyam <https://github.com/divyam234>
|