mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 08:31:37 -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>
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "better-auth-browser-extension",
|
|
"displayName": "Better auth browser extension",
|
|
"version": "0.0.1",
|
|
"description": "A browser extension example for better-auth",
|
|
"scripts": {
|
|
"dev": "plasmo dev",
|
|
"build": "plasmo build",
|
|
"package": "plasmo package"
|
|
},
|
|
"dependencies": {
|
|
"@better-fetch/fetch": "^1.1.12",
|
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
"@radix-ui/react-label": "^2.1.1",
|
|
"@radix-ui/react-separator": "^1.1.1",
|
|
"@radix-ui/react-slot": "^1.1.1",
|
|
"better-auth": "^1.1.8",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.469.0",
|
|
"plasmo": "0.89.4",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"sonner": "^1.7.1",
|
|
"tailwind-merge": "^2.6.0",
|
|
"tailwindcss": "3.4.1",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
|
|
"@types/chrome": "0.0.258",
|
|
"@types/node": "20.11.5",
|
|
"@types/react": "18.2.48",
|
|
"@types/react-dom": "18.2.18",
|
|
"postcss": "8.4.33",
|
|
"prettier": "3.2.4",
|
|
"typescript": "5.3.3"
|
|
},
|
|
"manifest": {
|
|
"host_permissions": [
|
|
"http://localhost:3000/*"
|
|
]
|
|
}
|
|
}
|