mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-24 14:34:26 -05:00
* init: plasmo example project * feat: add example for browser extension with BetterAuth - Introduced a basic browser extension example using Plasmo framework and BetterAuth for authentication. - Updated .env.example with BetterAuth configuration. - Removed unnecessary GitHub workflow file for submitting to Web Store. - Updated .gitignore to exclude local env files. - Improved README documentation for the example. - Included BetterAuth dependency in the package.json and updated the pnpm-lock.yaml. * add: browser-extension example complete * fix: content.tsx * remove: browser-extension package as that isn't needed * add: browser extension buide * docs: added references in the guide to the examples code * remove(dep): unused dependency * refactor: package.json - remove author & update description * wip * chore: update lock file * docs: update icon --------- Co-authored-by: Bereket Engida <bekacru@gmail.com>
40 lines
424 B
Plaintext
40 lines
424 B
Plaintext
|
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
#cache
|
|
.turbo
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# local env files
|
|
.env*
|
|
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# plasmo - https://www.plasmo.com
|
|
.plasmo
|
|
|
|
# bpp - http://bpp.browser.market/
|
|
keys.json
|
|
|
|
# typescript
|
|
.tsbuildinfo
|