gitextract_d_jnmmz2/ ├── .eslintignore ├── .eslintrc.js ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── docs-ci.yaml │ ├── docs-production.yaml │ └── docs-staging.yaml ├── .gitignore ├── .npmignore ├── .vscode/ │ └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── app/ │ ├── components/ │ │ ├── NavBar.svelte │ │ ├── PassphraseBox.svelte │ │ ├── RequestAuthentication.svelte │ │ └── UserProfile.svelte │ ├── layout/ │ │ └── App.svelte │ ├── lib/ │ │ ├── Base64Utils.js │ │ ├── Box.js │ │ ├── Credentials.js │ │ ├── CryptoUtils.js │ │ ├── StorageService.js │ │ └── Utils.js │ ├── main.css │ ├── main.html │ ├── main.js │ ├── postcss.config.js │ ├── robots.txt │ ├── routes.js │ ├── stores.js │ ├── tailwind.config.js │ ├── views/ │ │ ├── ContentView.svelte │ │ ├── ListView.svelte │ │ └── UnlockView.svelte │ └── webpack.config.js ├── auth0/ │ ├── 01-whitelist.js │ ├── 02-notify.js │ └── 03-wait-logic.js ├── bin/ │ ├── run │ └── run.cmd ├── cli/ │ ├── commands/ │ │ ├── auth0/ │ │ │ └── sync.js │ │ ├── build.js │ │ ├── init.js │ │ ├── pack.js │ │ ├── regenerate-token.js │ │ ├── url/ │ │ │ ├── add.js │ │ │ ├── list.js │ │ │ └── rm.js │ │ ├── user/ │ │ │ ├── add.js │ │ │ ├── list.js │ │ │ └── rm.js │ │ ├── wait-time/ │ │ │ ├── get.js │ │ │ └── set.js │ │ └── webhook/ │ │ ├── get.js │ │ └── set.js │ ├── index.js │ └── lib/ │ ├── Auth0Management.js │ ├── Builder.js │ ├── Config.js │ ├── Content.js │ ├── Crypto.js │ ├── Utils.js │ └── aes-kw.js ├── docs-source/ │ ├── .gitignore │ ├── config.yaml │ ├── content/ │ │ ├── _index.md │ │ ├── advanced/ │ │ │ ├── auth0-manual-configuration.md │ │ │ ├── building-self-contained-binaries.md │ │ │ ├── configuration-file.md │ │ │ └── index-file.md │ │ ├── cli/ │ │ │ └── __template.md │ │ ├── guides/ │ │ │ ├── auth0-setup.md │ │ │ ├── build-static-web-app.md │ │ │ ├── create-box.md │ │ │ ├── deploy-box.md │ │ │ ├── get-started.md │ │ │ ├── login-notifications.md │ │ │ └── managing-users.md │ │ ├── introduction/ │ │ │ ├── quickstart-video.md │ │ │ └── security-model.md │ │ └── menu/ │ │ └── __template.md │ ├── generate-cli-docs.js │ ├── sync-assets.sh │ ├── themes/ │ │ └── book/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── archetypes/ │ │ │ └── docs.md │ │ ├── assets/ │ │ │ ├── _markdown.scss │ │ │ ├── _utils.scss │ │ │ ├── _variables.scss │ │ │ └── book.scss │ │ ├── layouts/ │ │ │ ├── 404.html │ │ │ ├── docs/ │ │ │ │ ├── baseof.html │ │ │ │ ├── list.html │ │ │ │ └── single.html │ │ │ ├── partials/ │ │ │ │ └── docs/ │ │ │ │ ├── brand.html │ │ │ │ ├── git-footer.html │ │ │ │ ├── html-head.html │ │ │ │ ├── inject/ │ │ │ │ │ ├── body.html │ │ │ │ │ ├── head.html │ │ │ │ │ ├── menu-after.html │ │ │ │ │ └── menu-before.html │ │ │ │ ├── menu-bundle.html │ │ │ │ ├── menu-filetree.html │ │ │ │ ├── menu.html │ │ │ │ ├── mobile-header.html │ │ │ │ ├── shared.html │ │ │ │ └── toc.html │ │ │ └── posts/ │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── source │ │ └── theme.toml │ ├── workers-site/ │ │ ├── .cargo-ok │ │ ├── .gitignore │ │ ├── assets.js │ │ ├── cache-config.js │ │ ├── index.js │ │ └── package.json │ └── wrangler.toml └── package.json