🛠️ bump dependencies

This commit is contained in:
kawamataryo 2023-12-31 07:18:38 +09:00
parent a687a91bff
commit 9a37b1fbc7
4 changed files with 501 additions and 531 deletions

980
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,28 +13,28 @@
"run-client": "ts-node --project tsconfig.script.json scripts/client.ts" "run-client": "ts-node --project tsconfig.script.json scripts/client.ts"
}, },
"dependencies": { "dependencies": {
"@atproto/api": "^0.6.4", "@atproto/api": "^0.7.4",
"@changesets/cli": "^2.26.2", "@changesets/cli": "^2.27.1",
"@plasmohq/messaging": "^0.5.0", "@plasmohq/messaging": "^0.6.1",
"@plasmohq/storage": "^1.7.2", "@plasmohq/storage": "^1.9.0",
"plasmo": "^0.84.0", "plasmo": "^0.84.0",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"ts-pattern": "^5.0.5", "ts-pattern": "^5.0.6",
"vanjs-core": "^1.0.2" "vanjs-core": "^1.2.7"
}, },
"devDependencies": { "devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1", "@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@types/chrome": "0.0.243", "@types/chrome": "0.0.254",
"@types/node": "20.5.0", "@types/node": "20.10.6",
"@types/react": "18.2.20", "@types/react": "18.2.46",
"@types/react-dom": "18.2.7", "@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.15", "autoprefixer": "^10.4.16",
"daisyui": "^3.5.1", "daisyui": "^4.4.24",
"postcss": "^8.4.31", "postcss": "^8.4.32",
"prettier": "3.0.2", "prettier": "3.1.1",
"tailwindcss": "^3.3.3", "tailwindcss": "^3.4.0",
"typescript": "5.1.6" "typescript": "5.3.3"
}, },
"manifest": { "manifest": {
"host_permissions": [ "host_permissions": [

View File

@ -153,8 +153,8 @@ function IndexPopup() {
Sky Follower Bridge Sky Follower Bridge
</h1> </h1>
<form onSubmit={searchBskyUser} className="mt-2"> <form onSubmit={searchBskyUser} className="mt-2">
<label className="input-group input-group-lg"> <label className="join w-full" htmlFor="userId">
<span> <span className="join-item btn btn-sm btn-active cursor-default">
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
fill="none" fill="none"
@ -171,14 +171,15 @@ function IndexPopup() {
</span> </span>
<input <input
type="text" type="text"
placeholder="Bluesky handle or login email" name="userId"
placeholder="@you.bsky.social"
value={userId} value={userId}
onChange={(e) => setUserId(e.target.value)} onChange={(e) => setUserId(e.target.value)}
className="input input-bordered input-sm w-full max-w-xs" className="input input-bordered input-sm w-full max-w-xs join-item focus:outline-none"
/> />
</label> </label>
<label className="input-group input-group-lg mt-2"> <label className="join mt-2 w-full" htmlFor="password">
<span> <span className="join-item btn btn-sm btn-active cursor-default">
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
fill="none" fill="none"
@ -195,10 +196,11 @@ function IndexPopup() {
</span> </span>
<input <input
type="password" type="password"
placeholder="Bluesky app password" name="password"
placeholder="your app password"
value={password} value={password}
onChange={(e) => setPassword(e.target.value)} onChange={(e) => setPassword(e.target.value)}
className="input input-bordered input-sm w-full max-w-xs" className="input input-bordered input-sm w-full max-w-xs join-item focus:outline-none"
/> />
</label> </label>
<button <button

View File

@ -10,7 +10,7 @@ module.exports = {
themes: [ themes: [
{ {
winter: { winter: {
...require("daisyui/src/theming/themes")["[data-theme=winter]"], ...require("daisyui/src/theming/themes")["winter"],
primary: "#1D4ED8" primary: "#1D4ED8"
} }
}, },