chore: update package dependencies and configurations across the monorepo

This commit is contained in:
Innei
2026-01-10 23:35:37 +08:00
parent 7e216d90d7
commit 08b045e176
35 changed files with 3253 additions and 3544 deletions

View File

@@ -1,7 +1,10 @@
{
"name": "@afilmory/builder",
"type": "module",
"version": "0.2.2",
"description": "Afilmory Builder",
"type": "module",
"license": "MIT",
"author": "Innei",
"exports": {
".": "./src/index.ts",
"./*": "./src/*"
@@ -48,4 +51,4 @@
}
}
}
}
}

View File

@@ -56,7 +56,7 @@ export default function eagleStoragePlugin(options: EagleStoragePluginOptions =
}
}
// Apply omitTagNamesInMetadata filter
const omit = new Set((eagleConfig as EagleConfig).omitTagNamesInMetadata ?? [])
const omit = new Set((eagleConfig as EagleConfig).omitTagNamesInMetadata)
if (omit.size > 0 && meta.tags) {
meta.tags = meta.tags.filter((t) => !omit.has(t))
}

View File

@@ -1,7 +1,7 @@
{
"name": "@afilmory/data",
"type": "module",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./manifest": "./src/photos-manifest.json",

View File

@@ -1,23 +1,23 @@
{
"name": "@afilmory/hooks",
"type": "module",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./*": "./src/*"
},
"peerDependencies": {
"react": "^19.1.1"
},
"dependencies": {
"jotai": "^2.16.1",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"peerDependencies": {
"react": "^19.1.1"
}
}

View File

@@ -1,7 +1,7 @@
{
"name": "@afilmory/og-renderer",
"type": "module",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./renderer": "./src/og.renderer.tsx",
@@ -9,7 +9,7 @@
},
"devDependencies": {
"@resvg/resvg-js": "2.6.2",
"hono": "4.11.1",
"hono": "4.11.3",
"satori": "catalog:"
}
}

View File

@@ -1,7 +1,7 @@
{
"name": "@afilmory/sdk",
"type": "module",
"version": "0.0.1",
"type": "module",
"exports": {
".": {
"import": "./src/index.ts",

View File

@@ -1,8 +1,8 @@
{
"name": "@afilmory/typing",
"type": "module",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./*": "./src/*"

View File

@@ -1,16 +1,12 @@
{
"name": "@afilmory/ui",
"type": "module",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./*": "./src/*"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"dependencies": {
"@afilmory/hooks": "workspace:*",
"@afilmory/utils": "workspace:*",
@@ -28,7 +24,7 @@
"@radix-ui/react-tooltip": "1.2.8",
"clsx": "^2.1.1",
"jotai": "^2.16.1",
"motion": "^12.23.26",
"motion": "^12.25.0",
"react-intersection-observer": "10.0.0",
"sonner": "2.0.7",
"tailwind-merge": "^3.4.0",
@@ -37,9 +33,13 @@
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}

View File

@@ -1,8 +1,8 @@
{
"name": "@afilmory/utils",
"type": "module",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./*": "./src/*"
@@ -13,6 +13,6 @@
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"motion": "12.23.26"
"motion": "12.25.0"
}
}

View File

@@ -1,11 +1,10 @@
{
"name": "@afilmory/webgl-viewer",
"type": "module",
"description": "Afilmory WebGL Viewer",
"version": "0.2.0",
"packageManager": "pnpm@10.26.2",
"description": "",
"author": "Innei",
"license": "MIT",
"author": "Innei",
"type": "module",
"exports": {
".": "./src/index.ts"
},
@@ -14,17 +13,18 @@
"build": "vite build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@types/react": "19.2.7",
"@types/react": "19.2.8",
"nbump": "2.1.8",
"react": "19.2.3",
"tsdown": "0.18.0",
"unplugin-dts": "1.0.0-beta.6",
"vite": "8.0.0-beta.0"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"packageManager": "pnpm@10.26.2",
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
@@ -35,4 +35,4 @@
}
}
}
}
}