mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-10 14:11:22 -06:00
🛠️ bump dependencies
This commit is contained in:
parent
a687a91bff
commit
9a37b1fbc7
980
package-lock.json
generated
980
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
32
package.json
32
package.json
@ -13,28 +13,28 @@
|
||||
"run-client": "ts-node --project tsconfig.script.json scripts/client.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@atproto/api": "^0.6.4",
|
||||
"@changesets/cli": "^2.26.2",
|
||||
"@plasmohq/messaging": "^0.5.0",
|
||||
"@plasmohq/storage": "^1.7.2",
|
||||
"@atproto/api": "^0.7.4",
|
||||
"@changesets/cli": "^2.27.1",
|
||||
"@plasmohq/messaging": "^0.6.1",
|
||||
"@plasmohq/storage": "^1.9.0",
|
||||
"plasmo": "^0.84.0",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"ts-pattern": "^5.0.5",
|
||||
"vanjs-core": "^1.0.2"
|
||||
"ts-pattern": "^5.0.6",
|
||||
"vanjs-core": "^1.2.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
|
||||
"@types/chrome": "0.0.243",
|
||||
"@types/node": "20.5.0",
|
||||
"@types/react": "18.2.20",
|
||||
"@types/react-dom": "18.2.7",
|
||||
"autoprefixer": "^10.4.15",
|
||||
"daisyui": "^3.5.1",
|
||||
"postcss": "^8.4.31",
|
||||
"prettier": "3.0.2",
|
||||
"tailwindcss": "^3.3.3",
|
||||
"typescript": "5.1.6"
|
||||
"@types/chrome": "0.0.254",
|
||||
"@types/node": "20.10.6",
|
||||
"@types/react": "18.2.46",
|
||||
"@types/react-dom": "18.2.18",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"daisyui": "^4.4.24",
|
||||
"postcss": "^8.4.32",
|
||||
"prettier": "3.1.1",
|
||||
"tailwindcss": "^3.4.0",
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"manifest": {
|
||||
"host_permissions": [
|
||||
|
@ -153,8 +153,8 @@ function IndexPopup() {
|
||||
Sky Follower Bridge
|
||||
</h1>
|
||||
<form onSubmit={searchBskyUser} className="mt-2">
|
||||
<label className="input-group input-group-lg">
|
||||
<span>
|
||||
<label className="join w-full" htmlFor="userId">
|
||||
<span className="join-item btn btn-sm btn-active cursor-default">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
@ -171,14 +171,15 @@ function IndexPopup() {
|
||||
</span>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Bluesky handle or login email"
|
||||
name="userId"
|
||||
placeholder="@you.bsky.social"
|
||||
value={userId}
|
||||
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 className="input-group input-group-lg mt-2">
|
||||
<span>
|
||||
<label className="join mt-2 w-full" htmlFor="password">
|
||||
<span className="join-item btn btn-sm btn-active cursor-default">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
@ -195,10 +196,11 @@ function IndexPopup() {
|
||||
</span>
|
||||
<input
|
||||
type="password"
|
||||
placeholder="Bluesky app password"
|
||||
name="password"
|
||||
placeholder="your app password"
|
||||
value={password}
|
||||
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>
|
||||
<button
|
||||
|
@ -10,7 +10,7 @@ module.exports = {
|
||||
themes: [
|
||||
{
|
||||
winter: {
|
||||
...require("daisyui/src/theming/themes")["[data-theme=winter]"],
|
||||
...require("daisyui/src/theming/themes")["winter"],
|
||||
primary: "#1D4ED8"
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user